blob: 42afcebabec7968b6694510026e7a7a42c242a41 [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===-- MipsISelLowering.cpp - Mips DAG Lowering Implementation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that Mips uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "mips-lower"
16
17#include "MipsISelLowering.h"
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +000018#include "MipsMachineFunction.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000019#include "MipsTargetMachine.h"
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000020#include "MipsSubtarget.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000021#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +000023#include "llvm/GlobalVariable.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000024#include "llvm/Intrinsics.h"
25#include "llvm/CallingConv.h"
26#include "llvm/CodeGen/CallingConvLower.h"
27#include "llvm/CodeGen/MachineFrameInfo.h"
28#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000031#include "llvm/CodeGen/SelectionDAGISel.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000032#include "llvm/CodeGen/ValueTypes.h"
33#include "llvm/Support/Debug.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000034using namespace llvm;
35
36const char *MipsTargetLowering::
37getTargetNodeName(unsigned Opcode) const
38{
39 switch (Opcode)
40 {
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000041 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";
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000046 case MipsISD::CMov : return "MipsISD::CMov";
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000047 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";
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000051 case MipsISD::FPRound : return "MipsISD::FPRound";
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000052 default : return NULL;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000053 }
54}
55
56MipsTargetLowering::
57MipsTargetLowering(MipsTargetMachine &TM): TargetLowering(TM)
58{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000059 Subtarget = &TM.getSubtarget<MipsSubtarget>();
60
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000061 // Mips does not have i1 type, so use i32 for
62 // setcc operations results (slt, sgt, ...).
Duncan Sands03228082008-11-23 15:47:28 +000063 setBooleanContents(ZeroOrOneBooleanContent);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000064
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +000065 // JumpTable targets must use GOT when using PIC_
66 setUsesGlobalOffsetTable(true);
67
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000068 // Set up the register classes
69 addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000070 addRegisterClass(MVT::f32, Mips::FGR32RegisterClass);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000071
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000072 // When dealing with single precision only, use libcalls
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000073 if (!Subtarget->isSingleFloat())
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000074 if (!Subtarget->isFP64bit())
75 addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000076
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +000077 // Legal fp constants
78 addLegalFPImmediate(APFloat(+0.0f));
79
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000080 // Load extented operations for i1 types must be promoted
Evan Cheng03294662008-10-14 21:26:46 +000081 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
82 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
83 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000084
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000085 // Used by legalize types to correctly generate the setcc result.
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +000086 // Without this, every float setcc comes with a AND/OR with the result,
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000087 // we don't want this, since the fpcmp result goes to a flag register,
88 // which is used implicitly by brcond and select operations.
89 AddPromotedToType(ISD::SETCC, MVT::i1, MVT::i32);
90
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +000091 // Mips Custom Operations
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +000092 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
93 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
94 setOperationAction(ISD::RET, MVT::Other, Custom);
95 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
96 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
97 setOperationAction(ISD::SELECT, MVT::f32, Custom);
Eli Friedman6314ac22009-06-16 06:40:59 +000098 setOperationAction(ISD::SELECT, MVT::f64, Custom);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +000099 setOperationAction(ISD::SELECT, MVT::i32, Custom);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000100 setOperationAction(ISD::SETCC, MVT::f32, Custom);
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000101 setOperationAction(ISD::SETCC, MVT::f64, Custom);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000102 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
103 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000104 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000105
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000106 // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors'
107 // with operands comming from setcc fp comparions. This is necessary since
108 // the result from these setcc are in a flag registers (FCR31).
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000109 setOperationAction(ISD::AND, MVT::i32, Custom);
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000110 setOperationAction(ISD::OR, MVT::i32, Custom);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000111
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000112 // Operations not directly supported by Mips.
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000113 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
114 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
115 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000116 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
117 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
118 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000119 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
120 setOperationAction(ISD::CTTZ, MVT::i32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000121 setOperationAction(ISD::ROTL, MVT::i32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000122 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
123 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
124 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Bruno Cardoso Lopes7bd71822008-07-31 18:50:54 +0000125 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Eli Friedman6314ac22009-06-16 06:40:59 +0000126 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000127
128 // We don't have line number support yet.
129 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
130 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
131 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
132 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
133
134 // Use the default for now
135 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
136 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
137 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000138
Bruno Cardoso Lopesea9d4d62008-08-04 06:44:31 +0000139 if (Subtarget->isSingleFloat())
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000140 setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000141
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +0000142 if (!Subtarget->hasSEInReg()) {
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000143 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000144 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
145 }
146
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000147 if (!Subtarget->hasBitCount())
148 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
149
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000150 if (!Subtarget->hasSwap())
151 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
152
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000153 setStackPointerRegisterToSaveRestore(Mips::SP);
154 computeRegisterProperties();
155}
156
157
Duncan Sands5480c042009-01-01 15:52:00 +0000158MVT MipsTargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000159 return MVT::i32;
160}
161
162
Dan Gohman475871a2008-07-27 21:46:04 +0000163SDValue MipsTargetLowering::
164LowerOperation(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000165{
166 switch (Op.getOpcode())
167 {
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000168 case ISD::AND: return LowerANDOR(Op, DAG);
169 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
170 case ISD::CALL: return LowerCALL(Op, DAG);
171 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
172 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
173 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000174 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000175 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
176 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
177 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
178 case ISD::OR: return LowerANDOR(Op, DAG);
179 case ISD::RET: return LowerRET(Op, DAG);
180 case ISD::SELECT: return LowerSELECT(Op, DAG);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000181 case ISD::SETCC: return LowerSETCC(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000182 }
Dan Gohman475871a2008-07-27 21:46:04 +0000183 return SDValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000184}
185
186//===----------------------------------------------------------------------===//
187// Lower helper functions
188//===----------------------------------------------------------------------===//
189
190// AddLiveIn - This helper function adds the specified physical register to the
191// MachineFunction as a live in value. It also creates a corresponding
192// virtual register for it.
193static unsigned
194AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
195{
196 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +0000197 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
198 MF.getRegInfo().addLiveIn(PReg, VReg);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000199 return VReg;
200}
201
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000202// A address must be loaded from a small section if its size is less than the
203// small section size threshold. Data in this section must be addressed using
204// gp_rel operator.
205bool MipsTargetLowering::IsInSmallSection(unsigned Size) {
206 return (Size > 0 && (Size <= Subtarget->getSSectionThreshold()));
207}
208
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000209// Discover if this global address can be placed into small data/bss section.
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000210bool MipsTargetLowering::IsGlobalInSmallSection(GlobalValue *GV)
211{
212 const TargetData *TD = getTargetData();
Bruno Cardoso Lopesfeb95cc2008-07-22 15:34:27 +0000213 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
214
215 if (!GVA)
216 return false;
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000217
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000218 const Type *Ty = GV->getType()->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000219 unsigned Size = TD->getTypeAllocSize(Ty);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000220
221 // if this is a internal constant string, there is a special
222 // section for it, but not in small data/bss.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000223 if (GVA->hasInitializer() && GV->hasLocalLinkage()) {
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000224 Constant *C = GVA->getInitializer();
225 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
226 if (CVA && CVA->isCString())
227 return false;
228 }
229
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000230 return IsInSmallSection(Size);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000231}
232
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000233// Get fp branch code (not opcode) from condition code.
234static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
235 if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
236 return Mips::BRANCH_T;
237
238 if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
239 return Mips::BRANCH_F;
240
241 return Mips::BRANCH_INVALID;
242}
243
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000244static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
245 switch(BC) {
246 default:
247 assert(0 && "Unknown branch code");
248 case Mips::BRANCH_T : return Mips::BC1T;
249 case Mips::BRANCH_F : return Mips::BC1F;
250 case Mips::BRANCH_TL : return Mips::BC1TL;
251 case Mips::BRANCH_FL : return Mips::BC1FL;
252 }
253}
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000254
255static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
256 switch (CC) {
257 default: assert(0 && "Unknown fp condition code!");
258 case ISD::SETEQ:
259 case ISD::SETOEQ: return Mips::FCOND_EQ;
260 case ISD::SETUNE: return Mips::FCOND_OGL;
261 case ISD::SETLT:
262 case ISD::SETOLT: return Mips::FCOND_OLT;
263 case ISD::SETGT:
264 case ISD::SETOGT: return Mips::FCOND_OGT;
265 case ISD::SETLE:
266 case ISD::SETOLE: return Mips::FCOND_OLE;
267 case ISD::SETGE:
268 case ISD::SETOGE: return Mips::FCOND_OGE;
269 case ISD::SETULT: return Mips::FCOND_ULT;
270 case ISD::SETULE: return Mips::FCOND_ULE;
271 case ISD::SETUGT: return Mips::FCOND_UGT;
272 case ISD::SETUGE: return Mips::FCOND_UGE;
273 case ISD::SETUO: return Mips::FCOND_UN;
274 case ISD::SETO: return Mips::FCOND_OR;
275 case ISD::SETNE:
276 case ISD::SETONE: return Mips::FCOND_NEQ;
277 case ISD::SETUEQ: return Mips::FCOND_UEQ;
278 }
279}
280
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000281MachineBasicBlock *
282MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +0000283 MachineBasicBlock *BB) const {
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000284 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
285 bool isFPCmp = false;
Dale Johannesen94817572009-02-13 02:34:39 +0000286 DebugLoc dl = MI->getDebugLoc();
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000287
288 switch (MI->getOpcode()) {
289 default: assert(false && "Unexpected instr type to insert");
290 case Mips::Select_FCC:
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000291 case Mips::Select_FCC_S32:
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000292 case Mips::Select_FCC_D32:
293 isFPCmp = true; // FALL THROUGH
294 case Mips::Select_CC:
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000295 case Mips::Select_CC_S32:
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000296 case Mips::Select_CC_D32: {
297 // To "insert" a SELECT_CC instruction, we actually have to insert the
298 // diamond control-flow pattern. The incoming instruction knows the
299 // destination vreg to set, the condition code register to branch on, the
300 // true/false values to select between, and a branch opcode to use.
301 const BasicBlock *LLVM_BB = BB->getBasicBlock();
302 MachineFunction::iterator It = BB;
303 ++It;
304
305 // thisMBB:
306 // ...
307 // TrueVal = ...
308 // setcc r1, r2, r3
309 // bNE r1, r0, copy1MBB
310 // fallthrough --> copy0MBB
311 MachineBasicBlock *thisMBB = BB;
312 MachineFunction *F = BB->getParent();
313 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
314 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
315
316 // Emit the right instruction according to the type of the operands compared
317 if (isFPCmp) {
318 // Find the condiction code present in the setcc operation.
319 Mips::CondCode CC = (Mips::CondCode)MI->getOperand(4).getImm();
320 // Get the branch opcode from the branch code.
321 unsigned Opc = FPBranchCodeToOpc(GetFPBranchCodeFromCond(CC));
Dale Johannesen94817572009-02-13 02:34:39 +0000322 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000323 } else
Dale Johannesen94817572009-02-13 02:34:39 +0000324 BuildMI(BB, dl, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg())
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000325 .addReg(Mips::ZERO).addMBB(sinkMBB);
326
327 F->insert(It, copy0MBB);
328 F->insert(It, sinkMBB);
329 // Update machine-CFG edges by first adding all successors of the current
330 // block to the new block which will contain the Phi node for the select.
331 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
332 e = BB->succ_end(); i != e; ++i)
333 sinkMBB->addSuccessor(*i);
334 // Next, remove all successors of the current block, and add the true
335 // and fallthrough blocks as its successors.
336 while(!BB->succ_empty())
337 BB->removeSuccessor(BB->succ_begin());
338 BB->addSuccessor(copy0MBB);
339 BB->addSuccessor(sinkMBB);
340
341 // copy0MBB:
342 // %FalseValue = ...
343 // # fallthrough to sinkMBB
344 BB = copy0MBB;
345
346 // Update machine-CFG edges
347 BB->addSuccessor(sinkMBB);
348
349 // sinkMBB:
350 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
351 // ...
352 BB = sinkMBB;
Dale Johannesen94817572009-02-13 02:34:39 +0000353 BuildMI(BB, dl, TII->get(Mips::PHI), MI->getOperand(0).getReg())
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000354 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
355 .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB);
356
357 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
358 return BB;
359 }
360 }
361}
362
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000363//===----------------------------------------------------------------------===//
364// Misc Lower Operation implementation
365//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000366
Dan Gohman475871a2008-07-27 21:46:04 +0000367SDValue MipsTargetLowering::
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000368LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG)
369{
370 if (!Subtarget->isMips1())
371 return Op;
372
373 MachineFunction &MF = DAG.getMachineFunction();
374 unsigned CCReg = AddLiveIn(MF, Mips::FCR31, Mips::CCRRegisterClass);
375
376 SDValue Chain = DAG.getEntryNode();
377 DebugLoc dl = Op.getDebugLoc();
378 SDValue Src = Op.getOperand(0);
379
380 // Set the condition register
381 SDValue CondReg = DAG.getCopyFromReg(Chain, dl, CCReg, MVT::i32);
382 CondReg = DAG.getCopyToReg(Chain, dl, Mips::AT, CondReg);
383 CondReg = DAG.getCopyFromReg(CondReg, dl, Mips::AT, MVT::i32);
384
385 SDValue Cst = DAG.getConstant(3, MVT::i32);
386 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i32, CondReg, Cst);
387 Cst = DAG.getConstant(2, MVT::i32);
388 SDValue Xor = DAG.getNode(ISD::XOR, dl, MVT::i32, Or, Cst);
389
390 SDValue InFlag(0, 0);
391 CondReg = DAG.getCopyToReg(Chain, dl, Mips::FCR31, Xor, InFlag);
392
393 // Emit the round instruction and bit convert to integer
394 SDValue Trunc = DAG.getNode(MipsISD::FPRound, dl, MVT::f32,
395 Src, CondReg.getValue(1));
396 SDValue BitCvt = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Trunc);
397 return BitCvt;
398}
399
400SDValue MipsTargetLowering::
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000401LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG)
402{
403 SDValue Chain = Op.getOperand(0);
404 SDValue Size = Op.getOperand(1);
Dale Johannesena05dca42009-02-04 23:02:30 +0000405 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000406
407 // Get a reference from Mips stack pointer
Dale Johannesena05dca42009-02-04 23:02:30 +0000408 SDValue StackPointer = DAG.getCopyFromReg(Chain, dl, Mips::SP, MVT::i32);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000409
410 // Subtract the dynamic size from the actual stack size to
411 // obtain the new stack size.
Dale Johannesena05dca42009-02-04 23:02:30 +0000412 SDValue Sub = DAG.getNode(ISD::SUB, dl, MVT::i32, StackPointer, Size);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000413
414 // The Sub result contains the new stack start address, so it
415 // must be placed in the stack pointer register.
Dale Johannesena05dca42009-02-04 23:02:30 +0000416 Chain = DAG.getCopyToReg(StackPointer.getValue(1), dl, Mips::SP, Sub);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000417
418 // This node always has two return values: a new stack pointer
419 // value and a chain
420 SDValue Ops[2] = { Sub, Chain };
Dale Johannesena05dca42009-02-04 23:02:30 +0000421 return DAG.getMergeValues(Ops, 2, dl);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000422}
423
424SDValue MipsTargetLowering::
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000425LowerANDOR(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000426{
427 SDValue LHS = Op.getOperand(0);
428 SDValue RHS = Op.getOperand(1);
Dale Johannesende064702009-02-06 21:50:26 +0000429 DebugLoc dl = Op.getDebugLoc();
430
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000431 if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp)
432 return Op;
433
434 SDValue True = DAG.getConstant(1, MVT::i32);
435 SDValue False = DAG.getConstant(0, MVT::i32);
436
Dale Johannesende064702009-02-06 21:50:26 +0000437 SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000438 LHS, True, False, LHS.getOperand(2));
Dale Johannesende064702009-02-06 21:50:26 +0000439 SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000440 RHS, True, False, RHS.getOperand(2));
441
Dale Johannesende064702009-02-06 21:50:26 +0000442 return DAG.getNode(Op.getOpcode(), dl, MVT::i32, LSEL, RSEL);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000443}
444
445SDValue MipsTargetLowering::
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000446LowerBRCOND(SDValue Op, SelectionDAG &DAG)
447{
448 // The first operand is the chain, the second is the condition, the third is
449 // the block to branch to if the condition is true.
450 SDValue Chain = Op.getOperand(0);
451 SDValue Dest = Op.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000452 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000453
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000454 if (Op.getOperand(1).getOpcode() != MipsISD::FPCmp)
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000455 return Op;
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000456
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000457 SDValue CondRes = Op.getOperand(1);
458 SDValue CCNode = CondRes.getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000459 Mips::CondCode CC =
460 (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getZExtValue();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000461 SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32);
462
Dale Johannesende064702009-02-06 21:50:26 +0000463 return DAG.getNode(MipsISD::FPBrcond, dl, Op.getValueType(), Chain, BrCode,
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000464 Dest, CondRes);
465}
466
467SDValue MipsTargetLowering::
468LowerSETCC(SDValue Op, SelectionDAG &DAG)
469{
470 // The operands to this are the left and right operands to compare (ops #0,
471 // and #1) and the condition code to compare them with (op #2) as a
472 // CondCodeSDNode.
473 SDValue LHS = Op.getOperand(0);
Dale Johannesende064702009-02-06 21:50:26 +0000474 SDValue RHS = Op.getOperand(1);
475 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000476
477 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
478
Dale Johannesende064702009-02-06 21:50:26 +0000479 return DAG.getNode(MipsISD::FPCmp, dl, Op.getValueType(), LHS, RHS,
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000480 DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
481}
482
483SDValue MipsTargetLowering::
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000484LowerSELECT(SDValue Op, SelectionDAG &DAG)
485{
486 SDValue Cond = Op.getOperand(0);
487 SDValue True = Op.getOperand(1);
488 SDValue False = Op.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000489 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000490
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000491 // if the incomming condition comes from a integer compare, the select
492 // operation must be SelectCC or a conditional move if the subtarget
493 // supports it.
494 if (Cond.getOpcode() != MipsISD::FPCmp) {
495 if (Subtarget->hasCondMov() && !True.getValueType().isFloatingPoint())
496 return Op;
Dale Johannesende064702009-02-06 21:50:26 +0000497 return DAG.getNode(MipsISD::SelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000498 Cond, True, False);
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000499 }
500
501 // if the incomming condition comes from fpcmp, the select
502 // operation must use FPSelectCC.
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000503 SDValue CCNode = Cond.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000504 return DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000505 Cond, True, False, CCNode);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000506}
507
508SDValue MipsTargetLowering::
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000509LowerGlobalAddress(SDValue Op, SelectionDAG &DAG)
510{
Dale Johannesende064702009-02-06 21:50:26 +0000511 // FIXME there isn't actually debug info here
Dale Johannesen33c960f2009-02-04 20:06:27 +0000512 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000513 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
514 SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
515
516 if (!Subtarget->hasABICall()) {
Dan Gohmanfc166572009-04-09 23:54:40 +0000517 SDVTList VTs = DAG.getVTList(MVT::i32);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000518 SDValue Ops[] = { GA };
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000519 // %gp_rel relocation
520 if (!isa<Function>(GV) && IsGlobalInSmallSection(GV)) {
Dan Gohmanfc166572009-04-09 23:54:40 +0000521 SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, dl, VTs, Ops, 1);
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000522 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000523 return DAG.getNode(ISD::ADD, dl, MVT::i32, GOT, GPRelNode);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000524 }
525 // %hi/%lo relocation
Dan Gohmanfc166572009-04-09 23:54:40 +0000526 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, Ops, 1);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000527 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
528 return DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000529
530 } else { // Abicall relocations, TODO: make this cleaner.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000531 SDValue ResNode = DAG.getLoad(MVT::i32, dl,
532 DAG.getEntryNode(), GA, NULL, 0);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000533 // On functions and global targets not internal linked only
534 // a load from got/GP is necessary for PIC to work.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000535 if (!GV->hasLocalLinkage() || isa<Function>(GV))
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000536 return ResNode;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000537 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
538 return DAG.getNode(ISD::ADD, dl, MVT::i32, ResNode, Lo);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000539 }
540
541 assert(0 && "Dont know how to handle GlobalAddress");
542 return SDValue(0,0);
543}
544
545SDValue MipsTargetLowering::
546LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
547{
548 assert(0 && "TLS not implemented for MIPS.");
549 return SDValue(); // Not reached
550}
551
552SDValue MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000553LowerJumpTable(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000554{
Dan Gohman475871a2008-07-27 21:46:04 +0000555 SDValue ResNode;
556 SDValue HiPart;
Dale Johannesende064702009-02-06 21:50:26 +0000557 // FIXME there isn't actually debug info here
Dale Johannesen33c960f2009-02-04 20:06:27 +0000558 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000559
Duncan Sands83ec4b62008-06-06 12:08:01 +0000560 MVT PtrVT = Op.getValueType();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000561 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +0000562 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000563
564 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohmanfc166572009-04-09 23:54:40 +0000565 SDVTList VTs = DAG.getVTList(MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000566 SDValue Ops[] = { JTI };
Dan Gohmanfc166572009-04-09 23:54:40 +0000567 HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, Ops, 1);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000568 } else // Emit Load from Global Pointer
Dale Johannesen33c960f2009-02-04 20:06:27 +0000569 HiPart = DAG.getLoad(MVT::i32, dl, DAG.getEntryNode(), JTI, NULL, 0);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000570
Dale Johannesen33c960f2009-02-04 20:06:27 +0000571 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, JTI);
572 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000573
574 return ResNode;
575}
576
Dan Gohman475871a2008-07-27 21:46:04 +0000577SDValue MipsTargetLowering::
578LowerConstantPool(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000579{
Dan Gohman475871a2008-07-27 21:46:04 +0000580 SDValue ResNode;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000581 ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
582 Constant *C = N->getConstVal();
Dan Gohman475871a2008-07-27 21:46:04 +0000583 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment());
Dale Johannesende064702009-02-06 21:50:26 +0000584 // FIXME there isn't actually debug info here
585 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000586
587 // gp_rel relocation
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000588 // FIXME: we should reference the constant pool using small data sections,
589 // but the asm printer currently doens't support this feature without
590 // hacking it. This feature should come soon so we can uncomment the
591 // stuff below.
592 //if (!Subtarget->hasABICall() &&
Duncan Sands777d2302009-05-09 07:06:46 +0000593 // IsInSmallSection(getTargetData()->getTypeAllocSize(C->getType()))) {
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000594 // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000595 // SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(MVT::i32);
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000596 // ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
597 //} else { // %hi/%lo relocation
Dale Johannesende064702009-02-06 21:50:26 +0000598 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, MVT::i32, CP);
599 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, CP);
600 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000601 //}
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000602
603 return ResNode;
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000604}
605
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000606//===----------------------------------------------------------------------===//
607// Calling Convention Implementation
608//
609// The lower operations present on calling convention works on this order:
610// LowerCALL (virt regs --> phys regs, virt regs --> stack)
611// LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs)
612// LowerRET (virt regs --> phys regs)
613// LowerCALL (phys regs --> virt regs)
614//
615//===----------------------------------------------------------------------===//
616
617#include "MipsGenCallingConv.inc"
618
619//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000620// TODO: Implement a generic logic using tblgen that can support this.
621// Mips O32 ABI rules:
622// ---
623// i32 - Passed in A0, A1, A2, A3 and stack
624// f32 - Only passed in f32 registers if no int reg has been used yet to hold
625// an argument. Otherwise, passed in A1, A2, A3 and stack.
626// f64 - Only passed in two aliased f32 registers if no int reg has been used
627// yet to hold an argument. Otherwise, use A2, A3 and stack. If A1 is
628// not used, it must be shadowed. If only A3 is avaiable, shadow it and
629// go to stack.
630//===----------------------------------------------------------------------===//
631
632static bool CC_MipsO32(unsigned ValNo, MVT ValVT,
633 MVT LocVT, CCValAssign::LocInfo LocInfo,
634 ISD::ArgFlagsTy ArgFlags, CCState &State) {
635
636 static const unsigned IntRegsSize=4, FloatRegsSize=2;
637
638 static const unsigned IntRegs[] = {
639 Mips::A0, Mips::A1, Mips::A2, Mips::A3
640 };
641 static const unsigned F32Regs[] = {
642 Mips::F12, Mips::F14
643 };
644 static const unsigned F64Regs[] = {
645 Mips::D6, Mips::D7
646 };
647
648 unsigned Reg=0;
649 unsigned UnallocIntReg = State.getFirstUnallocated(IntRegs, IntRegsSize);
650 bool IntRegUsed = (IntRegs[UnallocIntReg] != (unsigned (Mips::A0)));
651
652 // Promote i8 and i16
653 if (LocVT == MVT::i8 || LocVT == MVT::i16) {
654 LocVT = MVT::i32;
655 if (ArgFlags.isSExt())
656 LocInfo = CCValAssign::SExt;
657 else if (ArgFlags.isZExt())
658 LocInfo = CCValAssign::ZExt;
659 else
660 LocInfo = CCValAssign::AExt;
661 }
662
663 if (ValVT == MVT::i32 || (ValVT == MVT::f32 && IntRegUsed)) {
664 Reg = State.AllocateReg(IntRegs, IntRegsSize);
665 IntRegUsed = true;
666 LocVT = MVT::i32;
667 }
668
669 if (ValVT.isFloatingPoint() && !IntRegUsed) {
670 if (ValVT == MVT::f32)
671 Reg = State.AllocateReg(F32Regs, FloatRegsSize);
672 else
673 Reg = State.AllocateReg(F64Regs, FloatRegsSize);
674 }
675
676 if (ValVT == MVT::f64 && IntRegUsed) {
677 if (UnallocIntReg != IntRegsSize) {
678 // If we hit register A3 as the first not allocated, we must
679 // mark it as allocated (shadow) and use the stack instead.
680 if (IntRegs[UnallocIntReg] != (unsigned (Mips::A3)))
681 Reg = Mips::A2;
682 for (;UnallocIntReg < IntRegsSize; ++UnallocIntReg)
683 State.AllocateReg(UnallocIntReg);
684 }
685 LocVT = MVT::i32;
686 }
687
688 if (!Reg) {
689 unsigned SizeInBytes = ValVT.getSizeInBits() >> 3;
690 unsigned Offset = State.AllocateStack(SizeInBytes, SizeInBytes);
691 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
692 } else
693 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
694
695 return false; // CC must always match
696}
697
698//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000699// CALL Calling Convention Implementation
700//===----------------------------------------------------------------------===//
701
Nate Begeman5bf4b752009-01-26 03:15:54 +0000702/// LowerCALL - functions arguments are copied from virtual regs to
703/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000704/// TODO: isVarArg, isTailCall.
Dan Gohman475871a2008-07-27 21:46:04 +0000705SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000706LowerCALL(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000707{
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000708 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000709
Dan Gohman095cc292008-09-13 01:54:27 +0000710 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
711 SDValue Chain = TheCall->getChain();
712 SDValue Callee = TheCall->getCallee();
713 bool isVarArg = TheCall->isVarArg();
714 unsigned CC = TheCall->getCallingConv();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000715 DebugLoc dl = TheCall->getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000716
717 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000718
719 // Analyze operands of the call, assigning locations to each operand.
720 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000721 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
722
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000723 // To meet O32 ABI, Mips must always allocate 16 bytes on
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000724 // the stack (even if less than 4 are used as arguments)
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000725 if (Subtarget->isABI_O32()) {
726 int VTsize = MVT(MVT::i32).getSizeInBits()/8;
727 MFI->CreateFixedObject(VTsize, (VTsize*3));
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000728 CCInfo.AnalyzeCallOperands(TheCall, CC_MipsO32);
729 } else
730 CCInfo.AnalyzeCallOperands(TheCall, CC_Mips);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000731
732 // Get a count of how many bytes are to be pushed on the stack.
733 unsigned NumBytes = CCInfo.getNextStackOffset();
Chris Lattnere563bbc2008-10-11 22:08:30 +0000734 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000735
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000736 // With EABI is it possible to have 16 args on registers.
Dan Gohman475871a2008-07-27 21:46:04 +0000737 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
738 SmallVector<SDValue, 8> MemOpChains;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000739
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000740 // First/LastArgStackLoc contains the first/last
741 // "at stack" argument location.
742 int LastArgStackLoc = 0;
743 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000744
745 // Walk the register/memloc assignments, inserting copies/loads.
746 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000747 SDValue Arg = TheCall->getArg(i);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000748 CCValAssign &VA = ArgLocs[i];
749
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000750 // Promote the value if needed.
751 switch (VA.getLocInfo()) {
Chris Lattnere0b12152008-03-17 06:57:02 +0000752 default: assert(0 && "Unknown loc info!");
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000753 case CCValAssign::Full:
754 if (Subtarget->isABI_O32() && VA.isRegLoc()) {
755 if (VA.getValVT() == MVT::f32 && VA.getLocVT() == MVT::i32)
756 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Arg);
757 if (VA.getValVT() == MVT::f64 && VA.getLocVT() == MVT::i32) {
758 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
759 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Arg,
760 DAG.getConstant(0, getPointerTy()));
761 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Arg,
762 DAG.getConstant(1, getPointerTy()));
763 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Lo));
764 RegsToPass.push_back(std::make_pair(VA.getLocReg()+1, Hi));
765 continue;
766 }
767 }
768 break;
Chris Lattnere0b12152008-03-17 06:57:02 +0000769 case CCValAssign::SExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000770 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000771 break;
772 case CCValAssign::ZExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000773 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000774 break;
775 case CCValAssign::AExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000776 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000777 break;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000778 }
779
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000780 // Arguments that can be passed on register must be kept at
781 // RegsToPass vector
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000782 if (VA.isRegLoc()) {
783 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Chris Lattnere0b12152008-03-17 06:57:02 +0000784 continue;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000785 }
Chris Lattnere0b12152008-03-17 06:57:02 +0000786
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000787 // Register can't get to this point...
Chris Lattnere0b12152008-03-17 06:57:02 +0000788 assert(VA.isMemLoc());
789
790 // Create the frame index object for this incoming parameter
791 // This guarantees that when allocating Local Area the firsts
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000792 // 16 bytes which are alwayes reserved won't be overwritten
793 // if O32 ABI is used. For EABI the first address is zero.
794 LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000795 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000796 LastArgStackLoc);
Chris Lattnere0b12152008-03-17 06:57:02 +0000797
Dan Gohman475871a2008-07-27 21:46:04 +0000798 SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
Chris Lattnere0b12152008-03-17 06:57:02 +0000799
800 // emit ISD::STORE whichs stores the
801 // parameter value to a stack Location
Dale Johannesen33c960f2009-02-04 20:06:27 +0000802 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000803 }
804
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000805 // Transform all store nodes into one single node because all store
806 // nodes are independent of each other.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000807 if (!MemOpChains.empty())
Dale Johannesen33c960f2009-02-04 20:06:27 +0000808 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000809 &MemOpChains[0], MemOpChains.size());
810
811 // Build a sequence of copy-to-reg nodes chained together with token
812 // chain and flag operands which copy the outgoing args into registers.
813 // The InFlag in necessary since all emited instructions must be
814 // stuck together.
Dan Gohman475871a2008-07-27 21:46:04 +0000815 SDValue InFlag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000816 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Dale Johannesen33c960f2009-02-04 20:06:27 +0000817 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000818 RegsToPass[i].second, InFlag);
819 InFlag = Chain.getValue(1);
820 }
821
Bill Wendling056292f2008-09-16 21:48:12 +0000822 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
823 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
824 // node so that legalize doesn't hack it.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000825 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000826 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
Bill Wendling056292f2008-09-16 21:48:12 +0000827 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
828 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
829
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000830 // MipsJmpLink = #chain, #target_address, #opt_in_flags...
831 // = Chain, Callee, Reg#1, Reg#2, ...
832 //
833 // Returns a chain & a flag for retval copy to use.
834 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +0000835 SmallVector<SDValue, 8> Ops;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000836 Ops.push_back(Chain);
837 Ops.push_back(Callee);
838
839 // Add argument registers to the end of the list so that they are
840 // known live into the call.
841 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
842 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
843 RegsToPass[i].second.getValueType()));
844
Gabor Greifba36cb52008-08-28 21:40:38 +0000845 if (InFlag.getNode())
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000846 Ops.push_back(InFlag);
847
Dale Johannesen33c960f2009-02-04 20:06:27 +0000848 Chain = DAG.getNode(MipsISD::JmpLink, dl, NodeTys, &Ops[0], Ops.size());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000849 InFlag = Chain.getValue(1);
850
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000851 // Create the CALLSEQ_END node.
Chris Lattnere563bbc2008-10-11 22:08:30 +0000852 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
853 DAG.getIntPtrConstant(0, true), InFlag);
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000854 InFlag = Chain.getValue(1);
855
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000856 // Create a stack location to hold GP when PIC is used. This stack
857 // location is used on function prologue to save GP and also after all
858 // emited CALL's to restore GP.
859 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000860 // Function can have an arbitrary number of calls, so
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000861 // hold the LastArgStackLoc with the biggest offset.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000862 int FI;
863 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000864 if (LastArgStackLoc >= MipsFI->getGPStackOffset()) {
865 LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000866 // Create the frame index only once. SPOffset here can be anything
867 // (this will be fixed on processFunctionBeforeFrameFinalized)
868 if (MipsFI->getGPStackOffset() == -1) {
869 FI = MFI->CreateFixedObject(4, 0);
870 MipsFI->setGPFI(FI);
871 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000872 MipsFI->setGPStackOffset(LastArgStackLoc);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000873 }
874
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000875 // Reload GP value.
876 FI = MipsFI->getGPFI();
Dan Gohman475871a2008-07-27 21:46:04 +0000877 SDValue FIN = DAG.getFrameIndex(FI,getPointerTy());
Dale Johannesen33c960f2009-02-04 20:06:27 +0000878 SDValue GPLoad = DAG.getLoad(MVT::i32, dl, Chain, FIN, NULL, 0);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000879 Chain = GPLoad.getValue(1);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000880 Chain = DAG.getCopyToReg(Chain, dl, DAG.getRegister(Mips::GP, MVT::i32),
Dan Gohman475871a2008-07-27 21:46:04 +0000881 GPLoad, SDValue(0,0));
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000882 InFlag = Chain.getValue(1);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000883 }
884
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000885 // Handle result values, copying them out of physregs into vregs that we
886 // return.
Dan Gohman095cc292008-09-13 01:54:27 +0000887 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG), Op.getResNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000888}
889
890/// LowerCallResult - Lower the result values of an ISD::CALL into the
891/// appropriate copies out of appropriate physical registers. This assumes that
892/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
893/// being lowered. Returns a SDNode with the same number of values as the
894/// ISD::CALL.
895SDNode *MipsTargetLowering::
Dan Gohman095cc292008-09-13 01:54:27 +0000896LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000897 unsigned CallingConv, SelectionDAG &DAG) {
898
Dan Gohman095cc292008-09-13 01:54:27 +0000899 bool isVarArg = TheCall->isVarArg();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000900 DebugLoc dl = TheCall->getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000901
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000902 // Assign locations to each value returned by this call.
903 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000904 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
905
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000906 CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips);
Dan Gohman475871a2008-07-27 21:46:04 +0000907 SmallVector<SDValue, 8> ResultVals;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000908
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000909 // Copy all of the result registers out of their specified physreg.
910 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dale Johannesen33c960f2009-02-04 20:06:27 +0000911 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000912 RVLocs[i].getValVT(), InFlag).getValue(1);
913 InFlag = Chain.getValue(2);
914 ResultVals.push_back(Chain.getValue(0));
915 }
916
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000917 ResultVals.push_back(Chain);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000918
919 // Merge everything together with a MERGE_VALUES node.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000920 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +0000921 &ResultVals[0], ResultVals.size()).getNode();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000922}
923
924//===----------------------------------------------------------------------===//
925// FORMAL_ARGUMENTS Calling Convention Implementation
926//===----------------------------------------------------------------------===//
927
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000928/// LowerFORMAL_ARGUMENTS - transform physical registers into
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000929/// virtual registers and generate load operations for
930/// arguments places on the stack.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000931/// TODO: isVarArg
Dan Gohman475871a2008-07-27 21:46:04 +0000932SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000933LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000934{
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000935 SDValue Root = Op.getOperand(0);
936 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000937 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000938 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000939 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000940
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000941 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000942 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000943
944 unsigned StackReg = MF.getTarget().getRegisterInfo()->getFrameRegister(MF);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000945
946 // Assign locations to all of the incoming arguments.
947 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000948 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
949
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000950 if (Subtarget->isABI_O32())
951 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_MipsO32);
952 else
953 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_Mips);
954
Dan Gohman475871a2008-07-27 21:46:04 +0000955 SmallVector<SDValue, 16> ArgValues;
956 SDValue StackPtr;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000957
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000958 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
959
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000960 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000961 CCValAssign &VA = ArgLocs[i];
962
963 // Arguments stored on registers
964 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000965 MVT RegVT = VA.getLocVT();
Bill Wendling06b8c192008-07-09 05:55:53 +0000966 TargetRegisterClass *RC = 0;
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000967
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000968 if (RegVT == MVT::i32)
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000969 RC = Mips::CPURegsRegisterClass;
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000970 else if (RegVT == MVT::f32)
971 RC = Mips::FGR32RegisterClass;
972 else if (RegVT == MVT::f64) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000973 if (!Subtarget->isSingleFloat())
974 RC = Mips::AFGR64RegisterClass;
975 } else
976 assert(0 && "RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000977
978 // Transform the arguments stored on
979 // physical registers into virtual ones
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000980 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000981 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000982
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000983 // If this is an 8 or 16-bit value, it has been passed promoted
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000984 // to 32 bits. Insert an assert[sz]ext to capture this, then
985 // truncate to the right size.
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000986 if (VA.getLocInfo() != CCValAssign::Full) {
Chris Lattnerd4015072009-03-26 05:28:14 +0000987 unsigned Opcode = 0;
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000988 if (VA.getLocInfo() == CCValAssign::SExt)
989 Opcode = ISD::AssertSext;
990 else if (VA.getLocInfo() == CCValAssign::ZExt)
991 Opcode = ISD::AssertZext;
Chris Lattnerd4015072009-03-26 05:28:14 +0000992 if (Opcode)
993 ArgValue = DAG.getNode(Opcode, dl, RegVT, ArgValue,
994 DAG.getValueType(VA.getValVT()));
Dale Johannesen33c960f2009-02-04 20:06:27 +0000995 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000996 }
997
998 // Handle O32 ABI cases: i32->f32 and (i32,i32)->f64
999 if (Subtarget->isABI_O32()) {
1000 if (RegVT == MVT::i32 && VA.getValVT() == MVT::f32)
1001 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue);
1002 if (RegVT == MVT::i32 && VA.getValVT() == MVT::f64) {
1003 unsigned Reg2 = AddLiveIn(DAG.getMachineFunction(),
1004 VA.getLocReg()+1, RC);
1005 SDValue ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg2, RegVT);
1006 SDValue Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue);
1007 SDValue Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue2);
1008 ArgValue = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::f64, Lo, Hi);
1009 }
1010 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001011
1012 ArgValues.push_back(ArgValue);
1013
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001014 // To meet ABI, when VARARGS are passed on registers, the registers
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +00001015 // must have their values written to the caller stack frame.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001016 if ((isVarArg) && (Subtarget->isABI_O32())) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001017 if (StackPtr.getNode() == 0)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001018 StackPtr = DAG.getRegister(StackReg, getPointerTy());
1019
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +00001020 // The stack pointer offset is relative to the caller stack frame.
1021 // Since the real stack size is unknown here, a negative SPOffset
1022 // is used so there's a way to adjust these offsets when the stack
1023 // size get known (on EliminateFrameIndex). A dummy SPOffset is
1024 // used instead of a direct negative address (which is recorded to
1025 // be used on emitPrologue) to avoid mis-calc of the first stack
1026 // offset on PEI::calculateFrameObjectOffsets.
1027 // Arguments are always 32-bit.
1028 int FI = MFI->CreateFixedObject(4, 0);
1029 MipsFI->recordStoreVarArgsFI(FI, -(4+(i*4)));
Dan Gohman475871a2008-07-27 21:46:04 +00001030 SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy());
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001031
1032 // emit ISD::STORE whichs stores the
1033 // parameter value to a stack Location
Dale Johannesen33c960f2009-02-04 20:06:27 +00001034 ArgValues.push_back(DAG.getStore(Root, dl, ArgValue, PtrOff, NULL, 0));
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001035 }
1036
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001037 } else { // VA.isRegLoc()
1038
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001039 // sanity check
1040 assert(VA.isMemLoc());
1041
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +00001042 // The stack pointer offset is relative to the caller stack frame.
1043 // Since the real stack size is unknown here, a negative SPOffset
1044 // is used so there's a way to adjust these offsets when the stack
1045 // size get known (on EliminateFrameIndex). A dummy SPOffset is
1046 // used instead of a direct negative address (which is recorded to
1047 // be used on emitPrologue) to avoid mis-calc of the first stack
1048 // offset on PEI::calculateFrameObjectOffsets.
1049 // Arguments are always 32-bit.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001050 unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
1051 int FI = MFI->CreateFixedObject(ArgSize, 0);
1052 MipsFI->recordLoadArgsFI(FI, -(ArgSize+
1053 (FirstStackArgLoc + VA.getLocMemOffset())));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001054
1055 // Create load nodes to retrieve arguments from the stack
Dan Gohman475871a2008-07-27 21:46:04 +00001056 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Dale Johannesen33c960f2009-02-04 20:06:27 +00001057 ArgValues.push_back(DAG.getLoad(VA.getValVT(), dl, Root, FIN, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001058 }
1059 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001060
1061 // The mips ABIs for returning structs by value requires that we copy
1062 // the sret argument into $v0 for the return. Save the argument into
1063 // a virtual register so that we can access it from the return points.
1064 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1065 unsigned Reg = MipsFI->getSRetReturnReg();
1066 if (!Reg) {
1067 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32));
1068 MipsFI->setSRetReturnReg(Reg);
1069 }
Dale Johannesen33c960f2009-02-04 20:06:27 +00001070 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
1071 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001072 }
1073
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001074 ArgValues.push_back(Root);
1075
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001076 // Return the new list of results.
Dale Johannesen33c960f2009-02-04 20:06:27 +00001077 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00001078 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001079}
1080
1081//===----------------------------------------------------------------------===//
1082// Return Value Calling Convention Implementation
1083//===----------------------------------------------------------------------===//
1084
Dan Gohman475871a2008-07-27 21:46:04 +00001085SDValue MipsTargetLowering::
1086LowerRET(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001087{
1088 // CCValAssign - represent the assignment of
1089 // the return value to a location
1090 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001091 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
1092 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Dale Johannesena05dca42009-02-04 23:02:30 +00001093 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001094
1095 // CCState - Info about the registers and stack slot.
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001096 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001097
1098 // Analize return values of ISD::RET
Gabor Greifba36cb52008-08-28 21:40:38 +00001099 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_Mips);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001100
1101 // If this is the first return lowered for this function, add
1102 // the regs to the liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +00001103 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001104 for (unsigned i = 0; i != RVLocs.size(); ++i)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001105 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +00001106 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001107 }
1108
1109 // The chain is always operand #0
Dan Gohman475871a2008-07-27 21:46:04 +00001110 SDValue Chain = Op.getOperand(0);
1111 SDValue Flag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001112
1113 // Copy the result values into the output registers.
1114 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1115 CCValAssign &VA = RVLocs[i];
1116 assert(VA.isRegLoc() && "Can only return in registers!");
1117
1118 // ISD::RET => ret chain, (regnum1,val1), ...
1119 // So i*2+1 index only the regnums
Dale Johannesena05dca42009-02-04 23:02:30 +00001120 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1121 Op.getOperand(i*2+1), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001122
1123 // guarantee that all emitted copies are
1124 // stuck together, avoiding something bad
1125 Flag = Chain.getValue(1);
1126 }
1127
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001128 // The mips ABIs for returning structs by value requires that we copy
1129 // the sret argument into $v0 for the return. We saved the argument into
1130 // a virtual register in the entry block, so now we copy the value out
1131 // and into $v0.
1132 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1133 MachineFunction &MF = DAG.getMachineFunction();
1134 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
1135 unsigned Reg = MipsFI->getSRetReturnReg();
1136
1137 if (!Reg)
1138 assert(0 && "sret virtual register not created in the entry block");
Dale Johannesena05dca42009-02-04 23:02:30 +00001139 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001140
Dale Johannesena05dca42009-02-04 23:02:30 +00001141 Chain = DAG.getCopyToReg(Chain, dl, Mips::V0, Val, Flag);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001142 Flag = Chain.getValue(1);
1143 }
1144
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001145 // Return on Mips is always a "jr $ra"
Gabor Greifba36cb52008-08-28 21:40:38 +00001146 if (Flag.getNode())
Dale Johannesena05dca42009-02-04 23:02:30 +00001147 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001148 Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001149 else // Return Void
Dale Johannesena05dca42009-02-04 23:02:30 +00001150 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001151 Chain, DAG.getRegister(Mips::RA, MVT::i32));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001152}
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001153
1154//===----------------------------------------------------------------------===//
1155// Mips Inline Assembly Support
1156//===----------------------------------------------------------------------===//
1157
1158/// getConstraintType - Given a constraint letter, return the type of
1159/// constraint it is for this target.
1160MipsTargetLowering::ConstraintType MipsTargetLowering::
1161getConstraintType(const std::string &Constraint) const
1162{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001163 // Mips specific constrainy
1164 // GCC config/mips/constraints.md
1165 //
1166 // 'd' : An address register. Equivalent to r
1167 // unless generating MIPS16 code.
1168 // 'y' : Equivalent to r; retained for
1169 // backwards compatibility.
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +00001170 // 'f' : Floating Point registers.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001171 if (Constraint.size() == 1) {
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001172 switch (Constraint[0]) {
1173 default : break;
1174 case 'd':
1175 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001176 case 'f':
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001177 return C_RegisterClass;
1178 break;
1179 }
1180 }
1181 return TargetLowering::getConstraintType(Constraint);
1182}
1183
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001184/// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1185/// return a list of registers that can be used to satisfy the constraint.
1186/// This should only be used for C_RegisterClass constraints.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001187std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00001188getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001189{
1190 if (Constraint.size() == 1) {
1191 switch (Constraint[0]) {
1192 case 'r':
1193 return std::make_pair(0U, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001194 case 'f':
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +00001195 if (VT == MVT::f32)
1196 return std::make_pair(0U, Mips::FGR32RegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001197 if (VT == MVT::f64)
1198 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1199 return std::make_pair(0U, Mips::AFGR64RegisterClass);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001200 }
1201 }
1202 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1203}
1204
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001205/// Given a register class constraint, like 'r', if this corresponds directly
1206/// to an LLVM register class, return a register of 0 and the register class
1207/// pointer.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001208std::vector<unsigned> MipsTargetLowering::
1209getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001210 MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001211{
1212 if (Constraint.size() != 1)
1213 return std::vector<unsigned>();
1214
1215 switch (Constraint[0]) {
1216 default : break;
1217 case 'r':
1218 // GCC Mips Constraint Letters
1219 case 'd':
1220 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001221 return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3,
1222 Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1,
1223 Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7,
1224 Mips::T8, 0);
1225
1226 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001227 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001228 if (Subtarget->isSingleFloat())
1229 return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1230 Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1231 Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1232 Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1233 Mips::F30, Mips::F31, 0);
1234 else
1235 return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8,
1236 Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26,
1237 Mips::F28, Mips::F30, 0);
Duncan Sands15126422008-07-08 09:33:14 +00001238 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001239
1240 if (VT == MVT::f64)
1241 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1242 return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4,
1243 Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13,
1244 Mips::D14, Mips::D15, 0);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001245 }
1246 return std::vector<unsigned>();
1247}
Dan Gohman6520e202008-10-18 02:06:02 +00001248
1249bool
1250MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1251 // The Mips target isn't yet aware of offsets.
1252 return false;
1253}