Fix a typo
[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
17 #include "MipsISelLowering.h"
18 #include "MipsMachineFunction.h"
19 #include "MipsTargetMachine.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 using namespace llvm;
35
36 const char *MipsTargetLowering::
37 getTargetNodeName(unsigned Opcode) const 
38 {
39   switch (Opcode) 
40   {
41     case MipsISD::JmpLink    : return "MipsISD::JmpLink";
42     case MipsISD::Hi         : return "MipsISD::Hi";
43     case MipsISD::Lo         : return "MipsISD::Lo";
44     case MipsISD::GPRel      : return "MipsISD::GPRel";
45     case MipsISD::Ret        : return "MipsISD::Ret";
46     case MipsISD::CMov       : return "MipsISD::CMov";
47     case MipsISD::SelectCC   : return "MipsISD::SelectCC";
48     case MipsISD::FPSelectCC : return "MipsISD::FPSelectCC";
49     case MipsISD::FPBrcond   : return "MipsISD::FPBrcond";
50     case MipsISD::FPCmp      : return "MipsISD::FPCmp";
51     default                  : return NULL;
52   }
53 }
54
55 MipsTargetLowering::
56 MipsTargetLowering(MipsTargetMachine &TM): TargetLowering(TM) 
57 {
58   Subtarget = &TM.getSubtarget<MipsSubtarget>();
59
60   // Mips does not have i1 type, so use i32 for
61   // setcc operations results (slt, sgt, ...). 
62   setBooleanContents(ZeroOrOneBooleanContent);
63
64   // JumpTable targets must use GOT when using PIC_
65   setUsesGlobalOffsetTable(true);
66
67   // Set up the register classes
68   addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass);
69
70   // When dealing with single precision only, use libcalls
71   if (!Subtarget->isSingleFloat()) {
72     addRegisterClass(MVT::f32, Mips::AFGR32RegisterClass);
73     if (!Subtarget->isFP64bit())
74       addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass);
75   } else 
76     addRegisterClass(MVT::f32, Mips::FGR32RegisterClass);
77
78   // Legal fp constants
79   addLegalFPImmediate(APFloat(+0.0f));
80
81   // Load extented operations for i1 types must be promoted 
82   setLoadExtAction(ISD::EXTLOAD,  MVT::i1,  Promote);
83   setLoadExtAction(ISD::ZEXTLOAD, MVT::i1,  Promote);
84   setLoadExtAction(ISD::SEXTLOAD, MVT::i1,  Promote);
85
86   // Used by legalize types to correctly generate the setcc result. 
87   // Without this, every float setcc comes with a AND/OR with the result, 
88   // we don't want this, since the fpcmp result goes to a flag register, 
89   // which is used implicitly by brcond and select operations.
90   AddPromotedToType(ISD::SETCC, MVT::i1, MVT::i32);
91
92   // Mips Custom Operations
93   setOperationAction(ISD::GlobalAddress,      MVT::i32,   Custom);
94   setOperationAction(ISD::GlobalTLSAddress,   MVT::i32,   Custom);
95   setOperationAction(ISD::RET,                MVT::Other, Custom);
96   setOperationAction(ISD::JumpTable,          MVT::i32,   Custom);
97   setOperationAction(ISD::ConstantPool,       MVT::i32,   Custom);
98   setOperationAction(ISD::SELECT,             MVT::f32,   Custom);
99   setOperationAction(ISD::SELECT,             MVT::i32,   Custom);
100   setOperationAction(ISD::SETCC,              MVT::f32,   Custom);
101   setOperationAction(ISD::BRCOND,             MVT::Other, Custom);
102   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32,   Custom);
103
104   // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors' 
105   // with operands comming from setcc fp comparions. This is necessary since 
106   // the result from these setcc are in a flag registers (FCR31).
107   setOperationAction(ISD::AND,              MVT::i32,   Custom);
108   setOperationAction(ISD::OR,               MVT::i32,   Custom);
109
110   // Operations not directly supported by Mips.
111   setOperationAction(ISD::BR_JT,             MVT::Other, Expand);
112   setOperationAction(ISD::BR_CC,             MVT::Other, Expand);
113   setOperationAction(ISD::SELECT_CC,         MVT::Other, Expand);
114   setOperationAction(ISD::UINT_TO_FP,        MVT::i32,   Expand);
115   setOperationAction(ISD::FP_TO_UINT,        MVT::i32,   Expand);
116   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1,    Expand);
117   setOperationAction(ISD::CTPOP,             MVT::i32,   Expand);
118   setOperationAction(ISD::CTTZ,              MVT::i32,   Expand);
119   setOperationAction(ISD::ROTL,              MVT::i32,   Expand);
120   setOperationAction(ISD::SHL_PARTS,         MVT::i32,   Expand);
121   setOperationAction(ISD::SRA_PARTS,         MVT::i32,   Expand);
122   setOperationAction(ISD::SRL_PARTS,         MVT::i32,   Expand);
123   setOperationAction(ISD::FCOPYSIGN,         MVT::f32,   Expand);
124
125   // We don't have line number support yet.
126   setOperationAction(ISD::DBG_STOPPOINT,     MVT::Other, Expand);
127   setOperationAction(ISD::DEBUG_LOC,         MVT::Other, Expand);
128   setOperationAction(ISD::DBG_LABEL,         MVT::Other, Expand);
129   setOperationAction(ISD::EH_LABEL,          MVT::Other, Expand);
130
131   // Use the default for now
132   setOperationAction(ISD::STACKSAVE,         MVT::Other, Expand);
133   setOperationAction(ISD::STACKRESTORE,      MVT::Other, Expand);
134   setOperationAction(ISD::MEMBARRIER,        MVT::Other, Expand);
135
136   if (Subtarget->isSingleFloat())
137     setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
138
139   if (!Subtarget->hasSEInReg()) {
140     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8,  Expand);
141     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
142   }
143
144   if (!Subtarget->hasBitCount())
145     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
146
147   if (!Subtarget->hasSwap())
148     setOperationAction(ISD::BSWAP, MVT::i32, Expand);
149
150   setStackPointerRegisterToSaveRestore(Mips::SP);
151   computeRegisterProperties();
152 }
153
154
155 MVT MipsTargetLowering::getSetCCResultType(MVT VT) const {
156   return MVT::i32;
157 }
158
159
160 SDValue MipsTargetLowering::
161 LowerOperation(SDValue Op, SelectionDAG &DAG) 
162 {
163   switch (Op.getOpcode()) 
164   {
165     case ISD::AND:                return LowerANDOR(Op, DAG);
166     case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
167     case ISD::CALL:               return LowerCALL(Op, DAG);
168     case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
169     case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
170     case ISD::FORMAL_ARGUMENTS:   return LowerFORMAL_ARGUMENTS(Op, DAG);
171     case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
172     case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
173     case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
174     case ISD::OR:                 return LowerANDOR(Op, DAG);
175     case ISD::RET:                return LowerRET(Op, DAG);
176     case ISD::SELECT:             return LowerSELECT(Op, DAG);
177     case ISD::SETCC:              return LowerSETCC(Op, DAG);
178   }
179   return SDValue();
180 }
181
182 //===----------------------------------------------------------------------===//
183 //  Lower helper functions
184 //===----------------------------------------------------------------------===//
185
186 // AddLiveIn - This helper function adds the specified physical register to the
187 // MachineFunction as a live in value.  It also creates a corresponding
188 // virtual register for it.
189 static unsigned
190 AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC) 
191 {
192   assert(RC->contains(PReg) && "Not the correct regclass!");
193   unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
194   MF.getRegInfo().addLiveIn(PReg, VReg);
195   return VReg;
196 }
197
198 // A address must be loaded from a small section if its size is less than the 
199 // small section size threshold. Data in this section must be addressed using 
200 // gp_rel operator.
201 bool MipsTargetLowering::IsInSmallSection(unsigned Size) {
202   return (Size > 0 && (Size <= Subtarget->getSSectionThreshold()));
203 }
204
205 // Discover if this global address can be placed into small data/bss section. 
206 bool MipsTargetLowering::IsGlobalInSmallSection(GlobalValue *GV)
207 {
208   const TargetData *TD = getTargetData();
209   const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
210
211   if (!GVA)
212     return false;
213   
214   const Type *Ty = GV->getType()->getElementType();
215   unsigned Size = TD->getTypePaddedSize(Ty);
216
217   // if this is a internal constant string, there is a special
218   // section for it, but not in small data/bss.
219   if (GVA->hasInitializer() && GV->hasLocalLinkage()) {
220     Constant *C = GVA->getInitializer();
221     const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
222     if (CVA && CVA->isCString()) 
223       return false;
224   }
225
226   return IsInSmallSection(Size);
227 }
228
229 // Get fp branch code (not opcode) from condition code.
230 static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
231   if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
232     return Mips::BRANCH_T;
233
234   if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
235     return Mips::BRANCH_F;
236
237   return Mips::BRANCH_INVALID;
238 }
239   
240 static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
241   switch(BC) {
242     default:
243       assert(0 && "Unknown branch code");
244     case Mips::BRANCH_T  : return Mips::BC1T;
245     case Mips::BRANCH_F  : return Mips::BC1F;
246     case Mips::BRANCH_TL : return Mips::BC1TL;
247     case Mips::BRANCH_FL : return Mips::BC1FL;
248   }
249 }
250
251 static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
252   switch (CC) {
253   default: assert(0 && "Unknown fp condition code!");
254   case ISD::SETEQ:  
255   case ISD::SETOEQ: return Mips::FCOND_EQ;
256   case ISD::SETUNE: return Mips::FCOND_OGL;
257   case ISD::SETLT:  
258   case ISD::SETOLT: return Mips::FCOND_OLT;
259   case ISD::SETGT:  
260   case ISD::SETOGT: return Mips::FCOND_OGT;
261   case ISD::SETLE:  
262   case ISD::SETOLE: return Mips::FCOND_OLE; 
263   case ISD::SETGE:
264   case ISD::SETOGE: return Mips::FCOND_OGE;
265   case ISD::SETULT: return Mips::FCOND_ULT;
266   case ISD::SETULE: return Mips::FCOND_ULE; 
267   case ISD::SETUGT: return Mips::FCOND_UGT;
268   case ISD::SETUGE: return Mips::FCOND_UGE;
269   case ISD::SETUO:  return Mips::FCOND_UN; 
270   case ISD::SETO:   return Mips::FCOND_OR;
271   case ISD::SETNE:  
272   case ISD::SETONE: return Mips::FCOND_NEQ;
273   case ISD::SETUEQ: return Mips::FCOND_UEQ;
274   }
275 }
276
277 MachineBasicBlock *
278 MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
279                                                 MachineBasicBlock *BB) 
280 {
281   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
282   bool isFPCmp = false;
283
284   switch (MI->getOpcode()) {
285   default: assert(false && "Unexpected instr type to insert");
286   case Mips::Select_FCC:
287   case Mips::Select_FCC_SO32:
288   case Mips::Select_FCC_AS32:
289   case Mips::Select_FCC_D32:
290     isFPCmp = true; // FALL THROUGH
291   case Mips::Select_CC:
292   case Mips::Select_CC_SO32:
293   case Mips::Select_CC_AS32:
294   case Mips::Select_CC_D32: {
295     // To "insert" a SELECT_CC instruction, we actually have to insert the
296     // diamond control-flow pattern.  The incoming instruction knows the
297     // destination vreg to set, the condition code register to branch on, the
298     // true/false values to select between, and a branch opcode to use.
299     const BasicBlock *LLVM_BB = BB->getBasicBlock();
300     MachineFunction::iterator It = BB;
301     ++It;
302
303     //  thisMBB:
304     //  ...
305     //   TrueVal = ...
306     //   setcc r1, r2, r3
307     //   bNE   r1, r0, copy1MBB
308     //   fallthrough --> copy0MBB
309     MachineBasicBlock *thisMBB  = BB;
310     MachineFunction *F = BB->getParent();
311     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
312     MachineBasicBlock *sinkMBB  = F->CreateMachineBasicBlock(LLVM_BB);
313
314     // Emit the right instruction according to the type of the operands compared
315     if (isFPCmp) {
316       // Find the condiction code present in the setcc operation.
317       Mips::CondCode CC = (Mips::CondCode)MI->getOperand(4).getImm();
318       // Get the branch opcode from the branch code.
319       unsigned Opc = FPBranchCodeToOpc(GetFPBranchCodeFromCond(CC));
320       BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
321     } else
322       BuildMI(BB, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg())
323         .addReg(Mips::ZERO).addMBB(sinkMBB);
324
325     F->insert(It, copy0MBB);
326     F->insert(It, sinkMBB);
327     // Update machine-CFG edges by first adding all successors of the current
328     // block to the new block which will contain the Phi node for the select.
329     for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
330         e = BB->succ_end(); i != e; ++i)
331       sinkMBB->addSuccessor(*i);
332     // Next, remove all successors of the current block, and add the true
333     // and fallthrough blocks as its successors.
334     while(!BB->succ_empty())
335       BB->removeSuccessor(BB->succ_begin());
336     BB->addSuccessor(copy0MBB);
337     BB->addSuccessor(sinkMBB);
338
339     //  copy0MBB:
340     //   %FalseValue = ...
341     //   # fallthrough to sinkMBB
342     BB = copy0MBB;
343
344     // Update machine-CFG edges
345     BB->addSuccessor(sinkMBB);
346
347     //  sinkMBB:
348     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
349     //  ...
350     BB = sinkMBB;
351     BuildMI(BB, TII->get(Mips::PHI), MI->getOperand(0).getReg())
352       .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
353       .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB);
354
355     F->DeleteMachineInstr(MI);   // The pseudo instruction is gone now.
356     return BB;
357   }
358   }
359 }
360
361 //===----------------------------------------------------------------------===//
362 //  Misc Lower Operation implementation
363 //===----------------------------------------------------------------------===//
364
365 SDValue MipsTargetLowering::
366 LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG)
367 {
368   SDValue Chain = Op.getOperand(0);
369   SDValue Size = Op.getOperand(1);
370
371   // Get a reference from Mips stack pointer
372   SDValue StackPointer = DAG.getCopyFromReg(Chain, Mips::SP, MVT::i32);
373
374   // Subtract the dynamic size from the actual stack size to
375   // obtain the new stack size.
376   SDValue Sub = DAG.getNode(ISD::SUB, MVT::i32, StackPointer, Size);
377
378   // The Sub result contains the new stack start address, so it 
379   // must be placed in the stack pointer register.
380   Chain = DAG.getCopyToReg(StackPointer.getValue(1), Mips::SP, Sub);
381   
382   // This node always has two return values: a new stack pointer 
383   // value and a chain
384   SDValue Ops[2] = { Sub, Chain };
385   return DAG.getMergeValues(Ops, 2);
386 }
387
388 SDValue MipsTargetLowering::
389 LowerANDOR(SDValue Op, SelectionDAG &DAG)
390 {
391   SDValue LHS   = Op.getOperand(0);
392   SDValue RHS   = Op.getOperand(1);
393   
394   if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp)
395     return Op;
396
397   SDValue True  = DAG.getConstant(1, MVT::i32);
398   SDValue False = DAG.getConstant(0, MVT::i32);
399
400   SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(), 
401                              LHS, True, False, LHS.getOperand(2));
402   SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(), 
403                              RHS, True, False, RHS.getOperand(2));
404
405   return DAG.getNode(Op.getOpcode(), MVT::i32, LSEL, RSEL);
406 }
407
408 SDValue MipsTargetLowering::
409 LowerBRCOND(SDValue Op, SelectionDAG &DAG)
410 {
411   // The first operand is the chain, the second is the condition, the third is 
412   // the block to branch to if the condition is true.
413   SDValue Chain = Op.getOperand(0);
414   SDValue Dest = Op.getOperand(2);
415
416   if (Op.getOperand(1).getOpcode() != MipsISD::FPCmp)
417     return Op;
418   
419   SDValue CondRes = Op.getOperand(1);
420   SDValue CCNode  = CondRes.getOperand(2);
421   Mips::CondCode CC =
422     (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getZExtValue();
423   SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32); 
424
425   return DAG.getNode(MipsISD::FPBrcond, Op.getValueType(), Chain, BrCode, 
426              Dest, CondRes);
427 }
428
429 SDValue MipsTargetLowering::
430 LowerSETCC(SDValue Op, SelectionDAG &DAG)
431 {
432   // The operands to this are the left and right operands to compare (ops #0, 
433   // and #1) and the condition code to compare them with (op #2) as a 
434   // CondCodeSDNode.
435   SDValue LHS = Op.getOperand(0); 
436   SDValue RHS = Op.getOperand(1); 
437
438   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
439   
440   return DAG.getNode(MipsISD::FPCmp, Op.getValueType(), LHS, RHS, 
441                  DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
442 }
443
444 SDValue MipsTargetLowering::
445 LowerSELECT(SDValue Op, SelectionDAG &DAG) 
446 {
447   SDValue Cond  = Op.getOperand(0); 
448   SDValue True  = Op.getOperand(1);
449   SDValue False = Op.getOperand(2);
450
451   // if the incomming condition comes from a integer compare, the select 
452   // operation must be SelectCC or a conditional move if the subtarget 
453   // supports it.
454   if (Cond.getOpcode() != MipsISD::FPCmp) {
455     if (Subtarget->hasCondMov() && !True.getValueType().isFloatingPoint())
456       return Op;
457     return DAG.getNode(MipsISD::SelectCC, True.getValueType(), 
458                        Cond, True, False);
459   }
460
461   // if the incomming condition comes from fpcmp, the select
462   // operation must use FPSelectCC.
463   SDValue CCNode = Cond.getOperand(2);
464   return DAG.getNode(MipsISD::FPSelectCC, True.getValueType(), 
465                      Cond, True, False, CCNode);
466 }
467
468 SDValue MipsTargetLowering::
469 LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) 
470 {
471   GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
472   SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
473
474   if (!Subtarget->hasABICall()) {
475     const MVT *VTs = DAG.getNodeValueTypes(MVT::i32);
476     SDValue Ops[] = { GA };
477     // %gp_rel relocation
478     if (!isa<Function>(GV) && IsGlobalInSmallSection(GV)) { 
479       SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, VTs, 1, Ops, 1);
480       SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
481       return DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode); 
482     }
483     // %hi/%lo relocation
484     SDValue HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1);
485     SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA);
486     return DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
487
488   } else { // Abicall relocations, TODO: make this cleaner.
489     SDValue ResNode = DAG.getLoad(MVT::i32, DAG.getEntryNode(), GA, NULL, 0);
490     // On functions and global targets not internal linked only
491     // a load from got/GP is necessary for PIC to work.
492     if (!GV->hasLocalLinkage() || isa<Function>(GV))
493       return ResNode;
494     SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA);
495     return DAG.getNode(ISD::ADD, MVT::i32, ResNode, Lo);
496   }
497
498   assert(0 && "Dont know how to handle GlobalAddress");
499   return SDValue(0,0);
500 }
501
502 SDValue MipsTargetLowering::
503 LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
504 {
505   assert(0 && "TLS not implemented for MIPS.");
506   return SDValue(); // Not reached
507 }
508
509 SDValue MipsTargetLowering::
510 LowerJumpTable(SDValue Op, SelectionDAG &DAG) 
511 {
512   SDValue ResNode;
513   SDValue HiPart; 
514
515   MVT PtrVT = Op.getValueType();
516   JumpTableSDNode *JT  = cast<JumpTableSDNode>(Op);
517   SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
518
519   if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
520     const MVT *VTs = DAG.getNodeValueTypes(MVT::i32);
521     SDValue Ops[] = { JTI };
522     HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1);
523   } else // Emit Load from Global Pointer
524     HiPart = DAG.getLoad(MVT::i32, DAG.getEntryNode(), JTI, NULL, 0);
525
526   SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, JTI);
527   ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
528
529   return ResNode;
530 }
531
532 SDValue MipsTargetLowering::
533 LowerConstantPool(SDValue Op, SelectionDAG &DAG) 
534 {
535   SDValue ResNode;
536   ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
537   Constant *C = N->getConstVal();
538   SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment());
539
540   // gp_rel relocation
541   // FIXME: we should reference the constant pool using small data sections, 
542   // but the asm printer currently doens't support this feature without
543   // hacking it. This feature should come soon so we can uncomment the 
544   // stuff below.
545   //if (!Subtarget->hasABICall() &&  
546   //    IsInSmallSection(getTargetData()->getTypePaddedSize(C->getType()))) {
547   //  SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
548   //  SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
549   //  ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode); 
550   //} else { // %hi/%lo relocation
551     SDValue HiPart = DAG.getNode(MipsISD::Hi, MVT::i32, CP);
552     SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, CP);
553     ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
554   //}
555
556   return ResNode;
557 }
558
559 //===----------------------------------------------------------------------===//
560 //                      Calling Convention Implementation
561 //
562 //  The lower operations present on calling convention works on this order:
563 //      LowerCALL (virt regs --> phys regs, virt regs --> stack) 
564 //      LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs)
565 //      LowerRET (virt regs --> phys regs)
566 //      LowerCALL (phys regs --> virt regs)
567 //
568 //===----------------------------------------------------------------------===//
569
570 #include "MipsGenCallingConv.inc"
571
572 //===----------------------------------------------------------------------===//
573 //                  CALL Calling Convention Implementation
574 //===----------------------------------------------------------------------===//
575
576 /// LowerCALL - functions arguments are copied from virtual regs to 
577 /// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
578 /// TODO: isVarArg, isTailCall.
579 SDValue MipsTargetLowering::
580 LowerCALL(SDValue Op, SelectionDAG &DAG)
581 {
582   MachineFunction &MF = DAG.getMachineFunction();
583
584   CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
585   SDValue Chain = TheCall->getChain();
586   SDValue Callee = TheCall->getCallee();
587   bool isVarArg = TheCall->isVarArg();
588   unsigned CC = TheCall->getCallingConv();
589
590   MachineFrameInfo *MFI = MF.getFrameInfo();
591
592   // Analyze operands of the call, assigning locations to each operand.
593   SmallVector<CCValAssign, 16> ArgLocs;
594   CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
595
596   // To meet O32 ABI, Mips must always allocate 16 bytes on
597   // the stack (even if less than 4 are used as arguments)
598   if (Subtarget->isABI_O32()) {
599     int VTsize = MVT(MVT::i32).getSizeInBits()/8;
600     MFI->CreateFixedObject(VTsize, (VTsize*3));
601   }
602
603   CCInfo.AnalyzeCallOperands(TheCall, CC_Mips);
604   
605   // Get a count of how many bytes are to be pushed on the stack.
606   unsigned NumBytes = CCInfo.getNextStackOffset();
607   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
608
609   // With EABI is it possible to have 16 args on registers.
610   SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
611   SmallVector<SDValue, 8> MemOpChains;
612
613   // First/LastArgStackLoc contains the first/last 
614   // "at stack" argument location.
615   int LastArgStackLoc = 0;
616   unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
617
618   // Walk the register/memloc assignments, inserting copies/loads.
619   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
620     CCValAssign &VA = ArgLocs[i];
621
622     // Arguments start after the 5 first operands of ISD::CALL
623     SDValue Arg = TheCall->getArg(i);
624     
625     // Promote the value if needed.
626     switch (VA.getLocInfo()) {
627     default: assert(0 && "Unknown loc info!");
628     case CCValAssign::Full: break;
629     case CCValAssign::SExt:
630       Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
631       break;
632     case CCValAssign::ZExt:
633       Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
634       break;
635     case CCValAssign::AExt:
636       Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
637       break;
638     }
639     
640     // Arguments that can be passed on register must be kept at 
641     // RegsToPass vector
642     if (VA.isRegLoc()) {
643       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
644       continue;
645     }
646     
647     // Register cant get to this point...
648     assert(VA.isMemLoc());
649     
650     // Create the frame index object for this incoming parameter
651     // This guarantees that when allocating Local Area the firsts
652     // 16 bytes which are alwayes reserved won't be overwritten
653     // if O32 ABI is used. For EABI the first address is zero.
654     LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
655     int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
656                                     LastArgStackLoc);
657
658     SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
659
660     // emit ISD::STORE whichs stores the 
661     // parameter value to a stack Location
662     MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
663   }
664
665   // Transform all store nodes into one single node because all store
666   // nodes are independent of each other.
667   if (!MemOpChains.empty())     
668     Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, 
669                         &MemOpChains[0], MemOpChains.size());
670
671   // Build a sequence of copy-to-reg nodes chained together with token 
672   // chain and flag operands which copy the outgoing args into registers.
673   // The InFlag in necessary since all emited instructions must be
674   // stuck together.
675   SDValue InFlag;
676   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
677     Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, 
678                              RegsToPass[i].second, InFlag);
679     InFlag = Chain.getValue(1);
680   }
681
682   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
683   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol 
684   // node so that legalize doesn't hack it. 
685   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) 
686     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
687   else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
688     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
689
690
691   // MipsJmpLink = #chain, #target_address, #opt_in_flags...
692   //             = Chain, Callee, Reg#1, Reg#2, ...  
693   //
694   // Returns a chain & a flag for retval copy to use.
695   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
696   SmallVector<SDValue, 8> Ops;
697   Ops.push_back(Chain);
698   Ops.push_back(Callee);
699
700   // Add argument registers to the end of the list so that they are 
701   // known live into the call.
702   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
703     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
704                                   RegsToPass[i].second.getValueType()));
705
706   if (InFlag.getNode())
707     Ops.push_back(InFlag);
708
709   Chain  = DAG.getNode(MipsISD::JmpLink, NodeTys, &Ops[0], Ops.size());
710   InFlag = Chain.getValue(1);
711
712   // Create the CALLSEQ_END node.
713   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
714                              DAG.getIntPtrConstant(0, true), InFlag);
715   InFlag = Chain.getValue(1);
716
717   // Create a stack location to hold GP when PIC is used. This stack 
718   // location is used on function prologue to save GP and also after all 
719   // emited CALL's to restore GP. 
720   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
721       // Function can have an arbitrary number of calls, so 
722       // hold the LastArgStackLoc with the biggest offset.
723       int FI;
724       MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
725       if (LastArgStackLoc >= MipsFI->getGPStackOffset()) {
726         LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4);
727         // Create the frame index only once. SPOffset here can be anything 
728         // (this will be fixed on processFunctionBeforeFrameFinalized)
729         if (MipsFI->getGPStackOffset() == -1) {
730           FI = MFI->CreateFixedObject(4, 0);
731           MipsFI->setGPFI(FI);
732         }
733         MipsFI->setGPStackOffset(LastArgStackLoc);
734       }
735
736       // Reload GP value.
737       FI = MipsFI->getGPFI();
738       SDValue FIN = DAG.getFrameIndex(FI,getPointerTy());
739       SDValue GPLoad = DAG.getLoad(MVT::i32, Chain, FIN, NULL, 0);
740       Chain = GPLoad.getValue(1);
741       Chain = DAG.getCopyToReg(Chain, DAG.getRegister(Mips::GP, MVT::i32), 
742                                GPLoad, SDValue(0,0));
743       InFlag = Chain.getValue(1);
744   }      
745
746   // Handle result values, copying them out of physregs into vregs that we
747   // return.
748   return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG), Op.getResNo());
749 }
750
751 /// LowerCallResult - Lower the result values of an ISD::CALL into the
752 /// appropriate copies out of appropriate physical registers.  This assumes that
753 /// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
754 /// being lowered. Returns a SDNode with the same number of values as the 
755 /// ISD::CALL.
756 SDNode *MipsTargetLowering::
757 LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall, 
758         unsigned CallingConv, SelectionDAG &DAG) {
759   
760   bool isVarArg = TheCall->isVarArg();
761
762   // Assign locations to each value returned by this call.
763   SmallVector<CCValAssign, 16> RVLocs;
764   CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
765
766   CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips);
767   SmallVector<SDValue, 8> ResultVals;
768
769   // Copy all of the result registers out of their specified physreg.
770   for (unsigned i = 0; i != RVLocs.size(); ++i) {
771     Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(),
772                                  RVLocs[i].getValVT(), InFlag).getValue(1);
773     InFlag = Chain.getValue(2);
774     ResultVals.push_back(Chain.getValue(0));
775   }
776   
777   ResultVals.push_back(Chain);
778
779   // Merge everything together with a MERGE_VALUES node.
780   return DAG.getNode(ISD::MERGE_VALUES, TheCall->getVTList(),
781                      &ResultVals[0], ResultVals.size()).getNode();
782 }
783
784 //===----------------------------------------------------------------------===//
785 //             FORMAL_ARGUMENTS Calling Convention Implementation
786 //===----------------------------------------------------------------------===//
787
788 /// LowerFORMAL_ARGUMENTS - transform physical registers into
789 /// virtual registers and generate load operations for
790 /// arguments places on the stack.
791 /// TODO: isVarArg
792 SDValue MipsTargetLowering::
793 LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) 
794 {
795   SDValue Root = Op.getOperand(0);
796   MachineFunction &MF = DAG.getMachineFunction();
797   MachineFrameInfo *MFI = MF.getFrameInfo();
798   MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
799
800   bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
801   unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
802
803   unsigned StackReg = MF.getTarget().getRegisterInfo()->getFrameRegister(MF);
804
805   // GP must be live into PIC and non-PIC call target.
806   AddLiveIn(MF, Mips::GP, Mips::CPURegsRegisterClass);
807
808   // Assign locations to all of the incoming arguments.
809   SmallVector<CCValAssign, 16> ArgLocs;
810   CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
811
812   CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_Mips);
813   SmallVector<SDValue, 16> ArgValues;
814   SDValue StackPtr;
815
816   unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
817
818   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
819
820     CCValAssign &VA = ArgLocs[i];
821
822     // Arguments stored on registers
823     if (VA.isRegLoc()) {
824       MVT RegVT = VA.getLocVT();
825       TargetRegisterClass *RC = 0;
826             
827       if (RegVT == MVT::i32)
828         RC = Mips::CPURegsRegisterClass; 
829       else if (RegVT == MVT::f32) {
830         if (Subtarget->isSingleFloat())
831           RC = Mips::FGR32RegisterClass;
832         else
833           RC = Mips::AFGR32RegisterClass;
834       } else if (RegVT == MVT::f64) {
835         if (!Subtarget->isSingleFloat()) 
836           RC = Mips::AFGR64RegisterClass;
837       } else  
838         assert(0 && "RegVT not supported by FORMAL_ARGUMENTS Lowering");
839
840       // Transform the arguments stored on 
841       // physical registers into virtual ones
842       unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
843       SDValue ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
844       
845       // If this is an 8 or 16-bit value, it is really passed promoted 
846       // to 32 bits.  Insert an assert[sz]ext to capture this, then 
847       // truncate to the right size.
848       if (VA.getLocInfo() == CCValAssign::SExt)
849         ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
850                                DAG.getValueType(VA.getValVT()));
851       else if (VA.getLocInfo() == CCValAssign::ZExt)
852         ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
853                                DAG.getValueType(VA.getValVT()));
854       
855       if (VA.getLocInfo() != CCValAssign::Full)
856         ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
857
858       ArgValues.push_back(ArgValue);
859
860       // To meet ABI, when VARARGS are passed on registers, the registers
861       // must have their values written to the caller stack frame. 
862       if ((isVarArg) && (Subtarget->isABI_O32())) {
863         if (StackPtr.getNode() == 0)
864           StackPtr = DAG.getRegister(StackReg, getPointerTy());
865      
866         // The stack pointer offset is relative to the caller stack frame. 
867         // Since the real stack size is unknown here, a negative SPOffset 
868         // is used so there's a way to adjust these offsets when the stack
869         // size get known (on EliminateFrameIndex). A dummy SPOffset is 
870         // used instead of a direct negative address (which is recorded to
871         // be used on emitPrologue) to avoid mis-calc of the first stack 
872         // offset on PEI::calculateFrameObjectOffsets.
873         // Arguments are always 32-bit.
874         int FI = MFI->CreateFixedObject(4, 0);
875         MipsFI->recordStoreVarArgsFI(FI, -(4+(i*4)));
876         SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy());
877       
878         // emit ISD::STORE whichs stores the 
879         // parameter value to a stack Location
880         ArgValues.push_back(DAG.getStore(Root, ArgValue, PtrOff, NULL, 0));
881       }
882
883     } else { // VA.isRegLoc()
884
885       // sanity check
886       assert(VA.isMemLoc());
887       
888       // The stack pointer offset is relative to the caller stack frame. 
889       // Since the real stack size is unknown here, a negative SPOffset 
890       // is used so there's a way to adjust these offsets when the stack
891       // size get known (on EliminateFrameIndex). A dummy SPOffset is 
892       // used instead of a direct negative address (which is recorded to
893       // be used on emitPrologue) to avoid mis-calc of the first stack 
894       // offset on PEI::calculateFrameObjectOffsets.
895       // Arguments are always 32-bit.
896       unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
897       int FI = MFI->CreateFixedObject(ArgSize, 0);
898       MipsFI->recordLoadArgsFI(FI, -(ArgSize+
899         (FirstStackArgLoc + VA.getLocMemOffset())));
900
901       // Create load nodes to retrieve arguments from the stack
902       SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
903       ArgValues.push_back(DAG.getLoad(VA.getValVT(), Root, FIN, NULL, 0));
904     }
905   }
906
907   // The mips ABIs for returning structs by value requires that we copy
908   // the sret argument into $v0 for the return. Save the argument into
909   // a virtual register so that we can access it from the return points.
910   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
911     unsigned Reg = MipsFI->getSRetReturnReg();
912     if (!Reg) {
913       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32));
914       MipsFI->setSRetReturnReg(Reg);
915     }
916     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), Reg, ArgValues[0]);
917     Root = DAG.getNode(ISD::TokenFactor, MVT::Other, Copy, Root);
918   }
919
920   ArgValues.push_back(Root);
921
922   // Return the new list of results.
923   return DAG.getNode(ISD::MERGE_VALUES, Op.getNode()->getVTList(),
924                      &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
925 }
926
927 //===----------------------------------------------------------------------===//
928 //               Return Value Calling Convention Implementation
929 //===----------------------------------------------------------------------===//
930
931 SDValue MipsTargetLowering::
932 LowerRET(SDValue Op, SelectionDAG &DAG)
933 {
934   // CCValAssign - represent the assignment of
935   // the return value to a location
936   SmallVector<CCValAssign, 16> RVLocs;
937   unsigned CC   = DAG.getMachineFunction().getFunction()->getCallingConv();
938   bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
939
940   // CCState - Info about the registers and stack slot.
941   CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
942
943   // Analize return values of ISD::RET
944   CCInfo.AnalyzeReturn(Op.getNode(), RetCC_Mips);
945
946   // If this is the first return lowered for this function, add 
947   // the regs to the liveout set for the function.
948   if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
949     for (unsigned i = 0; i != RVLocs.size(); ++i)
950       if (RVLocs[i].isRegLoc())
951         DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
952   }
953
954   // The chain is always operand #0
955   SDValue Chain = Op.getOperand(0);
956   SDValue Flag;
957
958   // Copy the result values into the output registers.
959   for (unsigned i = 0; i != RVLocs.size(); ++i) {
960     CCValAssign &VA = RVLocs[i];
961     assert(VA.isRegLoc() && "Can only return in registers!");
962
963     // ISD::RET => ret chain, (regnum1,val1), ...
964     // So i*2+1 index only the regnums
965     Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), Op.getOperand(i*2+1), Flag);
966
967     // guarantee that all emitted copies are
968     // stuck together, avoiding something bad
969     Flag = Chain.getValue(1);
970   }
971
972   // The mips ABIs for returning structs by value requires that we copy
973   // the sret argument into $v0 for the return. We saved the argument into
974   // a virtual register in the entry block, so now we copy the value out
975   // and into $v0.
976   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
977     MachineFunction &MF      = DAG.getMachineFunction();
978     MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
979     unsigned Reg = MipsFI->getSRetReturnReg();
980
981     if (!Reg) 
982       assert(0 && "sret virtual register not created in the entry block");
983     SDValue Val = DAG.getCopyFromReg(Chain, Reg, getPointerTy());
984
985     Chain = DAG.getCopyToReg(Chain, Mips::V0, Val, Flag);
986     Flag = Chain.getValue(1);
987   }
988
989   // Return on Mips is always a "jr $ra"
990   if (Flag.getNode())
991     return DAG.getNode(MipsISD::Ret, MVT::Other, 
992                        Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
993   else // Return Void
994     return DAG.getNode(MipsISD::Ret, MVT::Other, 
995                        Chain, DAG.getRegister(Mips::RA, MVT::i32));
996 }
997
998 //===----------------------------------------------------------------------===//
999 //                           Mips Inline Assembly Support
1000 //===----------------------------------------------------------------------===//
1001
1002 /// getConstraintType - Given a constraint letter, return the type of
1003 /// constraint it is for this target.
1004 MipsTargetLowering::ConstraintType MipsTargetLowering::
1005 getConstraintType(const std::string &Constraint) const 
1006 {
1007   // Mips specific constrainy 
1008   // GCC config/mips/constraints.md
1009   //
1010   // 'd' : An address register. Equivalent to r 
1011   //       unless generating MIPS16 code. 
1012   // 'y' : Equivalent to r; retained for 
1013   //       backwards compatibility. 
1014   // 'f' : Floating Point registers.      
1015   if (Constraint.size() == 1) {
1016     switch (Constraint[0]) {
1017       default : break;
1018       case 'd':     
1019       case 'y': 
1020       case 'f':
1021         return C_RegisterClass;
1022         break;
1023     }
1024   }
1025   return TargetLowering::getConstraintType(Constraint);
1026 }
1027
1028 /// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1029 /// return a list of registers that can be used to satisfy the constraint.
1030 /// This should only be used for C_RegisterClass constraints.
1031 std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
1032 getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const
1033 {
1034   if (Constraint.size() == 1) {
1035     switch (Constraint[0]) {
1036     case 'r':
1037       return std::make_pair(0U, Mips::CPURegsRegisterClass);
1038     case 'f':
1039       if (VT == MVT::f32) {
1040         if (Subtarget->isSingleFloat())
1041           return std::make_pair(0U, Mips::FGR32RegisterClass);
1042         else
1043           return std::make_pair(0U, Mips::AFGR32RegisterClass);
1044       }
1045       if (VT == MVT::f64)    
1046         if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1047           return std::make_pair(0U, Mips::AFGR64RegisterClass);
1048     }
1049   }
1050   return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1051 }
1052
1053 /// Given a register class constraint, like 'r', if this corresponds directly
1054 /// to an LLVM register class, return a register of 0 and the register class
1055 /// pointer.
1056 std::vector<unsigned> MipsTargetLowering::
1057 getRegClassForInlineAsmConstraint(const std::string &Constraint,
1058                                   MVT VT) const
1059 {
1060   if (Constraint.size() != 1)
1061     return std::vector<unsigned>();
1062
1063   switch (Constraint[0]) {         
1064     default : break;
1065     case 'r':
1066     // GCC Mips Constraint Letters
1067     case 'd':     
1068     case 'y': 
1069       return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3, 
1070              Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1, 
1071              Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7, 
1072              Mips::T8, 0);
1073
1074     case 'f':
1075       if (VT == MVT::f32) {
1076         if (Subtarget->isSingleFloat())
1077           return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1078                  Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1079                  Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1080                  Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1081                  Mips::F30, Mips::F31, 0);
1082         else
1083           return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8, 
1084                  Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26, 
1085                  Mips::F28, Mips::F30, 0);
1086       }
1087
1088       if (VT == MVT::f64)    
1089         if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1090           return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4, 
1091                  Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13, 
1092                  Mips::D14, Mips::D15, 0);
1093   }
1094   return std::vector<unsigned>();
1095 }
1096
1097 bool
1098 MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1099   // The Mips target isn't yet aware of offsets.
1100   return false;
1101 }