blob: ff9f12e1a922fe71f8076397db0a6cebd1d2d25d [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===-- MipsISelDAGToDAG.cpp - A dag to dag inst selector for Mips --------===//
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 an instruction selector for the MIPS target.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "mips-isel"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000015#include "Mips.h"
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000016#include "MipsMachineFunction.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000017#include "MipsRegisterInfo.h"
18#include "MipsSubtarget.h"
19#include "MipsTargetMachine.h"
20#include "llvm/GlobalValue.h"
21#include "llvm/Instructions.h"
22#include "llvm/Intrinsics.h"
23#include "llvm/Support/CFG.h"
24#include "llvm/Type.h"
25#include "llvm/CodeGen/MachineConstantPool.h"
26#include "llvm/CodeGen/MachineFunction.h"
27#include "llvm/CodeGen/MachineFrameInfo.h"
28#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000030#include "llvm/CodeGen/SelectionDAGISel.h"
31#include "llvm/Target/TargetMachine.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000032#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000033#include "llvm/Support/ErrorHandling.h"
34#include "llvm/Support/raw_ostream.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000035using namespace llvm;
36
37//===----------------------------------------------------------------------===//
38// Instruction Selector Implementation
39//===----------------------------------------------------------------------===//
40
41//===----------------------------------------------------------------------===//
42// MipsDAGToDAGISel - MIPS specific code to select MIPS machine
43// instructions for SelectionDAG operations.
44//===----------------------------------------------------------------------===//
45namespace {
46
Nick Lewycky6726b6d2009-10-25 06:33:48 +000047class MipsDAGToDAGISel : public SelectionDAGISel {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000048
49 /// TM - Keep a reference to MipsTargetMachine.
50 MipsTargetMachine &TM;
51
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000052 /// Subtarget - Keep a pointer to the MipsSubtarget around so that we can
53 /// make the right decision when generating code for different targets.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000054 const MipsSubtarget &Subtarget;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000055
56public:
Dan Gohman1002c022008-07-07 18:00:37 +000057 explicit MipsDAGToDAGISel(MipsTargetMachine &tm) :
Dan Gohman79ce2762009-01-15 19:20:50 +000058 SelectionDAGISel(tm),
Dan Gohmanda8ac5f2008-10-03 16:55:19 +000059 TM(tm), Subtarget(tm.getSubtarget<MipsSubtarget>()) {}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000060
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000061 // Pass Name
62 virtual const char *getPassName() const {
63 return "MIPS DAG->DAG Pattern Instruction Selection";
64 }
65
66
67private:
68 // Include the pieces autogenerated from the target description.
69 #include "MipsGenDAGISel.inc"
70
Dan Gohman99114052009-06-03 20:30:14 +000071 /// getTargetMachine - Return a reference to the TargetMachine, casted
72 /// to the target-specific type.
73 const MipsTargetMachine &getTargetMachine() {
74 return static_cast<const MipsTargetMachine &>(TM);
75 }
76
77 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
78 /// to the target-specific type.
79 const MipsInstrInfo *getInstrInfo() {
80 return getTargetMachine().getInstrInfo();
81 }
82
83 SDNode *getGlobalBaseReg();
Dan Gohmaneeb3a002010-01-05 01:24:18 +000084 SDNode *Select(SDNode *N);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000085
86 // Complex Pattern.
Chris Lattner52a261b2010-09-21 20:31:19 +000087 bool SelectAddr(SDValue N, SDValue &Base, SDValue &Offset);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000088
Dan Gohmaneeb3a002010-01-05 01:24:18 +000089 SDNode *SelectLoadFp64(SDNode *N);
90 SDNode *SelectStoreFp64(SDNode *N);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000091
92 // getI32Imm - Return a target constant with the specified
93 // value, of type i32.
Dan Gohman475871a2008-07-27 21:46:04 +000094 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +000095 return CurDAG->getTargetConstant(Imm, MVT::i32);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000096 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000097};
98
99}
100
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000101
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000102/// getGlobalBaseReg - Output the instructions required to put the
103/// GOT address into a register.
Dan Gohman99114052009-06-03 20:30:14 +0000104SDNode *MipsDAGToDAGISel::getGlobalBaseReg() {
Dan Gohman99114052009-06-03 20:30:14 +0000105 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
106 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000107}
108
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000109/// ComplexPattern used on MipsInstrInfo
110/// Used on Mips Load/Store instructions
111bool MipsDAGToDAGISel::
Chris Lattner52a261b2010-09-21 20:31:19 +0000112SelectAddr(SDValue Addr, SDValue &Offset, SDValue &Base) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000113 // if Address is FI, get the TargetFrameIndex.
114 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000115 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
116 Offset = CurDAG->getTargetConstant(0, MVT::i32);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000117 return true;
118 }
119
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000120 // on PIC code Load GA
121 if (TM.getRelocationModel() == Reloc::PIC_) {
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000122 if ((Addr.getOpcode() == ISD::TargetGlobalAddress) ||
Bruno Cardoso Lopesd71cebf2009-11-25 12:17:58 +0000123 (Addr.getOpcode() == ISD::TargetConstantPool) ||
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000124 (Addr.getOpcode() == ISD::TargetJumpTable)){
Owen Anderson825b72b2009-08-11 20:47:22 +0000125 Base = CurDAG->getRegister(Mips::GP, MVT::i32);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000126 Offset = Addr;
127 return true;
128 }
129 } else {
Bill Wendling056292f2008-09-16 21:48:12 +0000130 if ((Addr.getOpcode() == ISD::TargetExternalSymbol ||
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000131 Addr.getOpcode() == ISD::TargetGlobalAddress))
132 return false;
133 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000134
Bruno Cardoso Lopes7ff6fa22007-08-18 02:16:30 +0000135 // Operand is a result from an ADD.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000136 if (Addr.getOpcode() == ISD::ADD) {
137 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
Jakob Stoklund Olesen7552a3d2010-08-18 23:56:46 +0000138 if (isInt<16>(CN->getSExtValue())) {
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000139
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000140 // If the first operand is a FI, get the TargetFI Node
141 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>
142 (Addr.getOperand(0))) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000143 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000144 } else {
145 Base = Addr.getOperand(0);
146 }
147
Owen Anderson825b72b2009-08-11 20:47:22 +0000148 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000149 return true;
150 }
151 }
Bruno Cardoso Lopes6e0b6582009-11-16 04:33:42 +0000152
153 // When loading from constant pools, load the lower address part in
Bruno Cardoso Lopesd71cebf2009-11-25 12:17:58 +0000154 // the instruction itself. Example, instead of:
Bruno Cardoso Lopes6e0b6582009-11-16 04:33:42 +0000155 // lui $2, %hi($CPI1_0)
156 // addiu $2, $2, %lo($CPI1_0)
157 // lwc1 $f0, 0($2)
158 // Generate:
159 // lui $2, %hi($CPI1_0)
160 // lwc1 $f0, %lo($CPI1_0)($2)
Bruno Cardoso Lopesd71cebf2009-11-25 12:17:58 +0000161 if ((Addr.getOperand(0).getOpcode() == MipsISD::Hi ||
162 Addr.getOperand(0).getOpcode() == ISD::LOAD) &&
Bruno Cardoso Lopes6e0b6582009-11-16 04:33:42 +0000163 Addr.getOperand(1).getOpcode() == MipsISD::Lo) {
164 SDValue LoVal = Addr.getOperand(1);
Bruno Cardoso Lopesd71cebf2009-11-25 12:17:58 +0000165 if (dyn_cast<ConstantPoolSDNode>(LoVal.getOperand(0))) {
166 Base = Addr.getOperand(0);
167 Offset = LoVal.getOperand(0);
168 return true;
Bruno Cardoso Lopes6e0b6582009-11-16 04:33:42 +0000169 }
170 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000171 }
172
Bruno Cardoso Lopesa4e82002007-07-11 23:24:41 +0000173 Base = Addr;
Owen Anderson825b72b2009-08-11 20:47:22 +0000174 Offset = CurDAG->getTargetConstant(0, MVT::i32);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000175 return true;
176}
177
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000178SDNode *MipsDAGToDAGISel::SelectLoadFp64(SDNode *N) {
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000179 MVT::SimpleValueType NVT =
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000180 N->getValueType(0).getSimpleVT().SimpleTy;
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000181
182 if (!Subtarget.isMips1() || NVT != MVT::f64)
183 return NULL;
184
Jakob Stoklund Olesen7fa846f2010-09-03 00:35:13 +0000185 LoadSDNode *LN = cast<LoadSDNode>(N);
186 if (LN->getExtensionType() != ISD::NON_EXTLOAD ||
187 LN->getAddressingMode() != ISD::UNINDEXED)
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000188 return NULL;
189
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000190 SDValue Chain = N->getOperand(0);
191 SDValue N1 = N->getOperand(1);
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000192 SDValue Offset0, Offset1, Base;
193
Chris Lattner52a261b2010-09-21 20:31:19 +0000194 if (!SelectAddr(N1, Offset0, Base) ||
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000195 N1.getValueType() != MVT::i32)
196 return NULL;
197
198 MachineSDNode::mmo_iterator MemRefs0 = MF->allocateMemRefsArray(1);
199 MemRefs0[0] = cast<MemSDNode>(N)->getMemOperand();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000200 DebugLoc dl = N->getDebugLoc();
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000201
202 // The second load should start after for 4 bytes.
203 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Offset0))
204 Offset1 = CurDAG->getTargetConstant(C->getSExtValue()+4, MVT::i32);
205 else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Offset0))
206 Offset1 = CurDAG->getTargetConstantPool(CP->getConstVal(),
207 MVT::i32,
208 CP->getAlignment(),
209 CP->getOffset()+4,
210 CP->getTargetFlags());
211 else
212 return NULL;
213
Bruno Cardoso Lopes37fd5372009-11-25 01:05:25 +0000214 // Choose the offsets depending on the endianess
215 if (TM.getTargetData()->isBigEndian())
216 std::swap(Offset0, Offset1);
217
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000218 // Instead of:
219 // ldc $f0, X($3)
220 // Generate:
221 // lwc $f0, X($3)
222 // lwc $f1, X+4($3)
223 SDNode *LD0 = CurDAG->getMachineNode(Mips::LWC1, dl, MVT::f32,
224 MVT::Other, Offset0, Base, Chain);
Chris Lattner518bb532010-02-09 19:54:29 +0000225 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000226 dl, NVT), 0);
Jakob Stoklund Olesenfff916a2010-05-24 17:42:58 +0000227 SDValue I0 = CurDAG->getTargetInsertSubreg(Mips::sub_fpeven, dl,
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000228 MVT::f64, Undef, SDValue(LD0, 0));
229
230 SDNode *LD1 = CurDAG->getMachineNode(Mips::LWC1, dl, MVT::f32,
231 MVT::Other, Offset1, Base, SDValue(LD0, 1));
Jakob Stoklund Olesenfff916a2010-05-24 17:42:58 +0000232 SDValue I1 = CurDAG->getTargetInsertSubreg(Mips::sub_fpodd, dl,
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000233 MVT::f64, I0, SDValue(LD1, 0));
234
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000235 ReplaceUses(SDValue(N, 0), I1);
236 ReplaceUses(SDValue(N, 1), Chain);
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000237 cast<MachineSDNode>(LD0)->setMemRefs(MemRefs0, MemRefs0 + 1);
238 cast<MachineSDNode>(LD1)->setMemRefs(MemRefs0, MemRefs0 + 1);
239 return I1.getNode();
240}
241
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000242SDNode *MipsDAGToDAGISel::SelectStoreFp64(SDNode *N) {
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000243
244 if (!Subtarget.isMips1() ||
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000245 N->getOperand(1).getValueType() != MVT::f64)
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000246 return NULL;
247
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000248 SDValue Chain = N->getOperand(0);
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000249
Jakob Stoklund Olesen7552a3d2010-08-18 23:56:46 +0000250 StoreSDNode *SN = cast<StoreSDNode>(N);
251 if (SN->isTruncatingStore() || SN->getAddressingMode() != ISD::UNINDEXED)
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000252 return NULL;
253
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000254 SDValue N1 = N->getOperand(1);
255 SDValue N2 = N->getOperand(2);
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000256 SDValue Offset0, Offset1, Base;
257
Chris Lattner52a261b2010-09-21 20:31:19 +0000258 if (!SelectAddr(N2, Offset0, Base) ||
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000259 N1.getValueType() != MVT::f64 ||
260 N2.getValueType() != MVT::i32)
261 return NULL;
262
263 MachineSDNode::mmo_iterator MemRefs0 = MF->allocateMemRefsArray(1);
264 MemRefs0[0] = cast<MemSDNode>(N)->getMemOperand();
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000265 DebugLoc dl = N->getDebugLoc();
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000266
267 // Get the even and odd part from the f64 register
Jakob Stoklund Olesenfff916a2010-05-24 17:42:58 +0000268 SDValue FPOdd = CurDAG->getTargetExtractSubreg(Mips::sub_fpodd,
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000269 dl, MVT::f32, N1);
Jakob Stoklund Olesenfff916a2010-05-24 17:42:58 +0000270 SDValue FPEven = CurDAG->getTargetExtractSubreg(Mips::sub_fpeven,
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000271 dl, MVT::f32, N1);
272
273 // The second store should start after for 4 bytes.
274 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Offset0))
275 Offset1 = CurDAG->getTargetConstant(C->getSExtValue()+4, MVT::i32);
276 else
277 return NULL;
278
Bruno Cardoso Lopes37fd5372009-11-25 01:05:25 +0000279 // Choose the offsets depending on the endianess
280 if (TM.getTargetData()->isBigEndian())
281 std::swap(Offset0, Offset1);
282
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000283 // Instead of:
284 // sdc $f0, X($3)
285 // Generate:
286 // swc $f0, X($3)
287 // swc $f1, X+4($3)
288 SDValue Ops0[] = { FPEven, Offset0, Base, Chain };
289 Chain = SDValue(CurDAG->getMachineNode(Mips::SWC1, dl,
290 MVT::Other, Ops0, 4), 0);
291 cast<MachineSDNode>(Chain.getNode())->setMemRefs(MemRefs0, MemRefs0 + 1);
292
293 SDValue Ops1[] = { FPOdd, Offset1, Base, Chain };
294 Chain = SDValue(CurDAG->getMachineNode(Mips::SWC1, dl,
295 MVT::Other, Ops1, 4), 0);
296 cast<MachineSDNode>(Chain.getNode())->setMemRefs(MemRefs0, MemRefs0 + 1);
297
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000298 ReplaceUses(SDValue(N, 0), Chain);
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000299 return Chain.getNode();
300}
301
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000302/// Select instructions not customized! Used for
303/// expanded, promoted and normal instructions
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000304SDNode* MipsDAGToDAGISel::Select(SDNode *Node) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000305 unsigned Opcode = Node->getOpcode();
Dale Johannesena05dca42009-02-04 23:02:30 +0000306 DebugLoc dl = Node->getDebugLoc();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000307
308 // Dump information about the Node being selected
Chris Lattner7c306da2010-03-02 06:34:30 +0000309 DEBUG(errs() << "Selecting: "; Node->dump(CurDAG); errs() << "\n");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000310
311 // If we have a custom node, we already have selected!
Dan Gohmane8be6c62008-07-17 19:10:17 +0000312 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +0000313 DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000314 return NULL;
315 }
316
317 ///
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000318 // Instruction Selection not handled by the auto-generated
319 // tablegen selection should be handled here.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000320 ///
321 switch(Opcode) {
322
323 default: break;
324
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000325 case ISD::SUBE:
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000326 case ISD::ADDE: {
Dan Gohman475871a2008-07-27 21:46:04 +0000327 SDValue InFlag = Node->getOperand(2), CmpLHS;
Chris Lattner30baa952008-12-14 21:38:24 +0000328 unsigned Opc = InFlag.getOpcode(); Opc=Opc;
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000329 assert(((Opc == ISD::ADDC || Opc == ISD::ADDE) ||
330 (Opc == ISD::SUBC || Opc == ISD::SUBE)) &&
331 "(ADD|SUB)E flag operand must come from (ADD|SUB)C/E insn");
332
Chris Lattner30baa952008-12-14 21:38:24 +0000333 unsigned MOp;
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000334 if (Opcode == ISD::ADDE) {
335 CmpLHS = InFlag.getValue(0);
336 MOp = Mips::ADDu;
337 } else {
338 CmpLHS = InFlag.getOperand(0);
339 MOp = Mips::SUBu;
340 }
341
Dan Gohman475871a2008-07-27 21:46:04 +0000342 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000343
Dan Gohman475871a2008-07-27 21:46:04 +0000344 SDValue LHS = Node->getOperand(0);
345 SDValue RHS = Node->getOperand(1);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000346
Owen Andersone50ed302009-08-10 22:56:29 +0000347 EVT VT = LHS.getValueType();
Dan Gohman602b0c82009-09-25 18:54:59 +0000348 SDNode *Carry = CurDAG->getMachineNode(Mips::SLTu, dl, VT, Ops, 2);
349 SDNode *AddCarry = CurDAG->getMachineNode(Mips::ADDu, dl, VT,
350 SDValue(Carry,0), RHS);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000351
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000352 return CurDAG->SelectNodeTo(Node, MOp, VT, MVT::Flag,
Dan Gohman475871a2008-07-27 21:46:04 +0000353 LHS, SDValue(AddCarry,0));
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000354 }
355
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000356 /// Mul/Div with two results
357 case ISD::SDIVREM:
358 case ISD::UDIVREM:
359 case ISD::SMUL_LOHI:
360 case ISD::UMUL_LOHI: {
Dan Gohman475871a2008-07-27 21:46:04 +0000361 SDValue Op1 = Node->getOperand(0);
362 SDValue Op2 = Node->getOperand(1);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000363
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000364 unsigned Op;
365 if (Opcode == ISD::UMUL_LOHI || Opcode == ISD::SMUL_LOHI)
366 Op = (Opcode == ISD::UMUL_LOHI ? Mips::MULTu : Mips::MULT);
367 else
368 Op = (Opcode == ISD::UDIVREM ? Mips::DIVu : Mips::DIV);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000369
Bruno Cardoso Lopes8c5ee712010-01-19 19:57:07 +0000370 SDNode *MulDiv = CurDAG->getMachineNode(Op, dl, MVT::Flag, Op1, Op2);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000371
Bruno Cardoso Lopes8c5ee712010-01-19 19:57:07 +0000372 SDValue InFlag = SDValue(MulDiv, 0);
Dan Gohman602b0c82009-09-25 18:54:59 +0000373 SDNode *Lo = CurDAG->getMachineNode(Mips::MFLO, dl, MVT::i32,
374 MVT::Flag, InFlag);
Dan Gohman475871a2008-07-27 21:46:04 +0000375 InFlag = SDValue(Lo,1);
Dan Gohman602b0c82009-09-25 18:54:59 +0000376 SDNode *Hi = CurDAG->getMachineNode(Mips::MFHI, dl, MVT::i32, InFlag);
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000377
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000378 if (!SDValue(Node, 0).use_empty())
379 ReplaceUses(SDValue(Node, 0), SDValue(Lo,0));
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000380
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000381 if (!SDValue(Node, 1).use_empty())
382 ReplaceUses(SDValue(Node, 1), SDValue(Hi,0));
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000383
384 return NULL;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000385 }
386
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000387 /// Special Muls
388 case ISD::MUL:
Bruno Cardoso Lopes7d5652d2010-11-12 00:38:32 +0000389 if (Subtarget.isMips32())
390 break;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000391 case ISD::MULHS:
392 case ISD::MULHU: {
Dan Gohman475871a2008-07-27 21:46:04 +0000393 SDValue MulOp1 = Node->getOperand(0);
394 SDValue MulOp2 = Node->getOperand(1);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000395
396 unsigned MulOp = (Opcode == ISD::MULHU ? Mips::MULTu : Mips::MULT);
Dan Gohman602b0c82009-09-25 18:54:59 +0000397 SDNode *MulNode = CurDAG->getMachineNode(MulOp, dl,
398 MVT::Flag, MulOp1, MulOp2);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000399
Dan Gohman475871a2008-07-27 21:46:04 +0000400 SDValue InFlag = SDValue(MulNode, 0);
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000401
Bruno Cardoso Lopes9a720b02010-02-01 12:16:39 +0000402 if (Opcode == ISD::MUL)
Dan Gohman602b0c82009-09-25 18:54:59 +0000403 return CurDAG->getMachineNode(Mips::MFLO, dl, MVT::i32, InFlag);
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000404 else
Dan Gohman602b0c82009-09-25 18:54:59 +0000405 return CurDAG->getMachineNode(Mips::MFHI, dl, MVT::i32, InFlag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000406 }
407
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000408 /// Div/Rem operations
409 case ISD::SREM:
410 case ISD::UREM:
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000411 case ISD::SDIV:
412 case ISD::UDIV: {
Dan Gohman475871a2008-07-27 21:46:04 +0000413 SDValue Op1 = Node->getOperand(0);
414 SDValue Op2 = Node->getOperand(1);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000415
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000416 unsigned Op, MOp;
417 if (Opcode == ISD::SDIV || Opcode == ISD::UDIV) {
418 Op = (Opcode == ISD::SDIV ? Mips::DIV : Mips::DIVu);
419 MOp = Mips::MFLO;
420 } else {
421 Op = (Opcode == ISD::SREM ? Mips::DIV : Mips::DIVu);
422 MOp = Mips::MFHI;
423 }
Dan Gohman602b0c82009-09-25 18:54:59 +0000424 SDNode *Node = CurDAG->getMachineNode(Op, dl, MVT::Flag, Op1, Op2);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000425
Dan Gohman475871a2008-07-27 21:46:04 +0000426 SDValue InFlag = SDValue(Node, 0);
Dan Gohman602b0c82009-09-25 18:54:59 +0000427 return CurDAG->getMachineNode(MOp, dl, MVT::i32, InFlag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000428 }
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000429
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000430 // Get target GOT address.
Dan Gohman99114052009-06-03 20:30:14 +0000431 case ISD::GLOBAL_OFFSET_TABLE:
432 return getGlobalBaseReg();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000433
Bruno Cardoso Lopesa8173b92009-11-13 18:49:59 +0000434 case ISD::ConstantFP: {
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000435 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
436 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
Bruno Cardoso Lopesea982782010-01-19 12:53:04 +0000437 SDValue Zero = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
438 Mips::ZERO, MVT::i32);
439 SDValue Undef = SDValue(
Chris Lattner518bb532010-02-09 19:54:29 +0000440 CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, dl, MVT::f64), 0);
Bruno Cardoso Lopesea982782010-01-19 12:53:04 +0000441 SDNode *MTC = CurDAG->getMachineNode(Mips::MTC1, dl, MVT::f32, Zero);
Jakob Stoklund Olesenfff916a2010-05-24 17:42:58 +0000442 SDValue I0 = CurDAG->getTargetInsertSubreg(Mips::sub_fpeven, dl,
Bruno Cardoso Lopesea982782010-01-19 12:53:04 +0000443 MVT::f64, Undef, SDValue(MTC, 0));
Jakob Stoklund Olesenfff916a2010-05-24 17:42:58 +0000444 SDValue I1 = CurDAG->getTargetInsertSubreg(Mips::sub_fpodd, dl,
Bruno Cardoso Lopesea982782010-01-19 12:53:04 +0000445 MVT::f64, I0, SDValue(MTC, 0));
446 ReplaceUses(SDValue(Node, 0), I1);
447 return I1.getNode();
Bruno Cardoso Lopesa8173b92009-11-13 18:49:59 +0000448 }
449 break;
450 }
451
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000452 case ISD::LOAD:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000453 if (SDNode *ResNode = SelectLoadFp64(Node))
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000454 return ResNode;
455 // Other cases are autogenerated.
456 break;
457
458 case ISD::STORE:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000459 if (SDNode *ResNode = SelectStoreFp64(Node))
Bruno Cardoso Lopes2045c472009-11-19 06:06:13 +0000460 return ResNode;
461 // Other cases are autogenerated.
462 break;
463
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000464 /// Handle direct and indirect calls when using PIC. On PIC, when
465 /// GOT is smaller than about 64k (small code) the GA target is
466 /// loaded with only one instruction. Otherwise GA's target must
467 /// be loaded with 3 instructions.
468 case MipsISD::JmpLink: {
469 if (TM.getRelocationModel() == Reloc::PIC_) {
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000470 unsigned LastOpNum = Node->getNumOperands()-1;
471
Dan Gohman475871a2008-07-27 21:46:04 +0000472 SDValue Chain = Node->getOperand(0);
473 SDValue Callee = Node->getOperand(1);
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000474 SDValue InFlag;
475
476 // Skip the incomming flag if present
477 if (Node->getOperand(LastOpNum).getValueType() == MVT::Flag)
478 LastOpNum--;
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000479
480 if ( (isa<GlobalAddressSDNode>(Callee)) ||
Bill Wendling056292f2008-09-16 21:48:12 +0000481 (isa<ExternalSymbolSDNode>(Callee)) )
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000482 {
483 /// Direct call for global addresses and external symbols
Owen Anderson825b72b2009-08-11 20:47:22 +0000484 SDValue GPReg = CurDAG->getRegister(Mips::GP, MVT::i32);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000485
486 // Use load to get GOT target
Dan Gohman475871a2008-07-27 21:46:04 +0000487 SDValue Ops[] = { Callee, GPReg, Chain };
Dan Gohman602b0c82009-09-25 18:54:59 +0000488 SDValue Load = SDValue(CurDAG->getMachineNode(Mips::LW, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +0000489 MVT::Other, Ops, 3), 0);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000490 Chain = Load.getValue(1);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000491
492 // Call target must be on T9
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000493 Chain = CurDAG->getCopyToReg(Chain, dl, Mips::T9, Load, InFlag);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000494 } else
495 /// Indirect call
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000496 Chain = CurDAG->getCopyToReg(Chain, dl, Mips::T9, Callee, InFlag);
497
498 // Map the JmpLink operands to JALR
499 SDVTList NodeTys = CurDAG->getVTList(MVT::Other, MVT::Flag);
500 SmallVector<SDValue, 8> Ops;
501 Ops.push_back(CurDAG->getRegister(Mips::T9, MVT::i32));
502
503 for (unsigned i = 2, e = LastOpNum+1; i != e; ++i)
504 Ops.push_back(Node->getOperand(i));
505 Ops.push_back(Chain);
506 Ops.push_back(Chain.getValue(1));
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000507
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000508 // Emit Jump and Link Register
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000509 SDNode *ResNode = CurDAG->getMachineNode(Mips::JALR, dl, NodeTys,
510 &Ops[0], Ops.size());
511
512 // Replace Chain and InFlag
513 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
514 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 1));
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000515 return ResNode;
516 }
517 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000518 }
519
520 // Select the default instruction
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000521 SDNode *ResNode = SelectCode(Node);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000522
Chris Lattner7c306da2010-03-02 06:34:30 +0000523 DEBUG(errs() << "=> ");
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000524 if (ResNode == NULL || ResNode == Node)
525 DEBUG(Node->dump(CurDAG));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000526 else
527 DEBUG(ResNode->dump(CurDAG));
Chris Lattner893e1c92009-08-23 06:49:22 +0000528 DEBUG(errs() << "\n");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000529 return ResNode;
530}
531
532/// createMipsISelDag - This pass converts a legalized DAG into a
533/// MIPS-specific DAG, ready for instruction scheduling.
534FunctionPass *llvm::createMipsISelDag(MipsTargetMachine &TM) {
535 return new MipsDAGToDAGISel(TM);
536}