blob: 2af3e9b306b05a27984f1f78dbf907881265d805 [file] [log] [blame]
Misha Brukman2a8350a2005-02-05 02:24:26 +00001//===- AlphaISelPattern.cpp - A pattern matching inst selector for Alpha --===//
Misha Brukman4633f1c2005-04-21 23:13:11 +00002//
Andrew Lenharth304d0f32005-01-22 23:41:55 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman4633f1c2005-04-21 23:13:11 +00007//
Andrew Lenharth304d0f32005-01-22 23:41:55 +00008//===----------------------------------------------------------------------===//
9//
10// This file defines a pattern matching instruction selector for Alpha.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Alpha.h"
Andrew Lenharth304d0f32005-01-22 23:41:55 +000015#include "AlphaRegisterInfo.h"
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000016#include "AlphaISelLowering.h"
Andrew Lenharth304d0f32005-01-22 23:41:55 +000017#include "llvm/Constants.h" // FIXME: REMOVE
18#include "llvm/Function.h"
Andrew Lenharthb69f3422005-06-22 17:19:45 +000019#include "llvm/Module.h"
Andrew Lenharth304d0f32005-01-22 23:41:55 +000020#include "llvm/CodeGen/MachineInstrBuilder.h"
21#include "llvm/CodeGen/MachineConstantPool.h" // FIXME: REMOVE
22#include "llvm/CodeGen/MachineFunction.h"
23#include "llvm/CodeGen/MachineFrameInfo.h"
24#include "llvm/CodeGen/SelectionDAG.h"
25#include "llvm/CodeGen/SelectionDAGISel.h"
26#include "llvm/CodeGen/SSARegMap.h"
27#include "llvm/Target/TargetData.h"
28#include "llvm/Target/TargetLowering.h"
29#include "llvm/Support/MathExtras.h"
30#include "llvm/ADT/Statistic.h"
Andrew Lenharth032f2352005-02-22 21:59:48 +000031#include "llvm/Support/Debug.h"
Andrew Lenharth95762122005-03-31 21:24:06 +000032#include "llvm/Support/CommandLine.h"
Andrew Lenharth304d0f32005-01-22 23:41:55 +000033#include <set>
Andrew Lenharth684f2292005-01-30 00:35:27 +000034#include <algorithm>
Andrew Lenharth304d0f32005-01-22 23:41:55 +000035using namespace llvm;
36
Andrew Lenharth95762122005-03-31 21:24:06 +000037namespace llvm {
Misha Brukman4633f1c2005-04-21 23:13:11 +000038 cl::opt<bool> EnableAlphaIDIV("enable-alpha-intfpdiv",
Andrew Lenharthd4653b12005-06-27 17:39:17 +000039 cl::desc("Use the FP div instruction for integer div when possible"),
Andrew Lenharth95762122005-03-31 21:24:06 +000040 cl::Hidden);
Andrew Lenharth59009192005-05-04 19:12:09 +000041 cl::opt<bool> EnableAlphaFTOI("enable-alpha-FTOI",
Andrew Lenharthd4653b12005-06-27 17:39:17 +000042 cl::desc("Enable use of ftoi* and itof* instructions (ev6 and higher)"),
Andrew Lenharth95762122005-03-31 21:24:06 +000043 cl::Hidden);
Andrew Lenharth59009192005-05-04 19:12:09 +000044 cl::opt<bool> EnableAlphaCT("enable-alpha-CT",
Andrew Lenharthd4653b12005-06-27 17:39:17 +000045 cl::desc("Enable use of the ctpop, ctlz, and cttz instructions"),
Andrew Lenharth59009192005-05-04 19:12:09 +000046 cl::Hidden);
Misha Brukman4633f1c2005-04-21 23:13:11 +000047 cl::opt<bool> EnableAlphaCount("enable-alpha-count",
Andrew Lenharthd4653b12005-06-27 17:39:17 +000048 cl::desc("Print estimates on live ins and outs"),
49 cl::Hidden);
Andrew Lenharthcd7f8cf2005-06-06 19:03:55 +000050 cl::opt<bool> EnableAlphaLSMark("enable-alpha-lsmark",
Andrew Lenharthd4653b12005-06-27 17:39:17 +000051 cl::desc("Emit symbols to correlate Mem ops to LLVM Values"),
52 cl::Hidden);
Andrew Lenharth95762122005-03-31 21:24:06 +000053}
54
Andrew Lenharthe3c8c0a42005-05-31 19:49:34 +000055namespace {
Andrew Lenharth304d0f32005-01-22 23:41:55 +000056
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000057//===--------------------------------------------------------------------===//
58/// ISel - Alpha specific code to select Alpha machine instructions for
59/// SelectionDAG operations.
60//===--------------------------------------------------------------------===//
Andrew Lenharthb69f3422005-06-22 17:19:45 +000061class AlphaISel : public SelectionDAGISel {
Misha Brukman4633f1c2005-04-21 23:13:11 +000062
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000063 /// AlphaLowering - This object fully describes how to lower LLVM code to an
64 /// Alpha-specific SelectionDAG.
65 AlphaTargetLowering AlphaLowering;
Misha Brukman4633f1c2005-04-21 23:13:11 +000066
Andrew Lenharth4b8ac152005-04-06 20:25:34 +000067 SelectionDAG *ISelDAG; // Hack to support us having a dag->dag transform
68 // for sdiv and udiv until it is put into the future
69 // dag combiner.
70
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000071 /// ExprMap - As shared expressions are codegen'd, we keep track of which
72 /// vreg the value is produced in, so we only emit one copy of each compiled
73 /// tree.
74 static const unsigned notIn = (unsigned)(-1);
75 std::map<SDOperand, unsigned> ExprMap;
Misha Brukman4633f1c2005-04-21 23:13:11 +000076
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000077 //CCInvMap sometimes (SetNE) we have the inverse CC code for free
78 std::map<SDOperand, unsigned> CCInvMap;
Misha Brukman4633f1c2005-04-21 23:13:11 +000079
Andrew Lenhartha32b9e32005-04-08 17:28:49 +000080 int count_ins;
81 int count_outs;
82 bool has_sym;
Andrew Lenharth500b4db2005-04-22 13:35:18 +000083 int max_depth;
Andrew Lenhartha32b9e32005-04-08 17:28:49 +000084
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000085public:
Jeff Cohen00b168892005-07-27 06:12:32 +000086 AlphaISel(TargetMachine &TM) : SelectionDAGISel(AlphaLowering),
Andrew Lenharthd4653b12005-06-27 17:39:17 +000087 AlphaLowering(TM)
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000088 {}
Misha Brukman4633f1c2005-04-21 23:13:11 +000089
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000090 /// InstructionSelectBasicBlock - This callback is invoked by
91 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
92 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG) {
Andrew Lenharth032f2352005-02-22 21:59:48 +000093 DEBUG(BB->dump());
Andrew Lenhartha32b9e32005-04-08 17:28:49 +000094 count_ins = 0;
95 count_outs = 0;
Andrew Lenharth500b4db2005-04-22 13:35:18 +000096 max_depth = 0;
Andrew Lenhartha32b9e32005-04-08 17:28:49 +000097 has_sym = false;
98
Andrew Lenharth63f2ab22005-02-10 06:25:22 +000099 // Codegen the basic block.
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000100 ISelDAG = &DAG;
Andrew Lenharth500b4db2005-04-22 13:35:18 +0000101 max_depth = DAG.getRoot().getNodeDepth();
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000102 Select(DAG.getRoot());
Andrew Lenhartha32b9e32005-04-08 17:28:49 +0000103
104 if(has_sym)
105 ++count_ins;
106 if(EnableAlphaCount)
Jeff Cohen00b168892005-07-27 06:12:32 +0000107 std::cerr << "COUNT: "
108 << BB->getParent()->getFunction ()->getName() << " "
109 << BB->getNumber() << " "
Andrew Lenharth500b4db2005-04-22 13:35:18 +0000110 << max_depth << " "
Andrew Lenhartha32b9e32005-04-08 17:28:49 +0000111 << count_ins << " "
112 << count_outs << "\n";
Misha Brukman4633f1c2005-04-21 23:13:11 +0000113
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000114 // Clear state used for selection.
115 ExprMap.clear();
116 CCInvMap.clear();
117 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000118
Andrew Lenharthfd5e4b72005-05-31 18:35:43 +0000119 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000120
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000121 unsigned SelectExpr(SDOperand N);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000122 void Select(SDOperand N);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000123
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000124 void SelectAddr(SDOperand N, unsigned& Reg, long& offset);
125 void SelectBranchCC(SDOperand N);
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000126 void MoveFP2Int(unsigned src, unsigned dst, bool isDouble);
127 void MoveInt2FP(unsigned src, unsigned dst, bool isDouble);
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000128 //returns whether the sense of the comparison was inverted
129 bool SelectFPSetCC(SDOperand N, unsigned dst);
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000130
131 // dag -> dag expanders for integer divide by constant
132 SDOperand BuildSDIVSequence(SDOperand N);
133 SDOperand BuildUDIVSequence(SDOperand N);
134
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000135};
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000136}
137
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000138void AlphaISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
Andrew Lenharthfd5e4b72005-05-31 18:35:43 +0000139 // If this function has live-in values, emit the copies from pregs to vregs at
140 // the top of the function, before anything else.
141 MachineBasicBlock *BB = MF.begin();
142 if (MF.livein_begin() != MF.livein_end()) {
143 SSARegMap *RegMap = MF.getSSARegMap();
144 for (MachineFunction::livein_iterator LI = MF.livein_begin(),
145 E = MF.livein_end(); LI != E; ++LI) {
146 const TargetRegisterClass *RC = RegMap->getRegClass(LI->second);
147 if (RC == Alpha::GPRCRegisterClass) {
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000148 BuildMI(BB, Alpha::BIS, 2, LI->second).addReg(LI->first)
149 .addReg(LI->first);
Andrew Lenharthfd5e4b72005-05-31 18:35:43 +0000150 } else if (RC == Alpha::FPRCRegisterClass) {
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000151 BuildMI(BB, Alpha::CPYS, 2, LI->second).addReg(LI->first)
152 .addReg(LI->first);
Andrew Lenharthfd5e4b72005-05-31 18:35:43 +0000153 } else {
154 assert(0 && "Unknown regclass!");
155 }
156 }
157 }
158}
159
Andrew Lenharthd2284272005-08-15 14:31:37 +0000160static bool isSIntImmediate(SDOperand N, int64_t& Imm) {
161 // test for constant
162 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
163 // retrieve value
164 Imm = CN->getSignExtended();
165 // passes muster
166 return true;
167 }
168 // not a constant
169 return false;
170}
171
172// isSIntImmediateBounded - This method tests to see if a constant operand
173// bounded s.t. low <= Imm <= high
174// If so Imm will receive the 64 bit value.
175static bool isSIntImmediateBounded(SDOperand N, int64_t& Imm,
176 int64_t low, int64_t high) {
Andrew Lenharth035b8ab2005-08-17 00:47:24 +0000177 if (isSIntImmediate(N, Imm) && Imm <= high && Imm >= low)
Andrew Lenharthd2284272005-08-15 14:31:37 +0000178 return true;
179 return false;
180}
181static bool isUIntImmediate(SDOperand N, uint64_t& Imm) {
182 // test for constant
183 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
184 // retrieve value
185 Imm = (uint64_t)CN->getValue();
186 // passes muster
187 return true;
188 }
189 // not a constant
190 return false;
191}
192
193static bool isUIntImmediateBounded(SDOperand N, uint64_t& Imm,
194 uint64_t low, uint64_t high) {
Andrew Lenharth035b8ab2005-08-17 00:47:24 +0000195 if (isUIntImmediate(N, Imm) && Imm <= high && Imm >= low)
Andrew Lenharthd2284272005-08-15 14:31:37 +0000196 return true;
197 return false;
198}
199
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000200static void getValueInfo(const Value* v, int& type, int& fun, int& offset)
Andrew Lenharthcd7f8cf2005-06-06 19:03:55 +0000201{
Andrew Lenharthfec0e402005-07-12 04:20:52 +0000202 fun = type = offset = 0;
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000203 if (v == NULL) {
204 type = 0;
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000205 } else if (const GlobalValue* GV = dyn_cast<GlobalValue>(v)) {
206 type = 1;
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000207 const Module* M = GV->getParent();
Andrew Lenharthfec0e402005-07-12 04:20:52 +0000208 for(Module::const_global_iterator ii = M->global_begin(); &*ii != GV; ++ii)
209 ++offset;
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000210 } else if (const Argument* Arg = dyn_cast<Argument>(v)) {
211 type = 2;
212 const Function* F = Arg->getParent();
213 const Module* M = F->getParent();
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000214 for(Module::const_iterator ii = M->begin(); &*ii != F; ++ii)
Andrew Lenharthfec0e402005-07-12 04:20:52 +0000215 ++fun;
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000216 for(Function::const_arg_iterator ii = F->arg_begin(); &*ii != Arg; ++ii)
Andrew Lenharthfec0e402005-07-12 04:20:52 +0000217 ++offset;
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000218 } else if (const Instruction* I = dyn_cast<Instruction>(v)) {
Andrew Lenhartha48f3ce2005-07-07 19:52:58 +0000219 assert(dyn_cast<PointerType>(I->getType()));
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000220 type = 3;
221 const BasicBlock* bb = I->getParent();
222 const Function* F = bb->getParent();
223 const Module* M = F->getParent();
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000224 for(Module::const_iterator ii = M->begin(); &*ii != F; ++ii)
Andrew Lenharthfec0e402005-07-12 04:20:52 +0000225 ++fun;
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000226 for(Function::const_iterator ii = F->begin(); &*ii != bb; ++ii)
Andrew Lenharthfec0e402005-07-12 04:20:52 +0000227 offset += ii->size();
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000228 for(BasicBlock::const_iterator ii = bb->begin(); &*ii != I; ++ii)
Andrew Lenharthfec0e402005-07-12 04:20:52 +0000229 ++offset;
Andrew Lenhartha48f3ce2005-07-07 19:52:58 +0000230 } else if (const Constant* C = dyn_cast<Constant>(v)) {
231 //Don't know how to look these up yet
232 type = 0;
Andrew Lenhartha48f3ce2005-07-07 19:52:58 +0000233 } else {
234 assert(0 && "Error in value marking");
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000235 }
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000236 //type = 4: register spilling
237 //type = 5: global address loading or constant loading
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000238}
239
240static int getUID()
241{
242 static int id = 0;
243 return ++id;
244}
Andrew Lenharthcd7f8cf2005-06-06 19:03:55 +0000245
Andrew Lenhartha32b9e32005-04-08 17:28:49 +0000246//Factorize a number using the list of constants
247static bool factorize(int v[], int res[], int size, uint64_t c)
248{
249 bool cont = true;
250 while (c != 1 && cont)
251 {
252 cont = false;
253 for(int i = 0; i < size; ++i)
254 {
255 if (c % v[i] == 0)
256 {
257 c /= v[i];
258 ++res[i];
259 cont=true;
260 }
261 }
262 }
263 return c == 1;
264}
265
266
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000267//Shamelessly adapted from PPC32
Misha Brukman4633f1c2005-04-21 23:13:11 +0000268// Structure used to return the necessary information to codegen an SDIV as
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000269// a multiply.
270struct ms {
271 int64_t m; // magic number
272 int64_t s; // shift amount
273};
274
275struct mu {
276 uint64_t m; // magic number
277 int64_t a; // add indicator
278 int64_t s; // shift amount
279};
280
281/// magic - calculate the magic numbers required to codegen an integer sdiv as
Misha Brukman4633f1c2005-04-21 23:13:11 +0000282/// a sequence of multiply and shifts. Requires that the divisor not be 0, 1,
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000283/// or -1.
284static struct ms magic(int64_t d) {
285 int64_t p;
286 uint64_t ad, anc, delta, q1, r1, q2, r2, t;
287 const uint64_t two63 = 9223372036854775808ULL; // 2^63
288 struct ms mag;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000289
Andrew Lenharth01c8f6e2005-08-01 17:47:28 +0000290 ad = llabs(d);
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000291 t = two63 + ((uint64_t)d >> 63);
292 anc = t - 1 - t%ad; // absolute value of nc
Andrew Lenharth320174f2005-04-07 17:19:16 +0000293 p = 63; // initialize p
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000294 q1 = two63/anc; // initialize q1 = 2p/abs(nc)
295 r1 = two63 - q1*anc; // initialize r1 = rem(2p,abs(nc))
296 q2 = two63/ad; // initialize q2 = 2p/abs(d)
297 r2 = two63 - q2*ad; // initialize r2 = rem(2p,abs(d))
298 do {
299 p = p + 1;
300 q1 = 2*q1; // update q1 = 2p/abs(nc)
301 r1 = 2*r1; // update r1 = rem(2p/abs(nc))
302 if (r1 >= anc) { // must be unsigned comparison
303 q1 = q1 + 1;
304 r1 = r1 - anc;
305 }
306 q2 = 2*q2; // update q2 = 2p/abs(d)
307 r2 = 2*r2; // update r2 = rem(2p/abs(d))
308 if (r2 >= ad) { // must be unsigned comparison
309 q2 = q2 + 1;
310 r2 = r2 - ad;
311 }
312 delta = ad - r2;
313 } while (q1 < delta || (q1 == delta && r1 == 0));
314
315 mag.m = q2 + 1;
316 if (d < 0) mag.m = -mag.m; // resulting magic number
317 mag.s = p - 64; // resulting shift
318 return mag;
319}
320
321/// magicu - calculate the magic numbers required to codegen an integer udiv as
322/// a sequence of multiply, add and shifts. Requires that the divisor not be 0.
323static struct mu magicu(uint64_t d)
324{
325 int64_t p;
326 uint64_t nc, delta, q1, r1, q2, r2;
327 struct mu magu;
328 magu.a = 0; // initialize "add" indicator
329 nc = - 1 - (-d)%d;
Andrew Lenharth320174f2005-04-07 17:19:16 +0000330 p = 63; // initialize p
331 q1 = 0x8000000000000000ull/nc; // initialize q1 = 2p/nc
332 r1 = 0x8000000000000000ull - q1*nc; // initialize r1 = rem(2p,nc)
333 q2 = 0x7FFFFFFFFFFFFFFFull/d; // initialize q2 = (2p-1)/d
334 r2 = 0x7FFFFFFFFFFFFFFFull - q2*d; // initialize r2 = rem((2p-1),d)
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000335 do {
336 p = p + 1;
337 if (r1 >= nc - r1 ) {
338 q1 = 2*q1 + 1; // update q1
339 r1 = 2*r1 - nc; // update r1
340 }
341 else {
342 q1 = 2*q1; // update q1
343 r1 = 2*r1; // update r1
344 }
345 if (r2 + 1 >= d - r2) {
Andrew Lenharth320174f2005-04-07 17:19:16 +0000346 if (q2 >= 0x7FFFFFFFFFFFFFFFull) magu.a = 1;
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000347 q2 = 2*q2 + 1; // update q2
348 r2 = 2*r2 + 1 - d; // update r2
349 }
350 else {
Andrew Lenharth320174f2005-04-07 17:19:16 +0000351 if (q2 >= 0x8000000000000000ull) magu.a = 1;
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000352 q2 = 2*q2; // update q2
353 r2 = 2*r2 + 1; // update r2
354 }
355 delta = d - 1 - r2;
356 } while (p < 64 && (q1 < delta || (q1 == delta && r1 == 0)));
357 magu.m = q2 + 1; // resulting magic number
Andrew Lenharth320174f2005-04-07 17:19:16 +0000358 magu.s = p - 64; // resulting shift
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000359 return magu;
360}
361
362/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
363/// return a DAG expression to select that will generate the same value by
364/// multiplying by a magic number. See:
365/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000366SDOperand AlphaISel::BuildSDIVSequence(SDOperand N) {
Andrew Lenharth320174f2005-04-07 17:19:16 +0000367 int64_t d = (int64_t)cast<ConstantSDNode>(N.getOperand(1))->getSignExtended();
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000368 ms magics = magic(d);
369 // Multiply the numerator (operand 0) by the magic value
Misha Brukman4633f1c2005-04-21 23:13:11 +0000370 SDOperand Q = ISelDAG->getNode(ISD::MULHS, MVT::i64, N.getOperand(0),
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000371 ISelDAG->getConstant(magics.m, MVT::i64));
372 // If d > 0 and m < 0, add the numerator
373 if (d > 0 && magics.m < 0)
374 Q = ISelDAG->getNode(ISD::ADD, MVT::i64, Q, N.getOperand(0));
375 // If d < 0 and m > 0, subtract the numerator.
376 if (d < 0 && magics.m > 0)
377 Q = ISelDAG->getNode(ISD::SUB, MVT::i64, Q, N.getOperand(0));
378 // Shift right algebraic if shift value is nonzero
379 if (magics.s > 0)
Misha Brukman4633f1c2005-04-21 23:13:11 +0000380 Q = ISelDAG->getNode(ISD::SRA, MVT::i64, Q,
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000381 ISelDAG->getConstant(magics.s, MVT::i64));
382 // Extract the sign bit and add it to the quotient
Misha Brukman4633f1c2005-04-21 23:13:11 +0000383 SDOperand T =
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000384 ISelDAG->getNode(ISD::SRL, MVT::i64, Q, ISelDAG->getConstant(63, MVT::i64));
385 return ISelDAG->getNode(ISD::ADD, MVT::i64, Q, T);
386}
387
388/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
389/// return a DAG expression to select that will generate the same value by
390/// multiplying by a magic number. See:
391/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000392SDOperand AlphaISel::BuildUDIVSequence(SDOperand N) {
Misha Brukman4633f1c2005-04-21 23:13:11 +0000393 unsigned d =
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000394 (unsigned)cast<ConstantSDNode>(N.getOperand(1))->getSignExtended();
395 mu magics = magicu(d);
396 // Multiply the numerator (operand 0) by the magic value
Misha Brukman4633f1c2005-04-21 23:13:11 +0000397 SDOperand Q = ISelDAG->getNode(ISD::MULHU, MVT::i64, N.getOperand(0),
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000398 ISelDAG->getConstant(magics.m, MVT::i64));
399 if (magics.a == 0) {
Misha Brukman4633f1c2005-04-21 23:13:11 +0000400 Q = ISelDAG->getNode(ISD::SRL, MVT::i64, Q,
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000401 ISelDAG->getConstant(magics.s, MVT::i64));
402 } else {
403 SDOperand NPQ = ISelDAG->getNode(ISD::SUB, MVT::i64, N.getOperand(0), Q);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000404 NPQ = ISelDAG->getNode(ISD::SRL, MVT::i64, NPQ,
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000405 ISelDAG->getConstant(1, MVT::i64));
406 NPQ = ISelDAG->getNode(ISD::ADD, MVT::i64, NPQ, Q);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000407 Q = ISelDAG->getNode(ISD::SRL, MVT::i64, NPQ,
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000408 ISelDAG->getConstant(magics.s-1, MVT::i64));
409 }
410 return Q;
411}
412
Andrew Lenharthe87f6c32005-03-11 17:48:05 +0000413//These describe LDAx
Andrew Lenharthc0513832005-03-29 19:24:04 +0000414static const int IMM_LOW = -32768;
415static const int IMM_HIGH = 32767;
Andrew Lenharthe87f6c32005-03-11 17:48:05 +0000416static const int IMM_MULT = 65536;
417
418static long getUpper16(long l)
419{
420 long y = l / IMM_MULT;
421 if (l % IMM_MULT > IMM_HIGH)
422 ++y;
423 return y;
424}
425
426static long getLower16(long l)
427{
428 long h = getUpper16(l);
429 return l - h * IMM_MULT;
430}
431
Andrew Lenharthfe895e32005-06-27 17:15:36 +0000432static unsigned GetRelVersion(unsigned opcode)
433{
434 switch (opcode) {
435 default: assert(0 && "unknown load or store"); return 0;
436 case Alpha::LDQ: return Alpha::LDQr;
437 case Alpha::LDS: return Alpha::LDSr;
438 case Alpha::LDT: return Alpha::LDTr;
439 case Alpha::LDL: return Alpha::LDLr;
440 case Alpha::LDBU: return Alpha::LDBUr;
441 case Alpha::LDWU: return Alpha::LDWUr;
Andrew Lenharthfce587e2005-06-29 00:39:17 +0000442 case Alpha::STB: return Alpha::STBr;
443 case Alpha::STW: return Alpha::STWr;
444 case Alpha::STL: return Alpha::STLr;
445 case Alpha::STQ: return Alpha::STQr;
446 case Alpha::STS: return Alpha::STSr;
447 case Alpha::STT: return Alpha::STTr;
448
Andrew Lenharthfe895e32005-06-27 17:15:36 +0000449 }
450}
Andrew Lenharth65838902005-02-06 16:22:15 +0000451
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000452void AlphaISel::MoveFP2Int(unsigned src, unsigned dst, bool isDouble)
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000453{
454 unsigned Opc;
455 if (EnableAlphaFTOI) {
456 Opc = isDouble ? Alpha::FTOIT : Alpha::FTOIS;
Andrew Lenharth98169be2005-07-28 18:14:47 +0000457 BuildMI(BB, Opc, 1, dst).addReg(src).addReg(Alpha::F31);
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000458 } else {
459 //The hard way:
460 // Spill the integer to memory and reload it from there.
461 unsigned Size = MVT::getSizeInBits(MVT::f64)/8;
462 MachineFunction *F = BB->getParent();
463 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, 8);
464
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000465 if (EnableAlphaLSMark)
466 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
467 .addImm(getUID());
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000468 Opc = isDouble ? Alpha::STT : Alpha::STS;
469 BuildMI(BB, Opc, 3).addReg(src).addFrameIndex(FrameIdx).addReg(Alpha::F31);
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000470
471 if (EnableAlphaLSMark)
472 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
473 .addImm(getUID());
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000474 Opc = isDouble ? Alpha::LDQ : Alpha::LDL;
475 BuildMI(BB, Alpha::LDQ, 2, dst).addFrameIndex(FrameIdx).addReg(Alpha::F31);
476 }
477}
478
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000479void AlphaISel::MoveInt2FP(unsigned src, unsigned dst, bool isDouble)
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000480{
481 unsigned Opc;
482 if (EnableAlphaFTOI) {
483 Opc = isDouble?Alpha::ITOFT:Alpha::ITOFS;
Andrew Lenharth98169be2005-07-28 18:14:47 +0000484 BuildMI(BB, Opc, 1, dst).addReg(src).addReg(Alpha::R31);
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000485 } else {
486 //The hard way:
487 // Spill the integer to memory and reload it from there.
488 unsigned Size = MVT::getSizeInBits(MVT::f64)/8;
489 MachineFunction *F = BB->getParent();
490 int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, 8);
491
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000492 if (EnableAlphaLSMark)
493 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
494 .addImm(getUID());
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000495 Opc = isDouble ? Alpha::STQ : Alpha::STL;
496 BuildMI(BB, Opc, 3).addReg(src).addFrameIndex(FrameIdx).addReg(Alpha::F31);
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000497
498 if (EnableAlphaLSMark)
499 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
500 .addImm(getUID());
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +0000501 Opc = isDouble ? Alpha::LDT : Alpha::LDS;
502 BuildMI(BB, Opc, 2, dst).addFrameIndex(FrameIdx).addReg(Alpha::F31);
503 }
504}
505
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000506bool AlphaISel::SelectFPSetCC(SDOperand N, unsigned dst)
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000507{
Chris Lattner88ac32c2005-08-09 20:21:10 +0000508 SDNode *SetCC = N.Val;
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000509 unsigned Opc, Tmp1, Tmp2, Tmp3;
Chris Lattner88ac32c2005-08-09 20:21:10 +0000510 ISD::CondCode CC = cast<CondCodeSDNode>(SetCC->getOperand(2))->get();
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000511 bool rev = false;
512 bool inv = false;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000513
Chris Lattner88ac32c2005-08-09 20:21:10 +0000514 switch (CC) {
515 default: SetCC->dump(); assert(0 && "Unknown FP comparison!");
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000516 case ISD::SETEQ: Opc = Alpha::CMPTEQ; break;
517 case ISD::SETLT: Opc = Alpha::CMPTLT; break;
518 case ISD::SETLE: Opc = Alpha::CMPTLE; break;
519 case ISD::SETGT: Opc = Alpha::CMPTLT; rev = true; break;
520 case ISD::SETGE: Opc = Alpha::CMPTLE; rev = true; break;
521 case ISD::SETNE: Opc = Alpha::CMPTEQ; inv = true; break;
522 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000523
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000524 ConstantFPSDNode *CN;
525 if ((CN = dyn_cast<ConstantFPSDNode>(SetCC->getOperand(0)))
526 && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
527 Tmp1 = Alpha::F31;
528 else
529 Tmp1 = SelectExpr(N.getOperand(0));
Misha Brukman4633f1c2005-04-21 23:13:11 +0000530
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000531 if ((CN = dyn_cast<ConstantFPSDNode>(SetCC->getOperand(1)))
532 && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
533 Tmp2 = Alpha::F31;
534 else
Chris Lattner9c9183a2005-04-30 04:44:07 +0000535 Tmp2 = SelectExpr(N.getOperand(1));
Misha Brukman4633f1c2005-04-21 23:13:11 +0000536
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000537 //Can only compare doubles, and dag won't promote for me
538 if (SetCC->getOperand(0).getValueType() == MVT::f32)
539 {
540 //assert(0 && "Setcc On float?\n");
541 std::cerr << "Setcc on float!\n";
542 Tmp3 = MakeReg(MVT::f64);
Andrew Lenharth98169be2005-07-28 18:14:47 +0000543 BuildMI(BB, Alpha::CVTST, 1, Tmp3).addReg(Alpha::F31).addReg(Tmp1);
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000544 Tmp1 = Tmp3;
545 }
546 if (SetCC->getOperand(1).getValueType() == MVT::f32)
547 {
548 //assert (0 && "Setcc On float?\n");
549 std::cerr << "Setcc on float!\n";
550 Tmp3 = MakeReg(MVT::f64);
Andrew Lenharth98169be2005-07-28 18:14:47 +0000551 BuildMI(BB, Alpha::CVTST, 1, Tmp3).addReg(Alpha::F31).addReg(Tmp2);
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000552 Tmp2 = Tmp3;
553 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000554
Andrew Lenharth10c085b2005-04-02 22:32:39 +0000555 if (rev) std::swap(Tmp1, Tmp2);
556 //do the comparison
557 BuildMI(BB, Opc, 2, dst).addReg(Tmp1).addReg(Tmp2);
558 return inv;
559}
560
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000561//Check to see if the load is a constant offset from a base register
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000562void AlphaISel::SelectAddr(SDOperand N, unsigned& Reg, long& offset)
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000563{
564 unsigned opcode = N.getOpcode();
Andrew Lenharth694c2982005-06-26 23:01:11 +0000565 if (opcode == ISD::ADD && N.getOperand(1).getOpcode() == ISD::Constant &&
566 cast<ConstantSDNode>(N.getOperand(1))->getValue() <= 32767)
567 { //Normal imm add
568 Reg = SelectExpr(N.getOperand(0));
569 offset = cast<ConstantSDNode>(N.getOperand(1))->getValue();
570 return;
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000571 }
572 Reg = SelectExpr(N);
573 offset = 0;
574 return;
575}
576
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000577void AlphaISel::SelectBranchCC(SDOperand N)
Andrew Lenharth445171a2005-02-08 00:40:03 +0000578{
579 assert(N.getOpcode() == ISD::BRCOND && "Not a BranchCC???");
Misha Brukman4633f1c2005-04-21 23:13:11 +0000580 MachineBasicBlock *Dest =
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000581 cast<BasicBlockSDNode>(N.getOperand(2))->getBasicBlock();
582 unsigned Opc = Alpha::WTF;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000583
Andrew Lenharth445171a2005-02-08 00:40:03 +0000584 Select(N.getOperand(0)); //chain
585 SDOperand CC = N.getOperand(1);
Misha Brukman4633f1c2005-04-21 23:13:11 +0000586
Andrew Lenharth445171a2005-02-08 00:40:03 +0000587 if (CC.getOpcode() == ISD::SETCC)
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000588 {
Chris Lattner88ac32c2005-08-09 20:21:10 +0000589 ISD::CondCode cCode= cast<CondCodeSDNode>(CC.getOperand(2))->get();
590 if (MVT::isInteger(CC.getOperand(0).getValueType())) {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000591 //Dropping the CC is only useful if we are comparing to 0
Chris Lattner88ac32c2005-08-09 20:21:10 +0000592 bool RightZero = CC.getOperand(1).getOpcode() == ISD::Constant &&
593 cast<ConstantSDNode>(CC.getOperand(1))->getValue() == 0;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000594 bool isNE = false;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000595
Andrew Lenharth63b720a2005-04-03 20:35:21 +0000596 //Fix up CC
Andrew Lenharth63b720a2005-04-03 20:35:21 +0000597 if(cCode == ISD::SETNE)
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000598 isNE = true;
Andrew Lenharth445171a2005-02-08 00:40:03 +0000599
Andrew Lenharth694c2982005-06-26 23:01:11 +0000600 if (RightZero) {
Andrew Lenharth09552bf2005-06-08 18:02:21 +0000601 switch (cCode) {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000602 default: CC.Val->dump(); assert(0 && "Unknown integer comparison!");
603 case ISD::SETEQ: Opc = Alpha::BEQ; break;
604 case ISD::SETLT: Opc = Alpha::BLT; break;
605 case ISD::SETLE: Opc = Alpha::BLE; break;
606 case ISD::SETGT: Opc = Alpha::BGT; break;
607 case ISD::SETGE: Opc = Alpha::BGE; break;
608 case ISD::SETULT: assert(0 && "x (unsigned) < 0 is never true"); break;
609 case ISD::SETUGT: Opc = Alpha::BNE; break;
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000610 //Technically you could have this CC
611 case ISD::SETULE: Opc = Alpha::BEQ; break;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000612 case ISD::SETUGE: assert(0 && "x (unsgined >= 0 is always true"); break;
613 case ISD::SETNE: Opc = Alpha::BNE; break;
614 }
Chris Lattner88ac32c2005-08-09 20:21:10 +0000615 unsigned Tmp1 = SelectExpr(CC.getOperand(0)); //Cond
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000616 BuildMI(BB, Opc, 2).addReg(Tmp1).addMBB(Dest);
617 return;
618 } else {
619 unsigned Tmp1 = SelectExpr(CC);
620 if (isNE)
621 BuildMI(BB, Alpha::BEQ, 2).addReg(CCInvMap[CC]).addMBB(Dest);
622 else
623 BuildMI(BB, Alpha::BNE, 2).addReg(Tmp1).addMBB(Dest);
Andrew Lenharth445171a2005-02-08 00:40:03 +0000624 return;
625 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000626 } else { //FP
Jeff Cohen00b168892005-07-27 06:12:32 +0000627 //Any comparison between 2 values should be codegened as an folded
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000628 //branch, as moving CC to the integer register is very expensive
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000629 //for a cmp b: c = a - b;
630 //a = b: c = 0
631 //a < b: c < 0
632 //a > b: c > 0
Andrew Lenharth2b6c4f52005-02-25 22:55:15 +0000633
634 bool invTest = false;
635 unsigned Tmp3;
636
637 ConstantFPSDNode *CN;
Chris Lattner88ac32c2005-08-09 20:21:10 +0000638 if ((CN = dyn_cast<ConstantFPSDNode>(CC.getOperand(1)))
Andrew Lenharth2b6c4f52005-02-25 22:55:15 +0000639 && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
Chris Lattner88ac32c2005-08-09 20:21:10 +0000640 Tmp3 = SelectExpr(CC.getOperand(0));
641 else if ((CN = dyn_cast<ConstantFPSDNode>(CC.getOperand(0)))
Andrew Lenharth2b6c4f52005-02-25 22:55:15 +0000642 && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
643 {
Chris Lattner88ac32c2005-08-09 20:21:10 +0000644 Tmp3 = SelectExpr(CC.getOperand(1));
Andrew Lenharth2b6c4f52005-02-25 22:55:15 +0000645 invTest = true;
646 }
647 else
648 {
Chris Lattner88ac32c2005-08-09 20:21:10 +0000649 unsigned Tmp1 = SelectExpr(CC.getOperand(0));
650 unsigned Tmp2 = SelectExpr(CC.getOperand(1));
651 bool isD = CC.getOperand(0).getValueType() == MVT::f64;
Andrew Lenharth2b6c4f52005-02-25 22:55:15 +0000652 Tmp3 = MakeReg(isD ? MVT::f64 : MVT::f32);
653 BuildMI(BB, isD ? Alpha::SUBT : Alpha::SUBS, 2, Tmp3)
654 .addReg(Tmp1).addReg(Tmp2);
655 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000656
Chris Lattner88ac32c2005-08-09 20:21:10 +0000657 switch (cCode) {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000658 default: CC.Val->dump(); assert(0 && "Unknown FP comparison!");
Andrew Lenharth2b6c4f52005-02-25 22:55:15 +0000659 case ISD::SETEQ: Opc = invTest ? Alpha::FBNE : Alpha::FBEQ; break;
660 case ISD::SETLT: Opc = invTest ? Alpha::FBGT : Alpha::FBLT; break;
661 case ISD::SETLE: Opc = invTest ? Alpha::FBGE : Alpha::FBLE; break;
662 case ISD::SETGT: Opc = invTest ? Alpha::FBLT : Alpha::FBGT; break;
663 case ISD::SETGE: Opc = invTest ? Alpha::FBLE : Alpha::FBGE; break;
664 case ISD::SETNE: Opc = invTest ? Alpha::FBEQ : Alpha::FBNE; break;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000665 }
666 BuildMI(BB, Opc, 2).addReg(Tmp3).addMBB(Dest);
Andrew Lenharth445171a2005-02-08 00:40:03 +0000667 return;
668 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000669 abort(); //Should never be reached
670 } else {
671 //Giveup and do the stupid thing
672 unsigned Tmp1 = SelectExpr(CC);
673 BuildMI(BB, Alpha::BNE, 2).addReg(Tmp1).addMBB(Dest);
674 return;
675 }
Andrew Lenharth445171a2005-02-08 00:40:03 +0000676 abort(); //Should never be reached
677}
678
Andrew Lenharthb69f3422005-06-22 17:19:45 +0000679unsigned AlphaISel::SelectExpr(SDOperand N) {
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000680 unsigned Result;
Andrew Lenharth2966e842005-04-07 18:15:28 +0000681 unsigned Tmp1, Tmp2 = 0, Tmp3;
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000682 unsigned Opc = 0;
Andrew Lenharth40831c52005-01-28 06:57:18 +0000683 unsigned opcode = N.getOpcode();
Andrew Lenharthd2284272005-08-15 14:31:37 +0000684 int64_t SImm;
685 uint64_t UImm;
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000686
687 SDNode *Node = N.Val;
Andrew Lenharth40831c52005-01-28 06:57:18 +0000688 MVT::ValueType DestType = N.getValueType();
Andrew Lenharthf4da9452005-06-29 12:49:51 +0000689 bool isFP = DestType == MVT::f64 || DestType == MVT::f32;
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000690
691 unsigned &Reg = ExprMap[N];
692 if (Reg) return Reg;
693
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +0000694 if (N.getOpcode() != ISD::CALL && N.getOpcode() != ISD::TAILCALL)
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000695 Reg = Result = (N.getValueType() != MVT::Other) ?
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +0000696 MakeReg(N.getValueType()) : notIn;
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000697 else {
698 // If this is a call instruction, make sure to prepare ALL of the result
699 // values as well as the chain.
700 if (Node->getNumValues() == 1)
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +0000701 Reg = Result = notIn; // Void call, just a chain.
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000702 else {
703 Result = MakeReg(Node->getValueType(0));
704 ExprMap[N.getValue(0)] = Result;
705 for (unsigned i = 1, e = N.Val->getNumValues()-1; i != e; ++i)
706 ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +0000707 ExprMap[SDOperand(Node, Node->getNumValues()-1)] = notIn;
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000708 }
709 }
710
Andrew Lenharth40831c52005-01-28 06:57:18 +0000711 switch (opcode) {
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000712 default:
713 Node->dump();
714 assert(0 && "Node not handled!\n");
Misha Brukman4633f1c2005-04-21 23:13:11 +0000715
Andrew Lenharth691ef2b2005-05-03 17:19:30 +0000716 case ISD::CTPOP:
717 case ISD::CTTZ:
718 case ISD::CTLZ:
719 Opc = opcode == ISD::CTPOP ? Alpha::CTPOP :
720 (opcode == ISD::CTTZ ? Alpha::CTTZ : Alpha::CTLZ);
721 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharthf3f951a2005-07-22 20:50:29 +0000722 BuildMI(BB, Opc, 1, Result).addReg(Alpha::R31).addReg(Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +0000723 return Result;
724
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000725 case ISD::MULHU:
726 Tmp1 = SelectExpr(N.getOperand(0));
727 Tmp2 = SelectExpr(N.getOperand(1));
728 BuildMI(BB, Alpha::UMULH, 2, Result).addReg(Tmp1).addReg(Tmp2);
Andrew Lenharth706be912005-04-07 13:55:53 +0000729 return Result;
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000730 case ISD::MULHS:
731 {
732 //MULHU - Ra<63>*Rb - Rb<63>*Ra
733 Tmp1 = SelectExpr(N.getOperand(0));
734 Tmp2 = SelectExpr(N.getOperand(1));
735 Tmp3 = MakeReg(MVT::i64);
736 BuildMI(BB, Alpha::UMULH, 2, Tmp3).addReg(Tmp1).addReg(Tmp2);
737 unsigned V1 = MakeReg(MVT::i64);
738 unsigned V2 = MakeReg(MVT::i64);
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000739 BuildMI(BB, Alpha::CMOVGE, 3, V1).addReg(Tmp2).addReg(Alpha::R31)
740 .addReg(Tmp1);
741 BuildMI(BB, Alpha::CMOVGE, 3, V2).addReg(Tmp1).addReg(Alpha::R31)
742 .addReg(Tmp2);
Andrew Lenharth4b8ac152005-04-06 20:25:34 +0000743 unsigned IRes = MakeReg(MVT::i64);
744 BuildMI(BB, Alpha::SUBQ, 2, IRes).addReg(Tmp3).addReg(V1);
745 BuildMI(BB, Alpha::SUBQ, 2, Result).addReg(IRes).addReg(V2);
746 return Result;
747 }
Andrew Lenharth7332f3e2005-04-02 19:11:07 +0000748 case ISD::UNDEF: {
749 BuildMI(BB, Alpha::IDEF, 0, Result);
750 return Result;
751 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000752
Andrew Lenharth032f2352005-02-22 21:59:48 +0000753 case ISD::DYNAMIC_STACKALLOC:
754 // Generate both result values.
Andrew Lenharth3a7118d2005-02-23 17:33:42 +0000755 if (Result != notIn)
756 ExprMap[N.getValue(1)] = notIn; // Generate the token
Andrew Lenharth032f2352005-02-22 21:59:48 +0000757 else
758 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
759
760 // FIXME: We are currently ignoring the requested alignment for handling
761 // greater than the stack alignment. This will need to be revisited at some
762 // point. Align = N.getOperand(2);
763
764 if (!isa<ConstantSDNode>(N.getOperand(2)) ||
765 cast<ConstantSDNode>(N.getOperand(2))->getValue() != 0) {
766 std::cerr << "Cannot allocate stack object with greater alignment than"
767 << " the stack alignment yet!";
768 abort();
769 }
Misha Brukman4633f1c2005-04-21 23:13:11 +0000770
Andrew Lenharth032f2352005-02-22 21:59:48 +0000771 Select(N.getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +0000772 if (isSIntImmediateBounded(N.getOperand(1), SImm, 0, 32767))
773 BuildMI(BB, Alpha::LDA, 2, Alpha::R30).addImm(-SImm).addReg(Alpha::R30);
774 else {
Andrew Lenharth032f2352005-02-22 21:59:48 +0000775 Tmp1 = SelectExpr(N.getOperand(1));
776 // Subtract size from stack pointer, thereby allocating some space.
777 BuildMI(BB, Alpha::SUBQ, 2, Alpha::R30).addReg(Alpha::R30).addReg(Tmp1);
778 }
779
780 // Put a pointer to the space into the result register, by copying the stack
781 // pointer.
Andrew Lenharth7bc47022005-02-22 23:29:25 +0000782 BuildMI(BB, Alpha::BIS, 2, Result).addReg(Alpha::R30).addReg(Alpha::R30);
Andrew Lenharth032f2352005-02-22 21:59:48 +0000783 return Result;
784
Andrew Lenharth02c318e2005-06-27 21:02:56 +0000785 case ISD::ConstantPool:
Chris Lattner5839bf22005-08-26 17:15:30 +0000786 Tmp1 = BB->getParent()->getConstantPool()->
787 getConstantPoolIndex(cast<ConstantPoolSDNode>(N)->get());
Andrew Lenharth02c318e2005-06-27 21:02:56 +0000788 AlphaLowering.restoreGP(BB);
789 Tmp2 = MakeReg(MVT::i64);
790 BuildMI(BB, Alpha::LDAHr, 2, Tmp2).addConstantPoolIndex(Tmp1)
791 .addReg(Alpha::R29);
792 BuildMI(BB, Alpha::LDAr, 2, Result).addConstantPoolIndex(Tmp1)
793 .addReg(Tmp2);
794 return Result;
Andrew Lenharth2c594352005-01-29 15:42:07 +0000795
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000796 case ISD::FrameIndex:
Andrew Lenharth032f2352005-02-22 21:59:48 +0000797 BuildMI(BB, Alpha::LDA, 2, Result)
798 .addFrameIndex(cast<FrameIndexSDNode>(N)->getIndex())
799 .addReg(Alpha::F31);
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000800 return Result;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000801
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000802 case ISD::EXTLOAD:
Andrew Lenharthf311e8b2005-02-07 05:18:02 +0000803 case ISD::ZEXTLOAD:
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000804 case ISD::SEXTLOAD:
Misha Brukman4633f1c2005-04-21 23:13:11 +0000805 case ISD::LOAD:
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000806 {
807 // Make sure we generate both values.
808 if (Result != notIn)
809 ExprMap[N.getValue(1)] = notIn; // Generate the token
810 else
811 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
Misha Brukman4633f1c2005-04-21 23:13:11 +0000812
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000813 SDOperand Chain = N.getOperand(0);
814 SDOperand Address = N.getOperand(1);
815 Select(Chain);
816
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000817 bool fpext = true;
818
Andrew Lenharth03824012005-02-07 05:55:55 +0000819 if (opcode == ISD::LOAD)
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000820 switch (Node->getValueType(0)) {
821 default: Node->dump(); assert(0 && "Bad load!");
822 case MVT::i64: Opc = Alpha::LDQ; break;
823 case MVT::f64: Opc = Alpha::LDT; break;
824 case MVT::f32: Opc = Alpha::LDS; break;
825 }
Andrew Lenharth03824012005-02-07 05:55:55 +0000826 else
Chris Lattnerbce81ae2005-07-10 01:56:13 +0000827 switch (cast<VTSDNode>(Node->getOperand(3))->getVT()) {
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000828 default: Node->dump(); assert(0 && "Bad sign extend!");
Misha Brukman4633f1c2005-04-21 23:13:11 +0000829 case MVT::i32: Opc = Alpha::LDL;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000830 assert(opcode != ISD::ZEXTLOAD && "Not sext"); break;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000831 case MVT::i16: Opc = Alpha::LDWU;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000832 assert(opcode != ISD::SEXTLOAD && "Not zext"); break;
Andrew Lenharthf311e8b2005-02-07 05:18:02 +0000833 case MVT::i1: //FIXME: Treat i1 as i8 since there are problems otherwise
Misha Brukman4633f1c2005-04-21 23:13:11 +0000834 case MVT::i8: Opc = Alpha::LDBU;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000835 assert(opcode != ISD::SEXTLOAD && "Not zext"); break;
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000836 }
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000837
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000838 int i, j, k;
839 if (EnableAlphaLSMark)
840 getValueInfo(dyn_cast<SrcValueSDNode>(N.getOperand(2))->getValue(),
841 i, j, k);
842
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000843 GlobalAddressSDNode *GASD = dyn_cast<GlobalAddressSDNode>(Address);
844 if (GASD && !GASD->getGlobal()->isExternal()) {
845 Tmp1 = MakeReg(MVT::i64);
846 AlphaLowering.restoreGP(BB);
847 BuildMI(BB, Alpha::LDAHr, 2, Tmp1)
848 .addGlobalAddress(GASD->getGlobal()).addReg(Alpha::R29);
849 if (EnableAlphaLSMark)
850 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
851 .addImm(getUID());
852 BuildMI(BB, GetRelVersion(Opc), 2, Result)
853 .addGlobalAddress(GASD->getGlobal()).addReg(Tmp1);
Chris Lattnerbce81ae2005-07-10 01:56:13 +0000854 } else if (ConstantPoolSDNode *CP =
855 dyn_cast<ConstantPoolSDNode>(Address)) {
Chris Lattner5839bf22005-08-26 17:15:30 +0000856 unsigned CPIdx = BB->getParent()->getConstantPool()->
857 getConstantPoolIndex(CP->get());
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000858 AlphaLowering.restoreGP(BB);
Andrew Lenhartha32b9e32005-04-08 17:28:49 +0000859 has_sym = true;
Andrew Lenharthfe895e32005-06-27 17:15:36 +0000860 Tmp1 = MakeReg(MVT::i64);
Chris Lattner5839bf22005-08-26 17:15:30 +0000861 BuildMI(BB, Alpha::LDAHr, 2, Tmp1).addConstantPoolIndex(CPIdx)
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000862 .addReg(Alpha::R29);
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000863 if (EnableAlphaLSMark)
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000864 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
865 .addImm(getUID());
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000866 BuildMI(BB, GetRelVersion(Opc), 2, Result)
Chris Lattner5839bf22005-08-26 17:15:30 +0000867 .addConstantPoolIndex(CPIdx).addReg(Tmp1);
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000868 } else if(Address.getOpcode() == ISD::FrameIndex) {
869 if (EnableAlphaLSMark)
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000870 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
871 .addImm(getUID());
Andrew Lenharth032f2352005-02-22 21:59:48 +0000872 BuildMI(BB, Opc, 2, Result)
873 .addFrameIndex(cast<FrameIndexSDNode>(Address)->getIndex())
874 .addReg(Alpha::F31);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000875 } else {
876 long offset;
877 SelectAddr(Address, Tmp1, offset);
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000878 if (EnableAlphaLSMark)
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000879 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
880 .addImm(getUID());
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000881 BuildMI(BB, Opc, 2, Result).addImm(offset).addReg(Tmp1);
882 }
Andrew Lenharth9e8d1092005-02-06 15:40:40 +0000883 return Result;
Andrew Lenharth2f8fb772005-01-25 00:35:34 +0000884 }
Andrew Lenharth2f8fb772005-01-25 00:35:34 +0000885
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000886 case ISD::GlobalAddress:
887 AlphaLowering.restoreGP(BB);
Andrew Lenhartha32b9e32005-04-08 17:28:49 +0000888 has_sym = true;
Jeff Cohen00b168892005-07-27 06:12:32 +0000889
Andrew Lenharth2f5bca52005-07-03 20:06:13 +0000890 Reg = Result = MakeReg(MVT::i64);
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000891
892 if (EnableAlphaLSMark)
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000893 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(5).addImm(0).addImm(0)
Andrew Lenharth06ef8842005-06-29 18:54:02 +0000894 .addImm(getUID());
Andrew Lenharthc7989ce2005-06-29 00:31:08 +0000895
896 BuildMI(BB, Alpha::LDQl, 2, Result)
Andrew Lenharthc95d9842005-06-27 21:11:40 +0000897 .addGlobalAddress(cast<GlobalAddressSDNode>(N)->getGlobal())
898 .addReg(Alpha::R29);
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000899 return Result;
900
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000901 case ISD::ExternalSymbol:
902 AlphaLowering.restoreGP(BB);
903 has_sym = true;
904
Andrew Lenharth2f5bca52005-07-03 20:06:13 +0000905 Reg = Result = MakeReg(MVT::i64);
906
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000907 if (EnableAlphaLSMark)
908 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(5).addImm(0).addImm(0)
909 .addImm(getUID());
910
911 BuildMI(BB, Alpha::LDQl, 2, Result)
912 .addExternalSymbol(cast<ExternalSymbolSDNode>(N)->getSymbol())
913 .addReg(Alpha::R29);
914 return Result;
915
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +0000916 case ISD::TAILCALL:
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000917 case ISD::CALL:
918 {
919 Select(N.getOperand(0));
Misha Brukman4633f1c2005-04-21 23:13:11 +0000920
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000921 // The chain for this call is now lowered.
Andrew Lenharthf3f951a2005-07-22 20:50:29 +0000922 ExprMap[N.getValue(Node->getNumValues()-1)] = notIn;
Misha Brukman4633f1c2005-04-21 23:13:11 +0000923
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000924 //grab the arguments
925 std::vector<unsigned> argvregs;
Andrew Lenharth7b2a5272005-01-30 20:42:36 +0000926 //assert(Node->getNumOperands() < 8 && "Only 6 args supported");
Andrew Lenharth304d0f32005-01-22 23:41:55 +0000927 for(int i = 2, e = Node->getNumOperands(); i < e; ++i)
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000928 argvregs.push_back(SelectExpr(N.getOperand(i)));
Misha Brukman4633f1c2005-04-21 23:13:11 +0000929
Andrew Lenharth684f2292005-01-30 00:35:27 +0000930 //in reg args
931 for(int i = 0, e = std::min(6, (int)argvregs.size()); i < e; ++i)
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000932 {
Misha Brukman4633f1c2005-04-21 23:13:11 +0000933 unsigned args_int[] = {Alpha::R16, Alpha::R17, Alpha::R18,
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000934 Alpha::R19, Alpha::R20, Alpha::R21};
Misha Brukman4633f1c2005-04-21 23:13:11 +0000935 unsigned args_float[] = {Alpha::F16, Alpha::F17, Alpha::F18,
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000936 Alpha::F19, Alpha::F20, Alpha::F21};
937 switch(N.getOperand(i+2).getValueType()) {
Misha Brukman4633f1c2005-04-21 23:13:11 +0000938 default:
939 Node->dump();
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000940 N.getOperand(i).Val->dump();
Misha Brukman4633f1c2005-04-21 23:13:11 +0000941 std::cerr << "Type for " << i << " is: " <<
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000942 N.getOperand(i+2).getValueType() << "\n";
943 assert(0 && "Unknown value type for call");
944 case MVT::i1:
945 case MVT::i8:
946 case MVT::i16:
947 case MVT::i32:
948 case MVT::i64:
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000949 BuildMI(BB, Alpha::BIS, 2, args_int[i]).addReg(argvregs[i])
950 .addReg(argvregs[i]);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000951 break;
952 case MVT::f32:
953 case MVT::f64:
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000954 BuildMI(BB, Alpha::CPYS, 2, args_float[i]).addReg(argvregs[i])
955 .addReg(argvregs[i]);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000956 break;
Andrew Lenharth684f2292005-01-30 00:35:27 +0000957 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000958 }
Andrew Lenharth684f2292005-01-30 00:35:27 +0000959 //in mem args
960 for (int i = 6, e = argvregs.size(); i < e; ++i)
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000961 {
962 switch(N.getOperand(i+2).getValueType()) {
Misha Brukman4633f1c2005-04-21 23:13:11 +0000963 default:
964 Node->dump();
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000965 N.getOperand(i).Val->dump();
Misha Brukman4633f1c2005-04-21 23:13:11 +0000966 std::cerr << "Type for " << i << " is: " <<
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000967 N.getOperand(i+2).getValueType() << "\n";
968 assert(0 && "Unknown value type for call");
969 case MVT::i1:
970 case MVT::i8:
971 case MVT::i16:
972 case MVT::i32:
973 case MVT::i64:
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000974 BuildMI(BB, Alpha::STQ, 3).addReg(argvregs[i]).addImm((i - 6) * 8)
975 .addReg(Alpha::R30);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000976 break;
977 case MVT::f32:
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000978 BuildMI(BB, Alpha::STS, 3).addReg(argvregs[i]).addImm((i - 6) * 8)
979 .addReg(Alpha::R30);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000980 break;
981 case MVT::f64:
Andrew Lenharthd4653b12005-06-27 17:39:17 +0000982 BuildMI(BB, Alpha::STT, 3).addReg(argvregs[i]).addImm((i - 6) * 8)
983 .addReg(Alpha::R30);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000984 break;
Andrew Lenharth684f2292005-01-30 00:35:27 +0000985 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000986 }
Andrew Lenharth3e98fde2005-01-26 21:54:09 +0000987 //build the right kind of call
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000988 GlobalAddressSDNode *GASD = dyn_cast<GlobalAddressSDNode>(N.getOperand(1));
989 if (GASD && !GASD->getGlobal()->isExternal()) {
990 //use PC relative branch call
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000991 AlphaLowering.restoreGP(BB);
Andrew Lenharthcf8bf382005-07-01 19:12:13 +0000992 BuildMI(BB, Alpha::BSR, 1, Alpha::R26)
993 .addGlobalAddress(GASD->getGlobal(),true);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +0000994 } else {
995 //no need to restore GP as we are doing an indirect call
996 Tmp1 = SelectExpr(N.getOperand(1));
997 BuildMI(BB, Alpha::BIS, 2, Alpha::R27).addReg(Tmp1).addReg(Tmp1);
998 BuildMI(BB, Alpha::JSR, 2, Alpha::R26).addReg(Alpha::R27).addImm(0);
999 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001000
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001001 //push the result into a virtual register
Misha Brukman4633f1c2005-04-21 23:13:11 +00001002
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001003 switch (Node->getValueType(0)) {
1004 default: Node->dump(); assert(0 && "Unknown value type for call result!");
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +00001005 case MVT::Other: return notIn;
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001006 case MVT::i1:
1007 case MVT::i8:
1008 case MVT::i16:
1009 case MVT::i32:
1010 case MVT::i64:
Misha Brukman7847fca2005-04-22 17:54:37 +00001011 BuildMI(BB, Alpha::BIS, 2, Result).addReg(Alpha::R0).addReg(Alpha::R0);
1012 break;
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001013 case MVT::f32:
1014 case MVT::f64:
Misha Brukman7847fca2005-04-22 17:54:37 +00001015 BuildMI(BB, Alpha::CPYS, 2, Result).addReg(Alpha::F0).addReg(Alpha::F0);
1016 break;
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001017 }
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001018 return Result+N.ResNo;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001019 }
1020
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001021 case ISD::SIGN_EXTEND_INREG:
1022 {
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001023 //do SDIV opt for all levels of ints if not dividing by a constant
1024 if (EnableAlphaIDIV && N.getOperand(0).getOpcode() == ISD::SDIV
1025 && N.getOperand(0).getOperand(1).getOpcode() != ISD::Constant)
Andrew Lenharthdc0b71b2005-03-22 00:24:07 +00001026 {
Andrew Lenharthdc0b71b2005-03-22 00:24:07 +00001027 unsigned Tmp4 = MakeReg(MVT::f64);
1028 unsigned Tmp5 = MakeReg(MVT::f64);
1029 unsigned Tmp6 = MakeReg(MVT::f64);
1030 unsigned Tmp7 = MakeReg(MVT::f64);
1031 unsigned Tmp8 = MakeReg(MVT::f64);
1032 unsigned Tmp9 = MakeReg(MVT::f64);
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001033
1034 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1035 Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
1036 MoveInt2FP(Tmp1, Tmp4, true);
1037 MoveInt2FP(Tmp2, Tmp5, true);
Andrew Lenharth98169be2005-07-28 18:14:47 +00001038 BuildMI(BB, Alpha::CVTQT, 1, Tmp6).addReg(Alpha::F31).addReg(Tmp4);
1039 BuildMI(BB, Alpha::CVTQT, 1, Tmp7).addReg(Alpha::F31).addReg(Tmp5);
Andrew Lenharthdc0b71b2005-03-22 00:24:07 +00001040 BuildMI(BB, Alpha::DIVT, 2, Tmp8).addReg(Tmp6).addReg(Tmp7);
Andrew Lenharth98169be2005-07-28 18:14:47 +00001041 BuildMI(BB, Alpha::CVTTQ, 1, Tmp9).addReg(Alpha::F31).addReg(Tmp8);
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001042 MoveFP2Int(Tmp9, Result, true);
Andrew Lenharthdc0b71b2005-03-22 00:24:07 +00001043 return Result;
1044 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001045
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +00001046 //Alpha has instructions for a bunch of signed 32 bit stuff
Chris Lattnerbce81ae2005-07-10 01:56:13 +00001047 if(cast<VTSDNode>(Node->getOperand(1))->getVT() == MVT::i32) {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001048 switch (N.getOperand(0).getOpcode()) {
1049 case ISD::ADD:
1050 case ISD::SUB:
1051 case ISD::MUL:
1052 {
1053 bool isAdd = N.getOperand(0).getOpcode() == ISD::ADD;
1054 bool isMul = N.getOperand(0).getOpcode() == ISD::MUL;
1055 //FIXME: first check for Scaled Adds and Subs!
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001056 if(!isMul && N.getOperand(0).getOperand(0).getOpcode() == ISD::SHL &&
Andrew Lenharthd2284272005-08-15 14:31:37 +00001057 isSIntImmediateBounded(N.getOperand(0).getOperand(0).getOperand(1), SImm, 2, 3))
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001058 {
Andrew Lenharthd2284272005-08-15 14:31:37 +00001059 bool use4 = SImm == 2;
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001060 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0).getOperand(0));
1061 Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
1062 BuildMI(BB, isAdd?(use4?Alpha::S4ADDL:Alpha::S8ADDL):(use4?Alpha::S4SUBL:Alpha::S8SUBL),
1063 2,Result).addReg(Tmp1).addReg(Tmp2);
1064 }
1065 else if(isAdd && N.getOperand(0).getOperand(1).getOpcode() == ISD::SHL &&
Andrew Lenharthd2284272005-08-15 14:31:37 +00001066 isSIntImmediateBounded(N.getOperand(0).getOperand(1).getOperand(1), SImm, 2, 3))
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001067 {
Andrew Lenharthd2284272005-08-15 14:31:37 +00001068 bool use4 = SImm == 2;
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001069 Tmp1 = SelectExpr(N.getOperand(0).getOperand(1).getOperand(0));
1070 Tmp2 = SelectExpr(N.getOperand(0).getOperand(0));
1071 BuildMI(BB, use4?Alpha::S4ADDL:Alpha::S8ADDL, 2,Result).addReg(Tmp1).addReg(Tmp2);
1072 }
Andrew Lenharthd2284272005-08-15 14:31:37 +00001073 else if(isSIntImmediateBounded(N.getOperand(0).getOperand(1), SImm, 0, 255))
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001074 { //Normal imm add/sub
1075 Opc = isAdd ? Alpha::ADDLi : (isMul ? Alpha::MULLi : Alpha::SUBLi);
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001076 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001077 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(SImm);
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +00001078 }
Andrew Lenharthd2284272005-08-15 14:31:37 +00001079 else if(!isMul && isSIntImmediate(N.getOperand(0).getOperand(1), SImm) &&
1080 (((SImm << 32) >> 32) >= -255) && (((SImm << 32) >> 32) <= 0))
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001081 { //handle canonicalization
1082 Opc = isAdd ? Alpha::SUBLi : Alpha::ADDLi;
1083 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001084 SImm = 0 - ((SImm << 32) >> 32);
1085 assert(SImm >= 0 && SImm <= 255);
1086 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(SImm);
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001087 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001088 else
1089 { //Normal add/sub
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001090 Opc = isAdd ? Alpha::ADDL : (isMul ? Alpha::MULL : Alpha::SUBL);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001091 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001092 Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001093 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1094 }
1095 return Result;
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +00001096 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001097 default: break; //Fall Though;
1098 }
1099 } //Every thing else fall though too, including unhandled opcodes above
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001100 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001101 //std::cerr << "SrcT: " << MVN->getExtraValueType() << "\n";
Chris Lattnerbce81ae2005-07-10 01:56:13 +00001102 switch(cast<VTSDNode>(Node->getOperand(1))->getVT()) {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001103 default:
1104 Node->dump();
1105 assert(0 && "Sign Extend InReg not there yet");
1106 break;
1107 case MVT::i32:
Andrew Lenharth3d65d312005-01-27 03:49:45 +00001108 {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001109 BuildMI(BB, Alpha::ADDLi, 2, Result).addReg(Tmp1).addImm(0);
Andrew Lenharth3d65d312005-01-27 03:49:45 +00001110 break;
1111 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001112 case MVT::i16:
Andrew Lenharthf3f951a2005-07-22 20:50:29 +00001113 BuildMI(BB, Alpha::SEXTW, 1, Result).addReg(Alpha::R31).addReg(Tmp1);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001114 break;
1115 case MVT::i8:
Andrew Lenharthf3f951a2005-07-22 20:50:29 +00001116 BuildMI(BB, Alpha::SEXTB, 1, Result).addReg(Alpha::R31).addReg(Tmp1);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001117 break;
Andrew Lenharthebce5042005-02-12 19:35:12 +00001118 case MVT::i1:
1119 Tmp2 = MakeReg(MVT::i64);
1120 BuildMI(BB, Alpha::ANDi, 2, Tmp2).addReg(Tmp1).addImm(1);
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001121 BuildMI(BB, Alpha::SUBQ, 2, Result).addReg(Alpha::R31).addReg(Tmp2);
Andrew Lenharthebce5042005-02-12 19:35:12 +00001122 break;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001123 }
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001124 return Result;
1125 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001126
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001127 case ISD::SETCC:
Andrew Lenharth3d65d312005-01-27 03:49:45 +00001128 {
Chris Lattner88ac32c2005-08-09 20:21:10 +00001129 ISD::CondCode CC = cast<CondCodeSDNode>(N.getOperand(2))->get();
1130 if (MVT::isInteger(N.getOperand(0).getValueType())) {
1131 bool isConst = false;
1132 int dir;
Misha Brukman7847fca2005-04-22 17:54:37 +00001133
Chris Lattner88ac32c2005-08-09 20:21:10 +00001134 //Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001135 if(isSIntImmediate(N.getOperand(1), SImm) && SImm <= 255 && SImm >= 0)
Chris Lattner88ac32c2005-08-09 20:21:10 +00001136 isConst = true;
Andrew Lenharth3d65d312005-01-27 03:49:45 +00001137
Chris Lattner88ac32c2005-08-09 20:21:10 +00001138 switch (CC) {
1139 default: Node->dump(); assert(0 && "Unknown integer comparison!");
1140 case ISD::SETEQ:
1141 Opc = isConst ? Alpha::CMPEQi : Alpha::CMPEQ; dir=1; break;
1142 case ISD::SETLT:
1143 Opc = isConst ? Alpha::CMPLTi : Alpha::CMPLT; dir = 1; break;
1144 case ISD::SETLE:
1145 Opc = isConst ? Alpha::CMPLEi : Alpha::CMPLE; dir = 1; break;
1146 case ISD::SETGT: Opc = Alpha::CMPLT; dir = 2; break;
1147 case ISD::SETGE: Opc = Alpha::CMPLE; dir = 2; break;
1148 case ISD::SETULT:
1149 Opc = isConst ? Alpha::CMPULTi : Alpha::CMPULT; dir = 1; break;
1150 case ISD::SETUGT: Opc = Alpha::CMPULT; dir = 2; break;
1151 case ISD::SETULE:
1152 Opc = isConst ? Alpha::CMPULEi : Alpha::CMPULE; dir = 1; break;
1153 case ISD::SETUGE: Opc = Alpha::CMPULE; dir = 2; break;
1154 case ISD::SETNE: {//Handle this one special
1155 //std::cerr << "Alpha does not have a setne.\n";
1156 //abort();
1157 Tmp1 = SelectExpr(N.getOperand(0));
1158 Tmp2 = SelectExpr(N.getOperand(1));
1159 Tmp3 = MakeReg(MVT::i64);
1160 BuildMI(BB, Alpha::CMPEQ, 2, Tmp3).addReg(Tmp1).addReg(Tmp2);
1161 //Remeber we have the Inv for this CC
1162 CCInvMap[N] = Tmp3;
1163 //and invert
1164 BuildMI(BB, Alpha::CMPEQ, 2, Result).addReg(Alpha::R31).addReg(Tmp3);
1165 return Result;
1166 }
1167 }
1168 if (dir == 1) {
1169 Tmp1 = SelectExpr(N.getOperand(0));
1170 if (isConst) {
Andrew Lenharthd2284272005-08-15 14:31:37 +00001171 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(SImm);
Chris Lattner88ac32c2005-08-09 20:21:10 +00001172 } else {
Andrew Lenharthd2bb9602005-01-27 07:50:35 +00001173 Tmp2 = SelectExpr(N.getOperand(1));
Andrew Lenharth694c2982005-06-26 23:01:11 +00001174 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
Andrew Lenharthd4bdd542005-02-05 16:41:03 +00001175 }
Chris Lattner88ac32c2005-08-09 20:21:10 +00001176 } else { //if (dir == 2) {
1177 Tmp1 = SelectExpr(N.getOperand(1));
1178 Tmp2 = SelectExpr(N.getOperand(0));
1179 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
Andrew Lenharthd4bdd542005-02-05 16:41:03 +00001180 }
Chris Lattner88ac32c2005-08-09 20:21:10 +00001181 } else {
1182 //do the comparison
1183 Tmp1 = MakeReg(MVT::f64);
1184 bool inv = SelectFPSetCC(N, Tmp1);
1185
1186 //now arrange for Result (int) to have a 1 or 0
1187 Tmp2 = MakeReg(MVT::i64);
1188 BuildMI(BB, Alpha::ADDQi, 2, Tmp2).addReg(Alpha::R31).addImm(1);
1189 Opc = inv?Alpha::CMOVNEi_FP:Alpha::CMOVEQi_FP;
1190 BuildMI(BB, Opc, 3, Result).addReg(Tmp2).addImm(0).addReg(Tmp1);
Andrew Lenharth9818c052005-02-05 13:19:12 +00001191 }
Andrew Lenharth3d65d312005-01-27 03:49:45 +00001192 return Result;
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001193 }
Misha Brukman4633f1c2005-04-21 23:13:11 +00001194
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001195 case ISD::CopyFromReg:
1196 {
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001197 ++count_ins;
1198
Andrew Lenharth40831c52005-01-28 06:57:18 +00001199 // Make sure we generate both values.
Andrew Lenharthcc1b16f2005-01-28 23:17:54 +00001200 if (Result != notIn)
Misha Brukman7847fca2005-04-22 17:54:37 +00001201 ExprMap[N.getValue(1)] = notIn; // Generate the token
Andrew Lenharth40831c52005-01-28 06:57:18 +00001202 else
Misha Brukman7847fca2005-04-22 17:54:37 +00001203 Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
Misha Brukman4633f1c2005-04-21 23:13:11 +00001204
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001205 SDOperand Chain = N.getOperand(0);
1206
1207 Select(Chain);
Chris Lattner707ebc52005-08-16 21:56:37 +00001208 unsigned r = cast<RegisterSDNode>(Node->getOperand(1))->getReg();
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001209 //std::cerr << "CopyFromReg " << Result << " = " << r << "\n";
Andrew Lenharth619fb522005-07-04 20:07:21 +00001210 if (MVT::isFloatingPoint(N.getValue(0).getValueType()))
Andrew Lenharthc7989ce2005-06-29 00:31:08 +00001211 BuildMI(BB, Alpha::CPYS, 2, Result).addReg(r).addReg(r);
1212 else
1213 BuildMI(BB, Alpha::BIS, 2, Result).addReg(r).addReg(r);
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001214 return Result;
1215 }
1216
Misha Brukman4633f1c2005-04-21 23:13:11 +00001217 //Most of the plain arithmetic and logic share the same form, and the same
Andrew Lenharth2d6f0222005-01-24 19:44:07 +00001218 //constant immediate test
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001219 case ISD::XOR:
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001220 //Match Not
Andrew Lenharthd2284272005-08-15 14:31:37 +00001221 if (isSIntImmediate(N.getOperand(1), SImm) && SImm == -1) {
1222 Tmp1 = SelectExpr(N.getOperand(0));
1223 BuildMI(BB, Alpha::ORNOT, 2, Result).addReg(Alpha::R31).addReg(Tmp1);
1224 return Result;
1225 }
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001226 //Fall through
1227 case ISD::AND:
Andrew Lenharth483f22d2005-04-13 03:47:03 +00001228 //handle zap
Andrew Lenharthd2284272005-08-15 14:31:37 +00001229 if (opcode == ISD::AND && isUIntImmediate(N.getOperand(1), UImm))
Andrew Lenharth483f22d2005-04-13 03:47:03 +00001230 {
Andrew Lenharth483f22d2005-04-13 03:47:03 +00001231 unsigned int build = 0;
1232 for(int i = 0; i < 8; ++i)
1233 {
Andrew Lenharthd2284272005-08-15 14:31:37 +00001234 if ((UImm & 0x00FF) == 0x00FF)
Andrew Lenharth483f22d2005-04-13 03:47:03 +00001235 build |= 1 << i;
Andrew Lenharthd2284272005-08-15 14:31:37 +00001236 else if ((UImm & 0x00FF) != 0)
Andrew Lenharth483f22d2005-04-13 03:47:03 +00001237 { build = 0; break; }
Andrew Lenharthd2284272005-08-15 14:31:37 +00001238 UImm >>= 8;
Andrew Lenharth483f22d2005-04-13 03:47:03 +00001239 }
1240 if (build)
1241 {
1242 Tmp1 = SelectExpr(N.getOperand(0));
1243 BuildMI(BB, Alpha::ZAPNOTi, 2, Result).addReg(Tmp1).addImm(build);
1244 return Result;
1245 }
1246 }
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001247 case ISD::OR:
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001248 //Check operand(0) == Not
Misha Brukman4633f1c2005-04-21 23:13:11 +00001249 if (N.getOperand(0).getOpcode() == ISD::XOR &&
Andrew Lenharthd2284272005-08-15 14:31:37 +00001250 isSIntImmediate(N.getOperand(0).getOperand(1), SImm) && SImm == -1) {
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001251 switch(opcode) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001252 case ISD::AND: Opc = Alpha::BIC; break;
1253 case ISD::OR: Opc = Alpha::ORNOT; break;
1254 case ISD::XOR: Opc = Alpha::EQV; break;
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001255 }
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001256 Tmp1 = SelectExpr(N.getOperand(1));
1257 Tmp2 = SelectExpr(N.getOperand(0).getOperand(0));
1258 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1259 return Result;
1260 }
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001261 //Check operand(1) == Not
Misha Brukman4633f1c2005-04-21 23:13:11 +00001262 if (N.getOperand(1).getOpcode() == ISD::XOR &&
Andrew Lenharthd2284272005-08-15 14:31:37 +00001263 isSIntImmediate(N.getOperand(1).getOperand(1), SImm) && SImm == -1) {
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001264 switch(opcode) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001265 case ISD::AND: Opc = Alpha::BIC; break;
1266 case ISD::OR: Opc = Alpha::ORNOT; break;
1267 case ISD::XOR: Opc = Alpha::EQV; break;
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001268 }
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001269 Tmp1 = SelectExpr(N.getOperand(0));
1270 Tmp2 = SelectExpr(N.getOperand(1).getOperand(0));
1271 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1272 return Result;
1273 }
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001274 //Fall through
Andrew Lenharth2d6f0222005-01-24 19:44:07 +00001275 case ISD::SHL:
1276 case ISD::SRL:
Andrew Lenharth2c594352005-01-29 15:42:07 +00001277 case ISD::SRA:
Andrew Lenharth2d6f0222005-01-24 19:44:07 +00001278 case ISD::MUL:
Andrew Lenharthd2284272005-08-15 14:31:37 +00001279 if(isSIntImmediateBounded(N.getOperand(1), SImm, 0, 255)) {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001280 switch(opcode) {
1281 case ISD::AND: Opc = Alpha::ANDi; break;
1282 case ISD::OR: Opc = Alpha::BISi; break;
1283 case ISD::XOR: Opc = Alpha::XORi; break;
1284 case ISD::SHL: Opc = Alpha::SLi; break;
1285 case ISD::SRL: Opc = Alpha::SRLi; break;
1286 case ISD::SRA: Opc = Alpha::SRAi; break;
1287 case ISD::MUL: Opc = Alpha::MULQi; break;
1288 };
1289 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001290 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(SImm);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001291 } else {
1292 switch(opcode) {
1293 case ISD::AND: Opc = Alpha::AND; break;
1294 case ISD::OR: Opc = Alpha::BIS; break;
1295 case ISD::XOR: Opc = Alpha::XOR; break;
1296 case ISD::SHL: Opc = Alpha::SL; break;
1297 case ISD::SRL: Opc = Alpha::SRL; break;
1298 case ISD::SRA: Opc = Alpha::SRA; break;
Jeff Cohen00b168892005-07-27 06:12:32 +00001299 case ISD::MUL:
1300 Opc = isFP ? (DestType == MVT::f64 ? Alpha::MULT : Alpha::MULS)
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001301 : Alpha::MULQ;
1302 break;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001303 };
1304 Tmp1 = SelectExpr(N.getOperand(0));
1305 Tmp2 = SelectExpr(N.getOperand(1));
1306 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1307 }
Andrew Lenharth2d6f0222005-01-24 19:44:07 +00001308 return Result;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001309
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001310 case ISD::ADD:
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001311 case ISD::SUB:
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001312 if (isFP) {
1313 ConstantFPSDNode *CN;
1314 if (opcode == ISD::ADD)
1315 Opc = DestType == MVT::f64 ? Alpha::ADDT : Alpha::ADDS;
1316 else
1317 Opc = DestType == MVT::f64 ? Alpha::SUBT : Alpha::SUBS;
1318 if (opcode == ISD::SUB
1319 && (CN = dyn_cast<ConstantFPSDNode>(N.getOperand(0)))
1320 && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
1321 {
1322 Tmp2 = SelectExpr(N.getOperand(1));
1323 BuildMI(BB, Alpha::CPYSN, 2, Result).addReg(Tmp2).addReg(Tmp2);
1324 } else {
1325 Tmp1 = SelectExpr(N.getOperand(0));
1326 Tmp2 = SelectExpr(N.getOperand(1));
1327 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1328 }
1329 return Result;
1330 } else {
Andrew Lenharth40831c52005-01-28 06:57:18 +00001331 bool isAdd = opcode == ISD::ADD;
1332
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001333 //first check for Scaled Adds and Subs!
1334 //Valid for add and sub
Andrew Lenharthd2284272005-08-15 14:31:37 +00001335 if(N.getOperand(0).getOpcode() == ISD::SHL &&
1336 isSIntImmediate(N.getOperand(0).getOperand(1), SImm) &&
1337 (SImm == 2 || SImm == 3)) {
1338 bool use4 = SImm == 2;
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001339 Tmp2 = SelectExpr(N.getOperand(0).getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001340 if (isSIntImmediateBounded(N.getOperand(1), SImm, 0, 255))
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001341 BuildMI(BB, isAdd?(use4?Alpha::S4ADDQi:Alpha::S8ADDQi):(use4?Alpha::S4SUBQi:Alpha::S8SUBQi),
Andrew Lenharthd2284272005-08-15 14:31:37 +00001342 2, Result).addReg(Tmp2).addImm(SImm);
Andrew Lenharthf77f3952005-04-06 20:59:59 +00001343 else {
1344 Tmp1 = SelectExpr(N.getOperand(1));
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001345 BuildMI(BB, isAdd?(use4?Alpha::S4ADDQi:Alpha::S8ADDQi):(use4?Alpha::S4SUBQi:Alpha::S8SUBQi),
1346 2, Result).addReg(Tmp2).addReg(Tmp1);
Andrew Lenharthf77f3952005-04-06 20:59:59 +00001347 }
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001348 }
1349 //Position prevents subs
Andrew Lenharth273a1f92005-04-07 14:18:13 +00001350 else if(N.getOperand(1).getOpcode() == ISD::SHL && isAdd &&
Andrew Lenharthd2284272005-08-15 14:31:37 +00001351 isSIntImmediate(N.getOperand(1).getOperand(1), SImm) &&
1352 (SImm == 2 || SImm == 3)) {
1353 bool use4 = SImm == 2;
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001354 Tmp2 = SelectExpr(N.getOperand(1).getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001355 if (isSIntImmediateBounded(N.getOperand(0), SImm, 0, 255))
1356 BuildMI(BB, use4?Alpha::S4ADDQi:Alpha::S8ADDQi, 2, Result).addReg(Tmp2).addImm(SImm);
Andrew Lenharthf77f3952005-04-06 20:59:59 +00001357 else {
1358 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001359 BuildMI(BB, use4?Alpha::S4ADDQ:Alpha::S8ADDQ, 2, Result).addReg(Tmp2).addReg(Tmp1);
Andrew Lenharthf77f3952005-04-06 20:59:59 +00001360 }
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001361 }
1362 //small addi
Andrew Lenharthd2284272005-08-15 14:31:37 +00001363 else if(isSIntImmediateBounded(N.getOperand(1), SImm, 0, 255))
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001364 { //Normal imm add/sub
1365 Opc = isAdd ? Alpha::ADDQi : Alpha::SUBQi;
1366 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001367 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(SImm);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001368 }
Andrew Lenharthd2284272005-08-15 14:31:37 +00001369 else if(isSIntImmediateBounded(N.getOperand(1), SImm, -255, 0))
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001370 { //inverted imm add/sub
1371 Opc = isAdd ? Alpha::SUBQi : Alpha::ADDQi;
1372 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharthd2284272005-08-15 14:31:37 +00001373 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(-SImm);
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001374 }
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001375 //larger addi
Andrew Lenharthd2284272005-08-15 14:31:37 +00001376 else if(isSIntImmediateBounded(N.getOperand(1), SImm, -32767, 32767))
Andrew Lenharth74d00d82005-03-02 17:23:03 +00001377 { //LDA
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001378 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001379 if (!isAdd)
Andrew Lenharthd2284272005-08-15 14:31:37 +00001380 SImm = -SImm;
1381 BuildMI(BB, Alpha::LDA, 2, Result).addImm(SImm).addReg(Tmp1);
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001382 }
1383 //give up and do the operation
1384 else {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001385 //Normal add/sub
1386 Opc = isAdd ? Alpha::ADDQ : Alpha::SUBQ;
1387 Tmp1 = SelectExpr(N.getOperand(0));
1388 Tmp2 = SelectExpr(N.getOperand(1));
1389 BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
1390 }
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001391 return Result;
1392 }
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001393
Andrew Lenharthdc0b71b2005-03-22 00:24:07 +00001394 case ISD::SDIV:
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001395 if (isFP) {
1396 Tmp1 = SelectExpr(N.getOperand(0));
1397 Tmp2 = SelectExpr(N.getOperand(1));
1398 BuildMI(BB, DestType == MVT::f64 ? Alpha::DIVT : Alpha::DIVS, 2, Result)
1399 .addReg(Tmp1).addReg(Tmp2);
Andrew Lenharth0cab3752005-06-29 13:35:05 +00001400 return Result;
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001401 } else {
Andrew Lenhartha565c272005-04-06 22:03:13 +00001402 //check if we can convert into a shift!
Andrew Lenharthd2284272005-08-15 14:31:37 +00001403 if (isSIntImmediate(N.getOperand(1), SImm) &&
1404 SImm != 0 && isPowerOf2_64(llabs(SImm))) {
1405 unsigned k = Log2_64(llabs(SImm));
Andrew Lenhartha565c272005-04-06 22:03:13 +00001406 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenhartha565c272005-04-06 22:03:13 +00001407 if (k == 1)
1408 Tmp2 = Tmp1;
1409 else
1410 {
1411 Tmp2 = MakeReg(MVT::i64);
1412 BuildMI(BB, Alpha::SRAi, 2, Tmp2).addReg(Tmp1).addImm(k - 1);
1413 }
1414 Tmp3 = MakeReg(MVT::i64);
1415 BuildMI(BB, Alpha::SRLi, 2, Tmp3).addReg(Tmp2).addImm(64-k);
1416 unsigned Tmp4 = MakeReg(MVT::i64);
1417 BuildMI(BB, Alpha::ADDQ, 2, Tmp4).addReg(Tmp3).addReg(Tmp1);
Andrew Lenharthd2284272005-08-15 14:31:37 +00001418 if (SImm > 0)
Andrew Lenhartha565c272005-04-06 22:03:13 +00001419 BuildMI(BB, Alpha::SRAi, 2, Result).addReg(Tmp4).addImm(k);
1420 else
1421 {
1422 unsigned Tmp5 = MakeReg(MVT::i64);
1423 BuildMI(BB, Alpha::SRAi, 2, Tmp5).addReg(Tmp4).addImm(k);
1424 BuildMI(BB, Alpha::SUBQ, 2, Result).addReg(Alpha::R31).addReg(Tmp5);
1425 }
1426 return Result;
1427 }
1428 }
1429 //Else fall through
1430
1431 case ISD::UDIV:
1432 {
Andrew Lenharthd2284272005-08-15 14:31:37 +00001433 if (isSIntImmediate(N.getOperand(1), SImm) && (SImm >= 2 || SImm <= -2))
Andrew Lenhartha565c272005-04-06 22:03:13 +00001434 {
1435 // If this is a divide by constant, we can emit code using some magic
1436 // constants to implement it as a multiply instead.
1437 ExprMap.erase(N);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001438 if (opcode == ISD::SDIV)
Andrew Lenhartha565c272005-04-06 22:03:13 +00001439 return SelectExpr(BuildSDIVSequence(N));
1440 else
1441 return SelectExpr(BuildUDIVSequence(N));
1442 }
Andrew Lenharth4b8ac152005-04-06 20:25:34 +00001443 }
1444 //else fall though
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001445 case ISD::UREM:
Andrew Lenharthcf8bf382005-07-01 19:12:13 +00001446 case ISD::SREM: {
1447 const char* opstr = 0;
Andrew Lenharth40831c52005-01-28 06:57:18 +00001448 switch(opcode) {
Andrew Lenharthcf8bf382005-07-01 19:12:13 +00001449 case ISD::UREM: opstr = "__remqu"; break;
1450 case ISD::SREM: opstr = "__remq"; break;
1451 case ISD::UDIV: opstr = "__divqu"; break;
1452 case ISD::SDIV: opstr = "__divq"; break;
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001453 }
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001454 Tmp1 = SelectExpr(N.getOperand(0));
1455 Tmp2 = SelectExpr(N.getOperand(1));
Jeff Cohen00b168892005-07-27 06:12:32 +00001456 SDOperand Addr =
Andrew Lenharthcf8bf382005-07-01 19:12:13 +00001457 ISelDAG->getExternalSymbol(opstr, AlphaLowering.getPointerTy());
1458 Tmp3 = SelectExpr(Addr);
Andrew Lenharth33819132005-03-04 20:09:23 +00001459 //set up regs explicitly (helps Reg alloc)
1460 BuildMI(BB, Alpha::BIS, 2, Alpha::R24).addReg(Tmp1).addReg(Tmp1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001461 BuildMI(BB, Alpha::BIS, 2, Alpha::R25).addReg(Tmp2).addReg(Tmp2);
Andrew Lenharthcf8bf382005-07-01 19:12:13 +00001462 BuildMI(BB, Alpha::BIS, 2, Alpha::R27).addReg(Tmp3).addReg(Tmp3);
1463 BuildMI(BB, Alpha::JSRs, 2, Alpha::R23).addReg(Alpha::R27).addImm(0);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001464 BuildMI(BB, Alpha::BIS, 2, Result).addReg(Alpha::R27).addReg(Alpha::R27);
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001465 return Result;
Andrew Lenharthcf8bf382005-07-01 19:12:13 +00001466 }
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001467
Andrew Lenharthe76797c2005-02-01 20:40:27 +00001468 case ISD::FP_TO_UINT:
Andrew Lenharth7efadce2005-01-31 01:44:26 +00001469 case ISD::FP_TO_SINT:
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001470 {
Andrew Lenharth7efadce2005-01-31 01:44:26 +00001471 assert (DestType == MVT::i64 && "only quads can be loaded to");
1472 MVT::ValueType SrcType = N.getOperand(0).getValueType();
Andrew Lenharth03824012005-02-07 05:55:55 +00001473 assert (SrcType == MVT::f32 || SrcType == MVT::f64);
Andrew Lenharth7efadce2005-01-31 01:44:26 +00001474 Tmp1 = SelectExpr(N.getOperand(0)); // Get the operand register
Andrew Lenharth7efadce2005-01-31 01:44:26 +00001475 if (SrcType == MVT::f32)
Misha Brukman7847fca2005-04-22 17:54:37 +00001476 {
1477 Tmp2 = MakeReg(MVT::f64);
Andrew Lenharth98169be2005-07-28 18:14:47 +00001478 BuildMI(BB, Alpha::CVTST, 1, Tmp2).addReg(Alpha::F31).addReg(Tmp1);
Misha Brukman7847fca2005-04-22 17:54:37 +00001479 Tmp1 = Tmp2;
1480 }
Andrew Lenharth7efadce2005-01-31 01:44:26 +00001481 Tmp2 = MakeReg(MVT::f64);
Andrew Lenharth98169be2005-07-28 18:14:47 +00001482 BuildMI(BB, Alpha::CVTTQ, 1, Tmp2).addReg(Alpha::F31).addReg(Tmp1);
Andrew Lenharth0eaf6ce2005-04-02 21:06:51 +00001483 MoveFP2Int(Tmp2, Result, true);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001484
Andrew Lenharth7efadce2005-01-31 01:44:26 +00001485 return Result;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001486 }
Andrew Lenharth3e98fde2005-01-26 21:54:09 +00001487
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001488 case ISD::SELECT:
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001489 if (isFP) {
1490 //Tmp1 = SelectExpr(N.getOperand(0)); //Cond
1491 unsigned TV = SelectExpr(N.getOperand(1)); //Use if TRUE
1492 unsigned FV = SelectExpr(N.getOperand(2)); //Use if FALSE
1493
1494 SDOperand CC = N.getOperand(0);
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001495
Chris Lattner88ac32c2005-08-09 20:21:10 +00001496 if (CC.getOpcode() == ISD::SETCC &&
1497 !MVT::isInteger(CC.getOperand(0).getValueType())) {
1498 //FP Setcc -> Select yay!
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001499
Jeff Cohen00b168892005-07-27 06:12:32 +00001500
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001501 //for a cmp b: c = a - b;
1502 //a = b: c = 0
1503 //a < b: c < 0
1504 //a > b: c > 0
1505
1506 bool invTest = false;
1507 unsigned Tmp3;
1508
1509 ConstantFPSDNode *CN;
Chris Lattner88ac32c2005-08-09 20:21:10 +00001510 if ((CN = dyn_cast<ConstantFPSDNode>(CC.getOperand(1)))
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001511 && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
Chris Lattner88ac32c2005-08-09 20:21:10 +00001512 Tmp3 = SelectExpr(CC.getOperand(0));
1513 else if ((CN = dyn_cast<ConstantFPSDNode>(CC.getOperand(0)))
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001514 && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
1515 {
Chris Lattner88ac32c2005-08-09 20:21:10 +00001516 Tmp3 = SelectExpr(CC.getOperand(1));
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001517 invTest = true;
1518 }
1519 else
1520 {
Chris Lattner88ac32c2005-08-09 20:21:10 +00001521 unsigned Tmp1 = SelectExpr(CC.getOperand(0));
1522 unsigned Tmp2 = SelectExpr(CC.getOperand(1));
1523 bool isD = CC.getOperand(0).getValueType() == MVT::f64;
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001524 Tmp3 = MakeReg(isD ? MVT::f64 : MVT::f32);
1525 BuildMI(BB, isD ? Alpha::SUBT : Alpha::SUBS, 2, Tmp3)
1526 .addReg(Tmp1).addReg(Tmp2);
1527 }
1528
Chris Lattner88ac32c2005-08-09 20:21:10 +00001529 switch (cast<CondCodeSDNode>(CC.getOperand(2))->get()) {
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001530 default: CC.Val->dump(); assert(0 && "Unknown FP comparison!");
1531 case ISD::SETEQ: Opc = invTest ? Alpha::FCMOVNE : Alpha::FCMOVEQ; break;
1532 case ISD::SETLT: Opc = invTest ? Alpha::FCMOVGT : Alpha::FCMOVLT; break;
1533 case ISD::SETLE: Opc = invTest ? Alpha::FCMOVGE : Alpha::FCMOVLE; break;
1534 case ISD::SETGT: Opc = invTest ? Alpha::FCMOVLT : Alpha::FCMOVGT; break;
1535 case ISD::SETGE: Opc = invTest ? Alpha::FCMOVLE : Alpha::FCMOVGE; break;
1536 case ISD::SETNE: Opc = invTest ? Alpha::FCMOVEQ : Alpha::FCMOVNE; break;
1537 }
1538 BuildMI(BB, Opc, 3, Result).addReg(FV).addReg(TV).addReg(Tmp3);
1539 return Result;
1540 }
1541 else
1542 {
1543 Tmp1 = SelectExpr(N.getOperand(0)); //Cond
1544 BuildMI(BB, Alpha::FCMOVEQ_INT, 3, Result).addReg(TV).addReg(FV)
1545 .addReg(Tmp1);
1546// // Spill the cond to memory and reload it from there.
1547// unsigned Tmp4 = MakeReg(MVT::f64);
1548// MoveIntFP(Tmp1, Tmp4, true);
1549// //now ideally, we don't have to do anything to the flag...
1550// // Get the condition into the zero flag.
1551// BuildMI(BB, Alpha::FCMOVEQ, 3, Result).addReg(TV).addReg(FV).addReg(Tmp4);
1552 return Result;
Jeff Cohen00b168892005-07-27 06:12:32 +00001553 }
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001554 } else {
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001555 //FIXME: look at parent to decide if intCC can be folded, or if setCC(FP)
1556 //and can save stack use
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001557 //Tmp1 = SelectExpr(N.getOperand(0)); //Cond
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001558 //Tmp2 = SelectExpr(N.getOperand(1)); //Use if TRUE
1559 //Tmp3 = SelectExpr(N.getOperand(2)); //Use if FALSE
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001560 // Get the condition into the zero flag.
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001561 //BuildMI(BB, Alpha::CMOVEQ, 2, Result).addReg(Tmp2).addReg(Tmp3).addReg(Tmp1);
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001562
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001563 SDOperand CC = N.getOperand(0);
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001564
Misha Brukman4633f1c2005-04-21 23:13:11 +00001565 if (CC.getOpcode() == ISD::SETCC &&
Chris Lattner88ac32c2005-08-09 20:21:10 +00001566 !MVT::isInteger(CC.getOperand(0).getValueType()))
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001567 { //FP Setcc -> Int Select
Misha Brukman7847fca2005-04-22 17:54:37 +00001568 Tmp1 = MakeReg(MVT::f64);
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001569 Tmp2 = SelectExpr(N.getOperand(1)); //Use if TRUE
1570 Tmp3 = SelectExpr(N.getOperand(2)); //Use if FALSE
Misha Brukman7847fca2005-04-22 17:54:37 +00001571 bool inv = SelectFPSetCC(CC, Tmp1);
1572 BuildMI(BB, inv?Alpha::CMOVNE_FP:Alpha::CMOVEQ_FP, 2, Result)
1573 .addReg(Tmp2).addReg(Tmp3).addReg(Tmp1);
1574 return Result;
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001575 }
1576 if (CC.getOpcode() == ISD::SETCC) {
Misha Brukman7847fca2005-04-22 17:54:37 +00001577 //Int SetCC -> Select
1578 //Dropping the CC is only useful if we are comparing to 0
Andrew Lenharthd2284272005-08-15 14:31:37 +00001579 if(isSIntImmediateBounded(CC.getOperand(1), SImm, 0, 0)) {
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001580 //figure out a few things
Andrew Lenharthd2284272005-08-15 14:31:37 +00001581 bool useImm = isSIntImmediateBounded(N.getOperand(2), SImm, 0, 255);
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001582
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001583 //Fix up CC
Chris Lattner88ac32c2005-08-09 20:21:10 +00001584 ISD::CondCode cCode= cast<CondCodeSDNode>(CC.getOperand(2))->get();
Andrew Lenharth694c2982005-06-26 23:01:11 +00001585 if (useImm) //Invert sense to get Imm field right
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001586 cCode = ISD::getSetCCInverse(cCode, true);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001587
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001588 //Choose the CMOV
1589 switch (cCode) {
1590 default: CC.Val->dump(); assert(0 && "Unknown integer comparison!");
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001591 case ISD::SETEQ: Opc = useImm?Alpha::CMOVEQi:Alpha::CMOVEQ; break;
1592 case ISD::SETLT: Opc = useImm?Alpha::CMOVLTi:Alpha::CMOVLT; break;
1593 case ISD::SETLE: Opc = useImm?Alpha::CMOVLEi:Alpha::CMOVLE; break;
1594 case ISD::SETGT: Opc = useImm?Alpha::CMOVGTi:Alpha::CMOVGT; break;
1595 case ISD::SETGE: Opc = useImm?Alpha::CMOVGEi:Alpha::CMOVGE; break;
1596 case ISD::SETULT: assert(0 && "unsigned < 0 is never true"); break;
1597 case ISD::SETUGT: Opc = useImm?Alpha::CMOVNEi:Alpha::CMOVNE; break;
1598 //Technically you could have this CC
1599 case ISD::SETULE: Opc = useImm?Alpha::CMOVEQi:Alpha::CMOVEQ; break;
1600 case ISD::SETUGE: assert(0 && "unsgined >= 0 is always true"); break;
1601 case ISD::SETNE: Opc = useImm?Alpha::CMOVNEi:Alpha::CMOVNE; break;
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001602 }
Chris Lattner88ac32c2005-08-09 20:21:10 +00001603 Tmp1 = SelectExpr(CC.getOperand(0)); //Cond
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001604
Andrew Lenharth694c2982005-06-26 23:01:11 +00001605 if (useImm) {
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001606 Tmp3 = SelectExpr(N.getOperand(1)); //Use if FALSE
Andrew Lenharthd2284272005-08-15 14:31:37 +00001607 BuildMI(BB, Opc, 2, Result).addReg(Tmp3).addImm(SImm).addReg(Tmp1);
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001608 } else {
1609 Tmp2 = SelectExpr(N.getOperand(1)); //Use if TRUE
1610 Tmp3 = SelectExpr(N.getOperand(2)); //Use if FALSE
1611 BuildMI(BB, Opc, 2, Result).addReg(Tmp3).addReg(Tmp2).addReg(Tmp1);
1612 }
1613 return Result;
1614 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001615 //Otherwise, fall though
Andrew Lenharth10c085b2005-04-02 22:32:39 +00001616 }
1617 Tmp1 = SelectExpr(N.getOperand(0)); //Cond
Andrew Lenharth63b720a2005-04-03 20:35:21 +00001618 Tmp2 = SelectExpr(N.getOperand(1)); //Use if TRUE
1619 Tmp3 = SelectExpr(N.getOperand(2)); //Use if FALSE
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001620 BuildMI(BB, Alpha::CMOVEQ, 2, Result).addReg(Tmp2).addReg(Tmp3)
1621 .addReg(Tmp1);
Misha Brukman4633f1c2005-04-21 23:13:11 +00001622
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001623 return Result;
1624 }
1625
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001626 case ISD::Constant:
1627 {
Andrew Lenharthc0513832005-03-29 19:24:04 +00001628 int64_t val = (int64_t)cast<ConstantSDNode>(N)->getValue();
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001629 int zero_extend_top = 0;
Andrew Lenharthf075cac2005-07-23 07:46:48 +00001630 if (val > 0 && (val & 0xFFFFFFFF00000000ULL) == 0 &&
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001631 ((int32_t)val < 0)) {
1632 //try a small load and zero extend
1633 val = (int32_t)val;
1634 zero_extend_top = 15;
1635 }
1636
Andrew Lenharthe87f6c32005-03-11 17:48:05 +00001637 if (val <= IMM_HIGH && val >= IMM_LOW) {
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001638 if(!zero_extend_top)
1639 BuildMI(BB, Alpha::LDA, 2, Result).addImm(val).addReg(Alpha::R31);
1640 else {
1641 Tmp1 = MakeReg(MVT::i64);
1642 BuildMI(BB, Alpha::LDA, 2, Tmp1).addImm(val).addReg(Alpha::R31);
1643 BuildMI(BB, Alpha::ZAPNOT, 2, Result).addReg(Tmp1).addImm(zero_extend_top);
1644 }
Andrew Lenharthe87f6c32005-03-11 17:48:05 +00001645 }
Misha Brukman7847fca2005-04-22 17:54:37 +00001646 else if (val <= (int64_t)IMM_HIGH +(int64_t)IMM_HIGH* (int64_t)IMM_MULT &&
1647 val >= (int64_t)IMM_LOW + (int64_t)IMM_LOW * (int64_t)IMM_MULT) {
1648 Tmp1 = MakeReg(MVT::i64);
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001649 BuildMI(BB, Alpha::LDAH, 2, Tmp1).addImm(getUpper16(val))
1650 .addReg(Alpha::R31);
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001651 if (!zero_extend_top)
1652 BuildMI(BB, Alpha::LDA, 2, Result).addImm(getLower16(val)).addReg(Tmp1);
1653 else {
1654 Tmp3 = MakeReg(MVT::i64);
1655 BuildMI(BB, Alpha::LDA, 2, Tmp3).addImm(getLower16(val)).addReg(Tmp1);
1656 BuildMI(BB, Alpha::ZAPNOT, 2, Result).addReg(Tmp3).addImm(zero_extend_top);
1657 }
Andrew Lenharthe87f6c32005-03-11 17:48:05 +00001658 }
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001659 else {
Andrew Lenharth6b137d82005-07-22 22:24:01 +00001660 //re-get the val since we are going to mem anyway
1661 val = (int64_t)cast<ConstantSDNode>(N)->getValue();
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001662 MachineConstantPool *CP = BB->getParent()->getConstantPool();
Jeff Cohen00b168892005-07-27 06:12:32 +00001663 ConstantUInt *C =
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001664 ConstantUInt::get(Type::getPrimitiveType(Type::ULongTyID) , val);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001665 unsigned CPI = CP->getConstantPoolIndex(C);
1666 AlphaLowering.restoreGP(BB);
Andrew Lenharthfe895e32005-06-27 17:15:36 +00001667 has_sym = true;
1668 Tmp1 = MakeReg(MVT::i64);
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001669 BuildMI(BB, Alpha::LDAHr, 2, Tmp1).addConstantPoolIndex(CPI)
1670 .addReg(Alpha::R29);
Andrew Lenharthcf8bf382005-07-01 19:12:13 +00001671 if (EnableAlphaLSMark)
1672 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(5).addImm(0).addImm(0)
1673 .addImm(getUID());
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001674 BuildMI(BB, Alpha::LDQr, 2, Result).addConstantPoolIndex(CPI)
1675 .addReg(Tmp1);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001676 }
1677 return Result;
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001678 }
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001679 case ISD::FNEG:
1680 if(ISD::FABS == N.getOperand(0).getOpcode())
1681 {
1682 Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
1683 BuildMI(BB, Alpha::CPYSN, 2, Result).addReg(Alpha::F31).addReg(Tmp1);
1684 } else {
1685 Tmp1 = SelectExpr(N.getOperand(0));
1686 BuildMI(BB, Alpha::CPYSN, 2, Result).addReg(Tmp1).addReg(Tmp1);
1687 }
1688 return Result;
1689
1690 case ISD::FABS:
1691 Tmp1 = SelectExpr(N.getOperand(0));
1692 BuildMI(BB, Alpha::CPYS, 2, Result).addReg(Alpha::F31).addReg(Tmp1);
1693 return Result;
1694
1695 case ISD::FP_ROUND:
1696 assert (DestType == MVT::f32 &&
1697 N.getOperand(0).getValueType() == MVT::f64 &&
1698 "only f64 to f32 conversion supported here");
1699 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharth98169be2005-07-28 18:14:47 +00001700 BuildMI(BB, Alpha::CVTTS, 1, Result).addReg(Alpha::F31).addReg(Tmp1);
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001701 return Result;
1702
1703 case ISD::FP_EXTEND:
1704 assert (DestType == MVT::f64 &&
1705 N.getOperand(0).getValueType() == MVT::f32 &&
1706 "only f32 to f64 conversion supported here");
1707 Tmp1 = SelectExpr(N.getOperand(0));
Andrew Lenharth98169be2005-07-28 18:14:47 +00001708 BuildMI(BB, Alpha::CVTST, 1, Result).addReg(Alpha::F31).addReg(Tmp1);
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001709 return Result;
1710
1711 case ISD::ConstantFP:
1712 if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N)) {
1713 if (CN->isExactlyValue(+0.0)) {
1714 BuildMI(BB, Alpha::CPYS, 2, Result).addReg(Alpha::F31)
1715 .addReg(Alpha::F31);
1716 } else if ( CN->isExactlyValue(-0.0)) {
1717 BuildMI(BB, Alpha::CPYSN, 2, Result).addReg(Alpha::F31)
1718 .addReg(Alpha::F31);
1719 } else {
1720 abort();
1721 }
1722 }
1723 return Result;
1724
1725 case ISD::SINT_TO_FP:
1726 {
1727 assert (N.getOperand(0).getValueType() == MVT::i64
1728 && "only quads can be loaded from");
1729 Tmp1 = SelectExpr(N.getOperand(0)); // Get the operand register
1730 Tmp2 = MakeReg(MVT::f64);
1731 MoveInt2FP(Tmp1, Tmp2, true);
1732 Opc = DestType == MVT::f64 ? Alpha::CVTQT : Alpha::CVTQS;
Andrew Lenharth98169be2005-07-28 18:14:47 +00001733 BuildMI(BB, Opc, 1, Result).addReg(Alpha::F31).addReg(Tmp2);
Andrew Lenharthf4da9452005-06-29 12:49:51 +00001734 return Result;
1735 }
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001736 }
1737
1738 return 0;
1739}
1740
Andrew Lenharthb69f3422005-06-22 17:19:45 +00001741void AlphaISel::Select(SDOperand N) {
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001742 unsigned Tmp1, Tmp2, Opc;
Andrew Lenharth760270d2005-02-07 23:02:23 +00001743 unsigned opcode = N.getOpcode();
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001744
Nate Begeman85fdeb22005-03-24 04:39:54 +00001745 if (!ExprMap.insert(std::make_pair(N, notIn)).second)
Andrew Lenharth6b9870a2005-01-28 14:06:46 +00001746 return; // Already selected.
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001747
1748 SDNode *Node = N.Val;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001749
Andrew Lenharth760270d2005-02-07 23:02:23 +00001750 switch (opcode) {
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001751
1752 default:
1753 Node->dump(); std::cerr << "\n";
1754 assert(0 && "Node not handled yet!");
1755
1756 case ISD::BRCOND: {
Andrew Lenharth445171a2005-02-08 00:40:03 +00001757 SelectBranchCC(N);
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001758 return;
1759 }
1760
1761 case ISD::BR: {
1762 MachineBasicBlock *Dest =
1763 cast<BasicBlockSDNode>(N.getOperand(1))->getBasicBlock();
1764
1765 Select(N.getOperand(0));
1766 BuildMI(BB, Alpha::BR, 1, Alpha::R31).addMBB(Dest);
1767 return;
1768 }
1769
1770 case ISD::ImplicitDef:
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001771 ++count_ins;
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001772 Select(N.getOperand(0));
Chris Lattner707ebc52005-08-16 21:56:37 +00001773 BuildMI(BB, Alpha::IDEF, 0,
1774 cast<RegisterSDNode>(N.getOperand(1))->getReg());
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001775 return;
Misha Brukman4633f1c2005-04-21 23:13:11 +00001776
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001777 case ISD::EntryToken: return; // Noop
1778
1779 case ISD::TokenFactor:
1780 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1781 Select(Node->getOperand(i));
Misha Brukman4633f1c2005-04-21 23:13:11 +00001782
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001783 //N.Val->dump(); std::cerr << "\n";
1784 //assert(0 && "Node not handled yet!");
Misha Brukman4633f1c2005-04-21 23:13:11 +00001785
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001786 return;
1787
1788 case ISD::CopyToReg:
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001789 ++count_outs;
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001790 Select(N.getOperand(0));
Chris Lattner707ebc52005-08-16 21:56:37 +00001791 Tmp1 = SelectExpr(N.getOperand(2));
1792 Tmp2 = cast<RegisterSDNode>(N.getOperand(1))->getReg();
Misha Brukman4633f1c2005-04-21 23:13:11 +00001793
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001794 if (Tmp1 != Tmp2) {
Chris Lattner707ebc52005-08-16 21:56:37 +00001795 if (N.getOperand(2).getValueType() == MVT::f64 ||
1796 N.getOperand(2).getValueType() == MVT::f32)
Andrew Lenharth29219162005-02-07 06:31:44 +00001797 BuildMI(BB, Alpha::CPYS, 2, Tmp2).addReg(Tmp1).addReg(Tmp1);
1798 else
1799 BuildMI(BB, Alpha::BIS, 2, Tmp2).addReg(Tmp1).addReg(Tmp1);
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001800 }
1801 return;
1802
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001803 case ISD::RET:
Andrew Lenhartha32b9e32005-04-08 17:28:49 +00001804 ++count_outs;
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001805 switch (N.getNumOperands()) {
1806 default:
1807 std::cerr << N.getNumOperands() << "\n";
1808 for (unsigned i = 0; i < N.getNumOperands(); ++i)
1809 std::cerr << N.getOperand(i).getValueType() << "\n";
1810 Node->dump();
1811 assert(0 && "Unknown return instruction!");
1812 case 2:
1813 Select(N.getOperand(0));
1814 Tmp1 = SelectExpr(N.getOperand(1));
1815 switch (N.getOperand(1).getValueType()) {
Misha Brukman4633f1c2005-04-21 23:13:11 +00001816 default: Node->dump();
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001817 assert(0 && "All other types should have been promoted!!");
1818 case MVT::f64:
1819 case MVT::f32:
1820 BuildMI(BB, Alpha::CPYS, 2, Alpha::F0).addReg(Tmp1).addReg(Tmp1);
1821 break;
1822 case MVT::i32:
1823 case MVT::i64:
1824 BuildMI(BB, Alpha::BIS, 2, Alpha::R0).addReg(Tmp1).addReg(Tmp1);
1825 break;
1826 }
1827 break;
1828 case 1:
1829 Select(N.getOperand(0));
1830 break;
1831 }
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001832 // Just emit a 'ret' instruction
Andrew Lenharth6968bff2005-06-27 23:24:11 +00001833 AlphaLowering.restoreRA(BB);
Andrew Lenharthf3f951a2005-07-22 20:50:29 +00001834 BuildMI(BB, Alpha::RET, 2, Alpha::R31).addReg(Alpha::R26).addImm(1);
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001835 return;
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001836
Misha Brukman4633f1c2005-04-21 23:13:11 +00001837 case ISD::TRUNCSTORE:
1838 case ISD::STORE:
Andrew Lenharthb014d3e2005-02-02 17:32:39 +00001839 {
Andrew Lenharth9e8d1092005-02-06 15:40:40 +00001840 SDOperand Chain = N.getOperand(0);
1841 SDOperand Value = N.getOperand(1);
1842 SDOperand Address = N.getOperand(2);
1843 Select(Chain);
1844
1845 Tmp1 = SelectExpr(Value); //value
Andrew Lenharth760270d2005-02-07 23:02:23 +00001846
1847 if (opcode == ISD::STORE) {
1848 switch(Value.getValueType()) {
1849 default: assert(0 && "unknown Type in store");
1850 case MVT::i64: Opc = Alpha::STQ; break;
1851 case MVT::f64: Opc = Alpha::STT; break;
1852 case MVT::f32: Opc = Alpha::STS; break;
1853 }
1854 } else { //ISD::TRUNCSTORE
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001855 switch(cast<VTSDNode>(Node->getOperand(4))->getVT()) {
Andrew Lenharth760270d2005-02-07 23:02:23 +00001856 default: assert(0 && "unknown Type in store");
1857 case MVT::i1: //FIXME: DAG does not promote this load
1858 case MVT::i8: Opc = Alpha::STB; break;
1859 case MVT::i16: Opc = Alpha::STW; break;
1860 case MVT::i32: Opc = Alpha::STL; break;
1861 }
Andrew Lenharth65838902005-02-06 16:22:15 +00001862 }
Andrew Lenharth760270d2005-02-07 23:02:23 +00001863
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001864 int i, j, k;
Jeff Cohen00b168892005-07-27 06:12:32 +00001865 if (EnableAlphaLSMark)
1866 getValueInfo(cast<SrcValueSDNode>(N.getOperand(3))->getValue(),
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001867 i, j, k);
Andrew Lenharthb69f3422005-06-22 17:19:45 +00001868
Andrew Lenharthcf8bf382005-07-01 19:12:13 +00001869 GlobalAddressSDNode *GASD = dyn_cast<GlobalAddressSDNode>(Address);
1870 if (GASD && !GASD->getGlobal()->isExternal()) {
1871 Tmp2 = MakeReg(MVT::i64);
1872 AlphaLowering.restoreGP(BB);
1873 BuildMI(BB, Alpha::LDAHr, 2, Tmp2)
1874 .addGlobalAddress(GASD->getGlobal()).addReg(Alpha::R29);
1875 if (EnableAlphaLSMark)
1876 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
1877 .addImm(getUID());
1878 BuildMI(BB, GetRelVersion(Opc), 3).addReg(Tmp1)
1879 .addGlobalAddress(GASD->getGlobal()).addReg(Tmp2);
Andrew Lenharthfce587e2005-06-29 00:39:17 +00001880 } else if(Address.getOpcode() == ISD::FrameIndex) {
Andrew Lenharthc7989ce2005-06-29 00:31:08 +00001881 if (EnableAlphaLSMark)
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001882 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
1883 .addImm(getUID());
Andrew Lenharth032f2352005-02-22 21:59:48 +00001884 BuildMI(BB, Opc, 3).addReg(Tmp1)
1885 .addFrameIndex(cast<FrameIndexSDNode>(Address)->getIndex())
1886 .addReg(Alpha::F31);
Andrew Lenharthc7989ce2005-06-29 00:31:08 +00001887 } else {
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001888 long offset;
1889 SelectAddr(Address, Tmp2, offset);
Andrew Lenharthc7989ce2005-06-29 00:31:08 +00001890 if (EnableAlphaLSMark)
Andrew Lenharth06ef8842005-06-29 18:54:02 +00001891 BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
1892 .addImm(getUID());
Andrew Lenharth63f2ab22005-02-10 06:25:22 +00001893 BuildMI(BB, Opc, 3).addReg(Tmp1).addImm(offset).addReg(Tmp2);
1894 }
Andrew Lenharthb014d3e2005-02-02 17:32:39 +00001895 return;
1896 }
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001897
1898 case ISD::EXTLOAD:
1899 case ISD::SEXTLOAD:
1900 case ISD::ZEXTLOAD:
1901 case ISD::LOAD:
1902 case ISD::CopyFromReg:
Chris Lattnerb5d8e6e2005-05-13 20:29:26 +00001903 case ISD::TAILCALL:
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001904 case ISD::CALL:
Andrew Lenharth032f2352005-02-22 21:59:48 +00001905 case ISD::DYNAMIC_STACKALLOC:
Andrew Lenharth6b9870a2005-01-28 14:06:46 +00001906 ExprMap.erase(N);
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001907 SelectExpr(N);
1908 return;
1909
Chris Lattner16cd04d2005-05-12 23:24:06 +00001910 case ISD::CALLSEQ_START:
1911 case ISD::CALLSEQ_END:
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001912 Select(N.getOperand(0));
1913 Tmp1 = cast<ConstantSDNode>(N.getOperand(1))->getValue();
Misha Brukman4633f1c2005-04-21 23:13:11 +00001914
Chris Lattner16cd04d2005-05-12 23:24:06 +00001915 Opc = N.getOpcode() == ISD::CALLSEQ_START ? Alpha::ADJUSTSTACKDOWN :
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001916 Alpha::ADJUSTSTACKUP;
1917 BuildMI(BB, Opc, 1).addImm(Tmp1);
1918 return;
Andrew Lenharth95762122005-03-31 21:24:06 +00001919
1920 case ISD::PCMARKER:
1921 Select(N.getOperand(0)); //Chain
Andrew Lenharthd4653b12005-06-27 17:39:17 +00001922 BuildMI(BB, Alpha::PCLABEL, 2)
1923 .addImm( cast<ConstantSDNode>(N.getOperand(1))->getValue());
Andrew Lenharth95762122005-03-31 21:24:06 +00001924 return;
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001925 }
1926 assert(0 && "Should not be reached!");
1927}
1928
1929
1930/// createAlphaPatternInstructionSelector - This pass converts an LLVM function
1931/// into a machine code representation using pattern matching and a machine
1932/// description file.
1933///
1934FunctionPass *llvm::createAlphaPatternInstructionSelector(TargetMachine &TM) {
Andrew Lenharthb69f3422005-06-22 17:19:45 +00001935 return new AlphaISel(TM);
Andrew Lenharth304d0f32005-01-22 23:41:55 +00001936}
Andrew Lenharth4f7cba52005-04-13 05:19:55 +00001937