blob: e6ed9f9fa61b19bd1fdf1e83a348c2731d01ea91 [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()));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000150 CodeGenMap.clear();
151 DAG.RemoveDeadNodes();
152
153 // Emit machine code to BB.
154 ScheduleAndEmitDAG(DAG);
155}
156
Duraid Madinab6f023a2005-11-21 14:14:54 +0000157SDOperand IA64DAGToDAGISel::SelectDIV(SDOperand Op) {
158 SDNode *N = Op.Val;
Evan Cheng34167212006-02-09 00:37:58 +0000159 SDOperand Chain, Tmp1, Tmp2;
160 Select(Chain, N->getOperand(0));
Duraid Madinab6f023a2005-11-21 14:14:54 +0000161
Evan Cheng34167212006-02-09 00:37:58 +0000162 Select(Tmp1, N->getOperand(0));
163 Select(Tmp2, N->getOperand(1));
Duraid Madinab6f023a2005-11-21 14:14:54 +0000164
165 bool isFP=false;
166
167 if(MVT::isFloatingPoint(Tmp1.getValueType()))
168 isFP=true;
169
170 bool isModulus=false; // is it a division or a modulus?
171 bool isSigned=false;
172
173 switch(N->getOpcode()) {
174 case ISD::FDIV:
175 case ISD::SDIV: isModulus=false; isSigned=true; break;
176 case ISD::UDIV: isModulus=false; isSigned=false; break;
177 case ISD::FREM:
178 case ISD::SREM: isModulus=true; isSigned=true; break;
179 case ISD::UREM: isModulus=true; isSigned=false; break;
180 }
181
182 // TODO: check for integer divides by powers of 2 (or other simple patterns?)
183
184 SDOperand TmpPR, TmpPR2;
185 SDOperand TmpF1, TmpF2, TmpF3, TmpF4, TmpF5, TmpF6, TmpF7, TmpF8;
186 SDOperand TmpF9, TmpF10,TmpF11,TmpF12,TmpF13,TmpF14,TmpF15;
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000187 SDNode *Result;
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000188
189 // we'll need copies of F0 and F1
190 SDOperand F0 = CurDAG->getRegister(IA64::F0, MVT::f64);
191 SDOperand F1 = CurDAG->getRegister(IA64::F1, MVT::f64);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000192
193 // OK, emit some code:
194
195 if(!isFP) {
196 // first, load the inputs into FP regs.
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000197 TmpF1 =
198 SDOperand(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, Tmp1), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000199 Chain = TmpF1.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000200 TmpF2 =
201 SDOperand(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, Tmp2), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000202 Chain = TmpF2.getValue(1);
203
204 // next, convert the inputs to FP
205 if(isSigned) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000206 TmpF3 =
207 SDOperand(CurDAG->getTargetNode(IA64::FCVTXF, MVT::f64, TmpF1), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000208 Chain = TmpF3.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000209 TmpF4 =
210 SDOperand(CurDAG->getTargetNode(IA64::FCVTXF, MVT::f64, TmpF2), 0);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000211 Chain = TmpF4.getValue(1);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000212 } else { // is unsigned
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000213 TmpF3 =
214 SDOperand(CurDAG->getTargetNode(IA64::FCVTXUFS1, MVT::f64, TmpF1), 0);
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000215 Chain = TmpF3.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000216 TmpF4 =
217 SDOperand(CurDAG->getTargetNode(IA64::FCVTXUFS1, MVT::f64, TmpF2), 0);
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000218 Chain = TmpF4.getValue(1);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000219 }
220
221 } else { // this is an FP divide/remainder, so we 'leak' some temp
222 // regs and assign TmpF3=Tmp1, TmpF4=Tmp2
223 TmpF3=Tmp1;
224 TmpF4=Tmp2;
225 }
226
227 // we start by computing an approximate reciprocal (good to 9 bits?)
228 // note, this instruction writes _both_ TmpF5 (answer) and TmpPR (predicate)
Duraid Madina0c81dc82006-01-16 06:33:38 +0000229 if(isFP)
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000230 TmpF5 = SDOperand(CurDAG->getTargetNode(IA64::FRCPAS0, MVT::f64, MVT::i1,
231 TmpF3, TmpF4), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000232 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000233 TmpF5 = SDOperand(CurDAG->getTargetNode(IA64::FRCPAS1, MVT::f64, MVT::i1,
234 TmpF3, TmpF4), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000235
Duraid Madinab6f023a2005-11-21 14:14:54 +0000236 TmpPR = TmpF5.getValue(1);
237 Chain = TmpF5.getValue(2);
238
Duraid Madina0c81dc82006-01-16 06:33:38 +0000239 SDOperand minusB;
240 if(isModulus) { // for remainders, it'll be handy to have
241 // copies of -input_b
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000242 minusB = SDOperand(CurDAG->getTargetNode(IA64::SUB, MVT::i64,
243 CurDAG->getRegister(IA64::r0, MVT::i64), Tmp2), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000244 Chain = minusB.getValue(1);
245 }
246
247 SDOperand TmpE0, TmpY1, TmpE1, TmpY2;
248
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000249 TmpE0 = SDOperand(CurDAG->getTargetNode(IA64::CFNMAS1, MVT::f64,
250 TmpF4, TmpF5, F1, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000251 Chain = TmpE0.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000252 TmpY1 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
253 TmpF5, TmpE0, TmpF5, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000254 Chain = TmpY1.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000255 TmpE1 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
256 TmpE0, TmpE0, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000257 Chain = TmpE1.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000258 TmpY2 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
259 TmpY1, TmpE1, TmpY1, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000260 Chain = TmpY2.getValue(1);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000261
Duraid Madina0c81dc82006-01-16 06:33:38 +0000262 if(isFP) { // if this is an FP divide, we finish up here and exit early
263 if(isModulus)
264 assert(0 && "Sorry, try another FORTRAN compiler.");
265
266 SDOperand TmpE2, TmpY3, TmpQ0, TmpR0;
267
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000268 TmpE2 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
269 TmpE1, TmpE1, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000270 Chain = TmpE2.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000271 TmpY3 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
272 TmpY2, TmpE2, TmpY2, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000273 Chain = TmpY3.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000274 TmpQ0 =
275 SDOperand(CurDAG->getTargetNode(IA64::CFMADS1, MVT::f64, // double prec!
276 Tmp1, TmpY3, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000277 Chain = TmpQ0.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000278 TmpR0 =
279 SDOperand(CurDAG->getTargetNode(IA64::CFNMADS1, MVT::f64, // double prec!
280 Tmp2, TmpQ0, Tmp1, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000281 Chain = TmpR0.getValue(1);
Duraid Madinab6f023a2005-11-21 14:14:54 +0000282
Duraid Madina0c81dc82006-01-16 06:33:38 +0000283// we want Result to have the same target register as the frcpa, so
284// we two-address hack it. See the comment "for this to work..." on
285// page 48 of Intel application note #245415
286 Result = CurDAG->getTargetNode(IA64::TCFMADS0, MVT::f64, // d.p. s0 rndg!
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000287 TmpF5, TmpY3, TmpR0, TmpQ0, TmpPR);
288 Chain = SDOperand(Result, 1);
289 return SDOperand(Result, 0); // XXX: early exit!
Duraid Madina0c81dc82006-01-16 06:33:38 +0000290 } else { // this is *not* an FP divide, so there's a bit left to do:
291
292 SDOperand TmpQ2, TmpR2, TmpQ3, TmpQ;
293
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000294 TmpQ2 = SDOperand(CurDAG->getTargetNode(IA64::CFMAS1, MVT::f64,
295 TmpF3, TmpY2, F0, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000296 Chain = TmpQ2.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000297 TmpR2 = SDOperand(CurDAG->getTargetNode(IA64::CFNMAS1, MVT::f64,
298 TmpF4, TmpQ2, TmpF3, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000299 Chain = TmpR2.getValue(1);
Duraid Madinaae6dcdd2006-01-17 01:19:49 +0000300
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000301// we want TmpQ3 to have the same target register as the frcpa? maybe we
302// should two-address hack it. See the comment "for this to work..." on page
303// 48 of Intel application note #245415
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000304 TmpQ3 = SDOperand(CurDAG->getTargetNode(IA64::TCFMAS1, MVT::f64,
305 TmpF5, TmpR2, TmpY2, TmpQ2, TmpPR), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000306 Chain = TmpQ3.getValue(1);
Duraid Madina76bb6ae2006-01-16 14:33:04 +0000307
Duraid Madinaae6dcdd2006-01-17 01:19:49 +0000308 // STORY: without these two-address instructions (TCFMAS1 and TCFMADS0)
309 // the FPSWA won't be able to help out in the case of large/tiny
310 // arguments. Other fun bugs may also appear, e.g. 0/x = x, not 0.
311
Duraid Madina0c81dc82006-01-16 06:33:38 +0000312 if(isSigned)
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000313 TmpQ = SDOperand(CurDAG->getTargetNode(IA64::FCVTFXTRUNCS1,
314 MVT::f64, TmpQ3), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000315 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000316 TmpQ = SDOperand(CurDAG->getTargetNode(IA64::FCVTFXUTRUNCS1,
317 MVT::f64, TmpQ3), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000318
319 Chain = TmpQ.getValue(1);
320
321 if(isModulus) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000322 SDOperand FPminusB =
323 SDOperand(CurDAG->getTargetNode(IA64::SETFSIG, MVT::f64, minusB), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000324 Chain = FPminusB.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000325 SDOperand Remainder =
326 SDOperand(CurDAG->getTargetNode(IA64::XMAL, MVT::f64,
327 TmpQ, FPminusB, TmpF1), 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000328 Chain = Remainder.getValue(1);
329 Result = CurDAG->getTargetNode(IA64::GETFSIG, MVT::i64, Remainder);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000330 Chain = SDOperand(Result, 1);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000331 } else { // just an integer divide
332 Result = CurDAG->getTargetNode(IA64::GETFSIG, MVT::i64, TmpQ);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000333 Chain = SDOperand(Result, 1);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000334 }
335
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000336 return SDOperand(Result, 0);
Duraid Madina0c81dc82006-01-16 06:33:38 +0000337 } // wasn't an FP divide
Duraid Madinab6f023a2005-11-21 14:14:54 +0000338}
339
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000340// Select - Convert the specified operand from a target-independent to a
341// target-specific node if it hasn't already been changed.
Evan Cheng34167212006-02-09 00:37:58 +0000342void IA64DAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000343 SDNode *N = Op.Val;
344 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng34167212006-02-09 00:37:58 +0000345 N->getOpcode() < IA64ISD::FIRST_NUMBER) {
346 Result = Op;
347 return; // Already selected.
348 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000349
350 // If this has already been converted, use it.
351 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
Evan Cheng34167212006-02-09 00:37:58 +0000352 if (CGMI != CodeGenMap.end()) {
353 Result = CGMI->second;
354 return;
355 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000356
357 switch (N->getOpcode()) {
358 default: break;
359
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000360 case IA64ISD::BRCALL: { // XXX: this is also a hack!
Evan Cheng34167212006-02-09 00:37:58 +0000361 SDOperand Chain;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000362 SDOperand InFlag; // Null incoming flag value.
363
Evan Cheng34167212006-02-09 00:37:58 +0000364 Select(Chain, N->getOperand(0));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000365 if(N->getNumOperands()==3) // we have an incoming chain, callee and flag
Evan Cheng34167212006-02-09 00:37:58 +0000366 Select(InFlag, N->getOperand(2));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000367
368 unsigned CallOpcode;
369 SDOperand CallOperand;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000370
371 // if we can call directly, do so
372 if (GlobalAddressSDNode *GASD =
373 dyn_cast<GlobalAddressSDNode>(N->getOperand(1))) {
374 CallOpcode = IA64::BRCALL_IPREL_GA;
375 CallOperand = CurDAG->getTargetGlobalAddress(GASD->getGlobal(), MVT::i64);
376 } else if (ExternalSymbolSDNode *ESSDN = // FIXME: we currently NEED this
377 // case for correctness, to avoid
378 // "non-pic code with imm reloc.n
379 // against dynamic symbol" errors
380 dyn_cast<ExternalSymbolSDNode>(N->getOperand(1))) {
381 CallOpcode = IA64::BRCALL_IPREL_ES;
382 CallOperand = N->getOperand(1);
383 } else {
384 // otherwise we need to load the function descriptor,
385 // load the branch target (function)'s entry point and GP,
386 // branch (call) then restore the GP
Evan Cheng34167212006-02-09 00:37:58 +0000387 SDOperand FnDescriptor;
388 Select(FnDescriptor, N->getOperand(1));
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000389
390 // load the branch target's entry point [mem] and
391 // GP value [mem+8]
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000392 SDOperand targetEntryPoint=
393 SDOperand(CurDAG->getTargetNode(IA64::LD8, MVT::i64, FnDescriptor), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000394 Chain = targetEntryPoint.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000395 SDOperand targetGPAddr=
396 SDOperand(CurDAG->getTargetNode(IA64::ADDS, MVT::i64,
397 FnDescriptor, CurDAG->getConstant(8, MVT::i64)), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000398 Chain = targetGPAddr.getValue(1);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000399 SDOperand targetGP=
400 SDOperand(CurDAG->getTargetNode(IA64::LD8, MVT::i64, targetGPAddr), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000401 Chain = targetGP.getValue(1);
402
403 Chain = CurDAG->getCopyToReg(Chain, IA64::r1, targetGP, InFlag);
404 InFlag = Chain.getValue(1);
405 Chain = CurDAG->getCopyToReg(Chain, IA64::B6, targetEntryPoint, InFlag); // FLAG these?
406 InFlag = Chain.getValue(1);
407
408 CallOperand = CurDAG->getRegister(IA64::B6, MVT::i64);
409 CallOpcode = IA64::BRCALL_INDIRECT;
410 }
411
412 // Finally, once everything is setup, emit the call itself
413 if(InFlag.Val)
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000414 Chain = SDOperand(CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
415 CallOperand, InFlag), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000416 else // there might be no arguments
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000417 Chain = SDOperand(CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
418 CallOperand, Chain), 0);
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000419 InFlag = Chain.getValue(1);
420
421 std::vector<SDOperand> CallResults;
422
423 CallResults.push_back(Chain);
424 CallResults.push_back(InFlag);
425
426 for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
427 CodeGenMap[Op.getValue(i)] = CallResults[i];
Evan Cheng34167212006-02-09 00:37:58 +0000428 Result = CallResults[Op.ResNo];
429 return;
Duraid Madina64aa0ea2005-12-22 13:29:14 +0000430 }
Duraid Madinaa36153a2005-12-22 03:58:17 +0000431
Duraid Madina8617f3c2005-12-22 07:14:45 +0000432 case IA64ISD::GETFD: {
Evan Cheng34167212006-02-09 00:37:58 +0000433 SDOperand Input;
434 Select(Input, N->getOperand(0));
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000435 Result = SDOperand(CurDAG->getTargetNode(IA64::GETFD, MVT::i64, Input), 0);
Duraid Madinabf094582006-01-11 03:50:40 +0000436 CodeGenMap[Op] = Result;
Evan Cheng34167212006-02-09 00:37:58 +0000437 return;
Duraid Madina8617f3c2005-12-22 07:14:45 +0000438 }
439
Duraid Madinab6f023a2005-11-21 14:14:54 +0000440 case ISD::FDIV:
441 case ISD::SDIV:
442 case ISD::UDIV:
443 case ISD::SREM:
Evan Cheng34167212006-02-09 00:37:58 +0000444 case ISD::UREM:
445 Result = SelectDIV(Op);
446 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000447
Chris Lattnera54aa942006-01-29 06:26:08 +0000448 case ISD::TargetConstantFP: {
Duraid Madina056728f2005-11-02 07:32:59 +0000449 SDOperand Chain = CurDAG->getEntryNode(); // this is a constant, so..
450
Evan Cheng34167212006-02-09 00:37:58 +0000451 if (cast<ConstantFPSDNode>(N)->isExactlyValue(+0.0)) {
452 Result = CurDAG->getCopyFromReg(Chain, IA64::F0, MVT::f64);
453 } else if (cast<ConstantFPSDNode>(N)->isExactlyValue(+1.0)) {
454 Result = CurDAG->getCopyFromReg(Chain, IA64::F1, MVT::f64);
455 } else
Duraid Madina93856802005-11-02 02:35:04 +0000456 assert(0 && "Unexpected FP constant!");
Evan Cheng34167212006-02-09 00:37:58 +0000457 return;
Duraid Madina93856802005-11-02 02:35:04 +0000458 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000459
460 case ISD::FrameIndex: { // TODO: reduce creepyness
461 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerb19b8992005-11-30 23:02:08 +0000462 if (N->hasOneUse())
Evan Cheng34167212006-02-09 00:37:58 +0000463 Result = CurDAG->SelectNodeTo(N, IA64::MOV, MVT::i64,
Chris Lattnerb19b8992005-11-30 23:02:08 +0000464 CurDAG->getTargetFrameIndex(FI, MVT::i64));
Duraid Madina19e5e142006-01-21 14:27:19 +0000465 else
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000466 Result = CodeGenMap[Op] = SDOperand(CurDAG->getTargetNode(IA64::MOV, MVT::i64,
467 CurDAG->getTargetFrameIndex(FI, MVT::i64)), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000468 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000469 }
470
Duraid Madina2e0348e2006-01-15 09:45:23 +0000471 case ISD::ConstantPool: { // TODO: nuke the constant pool
472 // (ia64 doesn't need one)
Evan Chengb8973bd2006-01-31 22:23:14 +0000473 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
474 Constant *C = CP->get();
475 SDOperand CPI = CurDAG->getTargetConstantPool(C, MVT::i64,
476 CP->getAlignment());
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000477 Result = SDOperand(CurDAG->getTargetNode(IA64::ADDL_GA, MVT::i64, // ?
478 CurDAG->getRegister(IA64::r1, MVT::i64), CPI), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000479 return;
Duraid Madina25d0a882005-10-29 16:08:30 +0000480 }
481
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000482 case ISD::GlobalAddress: {
483 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
484 SDOperand GA = CurDAG->getTargetGlobalAddress(GV, MVT::i64);
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000485 SDOperand Tmp = SDOperand(CurDAG->getTargetNode(IA64::ADDL_GA, MVT::i64,
486 CurDAG->getRegister(IA64::r1, MVT::i64), GA), 0);
487 Result = SDOperand(CurDAG->getTargetNode(IA64::LD8, MVT::i64, Tmp), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000488 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000489 }
Duraid Madinaa36153a2005-12-22 03:58:17 +0000490
491/* XXX case ISD::ExternalSymbol: {
492 SDOperand EA = CurDAG->getTargetExternalSymbol(cast<ExternalSymbolSDNode>(N)->getSymbol(),
493 MVT::i64);
494 SDOperand Tmp = CurDAG->getTargetNode(IA64::ADDL_EA, MVT::i64,
495 CurDAG->getRegister(IA64::r1, MVT::i64), EA);
496 return CurDAG->getTargetNode(IA64::LD8, MVT::i64, Tmp);
497 }
498*/
499
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000500 case ISD::LOAD:
Duraid Madinaecc1a1b2006-01-20 16:10:05 +0000501 case ISD::EXTLOAD: // FIXME: load -1, not 1, for bools?
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000502 case ISD::ZEXTLOAD: {
Evan Cheng34167212006-02-09 00:37:58 +0000503 SDOperand Chain, Address;
504 Select(Chain, N->getOperand(0));
505 Select(Address, N->getOperand(1));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000506
507 MVT::ValueType TypeBeingLoaded = (N->getOpcode() == ISD::LOAD) ?
508 N->getValueType(0) : cast<VTSDNode>(N->getOperand(3))->getVT();
509 unsigned Opc;
510 switch (TypeBeingLoaded) {
511 default: N->dump(); assert(0 && "Cannot load this type!");
Duraid Madina9f729062005-11-04 09:59:06 +0000512 case MVT::i1: { // this is a bool
513 Opc = IA64::LD1; // first we load a byte, then compare for != 0
Evan Cheng34167212006-02-09 00:37:58 +0000514 if(N->getValueType(0) == MVT::i1) { // XXX: early exit!
515 Result = CurDAG->SelectNodeTo(N, IA64::CMPNE, MVT::i1, MVT::Other,
Evan Cheng7e9b26f2006-02-09 07:17:49 +0000516 SDOperand(CurDAG->getTargetNode(Opc, MVT::i64, Address), 0),
Chris Lattnerb19b8992005-11-30 23:02:08 +0000517 CurDAG->getRegister(IA64::r0, MVT::i64),
518 Chain).getValue(Op.ResNo);
Evan Cheng34167212006-02-09 00:37:58 +0000519 return;
520 }
Duraid Madinaa36153a2005-12-22 03:58:17 +0000521 /* otherwise, we want to load a bool into something bigger: LD1
522 will do that for us, so we just fall through */
Chris Lattnerb19b8992005-11-30 23:02:08 +0000523 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000524 case MVT::i8: Opc = IA64::LD1; break;
525 case MVT::i16: Opc = IA64::LD2; break;
526 case MVT::i32: Opc = IA64::LD4; break;
527 case MVT::i64: Opc = IA64::LD8; break;
528
529 case MVT::f32: Opc = IA64::LDF4; break;
530 case MVT::f64: Opc = IA64::LDF8; break;
531 }
532
Chris Lattnerb19b8992005-11-30 23:02:08 +0000533 // TODO: comment this
Evan Cheng34167212006-02-09 00:37:58 +0000534 Result = CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), MVT::Other,
Chris Lattnerb19b8992005-11-30 23:02:08 +0000535 Address, Chain).getValue(Op.ResNo);
Evan Cheng34167212006-02-09 00:37:58 +0000536 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000537 }
538
539 case ISD::TRUNCSTORE:
540 case ISD::STORE: {
Evan Cheng34167212006-02-09 00:37:58 +0000541 SDOperand Address, Chain;
542 Select(Address, N->getOperand(2));
543 Select(Chain, N->getOperand(0));
Duraid Madinad525df32005-11-07 03:11:02 +0000544
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000545 unsigned Opc;
546 if (N->getOpcode() == ISD::STORE) {
547 switch (N->getOperand(1).getValueType()) {
Duraid Madinad525df32005-11-07 03:11:02 +0000548 default: assert(0 && "unknown type in store");
549 case MVT::i1: { // this is a bool
550 Opc = IA64::ST1; // we store either 0 or 1 as a byte
Duraid Madina544cbbd2006-01-13 10:28:25 +0000551 // first load zero!
552 SDOperand Initial = CurDAG->getCopyFromReg(Chain, IA64::r0, MVT::i64);
553 Chain = Initial.getValue(1);
Duraid Madinaa7fb5be2006-01-20 03:40:25 +0000554 // then load 1 into the same reg iff the predicate to store is 1
Evan Cheng34167212006-02-09 00:37:58 +0000555 SDOperand Tmp;
556 Select(Tmp, N->getOperand(1));
Duraid Madinab20f9792006-02-11 07:33:17 +0000557 Tmp = SDOperand(CurDAG->getTargetNode(IA64::TPCADDS, MVT::i64, Initial,
558 CurDAG->getConstant(1, MVT::i64),
559 Tmp), 0);
Evan Cheng34167212006-02-09 00:37:58 +0000560 Result = CurDAG->SelectNodeTo(N, Opc, MVT::Other, Address, Tmp, Chain);
561 return;
Chris Lattnerb19b8992005-11-30 23:02:08 +0000562 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000563 case MVT::i64: Opc = IA64::ST8; break;
564 case MVT::f64: Opc = IA64::STF8; break;
Duraid Madinad525df32005-11-07 03:11:02 +0000565 }
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000566 } else { //ISD::TRUNCSTORE
567 switch(cast<VTSDNode>(N->getOperand(4))->getVT()) {
Duraid Madinad525df32005-11-07 03:11:02 +0000568 default: assert(0 && "unknown type in truncstore");
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000569 case MVT::i8: Opc = IA64::ST1; break;
570 case MVT::i16: Opc = IA64::ST2; break;
571 case MVT::i32: Opc = IA64::ST4; break;
572 case MVT::f32: Opc = IA64::STF4; break;
573 }
574 }
575
Evan Cheng34167212006-02-09 00:37:58 +0000576 SDOperand N1, N2;
577 Select(N1, N->getOperand(1));
578 Select(N2, N->getOperand(2));
579 Result = CurDAG->SelectNodeTo(N, Opc, MVT::Other, N2, N1, Chain);
580 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000581 }
582
583 case ISD::BRCOND: {
Evan Cheng34167212006-02-09 00:37:58 +0000584 SDOperand Chain, CC;
585 Select(Chain, N->getOperand(0));
586 Select(CC, N->getOperand(1));
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000587 MachineBasicBlock *Dest =
588 cast<BasicBlockSDNode>(N->getOperand(2))->getBasicBlock();
589 //FIXME - we do NOT need long branches all the time
Evan Cheng34167212006-02-09 00:37:58 +0000590 Result = CurDAG->SelectNodeTo(N, IA64::BRLCOND_NOTCALL, MVT::Other, CC,
Chris Lattnerb19b8992005-11-30 23:02:08 +0000591 CurDAG->getBasicBlock(Dest), Chain);
Evan Cheng34167212006-02-09 00:37:58 +0000592 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000593 }
594
595 case ISD::CALLSEQ_START:
596 case ISD::CALLSEQ_END: {
597 int64_t Amt = cast<ConstantSDNode>(N->getOperand(1))->getValue();
598 unsigned Opc = N->getOpcode() == ISD::CALLSEQ_START ?
599 IA64::ADJUSTCALLSTACKDOWN : IA64::ADJUSTCALLSTACKUP;
Evan Cheng34167212006-02-09 00:37:58 +0000600 SDOperand N0;
601 Select(N0, N->getOperand(0));
602 Result = CurDAG->SelectNodeTo(N, Opc, MVT::Other, getI64Imm(Amt), N0);
603 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000604 }
605
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000606 case ISD::BR:
607 // FIXME: we don't need long branches all the time!
Evan Cheng34167212006-02-09 00:37:58 +0000608 SDOperand N0;
609 Select(N0, N->getOperand(0));
610 Result = CurDAG->SelectNodeTo(N, IA64::BRL_NOTCALL, MVT::Other,
611 N->getOperand(1), N0);
612 return;
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000613 }
614
Evan Cheng34167212006-02-09 00:37:58 +0000615 SelectCode(Result, Op);
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000616}
617
618
619/// createIA64DAGToDAGInstructionSelector - This pass converts a legalized DAG
620/// into an IA64-specific DAG, ready for instruction scheduling.
621///
Evan Chengc4c62572006-03-13 23:20:37 +0000622FunctionPass
623*llvm::createIA64DAGToDAGInstructionSelector(IA64TargetMachine &TM) {
Duraid Madinaf2db9b82005-10-28 17:46:35 +0000624 return new IA64DAGToDAGISel(TM);
625}
626