Fix bug in which nodes that write to argument registers do not get glued with the...
[oota-llvm.git] / lib / Target / Mips / MipsISelLowering.cpp
1 //===-- MipsISelLowering.cpp - Mips DAG Lowering Implementation -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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 #include "MipsISelLowering.h"
17 #include "MipsMachineFunction.h"
18 #include "MipsTargetMachine.h"
19 #include "MipsTargetObjectFile.h"
20 #include "MipsSubtarget.h"
21 #include "llvm/DerivedTypes.h"
22 #include "llvm/Function.h"
23 #include "llvm/GlobalVariable.h"
24 #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"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/CodeGen/SelectionDAGISel.h"
32 #include "llvm/CodeGen/ValueTypes.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/ErrorHandling.h"
35 using namespace llvm;
36
37 const char *MipsTargetLowering::getTargetNodeName(unsigned Opcode) const {
38   switch (Opcode) {
39     case MipsISD::JmpLink    : return "MipsISD::JmpLink";
40     case MipsISD::Hi         : return "MipsISD::Hi";
41     case MipsISD::Lo         : return "MipsISD::Lo";
42     case MipsISD::GPRel      : return "MipsISD::GPRel";
43     case MipsISD::Ret        : return "MipsISD::Ret";
44     case MipsISD::FPBrcond   : return "MipsISD::FPBrcond";
45     case MipsISD::FPCmp      : return "MipsISD::FPCmp";
46     case MipsISD::CMovFP_T   : return "MipsISD::CMovFP_T";
47     case MipsISD::CMovFP_F   : return "MipsISD::CMovFP_F";
48     case MipsISD::FPRound    : return "MipsISD::FPRound";
49     case MipsISD::MAdd       : return "MipsISD::MAdd";
50     case MipsISD::MAddu      : return "MipsISD::MAddu";
51     case MipsISD::MSub       : return "MipsISD::MSub";
52     case MipsISD::MSubu      : return "MipsISD::MSubu";
53     case MipsISD::DivRem     : return "MipsISD::DivRem";
54     case MipsISD::DivRemU    : return "MipsISD::DivRemU";
55     case MipsISD::BuildPairF64: return "MipsISD::BuildPairF64";
56     case MipsISD::ExtractElementF64: return "MipsISD::ExtractElementF64";
57     default                  : return NULL;
58   }
59 }
60
61 MipsTargetLowering::
62 MipsTargetLowering(MipsTargetMachine &TM)
63   : TargetLowering(TM, new MipsTargetObjectFile()) {
64   Subtarget = &TM.getSubtarget<MipsSubtarget>();
65
66   // Mips does not have i1 type, so use i32 for
67   // setcc operations results (slt, sgt, ...).
68   setBooleanContents(ZeroOrOneBooleanContent);
69
70   // Set up the register classes
71   addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass);
72   addRegisterClass(MVT::f32, Mips::FGR32RegisterClass);
73
74   // When dealing with single precision only, use libcalls
75   if (!Subtarget->isSingleFloat())
76     if (!Subtarget->isFP64bit())
77       addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass);
78
79   // Load extented operations for i1 types must be promoted
80   setLoadExtAction(ISD::EXTLOAD,  MVT::i1,  Promote);
81   setLoadExtAction(ISD::ZEXTLOAD, MVT::i1,  Promote);
82   setLoadExtAction(ISD::SEXTLOAD, MVT::i1,  Promote);
83
84   // MIPS doesn't have extending float->double load/store
85   setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
86   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
87
88   // Used by legalize types to correctly generate the setcc result.
89   // Without this, every float setcc comes with a AND/OR with the result,
90   // 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
94   // Mips Custom Operations
95   setOperationAction(ISD::GlobalAddress,      MVT::i32,   Custom);
96   setOperationAction(ISD::BlockAddress,       MVT::i32,   Custom);
97   setOperationAction(ISD::GlobalTLSAddress,   MVT::i32,   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::f64,   Custom);
102   setOperationAction(ISD::SELECT,             MVT::i32,   Custom);
103   setOperationAction(ISD::BRCOND,             MVT::Other, Custom);
104   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32,   Custom);
105   setOperationAction(ISD::FP_TO_SINT,         MVT::i32,   Custom);
106   setOperationAction(ISD::VASTART,            MVT::Other, Custom);
107
108   setOperationAction(ISD::SDIV, MVT::i32, Expand);
109   setOperationAction(ISD::SREM, MVT::i32, Expand);
110   setOperationAction(ISD::UDIV, MVT::i32, Expand);
111   setOperationAction(ISD::UREM, MVT::i32, Expand);
112
113   // Operations not directly supported by Mips.
114   setOperationAction(ISD::BR_JT,             MVT::Other, Expand);
115   setOperationAction(ISD::BR_CC,             MVT::Other, Expand);
116   setOperationAction(ISD::SELECT_CC,         MVT::Other, Expand);
117   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);
120   setOperationAction(ISD::CTPOP,             MVT::i32,   Expand);
121   setOperationAction(ISD::CTTZ,              MVT::i32,   Expand);
122   setOperationAction(ISD::ROTL,              MVT::i32,   Expand);
123
124   if (!Subtarget->isMips32r2())
125     setOperationAction(ISD::ROTR, MVT::i32,   Expand);
126
127   setOperationAction(ISD::SHL_PARTS,         MVT::i32,   Expand);
128   setOperationAction(ISD::SRA_PARTS,         MVT::i32,   Expand);
129   setOperationAction(ISD::SRL_PARTS,         MVT::i32,   Expand);
130   setOperationAction(ISD::FCOPYSIGN,         MVT::f32,   Expand);
131   setOperationAction(ISD::FCOPYSIGN,         MVT::f64,   Expand);
132   setOperationAction(ISD::FSIN,              MVT::f32,   Expand);
133   setOperationAction(ISD::FSIN,              MVT::f64,   Expand);
134   setOperationAction(ISD::FCOS,              MVT::f32,   Expand);
135   setOperationAction(ISD::FCOS,              MVT::f64,   Expand);
136   setOperationAction(ISD::FPOWI,             MVT::f32,   Expand);
137   setOperationAction(ISD::FPOW,              MVT::f32,   Expand);
138   setOperationAction(ISD::FLOG,              MVT::f32,   Expand);
139   setOperationAction(ISD::FLOG2,             MVT::f32,   Expand);
140   setOperationAction(ISD::FLOG10,            MVT::f32,   Expand);
141   setOperationAction(ISD::FEXP,              MVT::f32,   Expand);
142
143   setOperationAction(ISD::EH_LABEL,          MVT::Other, Expand);
144
145   setOperationAction(ISD::VAARG,             MVT::Other, Expand);
146   setOperationAction(ISD::VACOPY,            MVT::Other, Expand);
147   setOperationAction(ISD::VAEND,             MVT::Other, Expand);
148
149   // Use the default for now
150   setOperationAction(ISD::STACKSAVE,         MVT::Other, Expand);
151   setOperationAction(ISD::STACKRESTORE,      MVT::Other, Expand);
152   setOperationAction(ISD::MEMBARRIER,        MVT::Other, Expand);
153
154   if (Subtarget->isSingleFloat())
155     setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
156
157   if (!Subtarget->hasSEInReg()) {
158     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8,  Expand);
159     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
160   }
161
162   if (!Subtarget->hasBitCount())
163     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
164
165   if (!Subtarget->hasSwap())
166     setOperationAction(ISD::BSWAP, MVT::i32, Expand);
167
168   setTargetDAGCombine(ISD::ADDE);
169   setTargetDAGCombine(ISD::SUBE);
170   setTargetDAGCombine(ISD::SDIVREM);
171   setTargetDAGCombine(ISD::UDIVREM);
172   setTargetDAGCombine(ISD::SETCC);
173
174   setMinFunctionAlignment(2);
175
176   setStackPointerRegisterToSaveRestore(Mips::SP);
177   computeRegisterProperties();
178 }
179
180 MVT::SimpleValueType MipsTargetLowering::getSetCCResultType(EVT VT) const {
181   return MVT::i32;
182 }
183
184 // SelectMadd -
185 // Transforms a subgraph in CurDAG if the following pattern is found:
186 //  (addc multLo, Lo0), (adde multHi, Hi0),
187 // where,
188 //  multHi/Lo: product of multiplication
189 //  Lo0: initial value of Lo register
190 //  Hi0: initial value of Hi register
191 // Return true if pattern matching was successful.
192 static bool SelectMadd(SDNode* ADDENode, SelectionDAG* CurDAG) {
193   // ADDENode's second operand must be a flag output of an ADDC node in order
194   // for the matching to be successful.
195   SDNode* ADDCNode = ADDENode->getOperand(2).getNode();
196
197   if (ADDCNode->getOpcode() != ISD::ADDC)
198     return false;
199
200   SDValue MultHi = ADDENode->getOperand(0);
201   SDValue MultLo = ADDCNode->getOperand(0);
202   SDNode* MultNode = MultHi.getNode();
203   unsigned MultOpc = MultHi.getOpcode();
204
205   // MultHi and MultLo must be generated by the same node,
206   if (MultLo.getNode() != MultNode)
207     return false;
208
209   // and it must be a multiplication.
210   if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
211     return false;
212
213   // MultLo amd MultHi must be the first and second output of MultNode
214   // respectively.
215   if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
216     return false;
217
218   // Transform this to a MADD only if ADDENode and ADDCNode are the only users
219   // of the values of MultNode, in which case MultNode will be removed in later
220   // phases.
221   // If there exist users other than ADDENode or ADDCNode, this function returns
222   // here, which will result in MultNode being mapped to a single MULT
223   // instruction node rather than a pair of MULT and MADD instructions being
224   // produced.
225   if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
226     return false;
227
228   SDValue Chain = CurDAG->getEntryNode();
229   DebugLoc dl = ADDENode->getDebugLoc();
230
231   // create MipsMAdd(u) node
232   MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MAddu : MipsISD::MAdd;
233
234   SDValue MAdd = CurDAG->getNode(MultOpc, dl,
235                                  MVT::Glue,
236                                  MultNode->getOperand(0),// Factor 0
237                                  MultNode->getOperand(1),// Factor 1
238                                  ADDCNode->getOperand(1),// Lo0
239                                  ADDENode->getOperand(1));// Hi0
240
241   // create CopyFromReg nodes
242   SDValue CopyFromLo = CurDAG->getCopyFromReg(Chain, dl, Mips::LO, MVT::i32,
243                                               MAdd);
244   SDValue CopyFromHi = CurDAG->getCopyFromReg(CopyFromLo.getValue(1), dl,
245                                               Mips::HI, MVT::i32,
246                                               CopyFromLo.getValue(2));
247
248   // replace uses of adde and addc here
249   if (!SDValue(ADDCNode, 0).use_empty())
250     CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDCNode, 0), CopyFromLo);
251
252   if (!SDValue(ADDENode, 0).use_empty())
253     CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDENode, 0), CopyFromHi);
254
255   return true;
256 }
257
258 // SelectMsub -
259 // Transforms a subgraph in CurDAG if the following pattern is found:
260 //  (addc Lo0, multLo), (sube Hi0, multHi),
261 // where,
262 //  multHi/Lo: product of multiplication
263 //  Lo0: initial value of Lo register
264 //  Hi0: initial value of Hi register
265 // Return true if pattern matching was successful.
266 static bool SelectMsub(SDNode* SUBENode, SelectionDAG* CurDAG) {
267   // SUBENode's second operand must be a flag output of an SUBC node in order
268   // for the matching to be successful.
269   SDNode* SUBCNode = SUBENode->getOperand(2).getNode();
270
271   if (SUBCNode->getOpcode() != ISD::SUBC)
272     return false;
273
274   SDValue MultHi = SUBENode->getOperand(1);
275   SDValue MultLo = SUBCNode->getOperand(1);
276   SDNode* MultNode = MultHi.getNode();
277   unsigned MultOpc = MultHi.getOpcode();
278
279   // MultHi and MultLo must be generated by the same node,
280   if (MultLo.getNode() != MultNode)
281     return false;
282
283   // and it must be a multiplication.
284   if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
285     return false;
286
287   // MultLo amd MultHi must be the first and second output of MultNode
288   // respectively.
289   if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
290     return false;
291
292   // Transform this to a MSUB only if SUBENode and SUBCNode are the only users
293   // of the values of MultNode, in which case MultNode will be removed in later
294   // phases.
295   // If there exist users other than SUBENode or SUBCNode, this function returns
296   // here, which will result in MultNode being mapped to a single MULT
297   // instruction node rather than a pair of MULT and MSUB instructions being
298   // produced.
299   if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
300     return false;
301
302   SDValue Chain = CurDAG->getEntryNode();
303   DebugLoc dl = SUBENode->getDebugLoc();
304
305   // create MipsSub(u) node
306   MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MSubu : MipsISD::MSub;
307
308   SDValue MSub = CurDAG->getNode(MultOpc, dl,
309                                  MVT::Glue,
310                                  MultNode->getOperand(0),// Factor 0
311                                  MultNode->getOperand(1),// Factor 1
312                                  SUBCNode->getOperand(0),// Lo0
313                                  SUBENode->getOperand(0));// Hi0
314
315   // create CopyFromReg nodes
316   SDValue CopyFromLo = CurDAG->getCopyFromReg(Chain, dl, Mips::LO, MVT::i32,
317                                               MSub);
318   SDValue CopyFromHi = CurDAG->getCopyFromReg(CopyFromLo.getValue(1), dl,
319                                               Mips::HI, MVT::i32,
320                                               CopyFromLo.getValue(2));
321
322   // replace uses of sube and subc here
323   if (!SDValue(SUBCNode, 0).use_empty())
324     CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBCNode, 0), CopyFromLo);
325
326   if (!SDValue(SUBENode, 0).use_empty())
327     CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBENode, 0), CopyFromHi);
328
329   return true;
330 }
331
332 static SDValue PerformADDECombine(SDNode *N, SelectionDAG& DAG,
333                                   TargetLowering::DAGCombinerInfo &DCI,
334                                   const MipsSubtarget* Subtarget) {
335   if (DCI.isBeforeLegalize())
336     return SDValue();
337
338   if (Subtarget->isMips32() && SelectMadd(N, &DAG))
339     return SDValue(N, 0);
340
341   return SDValue();
342 }
343
344 static SDValue PerformSUBECombine(SDNode *N, SelectionDAG& DAG,
345                                   TargetLowering::DAGCombinerInfo &DCI,
346                                   const MipsSubtarget* Subtarget) {
347   if (DCI.isBeforeLegalize())
348     return SDValue();
349
350   if (Subtarget->isMips32() && SelectMsub(N, &DAG))
351     return SDValue(N, 0);
352
353   return SDValue();
354 }
355
356 static SDValue PerformDivRemCombine(SDNode *N, SelectionDAG& DAG,
357                                     TargetLowering::DAGCombinerInfo &DCI,
358                                     const MipsSubtarget* Subtarget) {
359   if (DCI.isBeforeLegalizeOps())
360     return SDValue();
361
362   unsigned opc = N->getOpcode() == ISD::SDIVREM ? MipsISD::DivRem :
363                                                   MipsISD::DivRemU;
364   DebugLoc dl = N->getDebugLoc();
365
366   SDValue DivRem = DAG.getNode(opc, dl, MVT::Glue,
367                                N->getOperand(0), N->getOperand(1));
368   SDValue InChain = DAG.getEntryNode();
369   SDValue InGlue = DivRem;
370
371   // insert MFLO
372   if (N->hasAnyUseOfValue(0)) {
373     SDValue CopyFromLo = DAG.getCopyFromReg(InChain, dl, Mips::LO, MVT::i32,
374                                             InGlue);
375     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), CopyFromLo);
376     InChain = CopyFromLo.getValue(1);
377     InGlue = CopyFromLo.getValue(2);
378   }
379
380   // insert MFHI
381   if (N->hasAnyUseOfValue(1)) {
382     SDValue CopyFromHi = DAG.getCopyFromReg(InChain, dl,
383                                                Mips::HI, MVT::i32, InGlue);
384     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), CopyFromHi);
385   }
386
387   return SDValue();
388 }
389
390 static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
391   switch (CC) {
392   default: llvm_unreachable("Unknown fp condition code!");
393   case ISD::SETEQ:
394   case ISD::SETOEQ: return Mips::FCOND_OEQ;
395   case ISD::SETUNE: return Mips::FCOND_UNE;
396   case ISD::SETLT:
397   case ISD::SETOLT: return Mips::FCOND_OLT;
398   case ISD::SETGT:
399   case ISD::SETOGT: return Mips::FCOND_OGT;
400   case ISD::SETLE:
401   case ISD::SETOLE: return Mips::FCOND_OLE;
402   case ISD::SETGE:
403   case ISD::SETOGE: return Mips::FCOND_OGE;
404   case ISD::SETULT: return Mips::FCOND_ULT;
405   case ISD::SETULE: return Mips::FCOND_ULE;
406   case ISD::SETUGT: return Mips::FCOND_UGT;
407   case ISD::SETUGE: return Mips::FCOND_UGE;
408   case ISD::SETUO:  return Mips::FCOND_UN;
409   case ISD::SETO:   return Mips::FCOND_OR;
410   case ISD::SETNE:
411   case ISD::SETONE: return Mips::FCOND_ONE;
412   case ISD::SETUEQ: return Mips::FCOND_UEQ;
413   }
414 }
415
416
417 // Returns true if condition code has to be inverted.
418 static bool InvertFPCondCode(Mips::CondCode CC) {
419   if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
420     return false;
421
422   if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
423     return true;
424
425   assert(false && "Illegal Condition Code");
426   return false;
427 }
428
429 // Creates and returns an FPCmp node from a setcc node.
430 // Returns Op if setcc is not a floating point comparison.
431 static SDValue CreateFPCmp(SelectionDAG& DAG, const SDValue& Op) {
432   // must be a SETCC node
433   if (Op.getOpcode() != ISD::SETCC)
434     return Op;
435
436   SDValue LHS = Op.getOperand(0);
437
438   if (!LHS.getValueType().isFloatingPoint())
439     return Op;
440
441   SDValue RHS = Op.getOperand(1);
442   DebugLoc dl = Op.getDebugLoc();
443
444   // Assume the 3rd operand is a CondCodeSDNode. Add code to check the type of
445   // node if necessary.
446   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
447
448   return DAG.getNode(MipsISD::FPCmp, dl, MVT::Glue, LHS, RHS,
449                      DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
450 }
451
452 // Creates and returns a CMovFPT/F node.
453 static SDValue CreateCMovFP(SelectionDAG& DAG, SDValue Cond, SDValue True,
454                             SDValue False, DebugLoc DL) {
455   bool invert = InvertFPCondCode((Mips::CondCode)
456                                  cast<ConstantSDNode>(Cond.getOperand(2))
457                                  ->getSExtValue());
458
459   return DAG.getNode((invert ? MipsISD::CMovFP_F : MipsISD::CMovFP_T), DL,
460                      True.getValueType(), True, False, Cond);
461 }
462
463 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG& DAG,
464                                    TargetLowering::DAGCombinerInfo &DCI,
465                                    const MipsSubtarget* Subtarget) {
466   if (DCI.isBeforeLegalizeOps())
467     return SDValue();
468
469   SDValue Cond = CreateFPCmp(DAG, SDValue(N, 0));
470
471   if (Cond.getOpcode() != MipsISD::FPCmp)
472     return SDValue();
473
474   SDValue True  = DAG.getConstant(1, MVT::i32);
475   SDValue False = DAG.getConstant(0, MVT::i32);
476
477   return CreateCMovFP(DAG, Cond, True, False, N->getDebugLoc());
478 }
479
480 SDValue  MipsTargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI)
481   const {
482   SelectionDAG &DAG = DCI.DAG;
483   unsigned opc = N->getOpcode();
484
485   switch (opc) {
486   default: break;
487   case ISD::ADDE:
488     return PerformADDECombine(N, DAG, DCI, Subtarget);
489   case ISD::SUBE:
490     return PerformSUBECombine(N, DAG, DCI, Subtarget);
491   case ISD::SDIVREM:
492   case ISD::UDIVREM:
493     return PerformDivRemCombine(N, DAG, DCI, Subtarget);
494   case ISD::SETCC:
495     return PerformSETCCCombine(N, DAG, DCI, Subtarget);
496   }
497
498   return SDValue();
499 }
500
501 SDValue MipsTargetLowering::
502 LowerOperation(SDValue Op, SelectionDAG &DAG) const
503 {
504   switch (Op.getOpcode())
505   {
506     case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
507     case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
508     case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
509     case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
510     case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
511     case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
512     case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
513     case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
514     case ISD::SELECT:             return LowerSELECT(Op, DAG);
515     case ISD::VASTART:            return LowerVASTART(Op, DAG);
516   }
517   return SDValue();
518 }
519
520 //===----------------------------------------------------------------------===//
521 //  Lower helper functions
522 //===----------------------------------------------------------------------===//
523
524 // AddLiveIn - This helper function adds the specified physical register to the
525 // MachineFunction as a live in value.  It also creates a corresponding
526 // virtual register for it.
527 static unsigned
528 AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
529 {
530   assert(RC->contains(PReg) && "Not the correct regclass!");
531   unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
532   MF.getRegInfo().addLiveIn(PReg, VReg);
533   return VReg;
534 }
535
536 // Get fp branch code (not opcode) from condition code.
537 static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
538   if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
539     return Mips::BRANCH_T;
540
541   if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
542     return Mips::BRANCH_F;
543
544   return Mips::BRANCH_INVALID;
545 }
546
547 MachineBasicBlock *
548 MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
549                                                 MachineBasicBlock *BB) const {
550   // There is no need to expand CMov instructions if target has
551   // conditional moves.
552   if (Subtarget->hasCondMov())
553     return BB;
554
555   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
556   bool isFPCmp = false;
557   DebugLoc dl = MI->getDebugLoc();
558   unsigned Opc;
559
560   switch (MI->getOpcode()) {
561   default: assert(false && "Unexpected instr type to insert");
562   case Mips::MOVT:
563   case Mips::MOVT_S:
564   case Mips::MOVT_D:
565     isFPCmp = true;
566     Opc = Mips::BC1F;
567     break;
568   case Mips::MOVF:
569   case Mips::MOVF_S:
570   case Mips::MOVF_D:
571     isFPCmp = true;
572     Opc = Mips::BC1T;
573     break;
574   case Mips::MOVZ_I:
575   case Mips::MOVZ_S:
576   case Mips::MOVZ_D:
577     Opc = Mips::BNE;
578     break;
579   case Mips::MOVN_I:
580   case Mips::MOVN_S:
581   case Mips::MOVN_D:
582     Opc = Mips::BEQ;
583     break;
584   }
585
586   // To "insert" a SELECT_CC instruction, we actually have to insert the
587   // diamond control-flow pattern.  The incoming instruction knows the
588   // destination vreg to set, the condition code register to branch on, the
589   // true/false values to select between, and a branch opcode to use.
590   const BasicBlock *LLVM_BB = BB->getBasicBlock();
591   MachineFunction::iterator It = BB;
592   ++It;
593
594   //  thisMBB:
595   //  ...
596   //   TrueVal = ...
597   //   setcc r1, r2, r3
598   //   bNE   r1, r0, copy1MBB
599   //   fallthrough --> copy0MBB
600   MachineBasicBlock *thisMBB  = BB;
601   MachineFunction *F = BB->getParent();
602   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
603   MachineBasicBlock *sinkMBB  = F->CreateMachineBasicBlock(LLVM_BB);
604   F->insert(It, copy0MBB);
605   F->insert(It, sinkMBB);
606
607   // Transfer the remainder of BB and its successor edges to sinkMBB.
608   sinkMBB->splice(sinkMBB->begin(), BB,
609                   llvm::next(MachineBasicBlock::iterator(MI)),
610                   BB->end());
611   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
612
613   // Next, add the true and fallthrough blocks as its successors.
614   BB->addSuccessor(copy0MBB);
615   BB->addSuccessor(sinkMBB);
616
617   // Emit the right instruction according to the type of the operands compared
618   if (isFPCmp)
619     BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
620   else
621     BuildMI(BB, dl, TII->get(Opc)).addReg(MI->getOperand(2).getReg())
622       .addReg(Mips::ZERO).addMBB(sinkMBB);
623
624
625   //  copy0MBB:
626   //   %FalseValue = ...
627   //   # fallthrough to sinkMBB
628   BB = copy0MBB;
629
630   // Update machine-CFG edges
631   BB->addSuccessor(sinkMBB);
632
633   //  sinkMBB:
634   //   %Result = phi [ %TrueValue, thisMBB ], [ %FalseValue, copy0MBB ]
635   //  ...
636   BB = sinkMBB;
637
638   if (isFPCmp)
639     BuildMI(*BB, BB->begin(), dl,
640             TII->get(Mips::PHI), MI->getOperand(0).getReg())
641       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB)
642       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB);
643   else
644     BuildMI(*BB, BB->begin(), dl,
645             TII->get(Mips::PHI), MI->getOperand(0).getReg())
646       .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB)
647       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB);
648
649   MI->eraseFromParent();   // The pseudo instruction is gone now.
650   return BB;
651 }
652
653 //===----------------------------------------------------------------------===//
654 //  Misc Lower Operation implementation
655 //===----------------------------------------------------------------------===//
656
657 SDValue MipsTargetLowering::
658 LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) const
659 {
660   if (!Subtarget->isMips1())
661     return Op;
662
663   MachineFunction &MF = DAG.getMachineFunction();
664   unsigned CCReg = AddLiveIn(MF, Mips::FCR31, Mips::CCRRegisterClass);
665
666   SDValue Chain = DAG.getEntryNode();
667   DebugLoc dl = Op.getDebugLoc();
668   SDValue Src = Op.getOperand(0);
669
670   // Set the condition register
671   SDValue CondReg = DAG.getCopyFromReg(Chain, dl, CCReg, MVT::i32);
672   CondReg = DAG.getCopyToReg(Chain, dl, Mips::AT, CondReg);
673   CondReg = DAG.getCopyFromReg(CondReg, dl, Mips::AT, MVT::i32);
674
675   SDValue Cst = DAG.getConstant(3, MVT::i32);
676   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i32, CondReg, Cst);
677   Cst = DAG.getConstant(2, MVT::i32);
678   SDValue Xor = DAG.getNode(ISD::XOR, dl, MVT::i32, Or, Cst);
679
680   SDValue InFlag(0, 0);
681   CondReg = DAG.getCopyToReg(Chain, dl, Mips::FCR31, Xor, InFlag);
682
683   // Emit the round instruction and bit convert to integer
684   SDValue Trunc = DAG.getNode(MipsISD::FPRound, dl, MVT::f32,
685                               Src, CondReg.getValue(1));
686   SDValue BitCvt = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Trunc);
687   return BitCvt;
688 }
689
690 SDValue MipsTargetLowering::
691 LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const
692 {
693   SDValue Chain = Op.getOperand(0);
694   SDValue Size = Op.getOperand(1);
695   DebugLoc dl = Op.getDebugLoc();
696
697   // Get a reference from Mips stack pointer
698   SDValue StackPointer = DAG.getCopyFromReg(Chain, dl, Mips::SP, MVT::i32);
699
700   // Subtract the dynamic size from the actual stack size to
701   // obtain the new stack size.
702   SDValue Sub = DAG.getNode(ISD::SUB, dl, MVT::i32, StackPointer, Size);
703
704   // The Sub result contains the new stack start address, so it
705   // must be placed in the stack pointer register.
706   Chain = DAG.getCopyToReg(StackPointer.getValue(1), dl, Mips::SP, Sub);
707
708   // This node always has two return values: a new stack pointer
709   // value and a chain
710   SDValue Ops[2] = { Sub, Chain };
711   return DAG.getMergeValues(Ops, 2, dl);
712 }
713
714 SDValue MipsTargetLowering::
715 LowerBRCOND(SDValue Op, SelectionDAG &DAG) const
716 {
717   // The first operand is the chain, the second is the condition, the third is
718   // the block to branch to if the condition is true.
719   SDValue Chain = Op.getOperand(0);
720   SDValue Dest = Op.getOperand(2);
721   DebugLoc dl = Op.getDebugLoc();
722
723   SDValue CondRes = CreateFPCmp(DAG, Op.getOperand(1));
724
725   // Return if flag is not set by a floating point comparison.
726   if (CondRes.getOpcode() != MipsISD::FPCmp)
727     return Op;
728
729   SDValue CCNode  = CondRes.getOperand(2);
730   Mips::CondCode CC =
731     (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getZExtValue();
732   SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32);
733
734   return DAG.getNode(MipsISD::FPBrcond, dl, Op.getValueType(), Chain, BrCode,
735                      Dest, CondRes);
736 }
737
738 SDValue MipsTargetLowering::
739 LowerSELECT(SDValue Op, SelectionDAG &DAG) const
740 {
741   SDValue Cond = CreateFPCmp(DAG, Op.getOperand(0));
742
743   // Return if flag is not set by a floating point comparison.
744   if (Cond.getOpcode() != MipsISD::FPCmp)
745     return Op;
746
747   return CreateCMovFP(DAG, Cond, Op.getOperand(1), Op.getOperand(2),
748                       Op.getDebugLoc());
749 }
750
751 SDValue MipsTargetLowering::LowerGlobalAddress(SDValue Op,
752                                                SelectionDAG &DAG) const {
753   // FIXME there isn't actually debug info here
754   DebugLoc dl = Op.getDebugLoc();
755   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
756
757   if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
758     SDVTList VTs = DAG.getVTList(MVT::i32);
759
760     MipsTargetObjectFile &TLOF = (MipsTargetObjectFile&)getObjFileLowering();
761
762     // %gp_rel relocation
763     if (TLOF.IsGlobalInSmallSection(GV, getTargetMachine())) {
764       SDValue GA = DAG.getTargetGlobalAddress(GV, dl, MVT::i32, 0,
765                                               MipsII::MO_GPREL);
766       SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, dl, VTs, &GA, 1);
767       SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(MVT::i32);
768       return DAG.getNode(ISD::ADD, dl, MVT::i32, GOT, GPRelNode);
769     }
770     // %hi/%lo relocation
771     SDValue GAHi = DAG.getTargetGlobalAddress(GV, dl, MVT::i32, 0,
772                                               MipsII::MO_ABS_HI);
773     SDValue GALo = DAG.getTargetGlobalAddress(GV, dl, MVT::i32, 0,
774                                               MipsII::MO_ABS_LO);
775     SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, &GAHi, 1);
776     SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GALo);
777     return DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
778   } else {
779     SDValue GA = DAG.getTargetGlobalAddress(GV, dl, MVT::i32, 0,
780                                             MipsII::MO_GOT);
781     SDValue ResNode = DAG.getLoad(MVT::i32, dl,
782                                   DAG.getEntryNode(), GA, MachinePointerInfo(),
783                                   false, false, 0);
784     // On functions and global targets not internal linked only
785     // a load from got/GP is necessary for PIC to work.
786     if (!GV->hasInternalLinkage() &&
787         (!GV->hasLocalLinkage() || isa<Function>(GV)))
788       return ResNode;
789     SDValue GALo = DAG.getTargetGlobalAddress(GV, dl, MVT::i32, 0,
790                                               MipsII::MO_ABS_LO);
791     SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GALo);
792     return DAG.getNode(ISD::ADD, dl, MVT::i32, ResNode, Lo);
793   }
794
795   llvm_unreachable("Dont know how to handle GlobalAddress");
796   return SDValue(0,0);
797 }
798
799 SDValue MipsTargetLowering::LowerBlockAddress(SDValue Op,
800                                               SelectionDAG &DAG) const {
801   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
802   // FIXME there isn't actually debug info here
803   DebugLoc dl = Op.getDebugLoc();
804
805   if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
806     // %hi/%lo relocation
807     SDValue BAHi = DAG.getBlockAddress(BA, MVT::i32, true,
808                                        MipsII::MO_ABS_HI);
809     SDValue BALo = DAG.getBlockAddress(BA, MVT::i32, true,
810                                        MipsII::MO_ABS_LO);
811     SDValue Hi = DAG.getNode(MipsISD::Hi, dl, MVT::i32, BAHi);
812     SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, BALo);
813     return DAG.getNode(ISD::ADD, dl, MVT::i32, Hi, Lo);
814   }
815
816   SDValue BAGOTOffset = DAG.getBlockAddress(BA, MVT::i32, true,
817                                             MipsII::MO_GOT);
818   SDValue BALOOffset = DAG.getBlockAddress(BA, MVT::i32, true,
819                                            MipsII::MO_ABS_LO);
820   SDValue Load = DAG.getLoad(MVT::i32, dl,
821                              DAG.getEntryNode(), BAGOTOffset,
822                              MachinePointerInfo(), false, false, 0);
823   SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, BALOOffset);
824   return DAG.getNode(ISD::ADD, dl, MVT::i32, Load, Lo);
825 }
826
827 SDValue MipsTargetLowering::
828 LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const
829 {
830   llvm_unreachable("TLS not implemented for MIPS.");
831   return SDValue(); // Not reached
832 }
833
834 SDValue MipsTargetLowering::
835 LowerJumpTable(SDValue Op, SelectionDAG &DAG) const
836 {
837   SDValue ResNode;
838   SDValue HiPart;
839   // FIXME there isn't actually debug info here
840   DebugLoc dl = Op.getDebugLoc();
841   bool IsPIC = getTargetMachine().getRelocationModel() == Reloc::PIC_;
842   unsigned char OpFlag = IsPIC ? MipsII::MO_GOT : MipsII::MO_ABS_HI;
843
844   EVT PtrVT = Op.getValueType();
845   JumpTableSDNode *JT  = cast<JumpTableSDNode>(Op);
846
847   SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, OpFlag);
848
849   if (!IsPIC) {
850     SDValue Ops[] = { JTI };
851     HiPart = DAG.getNode(MipsISD::Hi, dl, DAG.getVTList(MVT::i32), Ops, 1);
852   } else // Emit Load from Global Pointer
853     HiPart = DAG.getLoad(MVT::i32, dl, DAG.getEntryNode(), JTI,
854                          MachinePointerInfo(),
855                          false, false, 0);
856
857   SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
858                                          MipsII::MO_ABS_LO);
859   SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, JTILo);
860   ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
861
862   return ResNode;
863 }
864
865 SDValue MipsTargetLowering::
866 LowerConstantPool(SDValue Op, SelectionDAG &DAG) const
867 {
868   SDValue ResNode;
869   ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
870   const Constant *C = N->getConstVal();
871   // FIXME there isn't actually debug info here
872   DebugLoc dl = Op.getDebugLoc();
873
874   // gp_rel relocation
875   // FIXME: we should reference the constant pool using small data sections,
876   // but the asm printer currently doesn't support this feature without
877   // hacking it. This feature should come soon so we can uncomment the
878   // stuff below.
879   //if (IsInSmallSection(C->getType())) {
880   //  SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
881   //  SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(MVT::i32);
882   //  ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
883
884   if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
885     SDValue CPHi = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment(),
886                                              N->getOffset(), MipsII::MO_ABS_HI);
887     SDValue CPLo = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment(),
888                                              N->getOffset(), MipsII::MO_ABS_LO);
889     SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, MVT::i32, CPHi);
890     SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, CPLo);
891     ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
892   } else {
893     SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment(),
894                                            N->getOffset(), MipsII::MO_GOT);
895     SDValue Load = DAG.getLoad(MVT::i32, dl, DAG.getEntryNode(),
896                                CP, MachinePointerInfo::getConstantPool(),
897                                false, false, 0);
898     SDValue CPLo = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment(),
899                                              N->getOffset(), MipsII::MO_ABS_LO);
900     SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, CPLo);
901     ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, Load, Lo);
902   }
903
904   return ResNode;
905 }
906
907 SDValue MipsTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
908   MachineFunction &MF = DAG.getMachineFunction();
909   MipsFunctionInfo *FuncInfo = MF.getInfo<MipsFunctionInfo>();
910
911   DebugLoc dl = Op.getDebugLoc();
912   SDValue FI = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
913                                  getPointerTy());
914
915   // vastart just stores the address of the VarArgsFrameIndex slot into the
916   // memory location argument.
917   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
918   return DAG.getStore(Op.getOperand(0), dl, FI, Op.getOperand(1),
919                       MachinePointerInfo(SV),
920                       false, false, 0);
921 }
922
923 //===----------------------------------------------------------------------===//
924 //                      Calling Convention Implementation
925 //===----------------------------------------------------------------------===//
926
927 #include "MipsGenCallingConv.inc"
928
929 //===----------------------------------------------------------------------===//
930 // TODO: Implement a generic logic using tblgen that can support this.
931 // Mips O32 ABI rules:
932 // ---
933 // i32 - Passed in A0, A1, A2, A3 and stack
934 // f32 - Only passed in f32 registers if no int reg has been used yet to hold
935 //       an argument. Otherwise, passed in A1, A2, A3 and stack.
936 // f64 - Only passed in two aliased f32 registers if no int reg has been used
937 //       yet to hold an argument. Otherwise, use A2, A3 and stack. If A1 is
938 //       not used, it must be shadowed. If only A3 is avaiable, shadow it and
939 //       go to stack.
940 //
941 //  For vararg functions, all arguments are passed in A0, A1, A2, A3 and stack.
942 //===----------------------------------------------------------------------===//
943
944 static bool CC_MipsO32(unsigned ValNo, MVT ValVT,
945                        MVT LocVT, CCValAssign::LocInfo LocInfo,
946                        ISD::ArgFlagsTy ArgFlags, CCState &State) {
947
948   static const unsigned IntRegsSize=4, FloatRegsSize=2;
949
950   static const unsigned IntRegs[] = {
951       Mips::A0, Mips::A1, Mips::A2, Mips::A3
952   };
953   static const unsigned F32Regs[] = {
954       Mips::F12, Mips::F14
955   };
956   static const unsigned F64Regs[] = {
957       Mips::D6, Mips::D7
958   };
959
960   // Promote i8 and i16
961   if (LocVT == MVT::i8 || LocVT == MVT::i16) {
962     LocVT = MVT::i32;
963     if (ArgFlags.isSExt())
964       LocInfo = CCValAssign::SExt;
965     else if (ArgFlags.isZExt())
966       LocInfo = CCValAssign::ZExt;
967     else
968       LocInfo = CCValAssign::AExt;
969   }
970
971   unsigned Reg;
972
973   // f32 and f64 are allocated in A0, A1, A2, A3 when either of the following
974   // is true: function is vararg, argument is 3rd or higher, there is previous
975   // argument which is not f32 or f64.
976   bool AllocateFloatsInIntReg = State.isVarArg() || ValNo > 1
977       || State.getFirstUnallocated(F32Regs, FloatRegsSize) != ValNo;
978   unsigned OrigAlign = ArgFlags.getOrigAlign();
979   bool isI64 = (ValVT == MVT::i32 && OrigAlign == 8);
980
981   if (ValVT == MVT::i32 || (ValVT == MVT::f32 && AllocateFloatsInIntReg)) {
982     Reg = State.AllocateReg(IntRegs, IntRegsSize);
983     // If this is the first part of an i64 arg,
984     // the allocated register must be either A0 or A2.
985     if (isI64 && (Reg == Mips::A1 || Reg == Mips::A3))
986       Reg = State.AllocateReg(IntRegs, IntRegsSize);
987     LocVT = MVT::i32;
988   } else if (ValVT == MVT::f64 && AllocateFloatsInIntReg) {
989     // Allocate int register and shadow next int register. If first
990     // available register is Mips::A1 or Mips::A3, shadow it too.
991     Reg = State.AllocateReg(IntRegs, IntRegsSize);
992     if (Reg == Mips::A1 || Reg == Mips::A3)
993       Reg = State.AllocateReg(IntRegs, IntRegsSize);
994     State.AllocateReg(IntRegs, IntRegsSize);
995     LocVT = MVT::i32;
996   } else if (ValVT.isFloatingPoint() && !AllocateFloatsInIntReg) {
997     // we are guaranteed to find an available float register
998     if (ValVT == MVT::f32) {
999       Reg = State.AllocateReg(F32Regs, FloatRegsSize);
1000       // Shadow int register
1001       State.AllocateReg(IntRegs, IntRegsSize);
1002     } else {
1003       Reg = State.AllocateReg(F64Regs, FloatRegsSize);
1004       // Shadow int registers
1005       unsigned Reg2 = State.AllocateReg(IntRegs, IntRegsSize);
1006       if (Reg2 == Mips::A1 || Reg2 == Mips::A3)
1007         State.AllocateReg(IntRegs, IntRegsSize);
1008       State.AllocateReg(IntRegs, IntRegsSize);
1009     }
1010   } else
1011     llvm_unreachable("Cannot handle this ValVT.");
1012
1013   if (!Reg) {
1014     unsigned SizeInBytes = ValVT.getSizeInBits() >> 3;
1015     unsigned Offset = State.AllocateStack(SizeInBytes, OrigAlign);
1016     State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
1017   } else
1018     State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
1019
1020   return false; // CC must always match
1021 }
1022
1023 //===----------------------------------------------------------------------===//
1024 //                  Call Calling Convention Implementation
1025 //===----------------------------------------------------------------------===//
1026
1027 /// LowerCall - functions arguments are copied from virtual regs to
1028 /// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
1029 /// TODO: isTailCall.
1030 SDValue
1031 MipsTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
1032                               CallingConv::ID CallConv, bool isVarArg,
1033                               bool &isTailCall,
1034                               const SmallVectorImpl<ISD::OutputArg> &Outs,
1035                               const SmallVectorImpl<SDValue> &OutVals,
1036                               const SmallVectorImpl<ISD::InputArg> &Ins,
1037                               DebugLoc dl, SelectionDAG &DAG,
1038                               SmallVectorImpl<SDValue> &InVals) const {
1039   // MIPs target does not yet support tail call optimization.
1040   isTailCall = false;
1041
1042   MachineFunction &MF = DAG.getMachineFunction();
1043   MachineFrameInfo *MFI = MF.getFrameInfo();
1044   bool IsPIC = getTargetMachine().getRelocationModel() == Reloc::PIC_;
1045
1046   // Analyze operands of the call, assigning locations to each operand.
1047   SmallVector<CCValAssign, 16> ArgLocs;
1048   CCState CCInfo(CallConv, isVarArg, getTargetMachine(), ArgLocs,
1049                  *DAG.getContext());
1050
1051   if (Subtarget->isABI_O32()) {
1052     CCInfo.AnalyzeCallOperands(Outs, CC_MipsO32);
1053   } else
1054     CCInfo.AnalyzeCallOperands(Outs, CC_Mips);
1055
1056   // Get a count of how many bytes are to be pushed on the stack.
1057   unsigned NumBytes = CCInfo.getNextStackOffset();
1058   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
1059
1060   // With EABI is it possible to have 16 args on registers.
1061   SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
1062   SmallVector<SDValue, 8> MemOpChains;
1063
1064   // First/LastArgStackLoc contains the first/last
1065   // "at stack" argument location.
1066   int LastArgStackLoc = 0;
1067   unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
1068
1069   // Walk the register/memloc assignments, inserting copies/loads.
1070   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1071     SDValue Arg = OutVals[i];
1072     CCValAssign &VA = ArgLocs[i];
1073
1074     // Promote the value if needed.
1075     switch (VA.getLocInfo()) {
1076     default: llvm_unreachable("Unknown loc info!");
1077     case CCValAssign::Full:
1078       if (Subtarget->isABI_O32() && VA.isRegLoc()) {
1079         if (VA.getValVT() == MVT::f32 && VA.getLocVT() == MVT::i32)
1080           Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
1081         if (VA.getValVT() == MVT::f64 && VA.getLocVT() == MVT::i32) {
1082           SDValue Lo = DAG.getNode(MipsISD::ExtractElementF64, dl, MVT::i32,
1083                                    Arg, DAG.getConstant(0, MVT::i32));
1084           SDValue Hi = DAG.getNode(MipsISD::ExtractElementF64, dl, MVT::i32,
1085                                    Arg, DAG.getConstant(1, MVT::i32));
1086           if (!Subtarget->isLittle())
1087             std::swap(Lo, Hi);
1088           RegsToPass.push_back(std::make_pair(VA.getLocReg(), Lo));
1089           RegsToPass.push_back(std::make_pair(VA.getLocReg()+1, Hi));
1090           continue;
1091         }
1092       }
1093       break;
1094     case CCValAssign::SExt:
1095       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1096       break;
1097     case CCValAssign::ZExt:
1098       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1099       break;
1100     case CCValAssign::AExt:
1101       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1102       break;
1103     }
1104
1105     // Arguments that can be passed on register must be kept at
1106     // RegsToPass vector
1107     if (VA.isRegLoc()) {
1108       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1109       continue;
1110     }
1111
1112     // Register can't get to this point...
1113     assert(VA.isMemLoc());
1114
1115     // Create the frame index object for this incoming parameter
1116     // This guarantees that when allocating Local Area the firsts
1117     // 16 bytes which are alwayes reserved won't be overwritten
1118     // if O32 ABI is used. For EABI the first address is zero.
1119     LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
1120     int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
1121                                     LastArgStackLoc, true);
1122
1123     SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
1124
1125     // emit ISD::STORE whichs stores the
1126     // parameter value to a stack Location
1127     MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
1128                                        MachinePointerInfo(),
1129                                        false, false, 0));
1130   }
1131
1132   // Transform all store nodes into one single node because all store
1133   // nodes are independent of each other.
1134   if (!MemOpChains.empty())
1135     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1136                         &MemOpChains[0], MemOpChains.size());
1137
1138   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1139   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1140   // node so that legalize doesn't hack it.
1141   unsigned char OpFlag = IsPIC ? MipsII::MO_GOT_CALL : MipsII::MO_NO_FLAG;
1142   bool LoadSymAddr = false;
1143   SDValue CalleeLo;
1144
1145   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1146     if (IsPIC && G->getGlobal()->hasInternalLinkage()) {
1147       Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
1148                                           getPointerTy(), 0,MipsII:: MO_GOT);
1149       CalleeLo = DAG.getTargetGlobalAddress(G->getGlobal(), dl, getPointerTy(),
1150                                             0, MipsII::MO_ABS_LO);
1151     } else {
1152       Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
1153                                           getPointerTy(), 0, OpFlag);
1154     }
1155
1156     LoadSymAddr = true;
1157   }
1158   else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1159     Callee = DAG.getTargetExternalSymbol(S->getSymbol(),
1160                                 getPointerTy(), OpFlag);
1161     LoadSymAddr = true;
1162   }
1163
1164   SDValue InFlag;
1165
1166   // Create nodes that load address of callee and copy it to T9
1167   if (IsPIC) {
1168     if (LoadSymAddr) {
1169       // Load callee address
1170       SDValue LoadValue = DAG.getLoad(MVT::i32, dl, Chain, Callee,
1171                                       MachinePointerInfo::getGOT(),
1172                                       false, false, 0);
1173
1174       // Use GOT+LO if callee has internal linkage.
1175       if (CalleeLo.getNode()) {
1176         SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, CalleeLo);
1177         Callee = DAG.getNode(ISD::ADD, dl, MVT::i32, LoadValue, Lo);
1178       } else
1179         Callee = LoadValue;
1180
1181       // Use chain output from LoadValue 
1182       Chain = LoadValue.getValue(1);
1183     }
1184
1185     // copy to T9
1186     Chain = DAG.getCopyToReg(Chain, dl, Mips::T9, Callee, SDValue(0, 0));
1187     InFlag = Chain.getValue(1);
1188     Callee = DAG.getRegister(Mips::T9, MVT::i32);
1189   }
1190
1191   // Build a sequence of copy-to-reg nodes chained together with token
1192   // chain and flag operands which copy the outgoing args into registers.
1193   // The InFlag in necessary since all emitted instructions must be
1194   // stuck together.
1195   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1196     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1197                              RegsToPass[i].second, InFlag);
1198     InFlag = Chain.getValue(1);
1199   }
1200
1201   // MipsJmpLink = #chain, #target_address, #opt_in_flags...
1202   //             = Chain, Callee, Reg#1, Reg#2, ...
1203   //
1204   // Returns a chain & a flag for retval copy to use.
1205   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1206   SmallVector<SDValue, 8> Ops;
1207   Ops.push_back(Chain);
1208   Ops.push_back(Callee);
1209
1210   // Add argument registers to the end of the list so that they are
1211   // known live into the call.
1212   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1213     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1214                                   RegsToPass[i].second.getValueType()));
1215
1216   if (InFlag.getNode())
1217     Ops.push_back(InFlag);
1218
1219   Chain  = DAG.getNode(MipsISD::JmpLink, dl, NodeTys, &Ops[0], Ops.size());
1220   InFlag = Chain.getValue(1);
1221
1222   // Create a stack location to hold GP when PIC is used. This stack
1223   // location is used on function prologue to save GP and also after all
1224   // emitted CALL's to restore GP.
1225   if (IsPIC) {
1226       // Function can have an arbitrary number of calls, so
1227       // hold the LastArgStackLoc with the biggest offset.
1228       int FI;
1229       MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
1230       if (LastArgStackLoc >= MipsFI->getGPStackOffset()) {
1231         LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4);
1232         // Create the frame index only once. SPOffset here can be anything
1233         // (this will be fixed on processFunctionBeforeFrameFinalized)
1234         if (MipsFI->getGPStackOffset() == -1) {
1235           FI = MFI->CreateFixedObject(4, 0, true);
1236           MipsFI->setGPFI(FI);
1237         }
1238         MipsFI->setGPStackOffset(LastArgStackLoc);
1239       }
1240   }
1241
1242   // Create the CALLSEQ_END node.
1243   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1244                              DAG.getIntPtrConstant(0, true), InFlag);
1245   InFlag = Chain.getValue(1);
1246
1247   // Handle result values, copying them out of physregs into vregs that we
1248   // return.
1249   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
1250                          Ins, dl, DAG, InVals);
1251 }
1252
1253 /// LowerCallResult - Lower the result values of a call into the
1254 /// appropriate copies out of appropriate physical registers.
1255 SDValue
1256 MipsTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1257                                     CallingConv::ID CallConv, bool isVarArg,
1258                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1259                                     DebugLoc dl, SelectionDAG &DAG,
1260                                     SmallVectorImpl<SDValue> &InVals) const {
1261
1262   // Assign locations to each value returned by this call.
1263   SmallVector<CCValAssign, 16> RVLocs;
1264   CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1265                  RVLocs, *DAG.getContext());
1266
1267   CCInfo.AnalyzeCallResult(Ins, RetCC_Mips);
1268
1269   // Copy all of the result registers out of their specified physreg.
1270   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1271     Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
1272                                RVLocs[i].getValVT(), InFlag).getValue(1);
1273     InFlag = Chain.getValue(2);
1274     InVals.push_back(Chain.getValue(0));
1275   }
1276
1277   return Chain;
1278 }
1279
1280 //===----------------------------------------------------------------------===//
1281 //             Formal Arguments Calling Convention Implementation
1282 //===----------------------------------------------------------------------===//
1283
1284 /// LowerFormalArguments - transform physical registers into virtual registers
1285 /// and generate load operations for arguments places on the stack.
1286 SDValue
1287 MipsTargetLowering::LowerFormalArguments(SDValue Chain,
1288                                          CallingConv::ID CallConv,
1289                                          bool isVarArg,
1290                                          const SmallVectorImpl<ISD::InputArg>
1291                                          &Ins,
1292                                          DebugLoc dl, SelectionDAG &DAG,
1293                                          SmallVectorImpl<SDValue> &InVals)
1294                                           const {
1295
1296   MachineFunction &MF = DAG.getMachineFunction();
1297   MachineFrameInfo *MFI = MF.getFrameInfo();
1298   MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
1299
1300   MipsFI->setVarArgsFrameIndex(0);
1301
1302   // Used with vargs to acumulate store chains.
1303   std::vector<SDValue> OutChains;
1304
1305   // Keep track of the last register used for arguments
1306   unsigned ArgRegEnd = 0;
1307
1308   // Assign locations to all of the incoming arguments.
1309   SmallVector<CCValAssign, 16> ArgLocs;
1310   CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1311                  ArgLocs, *DAG.getContext());
1312
1313   if (Subtarget->isABI_O32())
1314     CCInfo.AnalyzeFormalArguments(Ins, CC_MipsO32);
1315   else
1316     CCInfo.AnalyzeFormalArguments(Ins, CC_Mips);
1317
1318   unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
1319   unsigned LastStackArgEndOffset = 0;
1320   EVT LastRegArgValVT;
1321
1322   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1323     CCValAssign &VA = ArgLocs[i];
1324
1325     // Arguments stored on registers
1326     if (VA.isRegLoc()) {
1327       EVT RegVT = VA.getLocVT();
1328       ArgRegEnd = VA.getLocReg();
1329       LastRegArgValVT = VA.getValVT();
1330       TargetRegisterClass *RC = 0;
1331
1332       if (RegVT == MVT::i32)
1333         RC = Mips::CPURegsRegisterClass;
1334       else if (RegVT == MVT::f32)
1335         RC = Mips::FGR32RegisterClass;
1336       else if (RegVT == MVT::f64) {
1337         if (!Subtarget->isSingleFloat())
1338           RC = Mips::AFGR64RegisterClass;
1339       } else
1340         llvm_unreachable("RegVT not supported by FormalArguments Lowering");
1341
1342       // Transform the arguments stored on
1343       // physical registers into virtual ones
1344       unsigned Reg = AddLiveIn(DAG.getMachineFunction(), ArgRegEnd, RC);
1345       SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
1346
1347       // If this is an 8 or 16-bit value, it has been passed promoted
1348       // to 32 bits.  Insert an assert[sz]ext to capture this, then
1349       // truncate to the right size.
1350       if (VA.getLocInfo() != CCValAssign::Full) {
1351         unsigned Opcode = 0;
1352         if (VA.getLocInfo() == CCValAssign::SExt)
1353           Opcode = ISD::AssertSext;
1354         else if (VA.getLocInfo() == CCValAssign::ZExt)
1355           Opcode = ISD::AssertZext;
1356         if (Opcode)
1357           ArgValue = DAG.getNode(Opcode, dl, RegVT, ArgValue,
1358                                  DAG.getValueType(VA.getValVT()));
1359         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1360       }
1361
1362       // Handle O32 ABI cases: i32->f32 and (i32,i32)->f64
1363       if (Subtarget->isABI_O32()) {
1364         if (RegVT == MVT::i32 && VA.getValVT() == MVT::f32)
1365           ArgValue = DAG.getNode(ISD::BITCAST, dl, MVT::f32, ArgValue);
1366         if (RegVT == MVT::i32 && VA.getValVT() == MVT::f64) {
1367           unsigned Reg2 = AddLiveIn(DAG.getMachineFunction(),
1368                                     VA.getLocReg()+1, RC);
1369           SDValue ArgValue2 = DAG.getCopyFromReg(Chain, dl, Reg2, RegVT);
1370           if (!Subtarget->isLittle())
1371             std::swap(ArgValue, ArgValue2);
1372           ArgValue = DAG.getNode(MipsISD::BuildPairF64, dl, MVT::f64,
1373                                  ArgValue, ArgValue2);
1374         }
1375       }
1376
1377       InVals.push_back(ArgValue);
1378     } else { // VA.isRegLoc()
1379
1380       // sanity check
1381       assert(VA.isMemLoc());
1382
1383       // The last argument is not a register anymore
1384       ArgRegEnd = 0;
1385
1386       // The stack pointer offset is relative to the caller stack frame.
1387       // Since the real stack size is unknown here, a negative SPOffset
1388       // is used so there's a way to adjust these offsets when the stack
1389       // size get known (on EliminateFrameIndex). A dummy SPOffset is
1390       // used instead of a direct negative address (which is recorded to
1391       // be used on emitPrologue) to avoid mis-calc of the first stack
1392       // offset on PEI::calculateFrameObjectOffsets.
1393       unsigned ArgSize = VA.getValVT().getSizeInBits()/8;
1394       LastStackArgEndOffset = FirstStackArgLoc + VA.getLocMemOffset() + ArgSize;
1395       int FI = MFI->CreateFixedObject(ArgSize, 0, true);
1396       MipsFI->recordLoadArgsFI(FI, -(4 +
1397         (FirstStackArgLoc + VA.getLocMemOffset())));
1398
1399       // Create load nodes to retrieve arguments from the stack
1400       SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1401       InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
1402                                    MachinePointerInfo::getFixedStack(FI),
1403                                    false, false, 0));
1404     }
1405   }
1406
1407   // The mips ABIs for returning structs by value requires that we copy
1408   // the sret argument into $v0 for the return. Save the argument into
1409   // a virtual register so that we can access it from the return points.
1410   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1411     unsigned Reg = MipsFI->getSRetReturnReg();
1412     if (!Reg) {
1413       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32));
1414       MipsFI->setSRetReturnReg(Reg);
1415     }
1416     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
1417     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
1418   }
1419
1420   // To meet ABI, when VARARGS are passed on registers, the registers
1421   // must have their values written to the caller stack frame. If the last
1422   // argument was placed in the stack, there's no need to save any register.
1423   if (isVarArg && Subtarget->isABI_O32()) {
1424     if (ArgRegEnd) {
1425       // Last named formal argument is passed in register.
1426
1427       // The last register argument that must be saved is Mips::A3
1428       TargetRegisterClass *RC = Mips::CPURegsRegisterClass;
1429       if (LastRegArgValVT == MVT::f64)
1430         ArgRegEnd++;
1431
1432       if (ArgRegEnd < Mips::A3) {
1433         // Both the last named formal argument and the first variable
1434         // argument are passed in registers.
1435         for (++ArgRegEnd; ArgRegEnd <= Mips::A3; ++ArgRegEnd) {
1436           unsigned Reg = AddLiveIn(DAG.getMachineFunction(), ArgRegEnd, RC);
1437           SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, MVT::i32);
1438
1439           int FI = MFI->CreateFixedObject(4, 0, true);
1440           MipsFI->recordStoreVarArgsFI(FI, -(4+(ArgRegEnd-Mips::A0)*4));
1441           SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy());
1442           OutChains.push_back(DAG.getStore(Chain, dl, ArgValue, PtrOff,
1443                                            MachinePointerInfo(),
1444                                            false, false, 0));
1445
1446           // Record the frame index of the first variable argument
1447           // which is a value necessary to VASTART.
1448           if (!MipsFI->getVarArgsFrameIndex()) {
1449             MFI->setObjectAlignment(FI, 4);
1450             MipsFI->setVarArgsFrameIndex(FI);
1451           }
1452         }
1453       } else {
1454         // Last named formal argument is in register Mips::A3, and the first
1455         // variable argument is on stack. Record the frame index of the first
1456         // variable argument.
1457         int FI = MFI->CreateFixedObject(4, 0, true);
1458         MFI->setObjectAlignment(FI, 4);
1459         MipsFI->recordStoreVarArgsFI(FI, -20);
1460         MipsFI->setVarArgsFrameIndex(FI);
1461       }
1462     } else {
1463       // Last named formal argument and all the variable arguments are passed
1464       // on stack. Record the frame index of the first variable argument.
1465       int FI = MFI->CreateFixedObject(4, 0, true);
1466       MFI->setObjectAlignment(FI, 4);
1467       MipsFI->recordStoreVarArgsFI(FI, -(4+LastStackArgEndOffset));
1468       MipsFI->setVarArgsFrameIndex(FI);
1469     }
1470   }
1471
1472   // All stores are grouped in one node to allow the matching between
1473   // the size of Ins and InVals. This only happens when on varg functions
1474   if (!OutChains.empty()) {
1475     OutChains.push_back(Chain);
1476     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1477                         &OutChains[0], OutChains.size());
1478   }
1479
1480   return Chain;
1481 }
1482
1483 //===----------------------------------------------------------------------===//
1484 //               Return Value Calling Convention Implementation
1485 //===----------------------------------------------------------------------===//
1486
1487 SDValue
1488 MipsTargetLowering::LowerReturn(SDValue Chain,
1489                                 CallingConv::ID CallConv, bool isVarArg,
1490                                 const SmallVectorImpl<ISD::OutputArg> &Outs,
1491                                 const SmallVectorImpl<SDValue> &OutVals,
1492                                 DebugLoc dl, SelectionDAG &DAG) const {
1493
1494   // CCValAssign - represent the assignment of
1495   // the return value to a location
1496   SmallVector<CCValAssign, 16> RVLocs;
1497
1498   // CCState - Info about the registers and stack slot.
1499   CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1500                  RVLocs, *DAG.getContext());
1501
1502   // Analize return values.
1503   CCInfo.AnalyzeReturn(Outs, RetCC_Mips);
1504
1505   // If this is the first return lowered for this function, add
1506   // the regs to the liveout set for the function.
1507   if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
1508     for (unsigned i = 0; i != RVLocs.size(); ++i)
1509       if (RVLocs[i].isRegLoc())
1510         DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
1511   }
1512
1513   SDValue Flag;
1514
1515   // Copy the result values into the output registers.
1516   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1517     CCValAssign &VA = RVLocs[i];
1518     assert(VA.isRegLoc() && "Can only return in registers!");
1519
1520     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1521                              OutVals[i], Flag);
1522
1523     // guarantee that all emitted copies are
1524     // stuck together, avoiding something bad
1525     Flag = Chain.getValue(1);
1526   }
1527
1528   // The mips ABIs for returning structs by value requires that we copy
1529   // the sret argument into $v0 for the return. We saved the argument into
1530   // a virtual register in the entry block, so now we copy the value out
1531   // and into $v0.
1532   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1533     MachineFunction &MF      = DAG.getMachineFunction();
1534     MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
1535     unsigned Reg = MipsFI->getSRetReturnReg();
1536
1537     if (!Reg)
1538       llvm_unreachable("sret virtual register not created in the entry block");
1539     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1540
1541     Chain = DAG.getCopyToReg(Chain, dl, Mips::V0, Val, Flag);
1542     Flag = Chain.getValue(1);
1543   }
1544
1545   // Return on Mips is always a "jr $ra"
1546   if (Flag.getNode())
1547     return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
1548                        Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
1549   else // Return Void
1550     return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
1551                        Chain, DAG.getRegister(Mips::RA, MVT::i32));
1552 }
1553
1554 //===----------------------------------------------------------------------===//
1555 //                           Mips Inline Assembly Support
1556 //===----------------------------------------------------------------------===//
1557
1558 /// getConstraintType - Given a constraint letter, return the type of
1559 /// constraint it is for this target.
1560 MipsTargetLowering::ConstraintType MipsTargetLowering::
1561 getConstraintType(const std::string &Constraint) const
1562 {
1563   // Mips specific constrainy
1564   // GCC config/mips/constraints.md
1565   //
1566   // 'd' : An address register. Equivalent to r
1567   //       unless generating MIPS16 code.
1568   // 'y' : Equivalent to r; retained for
1569   //       backwards compatibility.
1570   // 'f' : Floating Point registers.
1571   if (Constraint.size() == 1) {
1572     switch (Constraint[0]) {
1573       default : break;
1574       case 'd':
1575       case 'y':
1576       case 'f':
1577         return C_RegisterClass;
1578         break;
1579     }
1580   }
1581   return TargetLowering::getConstraintType(Constraint);
1582 }
1583
1584 /// Examine constraint type and operand type and determine a weight value.
1585 /// This object must already have been set up with the operand type
1586 /// and the current alternative constraint selected.
1587 TargetLowering::ConstraintWeight
1588 MipsTargetLowering::getSingleConstraintMatchWeight(
1589     AsmOperandInfo &info, const char *constraint) const {
1590   ConstraintWeight weight = CW_Invalid;
1591   Value *CallOperandVal = info.CallOperandVal;
1592     // If we don't have a value, we can't do a match,
1593     // but allow it at the lowest weight.
1594   if (CallOperandVal == NULL)
1595     return CW_Default;
1596   const Type *type = CallOperandVal->getType();
1597   // Look at the constraint type.
1598   switch (*constraint) {
1599   default:
1600     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
1601     break;
1602   case 'd':
1603   case 'y':
1604     if (type->isIntegerTy())
1605       weight = CW_Register;
1606     break;
1607   case 'f':
1608     if (type->isFloatTy())
1609       weight = CW_Register;
1610     break;
1611   }
1612   return weight;
1613 }
1614
1615 /// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1616 /// return a list of registers that can be used to satisfy the constraint.
1617 /// This should only be used for C_RegisterClass constraints.
1618 std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
1619 getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const
1620 {
1621   if (Constraint.size() == 1) {
1622     switch (Constraint[0]) {
1623     case 'r':
1624       return std::make_pair(0U, Mips::CPURegsRegisterClass);
1625     case 'f':
1626       if (VT == MVT::f32)
1627         return std::make_pair(0U, Mips::FGR32RegisterClass);
1628       if (VT == MVT::f64)
1629         if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1630           return std::make_pair(0U, Mips::AFGR64RegisterClass);
1631     }
1632   }
1633   return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1634 }
1635
1636 /// Given a register class constraint, like 'r', if this corresponds directly
1637 /// to an LLVM register class, return a register of 0 and the register class
1638 /// pointer.
1639 std::vector<unsigned> MipsTargetLowering::
1640 getRegClassForInlineAsmConstraint(const std::string &Constraint,
1641                                   EVT VT) const
1642 {
1643   if (Constraint.size() != 1)
1644     return std::vector<unsigned>();
1645
1646   switch (Constraint[0]) {
1647     default : break;
1648     case 'r':
1649     // GCC Mips Constraint Letters
1650     case 'd':
1651     case 'y':
1652       return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3,
1653              Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1,
1654              Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7,
1655              Mips::T8, 0);
1656
1657     case 'f':
1658       if (VT == MVT::f32) {
1659         if (Subtarget->isSingleFloat())
1660           return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1661                  Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1662                  Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1663                  Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1664                  Mips::F30, Mips::F31, 0);
1665         else
1666           return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8,
1667                  Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26,
1668                  Mips::F28, Mips::F30, 0);
1669       }
1670
1671       if (VT == MVT::f64)
1672         if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1673           return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4,
1674                  Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13,
1675                  Mips::D14, Mips::D15, 0);
1676   }
1677   return std::vector<unsigned>();
1678 }
1679
1680 bool
1681 MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1682   // The Mips target isn't yet aware of offsets.
1683   return false;
1684 }
1685
1686 bool MipsTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
1687   if (VT != MVT::f32 && VT != MVT::f64)
1688     return false;
1689   if (Imm.isNegZero())
1690     return false;
1691   return Imm.isZero();
1692 }