blob: 19328c01be3c7c6c3a54cd16919e616fea871cce [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>
Chris Lattner2c2c6c62006-01-22 23:41:00 +000031#include <iostream>
Evan Chengba2f0a92006-02-05 06:46:41 +000032#include <set>
Andrew Lenharthd97591a2005-10-20 00:29:02 +000033using namespace llvm;
34
35namespace {
36
37 //===--------------------------------------------------------------------===//
38 /// AlphaDAGToDAGISel - Alpha specific code to select Alpha machine
39 /// instructions for SelectionDAG operations.
Andrew Lenharthd97591a2005-10-20 00:29:02 +000040 class AlphaDAGToDAGISel : public SelectionDAGISel {
41 AlphaTargetLowering AlphaLowering;
42
Andrew Lenharthdcbaf8a2005-12-30 02:30:02 +000043 static const int64_t IMM_LOW = -32768;
44 static const int64_t IMM_HIGH = 32767;
45 static const int64_t IMM_MULT = 65536;
Andrew Lenharthfeab2f82006-01-01 22:16:14 +000046 static const int64_t IMM_FULLHIGH = IMM_HIGH + IMM_HIGH * IMM_MULT;
47 static const int64_t IMM_FULLLOW = IMM_LOW + IMM_LOW * IMM_MULT;
48
49 static int64_t get_ldah16(int64_t x) {
50 int64_t y = x / IMM_MULT;
51 if (x % IMM_MULT > IMM_HIGH)
52 ++y;
53 return y;
54 }
55
56 static int64_t get_lda16(int64_t x) {
57 return x - get_ldah16(x) * IMM_MULT;
58 }
59
60 static uint64_t get_zapImm(uint64_t x) {
61 unsigned int build = 0;
62 for(int i = 0; i < 8; ++i)
63 {
64 if ((x & 0x00FF) == 0x00FF)
65 build |= 1 << i;
66 else if ((x & 0x00FF) != 0)
67 { build = 0; break; }
68 x >>= 8;
69 }
Andrew Lenharth5d423602006-01-02 21:15:53 +000070 return build;
Andrew Lenharthfeab2f82006-01-01 22:16:14 +000071 }
72
73 static bool isFPZ(SDOperand N) {
74 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
75 return (CN && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)));
76 }
77 static bool isFPZn(SDOperand N) {
78 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
79 return (CN && CN->isExactlyValue(-0.0));
80 }
81 static bool isFPZp(SDOperand N) {
82 ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N);
83 return (CN && CN->isExactlyValue(+0.0));
84 }
85
Andrew Lenharthd97591a2005-10-20 00:29:02 +000086 public:
87 AlphaDAGToDAGISel(TargetMachine &TM)
Andrew Lenharthdcbaf8a2005-12-30 02:30:02 +000088 : SelectionDAGISel(AlphaLowering), AlphaLowering(TM)
89 {}
Andrew Lenharthd97591a2005-10-20 00:29:02 +000090
91 /// getI64Imm - Return a target constant with the specified value, of type
92 /// i64.
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000093 inline SDOperand getI64Imm(int64_t Imm) {
Andrew Lenharthd97591a2005-10-20 00:29:02 +000094 return CurDAG->getTargetConstant(Imm, MVT::i64);
95 }
96
Andrew Lenharthd97591a2005-10-20 00:29:02 +000097 // Select - Convert the specified operand from a target-independent to a
98 // target-specific node if it hasn't already been changed.
Evan Cheng34167212006-02-09 00:37:58 +000099 void Select(SDOperand &Result, SDOperand Op);
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000100
101 /// InstructionSelectBasicBlock - This callback is invoked by
102 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
103 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
104
105 virtual const char *getPassName() const {
106 return "Alpha DAG->DAG Pattern Instruction Selection";
107 }
108
109// Include the pieces autogenerated from the target description.
110#include "AlphaGenDAGISel.inc"
111
112private:
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000113 SDOperand getGlobalBaseReg();
Andrew Lenharth93526222005-12-01 01:53:10 +0000114 SDOperand getRASaveReg();
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000115 SDOperand SelectCALL(SDOperand Op);
116
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000117 };
118}
119
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000120/// getGlobalBaseReg - Output the instructions required to put the
121/// GOT address into a register.
122///
123SDOperand AlphaDAGToDAGISel::getGlobalBaseReg() {
Andrew Lenharth93526222005-12-01 01:53:10 +0000124 return CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
125 AlphaLowering.getVRegGP(),
126 MVT::i64);
127}
128
129/// getRASaveReg - Grab the return address
130///
131SDOperand AlphaDAGToDAGISel::getRASaveReg() {
132 return CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
133 AlphaLowering.getVRegRA(),
134 MVT::i64);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000135}
136
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000137/// InstructionSelectBasicBlock - This callback is invoked by
138/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
139void AlphaDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
140 DEBUG(BB->dump());
141
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000142 // Select target instructions for the DAG.
Evan Chengba2f0a92006-02-05 06:46:41 +0000143 DAG.setRoot(SelectRoot(DAG.getRoot()));
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000144 CodeGenMap.clear();
145 DAG.RemoveDeadNodes();
146
147 // Emit machine code to BB.
148 ScheduleAndEmitDAG(DAG);
149}
150
151// Select - Convert the specified operand from a target-independent to a
152// target-specific node if it hasn't already been changed.
Evan Cheng34167212006-02-09 00:37:58 +0000153void AlphaDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000154 SDNode *N = Op.Val;
155 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng34167212006-02-09 00:37:58 +0000156 N->getOpcode() < AlphaISD::FIRST_NUMBER) {
157 Result = Op;
158 return; // Already selected.
159 }
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000160
161 // If this has already been converted, use it.
162 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
Evan Cheng34167212006-02-09 00:37:58 +0000163 if (CGMI != CodeGenMap.end()) {
164 Result = CGMI->second;
165 return;
166 }
167
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000168 switch (N->getOpcode()) {
169 default: break;
Evan Cheng34167212006-02-09 00:37:58 +0000170 case AlphaISD::CALL:
171 Result = SelectCALL(Op);
172 return;
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000173
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000174 case ISD::FrameIndex: {
Andrew Lenharth50b37842005-11-22 04:20:06 +0000175 int FI = cast<FrameIndexSDNode>(N)->getIndex();
Evan Cheng34167212006-02-09 00:37:58 +0000176 Result = CurDAG->SelectNodeTo(N, Alpha::LDA, MVT::i64,
177 CurDAG->getTargetFrameIndex(FI, MVT::i32),
178 getI64Imm(0));
179 return;
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000180 }
Andrew Lenharth4e629512005-12-24 05:36:33 +0000181 case AlphaISD::GlobalBaseReg:
Evan Cheng34167212006-02-09 00:37:58 +0000182 Result = getGlobalBaseReg();
183 return;
Andrew Lenharth4e629512005-12-24 05:36:33 +0000184
Andrew Lenharth53d89702005-12-25 01:34:27 +0000185 case AlphaISD::DivCall: {
186 SDOperand Chain = CurDAG->getEntryNode();
Evan Cheng34167212006-02-09 00:37:58 +0000187 SDOperand N0, N1, N2;
188 Select(N0, Op.getOperand(0));
189 Select(N1, Op.getOperand(1));
190 Select(N2, Op.getOperand(2));
191 Chain = CurDAG->getCopyToReg(Chain, Alpha::R24, N1,
Andrew Lenharth53d89702005-12-25 01:34:27 +0000192 SDOperand(0,0));
Evan Cheng34167212006-02-09 00:37:58 +0000193 Chain = CurDAG->getCopyToReg(Chain, Alpha::R25, N2,
Andrew Lenharth53d89702005-12-25 01:34:27 +0000194 Chain.getValue(1));
Evan Cheng34167212006-02-09 00:37:58 +0000195 Chain = CurDAG->getCopyToReg(Chain, Alpha::R27, N0,
Andrew Lenharth53d89702005-12-25 01:34:27 +0000196 Chain.getValue(1));
Andrew Lenhartheececba2005-12-25 17:36:48 +0000197 Chain = CurDAG->getTargetNode(Alpha::JSRs, MVT::Other, MVT::Flag,
Andrew Lenharth53d89702005-12-25 01:34:27 +0000198 Chain, Chain.getValue(1));
199 Chain = CurDAG->getCopyFromReg(Chain, Alpha::R27, MVT::i64,
200 Chain.getValue(1));
Evan Cheng34167212006-02-09 00:37:58 +0000201 Result = CurDAG->SelectNodeTo(N, Alpha::BIS, MVT::i64, Chain, Chain);
202 return;
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000203 }
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000204
Andrew Lenharth739027e2006-01-16 21:22:38 +0000205 case ISD::READCYCLECOUNTER: {
Evan Cheng34167212006-02-09 00:37:58 +0000206 SDOperand Chain;
207 Select(Chain, N->getOperand(0)); //Select chain
208 Result = CurDAG->SelectNodeTo(N, Alpha::RPCC, MVT::i64, Chain);
209 return;
Andrew Lenharth739027e2006-01-16 21:22:38 +0000210 }
211
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000212 case ISD::RET: {
Evan Cheng34167212006-02-09 00:37:58 +0000213 SDOperand Chain;
214 Select(Chain, N->getOperand(0)); // Token chain.
Andrew Lenharth93526222005-12-01 01:53:10 +0000215 SDOperand InFlag;
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000216
217 if (N->getNumOperands() == 2) {
Evan Cheng34167212006-02-09 00:37:58 +0000218 SDOperand Val;
219 Select(Val, N->getOperand(1));
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000220 if (N->getOperand(1).getValueType() == MVT::i64) {
Andrew Lenharth93526222005-12-01 01:53:10 +0000221 Chain = CurDAG->getCopyToReg(Chain, Alpha::R0, Val, InFlag);
222 InFlag = Chain.getValue(1);
Andrew Lenharthe41419f2005-12-11 03:54:31 +0000223 } else if (N->getOperand(1).getValueType() == MVT::f64 ||
224 N->getOperand(1).getValueType() == MVT::f32) {
225 Chain = CurDAG->getCopyToReg(Chain, Alpha::F0, Val, InFlag);
226 InFlag = Chain.getValue(1);
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000227 }
228 }
Andrew Lenharth93526222005-12-01 01:53:10 +0000229 Chain = CurDAG->getCopyToReg(Chain, Alpha::R26, getRASaveReg(), InFlag);
230 InFlag = Chain.getValue(1);
231
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000232 // Finally, select this to a ret instruction.
Evan Cheng34167212006-02-09 00:37:58 +0000233 Result = CurDAG->SelectNodeTo(N, Alpha::RETDAG, MVT::Other, Chain, InFlag);
234 return;
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000235 }
Andrew Lenharth50b37842005-11-22 04:20:06 +0000236 case ISD::Constant: {
Andrew Lenharthdcbaf8a2005-12-30 02:30:02 +0000237 uint64_t uval = cast<ConstantSDNode>(N)->getValue();
Andrew Lenharth919e6662006-01-06 19:41:51 +0000238
Evan Cheng34167212006-02-09 00:37:58 +0000239 if (uval == 0) {
240 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), Alpha::R31,
241 MVT::i64);
242 return;
243 }
Andrew Lenharth919e6662006-01-06 19:41:51 +0000244
Andrew Lenharthdcbaf8a2005-12-30 02:30:02 +0000245 int64_t val = (int64_t)uval;
246 int32_t val32 = (int32_t)val;
247 if (val <= IMM_HIGH + IMM_HIGH * IMM_MULT &&
248 val >= IMM_LOW + IMM_LOW * IMM_MULT)
249 break; //(LDAH (LDA))
250 if ((uval >> 32) == 0 && //empty upper bits
Andrew Lenharthfeab2f82006-01-01 22:16:14 +0000251 val32 <= IMM_HIGH + IMM_HIGH * IMM_MULT)
252 // val32 >= IMM_LOW + IMM_LOW * IMM_MULT) //always true
Andrew Lenharthdcbaf8a2005-12-30 02:30:02 +0000253 break; //(zext (LDAH (LDA)))
254 //Else use the constant pool
255 MachineConstantPool *CP = BB->getParent()->getConstantPool();
256 ConstantUInt *C =
257 ConstantUInt::get(Type::getPrimitiveType(Type::ULongTyID) , uval);
258 SDOperand Tmp, CPI = CurDAG->getTargetConstantPool(C, MVT::i64);
259 Tmp = CurDAG->getTargetNode(Alpha::LDAHr, MVT::i64, CPI, getGlobalBaseReg());
Evan Cheng34167212006-02-09 00:37:58 +0000260 Result = CurDAG->SelectNodeTo(N, Alpha::LDQr, MVT::i64, MVT::Other,
261 CPI, Tmp, CurDAG->getEntryNode());
262 return;
Andrew Lenharth50b37842005-11-22 04:20:06 +0000263 }
Chris Lattner08a90222006-01-29 06:25:22 +0000264 case ISD::TargetConstantFP: {
265 ConstantFPSDNode *CN = cast<ConstantFPSDNode>(N);
266 bool isDouble = N->getValueType(0) == MVT::f64;
267 MVT::ValueType T = isDouble ? MVT::f64 : MVT::f32;
268 if (CN->isExactlyValue(+0.0)) {
Evan Cheng34167212006-02-09 00:37:58 +0000269 Result = CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYST : Alpha::CPYSS,
270 T, CurDAG->getRegister(Alpha::F31, T),
271 CurDAG->getRegister(Alpha::F31, T));
272 return;
Chris Lattner08a90222006-01-29 06:25:22 +0000273 } else if ( CN->isExactlyValue(-0.0)) {
Evan Cheng34167212006-02-09 00:37:58 +0000274 Result = CurDAG->SelectNodeTo(N, isDouble ? Alpha::CPYSNT : Alpha::CPYSNS,
275 T, CurDAG->getRegister(Alpha::F31, T),
276 CurDAG->getRegister(Alpha::F31, T));
277 return;
Chris Lattner08a90222006-01-29 06:25:22 +0000278 } else {
279 abort();
Andrew Lenharth50b37842005-11-22 04:20:06 +0000280 }
Chris Lattner08a90222006-01-29 06:25:22 +0000281 break;
282 }
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000283
284 case ISD::SETCC:
285 if (MVT::isFloatingPoint(N->getOperand(0).Val->getValueType(0))) {
286 unsigned Opc = Alpha::WTF;
287 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
288 bool rev = false;
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000289 bool isNE = false;
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000290 switch(CC) {
291 default: N->dump(); assert(0 && "Unknown FP comparison!");
292 case ISD::SETEQ: Opc = Alpha::CMPTEQ; break;
293 case ISD::SETLT: Opc = Alpha::CMPTLT; break;
294 case ISD::SETLE: Opc = Alpha::CMPTLE; break;
295 case ISD::SETGT: Opc = Alpha::CMPTLT; rev = true; break;
296 case ISD::SETGE: Opc = Alpha::CMPTLE; rev = true; break;
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000297 case ISD::SETNE: Opc = Alpha::CMPTEQ; isNE = true; break;
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000298 };
Evan Cheng34167212006-02-09 00:37:58 +0000299 SDOperand tmp1, tmp2;
300 Select(tmp1, N->getOperand(0));
301 Select(tmp2, N->getOperand(1));
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000302 SDOperand cmp = CurDAG->getTargetNode(Opc, MVT::f64,
303 rev?tmp2:tmp1,
304 rev?tmp1:tmp2);
Andrew Lenharthb2156f92005-11-30 17:11:20 +0000305 if (isNE)
306 cmp = CurDAG->getTargetNode(Alpha::CMPTEQ, MVT::f64, cmp,
307 CurDAG->getRegister(Alpha::F31, MVT::f64));
308
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000309 SDOperand LD;
310 if (AlphaLowering.hasITOF()) {
311 LD = CurDAG->getNode(AlphaISD::FTOIT_, MVT::i64, cmp);
312 } else {
313 int FrameIdx =
314 CurDAG->getMachineFunction().getFrameInfo()->CreateStackObject(8, 8);
315 SDOperand FI = CurDAG->getFrameIndex(FrameIdx, MVT::i64);
316 SDOperand ST = CurDAG->getTargetNode(Alpha::STT, MVT::Other,
317 cmp, FI, CurDAG->getRegister(Alpha::R31, MVT::i64));
318 LD = CurDAG->getTargetNode(Alpha::LDQ, MVT::i64, FI,
319 CurDAG->getRegister(Alpha::R31, MVT::i64),
320 ST);
321 }
322 SDOperand FP = CurDAG->getTargetNode(Alpha::CMPULT, MVT::i64,
323 CurDAG->getRegister(Alpha::R31, MVT::i64),
324 LD);
Evan Cheng34167212006-02-09 00:37:58 +0000325 Result = FP;
326 return;
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000327 }
328 break;
Andrew Lenharthcd804962005-11-30 16:10:29 +0000329
Andrew Lenharth361f45a2005-12-12 17:43:52 +0000330 case ISD::SELECT:
331 if (MVT::isFloatingPoint(N->getValueType(0)) &&
332 (N->getOperand(0).getOpcode() != ISD::SETCC ||
333 !MVT::isFloatingPoint(N->getOperand(0).getOperand(1).getValueType()))) {
334 //This should be the condition not covered by the Patterns
335 //FIXME: Don't have SelectCode die, but rather return something testable
336 // so that things like this can be caught in fall though code
337 //move int to fp
338 bool isDouble = N->getValueType(0) == MVT::f64;
Evan Cheng34167212006-02-09 00:37:58 +0000339 SDOperand LD, cond, TV, FV;
340 Select(cond, N->getOperand(0));
341 Select(TV, N->getOperand(1));
342 Select(FV, N->getOperand(2));
Andrew Lenharth361f45a2005-12-12 17:43:52 +0000343
344 if (AlphaLowering.hasITOF()) {
345 LD = CurDAG->getNode(AlphaISD::ITOFT_, MVT::f64, cond);
346 } else {
347 int FrameIdx =
348 CurDAG->getMachineFunction().getFrameInfo()->CreateStackObject(8, 8);
349 SDOperand FI = CurDAG->getFrameIndex(FrameIdx, MVT::i64);
350 SDOperand ST = CurDAG->getTargetNode(Alpha::STQ, MVT::Other,
351 cond, FI, CurDAG->getRegister(Alpha::R31, MVT::i64));
352 LD = CurDAG->getTargetNode(Alpha::LDT, MVT::f64, FI,
353 CurDAG->getRegister(Alpha::R31, MVT::i64),
354 ST);
355 }
Andrew Lenharth110f2242005-12-12 20:30:09 +0000356 SDOperand FP = CurDAG->getTargetNode(isDouble?Alpha::FCMOVNET:Alpha::FCMOVNES,
Andrew Lenharth361f45a2005-12-12 17:43:52 +0000357 MVT::f64, FV, TV, LD);
Evan Cheng34167212006-02-09 00:37:58 +0000358 Result = FP;
359 return;
Andrew Lenharth361f45a2005-12-12 17:43:52 +0000360 }
361 break;
362
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000363 }
Andrew Lenharthcd804962005-11-30 16:10:29 +0000364
Evan Cheng34167212006-02-09 00:37:58 +0000365 SelectCode(Result, Op);
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000366}
367
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000368SDOperand AlphaDAGToDAGISel::SelectCALL(SDOperand Op) {
Andrew Lenharth50b37842005-11-22 04:20:06 +0000369 //TODO: add flag stuff to prevent nondeturministic breakage!
370
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000371 SDNode *N = Op.Val;
Evan Cheng34167212006-02-09 00:37:58 +0000372 SDOperand Chain;
Andrew Lenhartheececba2005-12-25 17:36:48 +0000373 SDOperand Addr = N->getOperand(1);
Andrew Lenharth93526222005-12-01 01:53:10 +0000374 SDOperand InFlag; // Null incoming flag value.
Evan Cheng34167212006-02-09 00:37:58 +0000375 Select(Chain, N->getOperand(0));
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000376
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000377 std::vector<SDOperand> CallOperands;
378 std::vector<MVT::ValueType> TypeOperands;
379
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000380 //grab the arguments
381 for(int i = 2, e = N->getNumOperands(); i < e; ++i) {
Evan Cheng34167212006-02-09 00:37:58 +0000382 SDOperand Tmp;
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000383 TypeOperands.push_back(N->getOperand(i).getValueType());
Evan Cheng34167212006-02-09 00:37:58 +0000384 Select(Tmp, N->getOperand(i));
385 CallOperands.push_back(Tmp);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000386 }
Andrew Lenharth8b7f14e2005-10-23 03:43:48 +0000387 int count = N->getNumOperands() - 2;
388
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000389 static const unsigned args_int[] = {Alpha::R16, Alpha::R17, Alpha::R18,
390 Alpha::R19, Alpha::R20, Alpha::R21};
391 static const unsigned args_float[] = {Alpha::F16, Alpha::F17, Alpha::F18,
392 Alpha::F19, Alpha::F20, Alpha::F21};
393
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000394 for (int i = 6; i < count; ++i) {
395 unsigned Opc = Alpha::WTF;
396 if (MVT::isInteger(TypeOperands[i])) {
397 Opc = Alpha::STQ;
398 } else if (TypeOperands[i] == MVT::f32) {
399 Opc = Alpha::STS;
400 } else if (TypeOperands[i] == MVT::f64) {
401 Opc = Alpha::STT;
402 } else
403 assert(0 && "Unknown operand");
404 Chain = CurDAG->getTargetNode(Opc, MVT::Other, CallOperands[i],
405 getI64Imm((i - 6) * 8),
Andrew Lenharth93526222005-12-01 01:53:10 +0000406 CurDAG->getCopyFromReg(Chain, Alpha::R30, MVT::i64),
Andrew Lenharth7f0db912005-11-30 07:19:56 +0000407 Chain);
408 }
Andrew Lenharth93526222005-12-01 01:53:10 +0000409 for (int i = 0; i < std::min(6, count); ++i) {
410 if (MVT::isInteger(TypeOperands[i])) {
411 Chain = CurDAG->getCopyToReg(Chain, args_int[i], CallOperands[i], InFlag);
412 InFlag = Chain.getValue(1);
413 } else if (TypeOperands[i] == MVT::f32 || TypeOperands[i] == MVT::f64) {
414 Chain = CurDAG->getCopyToReg(Chain, args_float[i], CallOperands[i], InFlag);
415 InFlag = Chain.getValue(1);
416 } else
417 assert(0 && "Unknown operand");
418 }
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000419
Andrew Lenharth93526222005-12-01 01:53:10 +0000420
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000421 // Finally, once everything is in registers to pass to the call, emit the
422 // call itself.
Andrew Lenhartheececba2005-12-25 17:36:48 +0000423 if (Addr.getOpcode() == AlphaISD::GPRelLo) {
424 SDOperand GOT = getGlobalBaseReg();
425 Chain = CurDAG->getCopyToReg(Chain, Alpha::R29, GOT, InFlag);
426 InFlag = Chain.getValue(1);
427 Chain = CurDAG->getTargetNode(Alpha::BSR, MVT::Other, MVT::Flag,
428 Addr.getOperand(0), Chain, InFlag);
429 } else {
Evan Cheng34167212006-02-09 00:37:58 +0000430 Select(Addr, Addr);
431 Chain = CurDAG->getCopyToReg(Chain, Alpha::R27, Addr, InFlag);
Andrew Lenhartheececba2005-12-25 17:36:48 +0000432 InFlag = Chain.getValue(1);
433 Chain = CurDAG->getTargetNode(Alpha::JSR, MVT::Other, MVT::Flag,
434 Chain, InFlag );
435 }
Andrew Lenharth93526222005-12-01 01:53:10 +0000436 InFlag = Chain.getValue(1);
437
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000438 std::vector<SDOperand> CallResults;
439
440 switch (N->getValueType(0)) {
441 default: assert(0 && "Unexpected ret value!");
442 case MVT::Other: break;
443 case MVT::i64:
Andrew Lenharth93526222005-12-01 01:53:10 +0000444 Chain = CurDAG->getCopyFromReg(Chain, Alpha::R0, MVT::i64, InFlag).getValue(1);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000445 CallResults.push_back(Chain.getValue(0));
446 break;
Andrew Lenharth50b37842005-11-22 04:20:06 +0000447 case MVT::f32:
Andrew Lenharth93526222005-12-01 01:53:10 +0000448 Chain = CurDAG->getCopyFromReg(Chain, Alpha::F0, MVT::f32, InFlag).getValue(1);
Andrew Lenharth50b37842005-11-22 04:20:06 +0000449 CallResults.push_back(Chain.getValue(0));
450 break;
451 case MVT::f64:
Andrew Lenharth93526222005-12-01 01:53:10 +0000452 Chain = CurDAG->getCopyFromReg(Chain, Alpha::F0, MVT::f64, InFlag).getValue(1);
Andrew Lenharth50b37842005-11-22 04:20:06 +0000453 CallResults.push_back(Chain.getValue(0));
454 break;
Andrew Lenharth756fbeb2005-10-22 22:06:58 +0000455 }
456
457 CallResults.push_back(Chain);
458 for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
459 CodeGenMap[Op.getValue(i)] = CallResults[i];
460 return CallResults[Op.ResNo];
461}
462
463
Andrew Lenharthd97591a2005-10-20 00:29:02 +0000464/// createAlphaISelDag - This pass converts a legalized DAG into a
465/// Alpha-specific DAG, ready for instruction scheduling.
466///
467FunctionPass *llvm::createAlphaISelDag(TargetMachine &TM) {
468 return new AlphaDAGToDAGISel(TM);
469}