Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / lib / Target / Mips / MipsISelLowering.cpp
blobab3f144df2a4ca7463de546540437f4a64cb8c78
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.
13 //===----------------------------------------------------------------------===//
15 #define DEBUG_TYPE "mips-lower"
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/Target/TargetLoweringObjectFile.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/ErrorHandling.h"
36 using namespace llvm;
38 const char *MipsTargetLowering::getTargetNodeName(unsigned Opcode) const {
39 switch (Opcode) {
40 case MipsISD::JmpLink : return "MipsISD::JmpLink";
41 case MipsISD::Hi : return "MipsISD::Hi";
42 case MipsISD::Lo : return "MipsISD::Lo";
43 case MipsISD::GPRel : return "MipsISD::GPRel";
44 case MipsISD::Ret : return "MipsISD::Ret";
45 case MipsISD::CMov : return "MipsISD::CMov";
46 case MipsISD::SelectCC : return "MipsISD::SelectCC";
47 case MipsISD::FPSelectCC : return "MipsISD::FPSelectCC";
48 case MipsISD::FPBrcond : return "MipsISD::FPBrcond";
49 case MipsISD::FPCmp : return "MipsISD::FPCmp";
50 case MipsISD::FPRound : return "MipsISD::FPRound";
51 default : return NULL;
55 MipsTargetLowering::
56 MipsTargetLowering(MipsTargetMachine &TM)
57 : TargetLowering(TM, new TargetLoweringObjectFileELF()) {
58 Subtarget = &TM.getSubtarget<MipsSubtarget>();
60 // Mips does not have i1 type, so use i32 for
61 // setcc operations results (slt, sgt, ...).
62 setBooleanContents(ZeroOrOneBooleanContent);
64 // JumpTable targets must use GOT when using PIC_
65 setUsesGlobalOffsetTable(true);
67 // Set up the register classes
68 addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass);
69 addRegisterClass(MVT::f32, Mips::FGR32RegisterClass);
71 // When dealing with single precision only, use libcalls
72 if (!Subtarget->isSingleFloat())
73 if (!Subtarget->isFP64bit())
74 addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass);
76 // Legal fp constants
77 addLegalFPImmediate(APFloat(+0.0f));
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);
84 // MIPS doesn't have extending float->double load/store
85 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
86 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
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);
94 // Mips Custom Operations
95 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
96 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
97 setOperationAction(ISD::RET, MVT::Other, Custom);
98 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
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::SETCC, MVT::f32, Custom);
104 setOperationAction(ISD::SETCC, MVT::f64, Custom);
105 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
106 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
107 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
109 // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors'
110 // with operands comming from setcc fp comparions. This is necessary since
111 // the result from these setcc are in a flag registers (FCR31).
112 setOperationAction(ISD::AND, MVT::i32, Custom);
113 setOperationAction(ISD::OR, MVT::i32, Custom);
115 // Operations not directly supported by Mips.
116 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
117 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
118 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
119 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
120 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
121 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
122 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
123 setOperationAction(ISD::CTTZ, MVT::i32, Expand);
124 setOperationAction(ISD::ROTL, MVT::i32, Expand);
125 setOperationAction(ISD::ROTR, MVT::i32, Expand);
126 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
127 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
128 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
129 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
130 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
131 setOperationAction(ISD::FSIN, MVT::f32, Expand);
132 setOperationAction(ISD::FCOS, MVT::f32, Expand);
133 setOperationAction(ISD::FPOWI, MVT::f32, Expand);
134 setOperationAction(ISD::FPOW, MVT::f32, Expand);
135 setOperationAction(ISD::FLOG, MVT::f32, Expand);
136 setOperationAction(ISD::FLOG2, MVT::f32, Expand);
137 setOperationAction(ISD::FLOG10, MVT::f32, Expand);
138 setOperationAction(ISD::FEXP, MVT::f32, Expand);
140 // We don't have line number support yet.
141 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
142 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
143 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
144 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
146 // Use the default for now
147 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
148 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
149 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
151 if (Subtarget->isSingleFloat())
152 setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
154 if (!Subtarget->hasSEInReg()) {
155 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
156 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
159 if (!Subtarget->hasBitCount())
160 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
162 if (!Subtarget->hasSwap())
163 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
165 setStackPointerRegisterToSaveRestore(Mips::SP);
166 computeRegisterProperties();
169 MVT MipsTargetLowering::getSetCCResultType(MVT VT) const {
170 return MVT::i32;
173 /// getFunctionAlignment - Return the Log2 alignment of this function.
174 unsigned MipsTargetLowering::getFunctionAlignment(const Function *) const {
175 return 2;
178 SDValue MipsTargetLowering::
179 LowerOperation(SDValue Op, SelectionDAG &DAG)
181 switch (Op.getOpcode())
183 case ISD::AND: return LowerANDOR(Op, DAG);
184 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
185 case ISD::CALL: return LowerCALL(Op, DAG);
186 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
187 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
188 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
189 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
190 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
191 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
192 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
193 case ISD::OR: return LowerANDOR(Op, DAG);
194 case ISD::RET: return LowerRET(Op, DAG);
195 case ISD::SELECT: return LowerSELECT(Op, DAG);
196 case ISD::SETCC: return LowerSETCC(Op, DAG);
198 return SDValue();
201 //===----------------------------------------------------------------------===//
202 // Lower helper functions
203 //===----------------------------------------------------------------------===//
205 // AddLiveIn - This helper function adds the specified physical register to the
206 // MachineFunction as a live in value. It also creates a corresponding
207 // virtual register for it.
208 static unsigned
209 AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
211 assert(RC->contains(PReg) && "Not the correct regclass!");
212 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
213 MF.getRegInfo().addLiveIn(PReg, VReg);
214 return VReg;
217 // Get fp branch code (not opcode) from condition code.
218 static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
219 if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
220 return Mips::BRANCH_T;
222 if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
223 return Mips::BRANCH_F;
225 return Mips::BRANCH_INVALID;
228 static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
229 switch(BC) {
230 default:
231 llvm_unreachable("Unknown branch code");
232 case Mips::BRANCH_T : return Mips::BC1T;
233 case Mips::BRANCH_F : return Mips::BC1F;
234 case Mips::BRANCH_TL : return Mips::BC1TL;
235 case Mips::BRANCH_FL : return Mips::BC1FL;
239 static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
240 switch (CC) {
241 default: llvm_unreachable("Unknown fp condition code!");
242 case ISD::SETEQ:
243 case ISD::SETOEQ: return Mips::FCOND_EQ;
244 case ISD::SETUNE: return Mips::FCOND_OGL;
245 case ISD::SETLT:
246 case ISD::SETOLT: return Mips::FCOND_OLT;
247 case ISD::SETGT:
248 case ISD::SETOGT: return Mips::FCOND_OGT;
249 case ISD::SETLE:
250 case ISD::SETOLE: return Mips::FCOND_OLE;
251 case ISD::SETGE:
252 case ISD::SETOGE: return Mips::FCOND_OGE;
253 case ISD::SETULT: return Mips::FCOND_ULT;
254 case ISD::SETULE: return Mips::FCOND_ULE;
255 case ISD::SETUGT: return Mips::FCOND_UGT;
256 case ISD::SETUGE: return Mips::FCOND_UGE;
257 case ISD::SETUO: return Mips::FCOND_UN;
258 case ISD::SETO: return Mips::FCOND_OR;
259 case ISD::SETNE:
260 case ISD::SETONE: return Mips::FCOND_NEQ;
261 case ISD::SETUEQ: return Mips::FCOND_UEQ;
265 MachineBasicBlock *
266 MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
267 MachineBasicBlock *BB) const {
268 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
269 bool isFPCmp = false;
270 DebugLoc dl = MI->getDebugLoc();
272 switch (MI->getOpcode()) {
273 default: assert(false && "Unexpected instr type to insert");
274 case Mips::Select_FCC:
275 case Mips::Select_FCC_S32:
276 case Mips::Select_FCC_D32:
277 isFPCmp = true; // FALL THROUGH
278 case Mips::Select_CC:
279 case Mips::Select_CC_S32:
280 case Mips::Select_CC_D32: {
281 // To "insert" a SELECT_CC instruction, we actually have to insert the
282 // diamond control-flow pattern. The incoming instruction knows the
283 // destination vreg to set, the condition code register to branch on, the
284 // true/false values to select between, and a branch opcode to use.
285 const BasicBlock *LLVM_BB = BB->getBasicBlock();
286 MachineFunction::iterator It = BB;
287 ++It;
289 // thisMBB:
290 // ...
291 // TrueVal = ...
292 // setcc r1, r2, r3
293 // bNE r1, r0, copy1MBB
294 // fallthrough --> copy0MBB
295 MachineBasicBlock *thisMBB = BB;
296 MachineFunction *F = BB->getParent();
297 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
298 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
300 // Emit the right instruction according to the type of the operands compared
301 if (isFPCmp) {
302 // Find the condiction code present in the setcc operation.
303 Mips::CondCode CC = (Mips::CondCode)MI->getOperand(4).getImm();
304 // Get the branch opcode from the branch code.
305 unsigned Opc = FPBranchCodeToOpc(GetFPBranchCodeFromCond(CC));
306 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
307 } else
308 BuildMI(BB, dl, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg())
309 .addReg(Mips::ZERO).addMBB(sinkMBB);
311 F->insert(It, copy0MBB);
312 F->insert(It, sinkMBB);
313 // Update machine-CFG edges by first adding all successors of the current
314 // block to the new block which will contain the Phi node for the select.
315 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
316 e = BB->succ_end(); i != e; ++i)
317 sinkMBB->addSuccessor(*i);
318 // Next, remove all successors of the current block, and add the true
319 // and fallthrough blocks as its successors.
320 while(!BB->succ_empty())
321 BB->removeSuccessor(BB->succ_begin());
322 BB->addSuccessor(copy0MBB);
323 BB->addSuccessor(sinkMBB);
325 // copy0MBB:
326 // %FalseValue = ...
327 // # fallthrough to sinkMBB
328 BB = copy0MBB;
330 // Update machine-CFG edges
331 BB->addSuccessor(sinkMBB);
333 // sinkMBB:
334 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
335 // ...
336 BB = sinkMBB;
337 BuildMI(BB, dl, TII->get(Mips::PHI), MI->getOperand(0).getReg())
338 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
339 .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB);
341 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
342 return BB;
347 //===----------------------------------------------------------------------===//
348 // Misc Lower Operation implementation
349 //===----------------------------------------------------------------------===//
351 SDValue MipsTargetLowering::
352 LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG)
354 if (!Subtarget->isMips1())
355 return Op;
357 MachineFunction &MF = DAG.getMachineFunction();
358 unsigned CCReg = AddLiveIn(MF, Mips::FCR31, Mips::CCRRegisterClass);
360 SDValue Chain = DAG.getEntryNode();
361 DebugLoc dl = Op.getDebugLoc();
362 SDValue Src = Op.getOperand(0);
364 // Set the condition register
365 SDValue CondReg = DAG.getCopyFromReg(Chain, dl, CCReg, MVT::i32);
366 CondReg = DAG.getCopyToReg(Chain, dl, Mips::AT, CondReg);
367 CondReg = DAG.getCopyFromReg(CondReg, dl, Mips::AT, MVT::i32);
369 SDValue Cst = DAG.getConstant(3, MVT::i32);
370 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i32, CondReg, Cst);
371 Cst = DAG.getConstant(2, MVT::i32);
372 SDValue Xor = DAG.getNode(ISD::XOR, dl, MVT::i32, Or, Cst);
374 SDValue InFlag(0, 0);
375 CondReg = DAG.getCopyToReg(Chain, dl, Mips::FCR31, Xor, InFlag);
377 // Emit the round instruction and bit convert to integer
378 SDValue Trunc = DAG.getNode(MipsISD::FPRound, dl, MVT::f32,
379 Src, CondReg.getValue(1));
380 SDValue BitCvt = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Trunc);
381 return BitCvt;
384 SDValue MipsTargetLowering::
385 LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG)
387 SDValue Chain = Op.getOperand(0);
388 SDValue Size = Op.getOperand(1);
389 DebugLoc dl = Op.getDebugLoc();
391 // Get a reference from Mips stack pointer
392 SDValue StackPointer = DAG.getCopyFromReg(Chain, dl, Mips::SP, MVT::i32);
394 // Subtract the dynamic size from the actual stack size to
395 // obtain the new stack size.
396 SDValue Sub = DAG.getNode(ISD::SUB, dl, MVT::i32, StackPointer, Size);
398 // The Sub result contains the new stack start address, so it
399 // must be placed in the stack pointer register.
400 Chain = DAG.getCopyToReg(StackPointer.getValue(1), dl, Mips::SP, Sub);
402 // This node always has two return values: a new stack pointer
403 // value and a chain
404 SDValue Ops[2] = { Sub, Chain };
405 return DAG.getMergeValues(Ops, 2, dl);
408 SDValue MipsTargetLowering::
409 LowerANDOR(SDValue Op, SelectionDAG &DAG)
411 SDValue LHS = Op.getOperand(0);
412 SDValue RHS = Op.getOperand(1);
413 DebugLoc dl = Op.getDebugLoc();
415 if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp)
416 return Op;
418 SDValue True = DAG.getConstant(1, MVT::i32);
419 SDValue False = DAG.getConstant(0, MVT::i32);
421 SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
422 LHS, True, False, LHS.getOperand(2));
423 SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
424 RHS, True, False, RHS.getOperand(2));
426 return DAG.getNode(Op.getOpcode(), dl, MVT::i32, LSEL, RSEL);
429 SDValue MipsTargetLowering::
430 LowerBRCOND(SDValue Op, SelectionDAG &DAG)
432 // The first operand is the chain, the second is the condition, the third is
433 // the block to branch to if the condition is true.
434 SDValue Chain = Op.getOperand(0);
435 SDValue Dest = Op.getOperand(2);
436 DebugLoc dl = Op.getDebugLoc();
438 if (Op.getOperand(1).getOpcode() != MipsISD::FPCmp)
439 return Op;
441 SDValue CondRes = Op.getOperand(1);
442 SDValue CCNode = CondRes.getOperand(2);
443 Mips::CondCode CC =
444 (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getZExtValue();
445 SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32);
447 return DAG.getNode(MipsISD::FPBrcond, dl, Op.getValueType(), Chain, BrCode,
448 Dest, CondRes);
451 SDValue MipsTargetLowering::
452 LowerSETCC(SDValue Op, SelectionDAG &DAG)
454 // The operands to this are the left and right operands to compare (ops #0,
455 // and #1) and the condition code to compare them with (op #2) as a
456 // CondCodeSDNode.
457 SDValue LHS = Op.getOperand(0);
458 SDValue RHS = Op.getOperand(1);
459 DebugLoc dl = Op.getDebugLoc();
461 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
463 return DAG.getNode(MipsISD::FPCmp, dl, Op.getValueType(), LHS, RHS,
464 DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
467 SDValue MipsTargetLowering::
468 LowerSELECT(SDValue Op, SelectionDAG &DAG)
470 SDValue Cond = Op.getOperand(0);
471 SDValue True = Op.getOperand(1);
472 SDValue False = Op.getOperand(2);
473 DebugLoc dl = Op.getDebugLoc();
475 // if the incomming condition comes from a integer compare, the select
476 // operation must be SelectCC or a conditional move if the subtarget
477 // supports it.
478 if (Cond.getOpcode() != MipsISD::FPCmp) {
479 if (Subtarget->hasCondMov() && !True.getValueType().isFloatingPoint())
480 return Op;
481 return DAG.getNode(MipsISD::SelectCC, dl, True.getValueType(),
482 Cond, True, False);
485 // if the incomming condition comes from fpcmp, the select
486 // operation must use FPSelectCC.
487 SDValue CCNode = Cond.getOperand(2);
488 return DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
489 Cond, True, False, CCNode);
492 SDValue MipsTargetLowering::
493 LowerGlobalAddress(SDValue Op, SelectionDAG &DAG)
495 // FIXME there isn't actually debug info here
496 DebugLoc dl = Op.getDebugLoc();
497 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
498 SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
500 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
501 // %hi/%lo relocation
502 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, MVT::i32, GA);
503 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
504 return DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
506 } else { // Abicall relocations, TODO: make this cleaner.
507 SDValue ResNode = DAG.getLoad(MVT::i32, dl,
508 DAG.getEntryNode(), GA, NULL, 0);
509 // On functions and global targets not internal linked only
510 // a load from got/GP is necessary for PIC to work.
511 if (!GV->hasLocalLinkage() || isa<Function>(GV))
512 return ResNode;
513 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
514 return DAG.getNode(ISD::ADD, dl, MVT::i32, ResNode, Lo);
517 llvm_unreachable("Dont know how to handle GlobalAddress");
518 return SDValue(0,0);
521 SDValue MipsTargetLowering::
522 LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
524 llvm_unreachable("TLS not implemented for MIPS.");
525 return SDValue(); // Not reached
528 SDValue MipsTargetLowering::
529 LowerJumpTable(SDValue Op, SelectionDAG &DAG)
531 SDValue ResNode;
532 SDValue HiPart;
533 // FIXME there isn't actually debug info here
534 DebugLoc dl = Op.getDebugLoc();
536 MVT PtrVT = Op.getValueType();
537 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
538 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
540 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
541 SDVTList VTs = DAG.getVTList(MVT::i32);
542 SDValue Ops[] = { JTI };
543 HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, Ops, 1);
544 } else // Emit Load from Global Pointer
545 HiPart = DAG.getLoad(MVT::i32, dl, DAG.getEntryNode(), JTI, NULL, 0);
547 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, JTI);
548 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
550 return ResNode;
553 SDValue MipsTargetLowering::
554 LowerConstantPool(SDValue Op, SelectionDAG &DAG)
556 SDValue ResNode;
557 ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
558 Constant *C = N->getConstVal();
559 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment());
560 // FIXME there isn't actually debug info here
561 DebugLoc dl = Op.getDebugLoc();
563 // gp_rel relocation
564 // FIXME: we should reference the constant pool using small data sections,
565 // but the asm printer currently doens't support this feature without
566 // hacking it. This feature should come soon so we can uncomment the
567 // stuff below.
568 //if (IsInSmallSection(C->getType())) {
569 // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
570 // SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(MVT::i32);
571 // ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
572 //} else { // %hi/%lo relocation
573 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, MVT::i32, CP);
574 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, CP);
575 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
578 return ResNode;
581 //===----------------------------------------------------------------------===//
582 // Calling Convention Implementation
584 // The lower operations present on calling convention works on this order:
585 // LowerCALL (virt regs --> phys regs, virt regs --> stack)
586 // LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs)
587 // LowerRET (virt regs --> phys regs)
588 // LowerCALL (phys regs --> virt regs)
590 //===----------------------------------------------------------------------===//
592 #include "MipsGenCallingConv.inc"
594 //===----------------------------------------------------------------------===//
595 // TODO: Implement a generic logic using tblgen that can support this.
596 // Mips O32 ABI rules:
597 // ---
598 // i32 - Passed in A0, A1, A2, A3 and stack
599 // f32 - Only passed in f32 registers if no int reg has been used yet to hold
600 // an argument. Otherwise, passed in A1, A2, A3 and stack.
601 // f64 - Only passed in two aliased f32 registers if no int reg has been used
602 // yet to hold an argument. Otherwise, use A2, A3 and stack. If A1 is
603 // not used, it must be shadowed. If only A3 is avaiable, shadow it and
604 // go to stack.
605 //===----------------------------------------------------------------------===//
607 static bool CC_MipsO32(unsigned ValNo, MVT ValVT,
608 MVT LocVT, CCValAssign::LocInfo LocInfo,
609 ISD::ArgFlagsTy ArgFlags, CCState &State) {
611 static const unsigned IntRegsSize=4, FloatRegsSize=2;
613 static const unsigned IntRegs[] = {
614 Mips::A0, Mips::A1, Mips::A2, Mips::A3
616 static const unsigned F32Regs[] = {
617 Mips::F12, Mips::F14
619 static const unsigned F64Regs[] = {
620 Mips::D6, Mips::D7
623 unsigned Reg=0;
624 unsigned UnallocIntReg = State.getFirstUnallocated(IntRegs, IntRegsSize);
625 bool IntRegUsed = (IntRegs[UnallocIntReg] != (unsigned (Mips::A0)));
627 // Promote i8 and i16
628 if (LocVT == MVT::i8 || LocVT == MVT::i16) {
629 LocVT = MVT::i32;
630 if (ArgFlags.isSExt())
631 LocInfo = CCValAssign::SExt;
632 else if (ArgFlags.isZExt())
633 LocInfo = CCValAssign::ZExt;
634 else
635 LocInfo = CCValAssign::AExt;
638 if (ValVT == MVT::i32 || (ValVT == MVT::f32 && IntRegUsed)) {
639 Reg = State.AllocateReg(IntRegs, IntRegsSize);
640 IntRegUsed = true;
641 LocVT = MVT::i32;
644 if (ValVT.isFloatingPoint() && !IntRegUsed) {
645 if (ValVT == MVT::f32)
646 Reg = State.AllocateReg(F32Regs, FloatRegsSize);
647 else
648 Reg = State.AllocateReg(F64Regs, FloatRegsSize);
651 if (ValVT == MVT::f64 && IntRegUsed) {
652 if (UnallocIntReg != IntRegsSize) {
653 // If we hit register A3 as the first not allocated, we must
654 // mark it as allocated (shadow) and use the stack instead.
655 if (IntRegs[UnallocIntReg] != (unsigned (Mips::A3)))
656 Reg = Mips::A2;
657 for (;UnallocIntReg < IntRegsSize; ++UnallocIntReg)
658 State.AllocateReg(UnallocIntReg);
660 LocVT = MVT::i32;
663 if (!Reg) {
664 unsigned SizeInBytes = ValVT.getSizeInBits() >> 3;
665 unsigned Offset = State.AllocateStack(SizeInBytes, SizeInBytes);
666 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
667 } else
668 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
670 return false; // CC must always match
673 //===----------------------------------------------------------------------===//
674 // CALL Calling Convention Implementation
675 //===----------------------------------------------------------------------===//
677 /// LowerCALL - functions arguments are copied from virtual regs to
678 /// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
679 /// TODO: isVarArg, isTailCall.
680 SDValue MipsTargetLowering::
681 LowerCALL(SDValue Op, SelectionDAG &DAG)
683 MachineFunction &MF = DAG.getMachineFunction();
685 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
686 SDValue Chain = TheCall->getChain();
687 SDValue Callee = TheCall->getCallee();
688 bool isVarArg = TheCall->isVarArg();
689 unsigned CC = TheCall->getCallingConv();
690 DebugLoc dl = TheCall->getDebugLoc();
692 MachineFrameInfo *MFI = MF.getFrameInfo();
694 // Analyze operands of the call, assigning locations to each operand.
695 SmallVector<CCValAssign, 16> ArgLocs;
696 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs, *DAG.getContext());
698 // To meet O32 ABI, Mips must always allocate 16 bytes on
699 // the stack (even if less than 4 are used as arguments)
700 if (Subtarget->isABI_O32()) {
701 int VTsize = MVT(MVT::i32).getSizeInBits()/8;
702 MFI->CreateFixedObject(VTsize, (VTsize*3));
703 CCInfo.AnalyzeCallOperands(TheCall, CC_MipsO32);
704 } else
705 CCInfo.AnalyzeCallOperands(TheCall, CC_Mips);
707 // Get a count of how many bytes are to be pushed on the stack.
708 unsigned NumBytes = CCInfo.getNextStackOffset();
709 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
711 // With EABI is it possible to have 16 args on registers.
712 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
713 SmallVector<SDValue, 8> MemOpChains;
715 // First/LastArgStackLoc contains the first/last
716 // "at stack" argument location.
717 int LastArgStackLoc = 0;
718 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
720 // Walk the register/memloc assignments, inserting copies/loads.
721 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
722 SDValue Arg = TheCall->getArg(i);
723 CCValAssign &VA = ArgLocs[i];
725 // Promote the value if needed.
726 switch (VA.getLocInfo()) {
727 default: llvm_unreachable("Unknown loc info!");
728 case CCValAssign::Full:
729 if (Subtarget->isABI_O32() && VA.isRegLoc()) {
730 if (VA.getValVT() == MVT::f32 && VA.getLocVT() == MVT::i32)
731 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Arg);
732 if (VA.getValVT() == MVT::f64 && VA.getLocVT() == MVT::i32) {
733 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
734 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Arg,
735 DAG.getConstant(0, getPointerTy()));
736 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Arg,
737 DAG.getConstant(1, getPointerTy()));
738 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Lo));
739 RegsToPass.push_back(std::make_pair(VA.getLocReg()+1, Hi));
740 continue;
743 break;
744 case CCValAssign::SExt:
745 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
746 break;
747 case CCValAssign::ZExt:
748 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
749 break;
750 case CCValAssign::AExt:
751 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
752 break;
755 // Arguments that can be passed on register must be kept at
756 // RegsToPass vector
757 if (VA.isRegLoc()) {
758 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
759 continue;
762 // Register can't get to this point...
763 assert(VA.isMemLoc());
765 // Create the frame index object for this incoming parameter
766 // This guarantees that when allocating Local Area the firsts
767 // 16 bytes which are alwayes reserved won't be overwritten
768 // if O32 ABI is used. For EABI the first address is zero.
769 LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
770 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
771 LastArgStackLoc);
773 SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
775 // emit ISD::STORE whichs stores the
776 // parameter value to a stack Location
777 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
780 // Transform all store nodes into one single node because all store
781 // nodes are independent of each other.
782 if (!MemOpChains.empty())
783 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
784 &MemOpChains[0], MemOpChains.size());
786 // Build a sequence of copy-to-reg nodes chained together with token
787 // chain and flag operands which copy the outgoing args into registers.
788 // The InFlag in necessary since all emited instructions must be
789 // stuck together.
790 SDValue InFlag;
791 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
792 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
793 RegsToPass[i].second, InFlag);
794 InFlag = Chain.getValue(1);
797 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
798 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
799 // node so that legalize doesn't hack it.
800 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
801 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
802 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
803 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
805 // MipsJmpLink = #chain, #target_address, #opt_in_flags...
806 // = Chain, Callee, Reg#1, Reg#2, ...
808 // Returns a chain & a flag for retval copy to use.
809 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
810 SmallVector<SDValue, 8> Ops;
811 Ops.push_back(Chain);
812 Ops.push_back(Callee);
814 // Add argument registers to the end of the list so that they are
815 // known live into the call.
816 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
817 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
818 RegsToPass[i].second.getValueType()));
820 if (InFlag.getNode())
821 Ops.push_back(InFlag);
823 Chain = DAG.getNode(MipsISD::JmpLink, dl, NodeTys, &Ops[0], Ops.size());
824 InFlag = Chain.getValue(1);
826 // Create the CALLSEQ_END node.
827 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
828 DAG.getIntPtrConstant(0, true), InFlag);
829 InFlag = Chain.getValue(1);
831 // Create a stack location to hold GP when PIC is used. This stack
832 // location is used on function prologue to save GP and also after all
833 // emited CALL's to restore GP.
834 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
835 // Function can have an arbitrary number of calls, so
836 // hold the LastArgStackLoc with the biggest offset.
837 int FI;
838 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
839 if (LastArgStackLoc >= MipsFI->getGPStackOffset()) {
840 LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4);
841 // Create the frame index only once. SPOffset here can be anything
842 // (this will be fixed on processFunctionBeforeFrameFinalized)
843 if (MipsFI->getGPStackOffset() == -1) {
844 FI = MFI->CreateFixedObject(4, 0);
845 MipsFI->setGPFI(FI);
847 MipsFI->setGPStackOffset(LastArgStackLoc);
850 // Reload GP value.
851 FI = MipsFI->getGPFI();
852 SDValue FIN = DAG.getFrameIndex(FI,getPointerTy());
853 SDValue GPLoad = DAG.getLoad(MVT::i32, dl, Chain, FIN, NULL, 0);
854 Chain = GPLoad.getValue(1);
855 Chain = DAG.getCopyToReg(Chain, dl, DAG.getRegister(Mips::GP, MVT::i32),
856 GPLoad, SDValue(0,0));
857 InFlag = Chain.getValue(1);
860 // Handle result values, copying them out of physregs into vregs that we
861 // return.
862 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG), Op.getResNo());
865 /// LowerCallResult - Lower the result values of an ISD::CALL into the
866 /// appropriate copies out of appropriate physical registers. This assumes that
867 /// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
868 /// being lowered. Returns a SDNode with the same number of values as the
869 /// ISD::CALL.
870 SDNode *MipsTargetLowering::
871 LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
872 unsigned CallingConv, SelectionDAG &DAG) {
874 bool isVarArg = TheCall->isVarArg();
875 DebugLoc dl = TheCall->getDebugLoc();
877 // Assign locations to each value returned by this call.
878 SmallVector<CCValAssign, 16> RVLocs;
879 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(),
880 RVLocs, *DAG.getContext());
882 CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips);
883 SmallVector<SDValue, 8> ResultVals;
885 // Copy all of the result registers out of their specified physreg.
886 for (unsigned i = 0; i != RVLocs.size(); ++i) {
887 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
888 RVLocs[i].getValVT(), InFlag).getValue(1);
889 InFlag = Chain.getValue(2);
890 ResultVals.push_back(Chain.getValue(0));
893 ResultVals.push_back(Chain);
895 // Merge everything together with a MERGE_VALUES node.
896 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
897 &ResultVals[0], ResultVals.size()).getNode();
900 //===----------------------------------------------------------------------===//
901 // FORMAL_ARGUMENTS Calling Convention Implementation
902 //===----------------------------------------------------------------------===//
904 /// LowerFORMAL_ARGUMENTS - transform physical registers into
905 /// virtual registers and generate load operations for
906 /// arguments places on the stack.
907 /// TODO: isVarArg
908 SDValue MipsTargetLowering::
909 LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG)
911 SDValue Root = Op.getOperand(0);
912 MachineFunction &MF = DAG.getMachineFunction();
913 MachineFrameInfo *MFI = MF.getFrameInfo();
914 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
915 DebugLoc dl = Op.getDebugLoc();
917 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
918 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
920 unsigned StackReg = MF.getTarget().getRegisterInfo()->getFrameRegister(MF);
922 // Assign locations to all of the incoming arguments.
923 SmallVector<CCValAssign, 16> ArgLocs;
924 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs, *DAG.getContext());
926 if (Subtarget->isABI_O32())
927 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_MipsO32);
928 else
929 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_Mips);
931 SmallVector<SDValue, 16> ArgValues;
932 SDValue StackPtr;
934 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
936 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
937 CCValAssign &VA = ArgLocs[i];
939 // Arguments stored on registers
940 if (VA.isRegLoc()) {
941 MVT RegVT = VA.getLocVT();
942 TargetRegisterClass *RC = 0;
944 if (RegVT == MVT::i32)
945 RC = Mips::CPURegsRegisterClass;
946 else if (RegVT == MVT::f32)
947 RC = Mips::FGR32RegisterClass;
948 else if (RegVT == MVT::f64) {
949 if (!Subtarget->isSingleFloat())
950 RC = Mips::AFGR64RegisterClass;
951 } else
952 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
954 // Transform the arguments stored on
955 // physical registers into virtual ones
956 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
957 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
959 // If this is an 8 or 16-bit value, it has been passed promoted
960 // to 32 bits. Insert an assert[sz]ext to capture this, then
961 // truncate to the right size.
962 if (VA.getLocInfo() != CCValAssign::Full) {
963 unsigned Opcode = 0;
964 if (VA.getLocInfo() == CCValAssign::SExt)
965 Opcode = ISD::AssertSext;
966 else if (VA.getLocInfo() == CCValAssign::ZExt)
967 Opcode = ISD::AssertZext;
968 if (Opcode)
969 ArgValue = DAG.getNode(Opcode, dl, RegVT, ArgValue,
970 DAG.getValueType(VA.getValVT()));
971 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
974 // Handle O32 ABI cases: i32->f32 and (i32,i32)->f64
975 if (Subtarget->isABI_O32()) {
976 if (RegVT == MVT::i32 && VA.getValVT() == MVT::f32)
977 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue);
978 if (RegVT == MVT::i32 && VA.getValVT() == MVT::f64) {
979 unsigned Reg2 = AddLiveIn(DAG.getMachineFunction(),
980 VA.getLocReg()+1, RC);
981 SDValue ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg2, RegVT);
982 SDValue Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue);
983 SDValue Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue2);
984 ArgValue = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::f64, Lo, Hi);
988 ArgValues.push_back(ArgValue);
990 // To meet ABI, when VARARGS are passed on registers, the registers
991 // must have their values written to the caller stack frame.
992 if ((isVarArg) && (Subtarget->isABI_O32())) {
993 if (StackPtr.getNode() == 0)
994 StackPtr = DAG.getRegister(StackReg, getPointerTy());
996 // The stack pointer offset is relative to the caller stack frame.
997 // Since the real stack size is unknown here, a negative SPOffset
998 // is used so there's a way to adjust these offsets when the stack
999 // size get known (on EliminateFrameIndex). A dummy SPOffset is
1000 // used instead of a direct negative address (which is recorded to
1001 // be used on emitPrologue) to avoid mis-calc of the first stack
1002 // offset on PEI::calculateFrameObjectOffsets.
1003 // Arguments are always 32-bit.
1004 int FI = MFI->CreateFixedObject(4, 0);
1005 MipsFI->recordStoreVarArgsFI(FI, -(4+(i*4)));
1006 SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy());
1008 // emit ISD::STORE whichs stores the
1009 // parameter value to a stack Location
1010 ArgValues.push_back(DAG.getStore(Root, dl, ArgValue, PtrOff, NULL, 0));
1013 } else { // VA.isRegLoc()
1015 // sanity check
1016 assert(VA.isMemLoc());
1018 // The stack pointer offset is relative to the caller stack frame.
1019 // Since the real stack size is unknown here, a negative SPOffset
1020 // is used so there's a way to adjust these offsets when the stack
1021 // size get known (on EliminateFrameIndex). A dummy SPOffset is
1022 // used instead of a direct negative address (which is recorded to
1023 // be used on emitPrologue) to avoid mis-calc of the first stack
1024 // offset on PEI::calculateFrameObjectOffsets.
1025 // Arguments are always 32-bit.
1026 unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
1027 int FI = MFI->CreateFixedObject(ArgSize, 0);
1028 MipsFI->recordLoadArgsFI(FI, -(ArgSize+
1029 (FirstStackArgLoc + VA.getLocMemOffset())));
1031 // Create load nodes to retrieve arguments from the stack
1032 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1033 ArgValues.push_back(DAG.getLoad(VA.getValVT(), dl, Root, FIN, NULL, 0));
1037 // The mips ABIs for returning structs by value requires that we copy
1038 // the sret argument into $v0 for the return. Save the argument into
1039 // a virtual register so that we can access it from the return points.
1040 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1041 unsigned Reg = MipsFI->getSRetReturnReg();
1042 if (!Reg) {
1043 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32));
1044 MipsFI->setSRetReturnReg(Reg);
1046 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
1047 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
1050 ArgValues.push_back(Root);
1052 // Return the new list of results.
1053 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
1054 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
1057 //===----------------------------------------------------------------------===//
1058 // Return Value Calling Convention Implementation
1059 //===----------------------------------------------------------------------===//
1061 SDValue MipsTargetLowering::
1062 LowerRET(SDValue Op, SelectionDAG &DAG)
1064 // CCValAssign - represent the assignment of
1065 // the return value to a location
1066 SmallVector<CCValAssign, 16> RVLocs;
1067 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
1068 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
1069 DebugLoc dl = Op.getDebugLoc();
1071 // CCState - Info about the registers and stack slot.
1072 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs, *DAG.getContext());
1074 // Analize return values of ISD::RET
1075 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_Mips);
1077 // If this is the first return lowered for this function, add
1078 // the regs to the liveout set for the function.
1079 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
1080 for (unsigned i = 0; i != RVLocs.size(); ++i)
1081 if (RVLocs[i].isRegLoc())
1082 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
1085 // The chain is always operand #0
1086 SDValue Chain = Op.getOperand(0);
1087 SDValue Flag;
1089 // Copy the result values into the output registers.
1090 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1091 CCValAssign &VA = RVLocs[i];
1092 assert(VA.isRegLoc() && "Can only return in registers!");
1094 // ISD::RET => ret chain, (regnum1,val1), ...
1095 // So i*2+1 index only the regnums
1096 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1097 Op.getOperand(i*2+1), Flag);
1099 // guarantee that all emitted copies are
1100 // stuck together, avoiding something bad
1101 Flag = Chain.getValue(1);
1104 // The mips ABIs for returning structs by value requires that we copy
1105 // the sret argument into $v0 for the return. We saved the argument into
1106 // a virtual register in the entry block, so now we copy the value out
1107 // and into $v0.
1108 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1109 MachineFunction &MF = DAG.getMachineFunction();
1110 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
1111 unsigned Reg = MipsFI->getSRetReturnReg();
1113 if (!Reg)
1114 llvm_unreachable("sret virtual register not created in the entry block");
1115 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1117 Chain = DAG.getCopyToReg(Chain, dl, Mips::V0, Val, Flag);
1118 Flag = Chain.getValue(1);
1121 // Return on Mips is always a "jr $ra"
1122 if (Flag.getNode())
1123 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
1124 Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
1125 else // Return Void
1126 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
1127 Chain, DAG.getRegister(Mips::RA, MVT::i32));
1130 //===----------------------------------------------------------------------===//
1131 // Mips Inline Assembly Support
1132 //===----------------------------------------------------------------------===//
1134 /// getConstraintType - Given a constraint letter, return the type of
1135 /// constraint it is for this target.
1136 MipsTargetLowering::ConstraintType MipsTargetLowering::
1137 getConstraintType(const std::string &Constraint) const
1139 // Mips specific constrainy
1140 // GCC config/mips/constraints.md
1142 // 'd' : An address register. Equivalent to r
1143 // unless generating MIPS16 code.
1144 // 'y' : Equivalent to r; retained for
1145 // backwards compatibility.
1146 // 'f' : Floating Point registers.
1147 if (Constraint.size() == 1) {
1148 switch (Constraint[0]) {
1149 default : break;
1150 case 'd':
1151 case 'y':
1152 case 'f':
1153 return C_RegisterClass;
1154 break;
1157 return TargetLowering::getConstraintType(Constraint);
1160 /// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1161 /// return a list of registers that can be used to satisfy the constraint.
1162 /// This should only be used for C_RegisterClass constraints.
1163 std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
1164 getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const
1166 if (Constraint.size() == 1) {
1167 switch (Constraint[0]) {
1168 case 'r':
1169 return std::make_pair(0U, Mips::CPURegsRegisterClass);
1170 case 'f':
1171 if (VT == MVT::f32)
1172 return std::make_pair(0U, Mips::FGR32RegisterClass);
1173 if (VT == MVT::f64)
1174 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1175 return std::make_pair(0U, Mips::AFGR64RegisterClass);
1178 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1181 /// Given a register class constraint, like 'r', if this corresponds directly
1182 /// to an LLVM register class, return a register of 0 and the register class
1183 /// pointer.
1184 std::vector<unsigned> MipsTargetLowering::
1185 getRegClassForInlineAsmConstraint(const std::string &Constraint,
1186 MVT VT) const
1188 if (Constraint.size() != 1)
1189 return std::vector<unsigned>();
1191 switch (Constraint[0]) {
1192 default : break;
1193 case 'r':
1194 // GCC Mips Constraint Letters
1195 case 'd':
1196 case 'y':
1197 return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3,
1198 Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1,
1199 Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7,
1200 Mips::T8, 0);
1202 case 'f':
1203 if (VT == MVT::f32) {
1204 if (Subtarget->isSingleFloat())
1205 return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1206 Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1207 Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1208 Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1209 Mips::F30, Mips::F31, 0);
1210 else
1211 return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8,
1212 Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26,
1213 Mips::F28, Mips::F30, 0);
1216 if (VT == MVT::f64)
1217 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1218 return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4,
1219 Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13,
1220 Mips::D14, Mips::D15, 0);
1222 return std::vector<unsigned>();
1225 bool
1226 MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1227 // The Mips target isn't yet aware of offsets.
1228 return false;