blob: 2289687ab1ae8ed2c4cffbb2ec988c74c731cf33 [file] [log] [blame]
Duraid Madinaf2db9b82005-10-28 17:46:35 +00001//===---- IA64ISelDAGToDAG.cpp - IA64 pattern matching inst selector ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Duraid Madina and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for IA64,
11// converting a legalized dag to an IA64 dag.
12//
13//===----------------------------------------------------------------------===//
14
15#include "IA64.h"
16#include "IA64TargetMachine.h"
17#include "IA64ISelLowering.h"
18#include "llvm/CodeGen/MachineInstrBuilder.h"
19#include "llvm/CodeGen/MachineFunction.h"
20#include "llvm/CodeGen/SSARegMap.h"
21#include "llvm/CodeGen/SelectionDAG.h"
22#include "llvm/CodeGen/SelectionDAGISel.h"
23#include "llvm/Target/TargetOptions.h"
24#include "llvm/ADT/Statistic.h"
25#include "llvm/Constants.h"
26#include "llvm/GlobalValue.h"
Chris Lattner420736d2006-03-25 06:47:10 +000027#include "llvm/Intrinsics.h"
Duraid Madinaf2db9b82005-10-28 17:46:35 +000028#include "llvm/Support/Debug.h"
29#include "llvm/Support/MathExtras.h"
Chris Lattner2c2c6c62006-01-22 23:41:00 +000030#include <iostream>
Evan Chengba2f0a92006-02-05 06:46:41 +000031#include <set>
Duraid Madinaf2db9b82005-10-28 17:46:35 +000032using namespace llvm;
33
34namespace {
35 Statistic<> FusedFP ("ia64-codegen", "Number of fused fp operations");
36 Statistic<> FrameOff("ia64-codegen", "Number of frame idx offsets collapsed");
37
38 //===--------------------------------------------------------------------===//
39 /// IA64DAGToDAGISel - IA64 specific code to select IA64 machine
40 /// instructions for SelectionDAG operations.
41 ///
42 class IA64DAGToDAGISel : public SelectionDAGISel {
43 IA64TargetLowering IA64Lowering;
44 unsigned GlobalBaseReg;
45 public:
Evan Chengc4c62572006-03-13 23:20:37 +000046 IA64DAGToDAGISel(IA64TargetMachine &TM)
47 : SelectionDAGISel(IA64Lowering), IA64Lowering(*TM.getTargetLowering()) {}
Duraid Madinaf2db9b82005-10-28 17:46:35 +000048
49 virtual bool runOnFunction(Function &Fn) {
50 // Make sure we re-emit a set of the global base reg if necessary
51 GlobalBaseReg = 0;
52 return SelectionDAGISel::runOnFunction(Fn);
53 }
54
55 /// getI64Imm - Return a target constant with the specified value, of type
56 /// i64.
57 inline SDOperand getI64Imm(uint64_t Imm) {
58 return CurDAG->getTargetConstant(Imm, MVT::i64);
59 }
60
61 /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
62 /// base register. Return the virtual register that holds this value.
63 // SDOperand getGlobalBaseReg(); TODO: hmm
64
65 // Select - Convert the specified operand from a target-independent to a
66 // target-specific node if it hasn't already been changed.
Evan Cheng34167212006-02-09 00:37:58 +000067 void Select(SDOperand &Result, SDOperand N);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000068
69 SDNode *SelectIntImmediateExpr(SDOperand LHS, SDOperand RHS,
70 unsigned OCHi, unsigned OCLo,
71 bool IsArithmetic = false,
72 bool Negate = false);
73 SDNode *SelectBitfieldInsert(SDNode *N);
74
75 /// SelectCC - Select a comparison of the specified values with the
76 /// specified condition code, returning the CR# of the expression.
77 SDOperand SelectCC(SDOperand LHS, SDOperand RHS, ISD::CondCode CC);
78
79 /// SelectAddr - Given the specified address, return the two operands for a
80 /// load/store instruction, and return true if it should be an indexed [r+r]
81 /// operation.
82 bool SelectAddr(SDOperand Addr, SDOperand &Op1, SDOperand &Op2);
83
Duraid Madinaf2db9b82005-10-28 17:46:35 +000084 /// InstructionSelectBasicBlock - This callback is invoked by
85 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
86 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
87
88 virtual const char *getPassName() const {
89 return "IA64 (Itanium) DAG->DAG Instruction Selector";
90 }
91
92// Include the pieces autogenerated from the target description.
93#include "IA64GenDAGISel.inc"
94
95private:
Duraid Madinab6f023a2005-11-21 14:14:54 +000096 SDOperand SelectDIV(SDOperand Op);
Duraid Madinaf2db9b82005-10-28 17:46:35 +000097 };
98}
99
100/// InstructionSelectBasicBlock - This callback is invoked by
101/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
102void IA64DAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
103 DEBUG(BB->dump());
104
105 // The selection process is inherently a bottom-up recursive process (users
106 // select their uses before themselves). Given infinite stack space, we
107 // could just start selecting on the root and traverse the whole graph. In
108 // practice however, this causes us to run out of stack space on large basic
109 // blocks. To avoid this problem, select the entry node, then all its uses,
110 // iteratively instead of recursively.
111 std::vector<SDOperand> Worklist;
112 Worklist.push_back(DAG.getEntryNode());
113
114 // Note that we can do this in the IA64 target (scanning forward across token
115 // chain edges) because no nodes ever get folded across these edges. On a
116 // target like X86 which supports load/modify/store operations, this would
117 // have to be more careful.
118 while (!Worklist.empty()) {
119 SDOperand Node = Worklist.back();
120 Worklist.pop_back();
121
122 // Chose from the least deep of the top two nodes.
123 if (!Worklist.empty() &&
124 Worklist.back().Val->getNodeDepth() < Node.Val->getNodeDepth())
125 std::swap(Worklist.back(), Node);
126
127 if ((Node.Val->getOpcode() >= ISD::BUILTIN_OP_END &&
128 Node.Val->getOpcode() < IA64ISD::FIRST_NUMBER) ||
129 CodeGenMap.count(Node)) continue;
130
131 for (SDNode::use_iterator UI = Node.Val->use_begin(),
132 E = Node.Val->use_end(); UI != E; ++UI) {
133 // Scan the values. If this use has a value that is a token chain, add it
134 // to the worklist.
135 SDNode *User = *UI;
136 for (unsigned i = 0, e = User->getNumValues(); i != e; ++i)
137 if (User->getValueType(i) == MVT::Other) {
138 Worklist.push_back(SDOperand(User, i));
139 break;
140 }
141 }
142
143 // Finally, legalize this node.
Evan Cheng34167212006-02-09 00:37:58 +0000144 SDOperand Dummy;
145 Select(Dummy, Node);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000146 }
147
148 // Select target instructions for the DAG.
Evan Chengba2f0a92006-02-05 06:46:41 +0000149 DAG.setRoot(SelectRoot(DAG.getRoot()));
Evan Cheng6a3d5a62006-05-25 00:24:28 +0000150 assert(InFlightSet.empty() && "ISel InFlightSet has not been emptied!");
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000151 CodeGenMap.clear();
Evan Chengafe358e2006-05-24 20:46:25 +0000152 HandleMap.clear();
153 ReplaceMap.clear();
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000154 DAG.RemoveDeadNodes();
155
156 // Emit machine code to BB.
157 ScheduleAndEmitDAG(DAG);
158}
159
Duraid Madinab6f023a2005-11-21 14:14:54 +0000160SDOperand IA64DAGToDAGISel::SelectDIV(SDOperand Op) {
161 SDNode *N = Op.Val;
Evan Cheng34167212006-02-09 00:37:58 +0000162 SDOperand Chain, Tmp1, Tmp2;
163 Select(Chain, N->getOperand(0));
Duraid Madinab6f023a2005-11-21 14:14:54 +0000164
Evan Cheng34167212006-02-09 00:37:58 +0000165 Select(Tmp1, N->getOperand(0));
166 Select(Tmp2, N->getOperand(1));
Duraid Madinab6f023a2005-11-21 14:14:54 +0000167
168 bool isFP=false;
169
170 if(MVT::isFloatingPoint(Tmp1.getValueType()))
171 isFP=true;
172
173 bool isModulus=false; // is it a division or a modulus?
174 bool isSigned=false;
175
176 switch(N->getOpcode()) {
177 case ISD::FDIV:
178 case ISD::SDIV: isModulus=false; isSigned=true; break;
179 case ISD::UDIV: isModulus=false; isSigned=false; break;
180 case ISD::FREM:
181 case ISD::SREM: isModulus=true; isSigned=true; break;
182 case ISD::UREM: isModulus=true; isSigned=false; break;
183 }
184
185 // TODO: check for integer divides by powers of 2 (or other simple patterns?)
186
187 SDOperand TmpPR, TmpPR2;
188 SDOperand TmpF1, TmpF2, TmpF3, TmpF4, TmpF5, TmpF6, TmpF7, TmpF8;
189 SDOperand TmpF9, TmpF10,TmpF11,TmpF12,TmpF13,TmpF14,TmpF15;
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000190 SDNode *Result;
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000191
192 // we'll need copies of F0 and F1
193 SDOperand F0 = CurDAG->getRegister(IA64::F0, MVT::f64);
194 SDOperand F1 = CurDAG->getRegister(IA64::F1, MVT::f64);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000195
196 // OK, emit some code:
197
198 if(!isFP) {
199 // first, load the inputs into FP regs.
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000200 TmpF1 =
201 SDOperand(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, Tmp1), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000202 Chain = TmpF1.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000203 TmpF2 =
204 SDOperand(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, Tmp2), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000205 Chain = TmpF2.getValue(1);
206
207 // next, convert the inputs to FP
208 if(isSigned) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000209 TmpF3 =
210 SDOperand(CurDAG->getTargetNode(IA64::FCVTXF, MVT::f64, TmpF1), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000211 Chain = TmpF3.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000212 TmpF4 =
213 SDOperand(CurDAG->getTargetNode(IA64::FCVTXF, MVT::f64, TmpF2), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000214 Chain = TmpF4.getValue(1);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000215 } else { // is unsigned
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000216 TmpF3 =
217 SDOperand(CurDAG->getTargetNode(IA64::FCVTXUFS1, MVT::f64, TmpF1), 0);
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000218 Chain = TmpF3.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000219 TmpF4 =
220 SDOperand(CurDAG->getTargetNode(IA64::FCVTXUFS1, MVT::f64, TmpF2), 0);
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000221 Chain = TmpF4.getValue(1);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000222 }
223
224 } else { // this is an FP divide/remainder, so we 'leak' some temp
225 // regs and assign TmpF3=Tmp1, TmpF4=Tmp2
226 TmpF3=Tmp1;
227 TmpF4=Tmp2;
228 }
229
230 // we start by computing an approximate reciprocal (good to 9 bits?)
231 // note, this instruction writes _both_ TmpF5 (answer) and TmpPR (predicate)
Duraid Madina0c81dc82006-01-16 06:33:38 +0000232 if(isFP)
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000233 TmpF5 = SDOperand(CurDAG->getTargetNode(IA64::FRCPAS0, MVT::f64, MVT::i1,
234 TmpF3, TmpF4), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000235 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000236 TmpF5 = SDOperand(CurDAG->getTargetNode(IA64::FRCPAS1, MVT::f64, MVT::i1,
237 TmpF3, TmpF4), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000238
Duraid Madinab6f023a2005-11-21 14:14:54 +0000239 TmpPR = TmpF5.getValue(1);
240 Chain = TmpF5.getValue(2);
241
Duraid Madina0c81dc82006-01-16 06:33:38 +0000242 SDOperand minusB;
243 if(isModulus) { // for remainders, it'll be handy to have
244 // copies of -input_b
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000245 minusB = SDOperand(CurDAG->getTargetNode(IA64::SUB, MVT::i64,
246 CurDAG->getRegister(IA64::r0, MVT::i64), Tmp2), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000247 Chain = minusB.getValue(1);
248 }
249
250 SDOperand TmpE0, TmpY1, TmpE1, TmpY2;
251
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000252 TmpE0 = SDOperand(CurDAG->getTargetNode(IA64::CFNMAS1, MVT::f64,
253 TmpF4, TmpF5, F1, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000254 Chain = TmpE0.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000255 TmpY1 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
256 TmpF5, TmpE0, TmpF5, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000257 Chain = TmpY1.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000258 TmpE1 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
259 TmpE0, TmpE0, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000260 Chain = TmpE1.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000261 TmpY2 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
262 TmpY1, TmpE1, TmpY1, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000263 Chain = TmpY2.getValue(1);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000264
Duraid Madina0c81dc82006-01-16 06:33:38 +0000265 if(isFP) { // if this is an FP divide, we finish up here and exit early
266 if(isModulus)
267 assert(0 && "Sorry, try another FORTRAN compiler.");
268
269 SDOperand TmpE2, TmpY3, TmpQ0, TmpR0;
270
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000271 TmpE2 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
272 TmpE1, TmpE1, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000273 Chain = TmpE2.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000274 TmpY3 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
275 TmpY2, TmpE2, TmpY2, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000276 Chain = TmpY3.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000277 TmpQ0 =
278 SDOperand(CurDAG->getTargetNode(IA64::CFMADS1, MVT::f64, // double prec!
279 Tmp1, TmpY3, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000280 Chain = TmpQ0.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000281 TmpR0 =
282 SDOperand(CurDAG->getTargetNode(IA64::CFNMADS1, MVT::f64, // double prec!
283 Tmp2, TmpQ0, Tmp1, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000284 Chain = TmpR0.getValue(1);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000285
Duraid Madina0c81dc82006-01-16 06:33:38 +0000286// we want Result to have the same target register as the frcpa, so
287// we two-address hack it. See the comment "for this to work..." on
288// page 48 of Intel application note #245415
289 Result = CurDAG->getTargetNode(IA64::TCFMADS0, MVT::f64, // d.p. s0 rndg!
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000290 TmpF5, TmpY3, TmpR0, TmpQ0, TmpPR);
291 Chain = SDOperand(Result, 1);
292 return SDOperand(Result, 0); // XXX: early exit!
Duraid Madina0c81dc82006-01-16 06:33:38 +0000293 } else { // this is *not* an FP divide, so there's a bit left to do:
294
295 SDOperand TmpQ2, TmpR2, TmpQ3, TmpQ;
296
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000297 TmpQ2 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
298 TmpF3, TmpY2, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000299 Chain = TmpQ2.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000300 TmpR2 = SDOperand(CurDAG->getTargetNode(IA64::CFNMAS1, MVT::f64,
301 TmpF4, TmpQ2, TmpF3, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000302 Chain = TmpR2.getValue(1);
Duraid Madinaae6dcdd2006-01-17 01:19:49 +0000303
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000304// we want TmpQ3 to have the same target register as the frcpa? maybe we
305// should two-address hack it. See the comment "for this to work..." on page
306// 48 of Intel application note #245415
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000307 TmpQ3 = SDOperand(CurDAG->getTargetNode(IA64::TCFMAS1, MVT::f64,
308 TmpF5, TmpR2, TmpY2, TmpQ2, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000309 Chain = TmpQ3.getValue(1);
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000310
Duraid Madinaae6dcdd2006-01-17 01:19:49 +0000311 // STORY: without these two-address instructions (TCFMAS1 and TCFMADS0)
312 // the FPSWA won't be able to help out in the case of large/tiny
313 // arguments. Other fun bugs may also appear, e.g. 0/x = x, not 0.
314
Duraid Madina0c81dc82006-01-16 06:33:38 +0000315 if(isSigned)
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000316 TmpQ = SDOperand(CurDAG->getTargetNode(IA64::FCVTFXTRUNCS1,
317 MVT::f64, TmpQ3), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000318 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000319 TmpQ = SDOperand(CurDAG->getTargetNode(IA64::FCVTFXUTRUNCS1,
320 MVT::f64, TmpQ3), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000321
322 Chain = TmpQ.getValue(1);
323
324 if(isModulus) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000325 SDOperand FPminusB =
326 SDOperand(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, minusB), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000327 Chain = FPminusB.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000328 SDOperand Remainder =
329 SDOperand(CurDAG->getTargetNode(IA64::XMAL, MVT::f64,
330 TmpQ, FPminusB, TmpF1), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000331 Chain = Remainder.getValue(1);
332 Result = CurDAG->getTargetNode(IA64::GETFSIG, MVT::i64, Remainder);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000333 Chain = SDOperand(Result, 1);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000334 } else { // just an integer divide
335 Result = CurDAG->getTargetNode(IA64::GETFSIG, MVT::i64, TmpQ);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000336 Chain = SDOperand(Result, 1);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000337 }
338
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000339 return SDOperand(Result, 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000340 } // wasn't an FP divide
Duraid Madinab6f023a2005-11-21 14:14:54 +0000341}
342
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000343// Select - Convert the specified operand from a target-independent to a
344// target-specific node if it hasn't already been changed.
Evan Cheng34167212006-02-09 00:37:58 +0000345void IA64DAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000346 SDNode *N = Op.Val;
347 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng34167212006-02-09 00:37:58 +0000348 N->getOpcode() < IA64ISD::FIRST_NUMBER) {
349 Result = Op;
350 return; // Already selected.
351 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000352
353 // If this has already been converted, use it.
354 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
Evan Cheng34167212006-02-09 00:37:58 +0000355 if (CGMI != CodeGenMap.end()) {
356 Result = CGMI->second;
357 return;
358 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000359
360 switch (N->getOpcode()) {
361 default: break;
362
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000363 case IA64ISD::BRCALL: { // XXX: this is also a hack!
Evan Cheng34167212006-02-09 00:37:58 +0000364 SDOperand Chain;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000365 SDOperand InFlag; // Null incoming flag value.
366
Evan Cheng34167212006-02-09 00:37:58 +0000367 Select(Chain, N->getOperand(0));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000368 if(N->getNumOperands()==3) // we have an incoming chain, callee and flag
Evan Cheng34167212006-02-09 00:37:58 +0000369 Select(InFlag, N->getOperand(2));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000370
371 unsigned CallOpcode;
372 SDOperand CallOperand;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000373
374 // if we can call directly, do so
375 if (GlobalAddressSDNode *GASD =
376 dyn_cast<GlobalAddressSDNode>(N->getOperand(1))) {
377 CallOpcode = IA64::BRCALL_IPREL_GA;
378 CallOperand = CurDAG->getTargetGlobalAddress(GASD->getGlobal(), MVT::i64);
379 } else if (ExternalSymbolSDNode *ESSDN = // FIXME: we currently NEED this
380 // case for correctness, to avoid
381 // "non-pic code with imm reloc.n
382 // against dynamic symbol" errors
383 dyn_cast<ExternalSymbolSDNode>(N->getOperand(1))) {
384 CallOpcode = IA64::BRCALL_IPREL_ES;
385 CallOperand = N->getOperand(1);
386 } else {
387 // otherwise we need to load the function descriptor,
388 // load the branch target (function)'s entry point and GP,
389 // branch (call) then restore the GP
Evan Cheng34167212006-02-09 00:37:58 +0000390 SDOperand FnDescriptor;
391 Select(FnDescriptor, N->getOperand(1));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000392
393 // load the branch target's entry point [mem] and
394 // GP value [mem+8]
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000395 SDOperand targetEntryPoint=
396 SDOperand(CurDAG->getTargetNode(IA64::LD8, MVT::i64, FnDescriptor), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000397 Chain = targetEntryPoint.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000398 SDOperand targetGPAddr=
399 SDOperand(CurDAG->getTargetNode(IA64::ADDS, MVT::i64,
400 FnDescriptor, CurDAG->getConstant(8, MVT::i64)), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000401 Chain = targetGPAddr.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000402 SDOperand targetGP=
403 SDOperand(CurDAG->getTargetNode(IA64::LD8, MVT::i64, targetGPAddr), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000404 Chain = targetGP.getValue(1);
405
406 Chain = CurDAG->getCopyToReg(Chain, IA64::r1, targetGP, InFlag);
407 InFlag = Chain.getValue(1);
408 Chain = CurDAG->getCopyToReg(Chain, IA64::B6, targetEntryPoint, InFlag); // FLAG these?
409 InFlag = Chain.getValue(1);
410
411 CallOperand = CurDAG->getRegister(IA64::B6, MVT::i64);
412 CallOpcode = IA64::BRCALL_INDIRECT;
413 }
414
415 // Finally, once everything is setup, emit the call itself
416 if(InFlag.Val)
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000417 Chain = SDOperand(CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
418 CallOperand, InFlag), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000419 else // there might be no arguments
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000420 Chain = SDOperand(CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
421 CallOperand, Chain), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000422 InFlag = Chain.getValue(1);
423
424 std::vector<SDOperand> CallResults;
425
426 CallResults.push_back(Chain);
427 CallResults.push_back(InFlag);
428
429 for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
430 CodeGenMap[Op.getValue(i)] = CallResults[i];
Evan Cheng34167212006-02-09 00:37:58 +0000431 Result = CallResults[Op.ResNo];
432 return;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000433 }
Duraid Madinaa36153a2005-12-22 03:58:17 +0000434
Duraid Madina8617f3c2005-12-22 07:14:45 +0000435 case IA64ISD::GETFD: {
Evan Cheng34167212006-02-09 00:37:58 +0000436 SDOperand Input;
437 Select(Input, N->getOperand(0));
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000438 Result = SDOperand(CurDAG->getTargetNode(IA64::GETFD, MVT::i64, Input), 0);
Duraid Madinabf094582006-01-11 03:50:40 +0000439 CodeGenMap[Op] = Result;
Evan Cheng34167212006-02-09 00:37:58 +0000440 return;
Duraid Madina8617f3c2005-12-22 07:14:45 +0000441 }
442
Duraid Madinab6f023a2005-11-21 14:14:54 +0000443 case ISD::FDIV:
444 case ISD::SDIV:
445 case ISD::UDIV:
446 case ISD::SREM:
Evan Cheng34167212006-02-09 00:37:58 +0000447 case ISD::UREM:
448 Result = SelectDIV(Op);
449 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000450
Chris Lattnera54aa942006-01-29 06:26:08 +0000451 case ISD::TargetConstantFP: {
Duraid Madina056728f2005-11-02 07:32:59 +0000452 SDOperand Chain = CurDAG->getEntryNode(); // this is a constant, so..
453
Evan Cheng34167212006-02-09 00:37:58 +0000454 if (cast<ConstantFPSDNode>(N)->isExactlyValue(+0.0)) {
455 Result = CurDAG->getCopyFromReg(Chain, IA64::F0, MVT::f64);
456 } else if (cast<ConstantFPSDNode>(N)->isExactlyValue(+1.0)) {
457 Result = CurDAG->getCopyFromReg(Chain, IA64::F1, MVT::f64);
458 } else
Duraid Madina93856802005-11-02 02:35:04 +0000459 assert(0 && "Unexpected FP constant!");
Evan Cheng34167212006-02-09 00:37:58 +0000460 return;
Duraid Madina93856802005-11-02 02:35:04 +0000461 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000462
463 case ISD::FrameIndex: { // TODO: reduce creepyness
464 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerb19b8992005-11-30 23:02:08 +0000465 if (N->hasOneUse())
Evan Cheng34167212006-02-09 00:37:58 +0000466 Result = CurDAG->SelectNodeTo(N, IA64::MOV, MVT::i64,
Chris Lattnerb19b8992005-11-30 23:02:08 +0000467 CurDAG->getTargetFrameIndex(FI, MVT::i64));
Duraid Madina19e5e142006-01-21 14:27:19 +0000468 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000469 Result = CodeGenMap[Op] = SDOperand(CurDAG->getTargetNode(IA64::MOV, MVT::i64,
470 CurDAG->getTargetFrameIndex(FI, MVT::i64)), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000471 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000472 }
473
Duraid Madina2e0348e2006-01-15 09:45:23 +0000474 case ISD::ConstantPool: { // TODO: nuke the constant pool
475 // (ia64 doesn't need one)
Evan Chengb8973bd2006-01-31 22:23:14 +0000476 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
477 Constant *C = CP->get();
478 SDOperand CPI = CurDAG->getTargetConstantPool(C, MVT::i64,
479 CP->getAlignment());
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000480 Result = SDOperand(CurDAG->getTargetNode(IA64::ADDL_GA, MVT::i64, // ?
481 CurDAG->getRegister(IA64::r1, MVT::i64), CPI), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000482 return;
Duraid Madina25d0a882005-10-29 16:08:30 +0000483 }
484
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000485 case ISD::GlobalAddress: {
486 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
487 SDOperand GA = CurDAG->getTargetGlobalAddress(GV, MVT::i64);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000488 SDOperand Tmp = SDOperand(CurDAG->getTargetNode(IA64::ADDL_GA, MVT::i64,
489 CurDAG->getRegister(IA64::r1, MVT::i64), GA), 0);
490 Result = SDOperand(CurDAG->getTargetNode(IA64::LD8, MVT::i64, Tmp), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000491 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000492 }
Duraid Madinaa36153a2005-12-22 03:58:17 +0000493
494/* XXX case ISD::ExternalSymbol: {
495 SDOperand EA = CurDAG->getTargetExternalSymbol(cast<ExternalSymbolSDNode>(N)->getSymbol(),
496 MVT::i64);
497 SDOperand Tmp = CurDAG->getTargetNode(IA64::ADDL_EA, MVT::i64,
498 CurDAG->getRegister(IA64::r1, MVT::i64), EA);
499 return CurDAG->getTargetNode(IA64::LD8, MVT::i64, Tmp);
500 }
501*/
502
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000503 case ISD::LOAD:
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000504 case ISD::EXTLOAD: // FIXME: load -1, not 1, for bools?
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000505 case ISD::ZEXTLOAD: {
Evan Cheng34167212006-02-09 00:37:58 +0000506 SDOperand Chain, Address;
507 Select(Chain, N->getOperand(0));
508 Select(Address, N->getOperand(1));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000509
510 MVT::ValueType TypeBeingLoaded = (N->getOpcode() == ISD::LOAD) ?
511 N->getValueType(0) : cast<VTSDNode>(N->getOperand(3))->getVT();
512 unsigned Opc;
513 switch (TypeBeingLoaded) {
Jim Laskey16d42c62006-07-11 18:25:13 +0000514 default:
515#ifndef NDEBUG
516 N->dump();
517#endif
518 assert(0 && "Cannot load this type!");
Duraid Madina9f729062005-11-04 09:59:06 +0000519 case MVT::i1: { // this is a bool
520 Opc = IA64::LD1; // first we load a byte, then compare for != 0
Evan Cheng34167212006-02-09 00:37:58 +0000521 if(N->getValueType(0) == MVT::i1) { // XXX: early exit!
522 Result = CurDAG->SelectNodeTo(N, IA64::CMPNE, MVT::i1, MVT::Other,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000523 SDOperand(CurDAG->getTargetNode(Opc, MVT::i64, Address), 0),
Chris Lattnerb19b8992005-11-30 23:02:08 +0000524 CurDAG->getRegister(IA64::r0, MVT::i64),
525 Chain).getValue(Op.ResNo);
Evan Cheng34167212006-02-09 00:37:58 +0000526 return;
527 }
Duraid Madinaa36153a2005-12-22 03:58:17 +0000528 /* otherwise, we want to load a bool into something bigger: LD1
529 will do that for us, so we just fall through */
Chris Lattnerb19b8992005-11-30 23:02:08 +0000530 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000531 case MVT::i8: Opc = IA64::LD1; break;
532 case MVT::i16: Opc = IA64::LD2; break;
533 case MVT::i32: Opc = IA64::LD4; break;
534 case MVT::i64: Opc = IA64::LD8; break;
535
536 case MVT::f32: Opc = IA64::LDF4; break;
537 case MVT::f64: Opc = IA64::LDF8; break;
538 }
539
Chris Lattnerb19b8992005-11-30 23:02:08 +0000540 // TODO: comment this
Evan Cheng34167212006-02-09 00:37:58 +0000541 Result = CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), MVT::Other,
Chris Lattnerb19b8992005-11-30 23:02:08 +0000542 Address, Chain).getValue(Op.ResNo);
Evan Cheng34167212006-02-09 00:37:58 +0000543 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000544 }
545
546 case ISD::TRUNCSTORE:
547 case ISD::STORE: {
Evan Cheng34167212006-02-09 00:37:58 +0000548 SDOperand Address, Chain;
549 Select(Address, N->getOperand(2));
550 Select(Chain, N->getOperand(0));
Duraid Madinad525df32005-11-07 03:11:02 +0000551
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000552 unsigned Opc;
553 if (N->getOpcode() == ISD::STORE) {
554 switch (N->getOperand(1).getValueType()) {
Duraid Madinad525df32005-11-07 03:11:02 +0000555 default: assert(0 && "unknown type in store");
556 case MVT::i1: { // this is a bool
557 Opc = IA64::ST1; // we store either 0 or 1 as a byte
Duraid Madina544cbbd2006-01-13 10:28:25 +0000558 // first load zero!
559 SDOperand Initial = CurDAG->getCopyFromReg(Chain, IA64::r0, MVT::i64);
560 Chain = Initial.getValue(1);
Duraid Madinaa7fb5be2006-01-20 03:40:25 +0000561 // then load 1 into the same reg iff the predicate to store is 1
Evan Cheng34167212006-02-09 00:37:58 +0000562 SDOperand Tmp;
563 Select(Tmp, N->getOperand(1));
Duraid Madinab20f9792006-02-11 07:33:17 +0000564 Tmp = SDOperand(CurDAG->getTargetNode(IA64::TPCADDS, MVT::i64, Initial,
565 CurDAG->getConstant(1, MVT::i64),
566 Tmp), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000567 Result = CurDAG->SelectNodeTo(N, Opc, MVT::Other, Address, Tmp, Chain);
568 return;
Chris Lattnerb19b8992005-11-30 23:02:08 +0000569 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000570 case MVT::i64: Opc = IA64::ST8; break;
571 case MVT::f64: Opc = IA64::STF8; break;
Duraid Madinad525df32005-11-07 03:11:02 +0000572 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000573 } else { //ISD::TRUNCSTORE
574 switch(cast<VTSDNode>(N->getOperand(4))->getVT()) {
Duraid Madinad525df32005-11-07 03:11:02 +0000575 default: assert(0 && "unknown type in truncstore");
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000576 case MVT::i8: Opc = IA64::ST1; break;
577 case MVT::i16: Opc = IA64::ST2; break;
578 case MVT::i32: Opc = IA64::ST4; break;
579 case MVT::f32: Opc = IA64::STF4; break;
580 }
581 }
582
Evan Cheng34167212006-02-09 00:37:58 +0000583 SDOperand N1, N2;
584 Select(N1, N->getOperand(1));
585 Select(N2, N->getOperand(2));
586 Result = CurDAG->SelectNodeTo(N, Opc, MVT::Other, N2, N1, Chain);
587 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000588 }
589
590 case ISD::BRCOND: {
Evan Cheng34167212006-02-09 00:37:58 +0000591 SDOperand Chain, CC;
592 Select(Chain, N->getOperand(0));
593 Select(CC, N->getOperand(1));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000594 MachineBasicBlock *Dest =
595 cast<BasicBlockSDNode>(N->getOperand(2))->getBasicBlock();
596 //FIXME - we do NOT need long branches all the time
Evan Cheng34167212006-02-09 00:37:58 +0000597 Result = CurDAG->SelectNodeTo(N, IA64::BRLCOND_NOTCALL, MVT::Other, CC,
Chris Lattnerb19b8992005-11-30 23:02:08 +0000598 CurDAG->getBasicBlock(Dest), Chain);
Evan Cheng34167212006-02-09 00:37:58 +0000599 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000600 }
601
602 case ISD::CALLSEQ_START:
603 case ISD::CALLSEQ_END: {
604 int64_t Amt = cast<ConstantSDNode>(N->getOperand(1))->getValue();
605 unsigned Opc = N->getOpcode() == ISD::CALLSEQ_START ?
606 IA64::ADJUSTCALLSTACKDOWN : IA64::ADJUSTCALLSTACKUP;
Evan Cheng34167212006-02-09 00:37:58 +0000607 SDOperand N0;
608 Select(N0, N->getOperand(0));
609 Result = CurDAG->SelectNodeTo(N, Opc, MVT::Other, getI64Imm(Amt), N0);
610 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000611 }
612
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000613 case ISD::BR:
614 // FIXME: we don't need long branches all the time!
Evan Cheng34167212006-02-09 00:37:58 +0000615 SDOperand N0;
616 Select(N0, N->getOperand(0));
617 Result = CurDAG->SelectNodeTo(N, IA64::BRL_NOTCALL, MVT::Other,
618 N->getOperand(1), N0);
619 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000620 }
621
Evan Cheng34167212006-02-09 00:37:58 +0000622 SelectCode(Result, Op);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000623}
624
625
626/// createIA64DAGToDAGInstructionSelector - This pass converts a legalized DAG
627/// into an IA64-specific DAG, ready for instruction scheduling.
628///
Evan Chengc4c62572006-03-13 23:20:37 +0000629FunctionPass
630*llvm::createIA64DAGToDAGInstructionSelector(IA64TargetMachine &TM) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000631 return new IA64DAGToDAGISel(TM);
632}
633