blob: 112671f668c7fd326241c0d92e5d5e4d8d7053b6 [file] [log] [blame]
Andrew Lenharthd97591a2005-10-20 00:29:02 +00001//===-- AlphaISelDAGToDAG.cpp - Alpha pattern matching inst selector ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Andrew Lenharth 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 Alpha,
11// converting from a legalized dag to a Alpha dag.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Alpha.h"
16#include "AlphaTargetMachine.h"
17#include "AlphaISelLowering.h"
18#include "llvm/CodeGen/MachineInstrBuilder.h"
Andrew Lenharth7f0db912005-11-30 07:19:56 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
Andrew Lenharthd97591a2005-10-20 00:29:02 +000020#include "llvm/CodeGen/MachineFunction.h"
21#include "llvm/CodeGen/SSARegMap.h"
22#include "llvm/CodeGen/SelectionDAG.h"
23#include "llvm/CodeGen/SelectionDAGISel.h"
24#include "llvm/Target/TargetOptions.h"
25#include "llvm/ADT/Statistic.h"
26#include "llvm/Constants.h"
27#include "llvm/GlobalValue.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/MathExtras.h"
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000030#include <algorithm>
Andrew Lenharthd97591a2005-10-20 00:29:02 +000031using namespace llvm;
32
33namespace {
34
35 //===--------------------------------------------------------------------===//
36 /// AlphaDAGToDAGISel - Alpha specific code to select Alpha machine
37 /// instructions for SelectionDAG operations.
38 ///
39 class AlphaDAGToDAGISel : public SelectionDAGISel {
40 AlphaTargetLowering AlphaLowering;
41
Andrew Lenharth50b37842005-11-22 04:20:06 +000042 static const int IMM_LOW = -32768;
43 static const int IMM_HIGH = 32767;
44 static const int IMM_MULT = 65536;
45
Andrew Lenharthd97591a2005-10-20 00:29:02 +000046 public:
47 AlphaDAGToDAGISel(TargetMachine &TM)
48 : SelectionDAGISel(AlphaLowering), AlphaLowering(TM) {}
49
50 /// getI64Imm - Return a target constant with the specified value, of type
51 /// i64.
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000052 inline SDOperand getI64Imm(int64_t Imm) {
Andrew Lenharthd97591a2005-10-20 00:29:02 +000053 return CurDAG->getTargetConstant(Imm, MVT::i64);
54 }
55
Andrew Lenharthd97591a2005-10-20 00:29:02 +000056 // Select - Convert the specified operand from a target-independent to a
57 // target-specific node if it hasn't already been changed.
58 SDOperand Select(SDOperand Op);
59
60 /// InstructionSelectBasicBlock - This callback is invoked by
61 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
62 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
63
64 virtual const char *getPassName() const {
65 return "Alpha DAG->DAG Pattern Instruction Selection";
66 }
67
68// Include the pieces autogenerated from the target description.
69#include "AlphaGenDAGISel.inc"
70
71private:
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000072 SDOperand getGlobalBaseReg();
Andrew Lenharth93526222005-12-01 01:53:10 +000073 SDOperand getRASaveReg();
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000074 SDOperand SelectCALL(SDOperand Op);
75
Andrew Lenharthd97591a2005-10-20 00:29:02 +000076 };
77}
78
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000079/// getGlobalBaseReg - Output the instructions required to put the
80/// GOT address into a register.
81///
82SDOperand AlphaDAGToDAGISel::getGlobalBaseReg() {
Andrew Lenharth93526222005-12-01 01:53:10 +000083 return CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
84 AlphaLowering.getVRegGP(),
85 MVT::i64);
86}
87
88/// getRASaveReg - Grab the return address
89///
90SDOperand AlphaDAGToDAGISel::getRASaveReg() {
91 return CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
92 AlphaLowering.getVRegRA(),
93 MVT::i64);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000094}
95
Andrew Lenharthd97591a2005-10-20 00:29:02 +000096/// InstructionSelectBasicBlock - This callback is invoked by
97/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
98void AlphaDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
99 DEBUG(BB->dump());
100
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000101 // Select target instructions for the DAG.
102 DAG.setRoot(Select(DAG.getRoot()));
103 CodeGenMap.clear();
104 DAG.RemoveDeadNodes();
105
106 // Emit machine code to BB.
107 ScheduleAndEmitDAG(DAG);
108}
109
110// Select - Convert the specified operand from a target-independent to a
111// target-specific node if it hasn't already been changed.
112SDOperand AlphaDAGToDAGISel::Select(SDOperand Op) {
113 SDNode *N = Op.Val;
114 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
115 N->getOpcode() < AlphaISD::FIRST_NUMBER)
116 return Op; // Already selected.
117
118 // If this has already been converted, use it.
119 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
120 if (CGMI != CodeGenMap.end()) return CGMI->second;
121
122 switch (N->getOpcode()) {
123 default: break;
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000124 case ISD::TAILCALL:
125 case ISD::CALL: return SelectCALL(Op);
126
Andrew Lenharth50b37842005-11-22 04:20:06 +0000127 case ISD::DYNAMIC_STACKALLOC: {
128 if (!isa<ConstantSDNode>(N->getOperand(2)) ||
129 cast<ConstantSDNode>(N->getOperand(2))->getValue() != 0) {
130 std::cerr << "Cannot allocate stack object with greater alignment than"
131 << " the stack alignment yet!";
132 abort();
133 }
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000134
Andrew Lenharth50b37842005-11-22 04:20:06 +0000135 SDOperand Chain = Select(N->getOperand(0));
136 SDOperand Amt = Select(N->getOperand(1));
137 SDOperand Reg = CurDAG->getRegister(Alpha::R30, MVT::i64);
138 SDOperand Val = CurDAG->getCopyFromReg(Chain, Alpha::R30, MVT::i64);
139 Chain = Val.getValue(1);
140
141 // Subtract the amount (guaranteed to be a multiple of the stack alignment)
142 // from the stack pointer, giving us the result pointer.
143 SDOperand Result = CurDAG->getTargetNode(Alpha::SUBQ, MVT::i64, Val, Amt);
144
145 // Copy this result back into R30.
146 Chain = CurDAG->getNode(ISD::CopyToReg, MVT::Other, Chain, Reg, Result);
147
148 // Copy this result back out of R30 to make sure we're not using the stack
149 // space without decrementing the stack pointer.
150 Result = CurDAG->getCopyFromReg(Chain, Alpha::R30, MVT::i64);
151
152 // Finally, replace the DYNAMIC_STACKALLOC with the copyfromreg.
153 CodeGenMap[Op.getValue(0)] = Result;
154 CodeGenMap[Op.getValue(1)] = Result.getValue(1);
155 return SDOperand(Result.Val, Op.ResNo);
156 }
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000157 case ISD::BRCOND: {
Andrew Lenharthf88471d2005-12-06 20:43:30 +0000158 if (N->getOperand(1).getOpcode() == ISD::SETCC &&
159 MVT::isFloatingPoint(N->getOperand(1).getOperand(0).getValueType())) {
160 SDOperand Chain = Select(N->getOperand(0));
161 SDOperand CC1 = Select(N->getOperand(1).getOperand(0));
162 SDOperand CC2 = Select(N->getOperand(1).getOperand(1));
163 ISD::CondCode cCode= cast<CondCodeSDNode>(N->getOperand(1).getOperand(2))->get();
164
165 bool rev = false;
166 bool isNE = false;
167 unsigned Opc = Alpha::WTF;
168 switch(cCode) {
169 default: N->dump(); assert(0 && "Unknown FP comparison!");
170 case ISD::SETEQ: Opc = Alpha::CMPTEQ; break;
171 case ISD::SETLT: Opc = Alpha::CMPTLT; break;
172 case ISD::SETLE: Opc = Alpha::CMPTLE; break;
173 case ISD::SETGT: Opc = Alpha::CMPTLT; rev = true; break;
174 case ISD::SETGE: Opc = Alpha::CMPTLE; rev = true; break;
175 case ISD::SETNE: Opc = Alpha::CMPTEQ; isNE = true; break;
176 };
177 SDOperand cmp = CurDAG->getTargetNode(Opc, MVT::f64,
178 rev?CC2:CC1,
179 rev?CC1:CC2);
180
181 MachineBasicBlock *Dest =
182 cast<BasicBlockSDNode>(N->getOperand(2))->getBasicBlock();
183 if(isNE)
184 return CurDAG->SelectNodeTo(N, Alpha::FBEQ, MVT::Other, cmp,
185 CurDAG->getBasicBlock(Dest), Chain);
186 else
187 return CurDAG->SelectNodeTo(N, Alpha::FBNE, MVT::Other, cmp,
188 CurDAG->getBasicBlock(Dest), Chain);
189 }
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000190 SDOperand Chain = Select(N->getOperand(0));
191 SDOperand CC = Select(N->getOperand(1));
Andrew Lenharth50b37842005-11-22 04:20:06 +0000192 MachineBasicBlock *Dest =
193 cast<BasicBlockSDNode>(N->getOperand(2))->getBasicBlock();
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000194 return CurDAG->SelectNodeTo(N, Alpha::BNE, MVT::Other, CC,
195 CurDAG->getBasicBlock(Dest), Chain);
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000196 }
197 case ISD::LOAD:
198 case ISD::EXTLOAD:
199 case ISD::ZEXTLOAD:
200 case ISD::SEXTLOAD: {
201 SDOperand Chain = Select(N->getOperand(0));
202 SDOperand Address = Select(N->getOperand(1));
203 unsigned opcode = N->getOpcode();
204 unsigned Opc = Alpha::WTF;
205 if (opcode == ISD::LOAD)
206 switch (N->getValueType(0)) {
207 default: N->dump(); assert(0 && "Bad load!");
208 case MVT::i64: Opc = Alpha::LDQ; break;
209 case MVT::f64: Opc = Alpha::LDT; break;
210 case MVT::f32: Opc = Alpha::LDS; break;
211 }
212 else
213 switch (cast<VTSDNode>(N->getOperand(3))->getVT()) {
214 default: N->dump(); assert(0 && "Bad sign extend!");
215 case MVT::i32: Opc = Alpha::LDL;
216 assert(opcode != ISD::ZEXTLOAD && "Not sext"); break;
217 case MVT::i16: Opc = Alpha::LDWU;
218 assert(opcode != ISD::SEXTLOAD && "Not zext"); break;
219 case MVT::i1: //FIXME: Treat i1 as i8 since there are problems otherwise
220 case MVT::i8: Opc = Alpha::LDBU;
221 assert(opcode != ISD::SEXTLOAD && "Not zext"); break;
222 }
223
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000224 return CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), MVT::Other,
225 getI64Imm(0), Address,
226 Chain).getValue(Op.ResNo);
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000227 }
Andrew Lenharth50b37842005-11-22 04:20:06 +0000228 case ISD::STORE:
229 case ISD::TRUNCSTORE: {
230 SDOperand Chain = Select(N->getOperand(0));
231 SDOperand Value = Select(N->getOperand(1));
232 SDOperand Address = Select(N->getOperand(2));
233
234 unsigned Opc = Alpha::WTF;
235
236 if (N->getOpcode() == ISD::STORE) {
237 switch (N->getOperand(1).getValueType()) {
238 case MVT::i64: Opc = Alpha::STQ; break;
239 case MVT::f64: Opc = Alpha::STT; break;
240 case MVT::f32: Opc = Alpha::STS; break;
241 default: assert(0 && "Bad store!");
242 };
243 } else { //TRUNCSTORE
244 switch (cast<VTSDNode>(N->getOperand(4))->getVT()) {
245 case MVT::i32: Opc = Alpha::STL; break;
246 case MVT::i16: Opc = Alpha::STW; break;
247 case MVT::i8: Opc = Alpha::STB; break;
248 default: assert(0 && "Bad truncstore!");
249 };
250 }
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000251 return CurDAG->SelectNodeTo(N, Opc, MVT::Other, Value, getI64Imm(0),
252 Address, Chain);
Andrew Lenharth50b37842005-11-22 04:20:06 +0000253 }
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000254
Andrew Lenharthf88471d2005-12-06 20:43:30 +0000255 case ISD::BR:
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000256 return CurDAG->SelectNodeTo(N, Alpha::BR_DAG, MVT::Other, N->getOperand(1),
257 Select(N->getOperand(0)));
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000258 case ISD::FrameIndex: {
Andrew Lenharth50b37842005-11-22 04:20:06 +0000259 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000260 return CurDAG->SelectNodeTo(N, Alpha::LDA, MVT::i64,
261 CurDAG->getTargetFrameIndex(FI, MVT::i32),
262 getI64Imm(0));
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000263 }
264 case ISD::ConstantPool: {
Andrew Lenharth50b37842005-11-22 04:20:06 +0000265 Constant *C = cast<ConstantPoolSDNode>(N)->get();
266 SDOperand Tmp, CPI = CurDAG->getTargetConstantPool(C, MVT::i64);
267 Tmp = CurDAG->getTargetNode(Alpha::LDAHr, MVT::i64, CPI, getGlobalBaseReg());
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000268 return CurDAG->SelectNodeTo(N, Alpha::LDAr, MVT::i64, CPI, Tmp);
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000269 }
270 case ISD::GlobalAddress: {
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000271 GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
272 SDOperand GA = CurDAG->getTargetGlobalAddress(GV, MVT::i64);
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000273 return CurDAG->SelectNodeTo(N, Alpha::LDQl, MVT::i64, GA,
274 getGlobalBaseReg());
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000275 }
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000276 case ISD::ExternalSymbol:
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000277 return CurDAG->SelectNodeTo(N, Alpha::LDQl, MVT::i64,
278 CurDAG->getTargetExternalSymbol(cast<ExternalSymbolSDNode>(N)->getSymbol(), MVT::i64),
Andrew Lenharth93526222005-12-01 01:53:10 +0000279 getGlobalBaseReg());
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000280
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000281 case ISD::RET: {
282 SDOperand Chain = Select(N->getOperand(0)); // Token chain.
Andrew Lenharth93526222005-12-01 01:53:10 +0000283 SDOperand InFlag;
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000284
285 if (N->getNumOperands() == 2) {
286 SDOperand Val = Select(N->getOperand(1));
287 if (N->getOperand(1).getValueType() == MVT::i64) {
Andrew Lenharth93526222005-12-01 01:53:10 +0000288 Chain = CurDAG->getCopyToReg(Chain, Alpha::R0, Val, InFlag);
289 InFlag = Chain.getValue(1);
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000290 }
291 }
Andrew Lenharth93526222005-12-01 01:53:10 +0000292 Chain = CurDAG->getCopyToReg(Chain, Alpha::R26, getRASaveReg(), InFlag);
293 InFlag = Chain.getValue(1);
294
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000295 // Finally, select this to a ret instruction.
Andrew Lenharth93526222005-12-01 01:53:10 +0000296 return CurDAG->SelectNodeTo(N, Alpha::RETDAG, MVT::Other, Chain, InFlag);
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000297 }
Andrew Lenharth50b37842005-11-22 04:20:06 +0000298 case ISD::Constant: {
299 int64_t val = (int64_t)cast<ConstantSDNode>(N)->getValue();
300 if (val > (int64_t)IMM_HIGH +(int64_t)IMM_HIGH* (int64_t)IMM_MULT ||
301 val < (int64_t)IMM_LOW + (int64_t)IMM_LOW * (int64_t)IMM_MULT) {
302 MachineConstantPool *CP = BB->getParent()->getConstantPool();
303 ConstantUInt *C =
304 ConstantUInt::get(Type::getPrimitiveType(Type::ULongTyID) , val);
305 SDOperand Tmp, CPI = CurDAG->getTargetConstantPool(C, MVT::i64);
306 Tmp = CurDAG->getTargetNode(Alpha::LDAHr, MVT::i64, CPI, getGlobalBaseReg());
Andrew Lenharthb457a932005-12-05 17:51:02 +0000307 return CurDAG->SelectNodeTo(N, Alpha::LDQr, MVT::i64, CPI, Tmp);
Andrew Lenharth50b37842005-11-22 04:20:06 +0000308 }
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000309 break;
Andrew Lenharth50b37842005-11-22 04:20:06 +0000310 }
311 case ISD::ConstantFP:
312 if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N)) {
313 bool isDouble = N->getValueType(0) == MVT::f64;
314 MVT::ValueType T = isDouble ? MVT::f64 : MVT::f32;
315 if (CN->isExactlyValue(+0.0)) {
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000316 return CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYST : Alpha::CPYSS,
317 T, CurDAG->getRegister(Alpha::F31, T),
318 CurDAG->getRegister(Alpha::F31, T));
Andrew Lenharth50b37842005-11-22 04:20:06 +0000319 } else if ( CN->isExactlyValue(-0.0)) {
Chris Lattnerd5acfb42005-11-30 23:04:38 +0000320 return CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYSNT : Alpha::CPYSNS,
321 T, CurDAG->getRegister(Alpha::F31, T),
322 CurDAG->getRegister(Alpha::F31, T));
Andrew Lenharth50b37842005-11-22 04:20:06 +0000323 } else {
324 abort();
325 }
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000326 break;
Andrew Lenharth50b37842005-11-22 04:20:06 +0000327 }
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000328 case ISD::SDIV:
329 case ISD::UDIV:
330 case ISD::UREM:
331 case ISD::SREM:
332 if (MVT::isInteger(N->getValueType(0))) {
333 const char* opstr = 0;
334 switch(N->getOpcode()) {
335 case ISD::UREM: opstr = "__remqu"; break;
336 case ISD::SREM: opstr = "__remq"; break;
337 case ISD::UDIV: opstr = "__divqu"; break;
338 case ISD::SDIV: opstr = "__divq"; break;
339 }
340 SDOperand Tmp1 = Select(N->getOperand(0)),
341 Tmp2 = Select(N->getOperand(1)),
342 Addr = CurDAG->getExternalSymbol(opstr, AlphaLowering.getPointerTy());
343 SDOperand Tmp3 = Select(Addr);
344 SDOperand Chain = CurDAG->getCopyToReg(CurDAG->getRoot(), Alpha::R24,
345 Tmp1, SDOperand());
346 Chain = CurDAG->getCopyToReg(CurDAG->getRoot(), Alpha::R25,
347 Tmp2, Chain.getValue(1));
348 Chain = CurDAG->getCopyToReg(CurDAG->getRoot(), Alpha::R27,
349 Tmp3, Chain.getValue(1));
350 Chain = CurDAG->getTargetNode(Alpha::JSRs, MVT::i64, MVT::Flag,
351 CurDAG->getRegister(Alpha::R27, MVT::i64),
352 getI64Imm(0));
353 return CurDAG->getCopyFromReg(Chain.getValue(1), Alpha::R27, MVT::i64,
354 Chain.getValue(1));
355 }
356 break;
357
358 case ISD::SETCC:
359 if (MVT::isFloatingPoint(N->getOperand(0).Val->getValueType(0))) {
360 unsigned Opc = Alpha::WTF;
361 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
362 bool rev = false;
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000363 bool isNE = false;
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000364 switch(CC) {
365 default: N->dump(); assert(0 && "Unknown FP comparison!");
366 case ISD::SETEQ: Opc = Alpha::CMPTEQ; break;
367 case ISD::SETLT: Opc = Alpha::CMPTLT; break;
368 case ISD::SETLE: Opc = Alpha::CMPTLE; break;
369 case ISD::SETGT: Opc = Alpha::CMPTLT; rev = true; break;
370 case ISD::SETGE: Opc = Alpha::CMPTLE; rev = true; break;
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000371 case ISD::SETNE: Opc = Alpha::CMPTEQ; isNE = true; break;
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000372 };
373 SDOperand tmp1 = Select(N->getOperand(0)),
374 tmp2 = Select(N->getOperand(1));
375 SDOperand cmp = CurDAG->getTargetNode(Opc, MVT::f64,
376 rev?tmp2:tmp1,
377 rev?tmp1:tmp2);
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000378 if (isNE)
379 cmp = CurDAG->getTargetNode(Alpha::CMPTEQ, MVT::f64, cmp,
380 CurDAG->getRegister(Alpha::F31, MVT::f64));
381
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000382 SDOperand LD;
383 if (AlphaLowering.hasITOF()) {
384 LD = CurDAG->getNode(AlphaISD::FTOIT_, MVT::i64, cmp);
385 } else {
386 int FrameIdx =
387 CurDAG->getMachineFunction().getFrameInfo()->CreateStackObject(8, 8);
388 SDOperand FI = CurDAG->getFrameIndex(FrameIdx, MVT::i64);
389 SDOperand ST = CurDAG->getTargetNode(Alpha::STT, MVT::Other,
390 cmp, FI, CurDAG->getRegister(Alpha::R31, MVT::i64));
391 LD = CurDAG->getTargetNode(Alpha::LDQ, MVT::i64, FI,
392 CurDAG->getRegister(Alpha::R31, MVT::i64),
393 ST);
394 }
395 SDOperand FP = CurDAG->getTargetNode(Alpha::CMPULT, MVT::i64,
396 CurDAG->getRegister(Alpha::R31, MVT::i64),
397 LD);
398 return FP;
399 }
400 break;
Andrew Lenharthcd804962005-11-30 16:10:29 +0000401
402 case ISD::SELECT:
403 if (MVT::isFloatingPoint(N->getValueType(0))) {
404 //move int to fp
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000405 bool isDouble = N->getValueType(0) == MVT::f64;
Andrew Lenharthcd804962005-11-30 16:10:29 +0000406 SDOperand LD,
407 cond = Select(N->getOperand(0)),
408 TV = Select(N->getOperand(1)),
409 FV = Select(N->getOperand(2));
410
411 if (AlphaLowering.hasITOF()) {
412 LD = CurDAG->getNode(AlphaISD::ITOFT_, MVT::f64, cond);
413 } else {
414 int FrameIdx =
415 CurDAG->getMachineFunction().getFrameInfo()->CreateStackObject(8, 8);
416 SDOperand FI = CurDAG->getFrameIndex(FrameIdx, MVT::i64);
417 SDOperand ST = CurDAG->getTargetNode(Alpha::STQ, MVT::Other,
418 cond, FI, CurDAG->getRegister(Alpha::R31, MVT::i64));
419 LD = CurDAG->getTargetNode(Alpha::LDT, MVT::f64, FI,
420 CurDAG->getRegister(Alpha::R31, MVT::i64),
421 ST);
422 }
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000423 SDOperand FP = CurDAG->getTargetNode(isDouble?Alpha::FCMOVEQT:Alpha::FCMOVEQS,
424 MVT::f64, TV, FV, LD);
Andrew Lenharthcd804962005-11-30 16:10:29 +0000425 return FP;
426 }
427 break;
428
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000429 }
Andrew Lenharthcd804962005-11-30 16:10:29 +0000430
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000431 return SelectCode(Op);
432}
433
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000434SDOperand AlphaDAGToDAGISel::SelectCALL(SDOperand Op) {
Andrew Lenharth50b37842005-11-22 04:20:06 +0000435 //TODO: add flag stuff to prevent nondeturministic breakage!
436
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000437 SDNode *N = Op.Val;
438 SDOperand Chain = Select(N->getOperand(0));
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000439 SDOperand Addr = Select(N->getOperand(1));
Andrew Lenharth93526222005-12-01 01:53:10 +0000440 SDOperand InFlag; // Null incoming flag value.
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000441
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000442 std::vector<SDOperand> CallOperands;
443 std::vector<MVT::ValueType> TypeOperands;
444
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000445 //grab the arguments
446 for(int i = 2, e = N->getNumOperands(); i < e; ++i) {
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000447 TypeOperands.push_back(N->getOperand(i).getValueType());
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000448 CallOperands.push_back(Select(N->getOperand(i)));
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000449 }
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000450 int count = N->getNumOperands() - 2;
451
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000452 static const unsigned args_int[] = {Alpha::R16, Alpha::R17, Alpha::R18,
453 Alpha::R19, Alpha::R20, Alpha::R21};
454 static const unsigned args_float[] = {Alpha::F16, Alpha::F17, Alpha::F18,
455 Alpha::F19, Alpha::F20, Alpha::F21};
456
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000457 for (int i = 6; i < count; ++i) {
458 unsigned Opc = Alpha::WTF;
459 if (MVT::isInteger(TypeOperands[i])) {
460 Opc = Alpha::STQ;
461 } else if (TypeOperands[i] == MVT::f32) {
462 Opc = Alpha::STS;
463 } else if (TypeOperands[i] == MVT::f64) {
464 Opc = Alpha::STT;
465 } else
466 assert(0 && "Unknown operand");
467 Chain = CurDAG->getTargetNode(Opc, MVT::Other, CallOperands[i],
468 getI64Imm((i - 6) * 8),
Andrew Lenharth93526222005-12-01 01:53:10 +0000469 CurDAG->getCopyFromReg(Chain, Alpha::R30, MVT::i64),
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000470 Chain);
471 }
Andrew Lenharth93526222005-12-01 01:53:10 +0000472 for (int i = 0; i < std::min(6, count); ++i) {
473 if (MVT::isInteger(TypeOperands[i])) {
474 Chain = CurDAG->getCopyToReg(Chain, args_int[i], CallOperands[i], InFlag);
475 InFlag = Chain.getValue(1);
476 } else if (TypeOperands[i] == MVT::f32 || TypeOperands[i] == MVT::f64) {
477 Chain = CurDAG->getCopyToReg(Chain, args_float[i], CallOperands[i], InFlag);
478 InFlag = Chain.getValue(1);
479 } else
480 assert(0 && "Unknown operand");
481 }
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000482
Andrew Lenharth93526222005-12-01 01:53:10 +0000483
484 Chain = CurDAG->getCopyToReg(Chain, Alpha::R27, Addr, InFlag);
485 InFlag = Chain.getValue(1);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000486 // Finally, once everything is in registers to pass to the call, emit the
487 // call itself.
Andrew Lenharth93526222005-12-01 01:53:10 +0000488 Chain = CurDAG->getTargetNode(Alpha::JSRDAG, MVT::Other, MVT::Flag,
489 Chain, InFlag );
490 InFlag = Chain.getValue(1);
491
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000492 std::vector<SDOperand> CallResults;
493
494 switch (N->getValueType(0)) {
495 default: assert(0 && "Unexpected ret value!");
496 case MVT::Other: break;
497 case MVT::i64:
Andrew Lenharth93526222005-12-01 01:53:10 +0000498 Chain = CurDAG->getCopyFromReg(Chain, Alpha::R0, MVT::i64, InFlag).getValue(1);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000499 CallResults.push_back(Chain.getValue(0));
500 break;
Andrew Lenharth50b37842005-11-22 04:20:06 +0000501 case MVT::f32:
Andrew Lenharth93526222005-12-01 01:53:10 +0000502 Chain = CurDAG->getCopyFromReg(Chain, Alpha::F0, MVT::f32, InFlag).getValue(1);
Andrew Lenharth50b37842005-11-22 04:20:06 +0000503 CallResults.push_back(Chain.getValue(0));
504 break;
505 case MVT::f64:
Andrew Lenharth93526222005-12-01 01:53:10 +0000506 Chain = CurDAG->getCopyFromReg(Chain, Alpha::F0, MVT::f64, InFlag).getValue(1);
Andrew Lenharth50b37842005-11-22 04:20:06 +0000507 CallResults.push_back(Chain.getValue(0));
508 break;
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000509 }
510
511 CallResults.push_back(Chain);
512 for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
513 CodeGenMap[Op.getValue(i)] = CallResults[i];
514 return CallResults[Op.ResNo];
515}
516
517
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000518/// createAlphaISelDag - This pass converts a legalized DAG into a
519/// Alpha-specific DAG, ready for instruction scheduling.
520///
521FunctionPass *llvm::createAlphaISelDag(TargetMachine &TM) {
522 return new AlphaDAGToDAGISel(TM);
523}