blob: 4346a3f0797d415c9369c16918a26a7949f3d952 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- AlphaISelLowering.cpp - Alpha DAG Lowering Implementation ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the AlphaISelLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "AlphaISelLowering.h"
15#include "AlphaTargetMachine.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineFunction.h"
18#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000019#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner1b989192007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Constants.h"
23#include "llvm/Function.h"
24#include "llvm/Module.h"
Andrew Lenharthc69be952008-10-07 02:10:26 +000025#include "llvm/Intrinsics.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/Support/CommandLine.h"
27using namespace llvm;
28
29/// AddLiveIn - This helper function adds the specified physical register to the
30/// MachineFunction as a live in value. It also creates a corresponding virtual
31/// register for it.
32static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
33 TargetRegisterClass *RC) {
34 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner1b989192007-12-31 04:13:23 +000035 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
36 MF.getRegInfo().addLiveIn(PReg, VReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037 return VReg;
38}
39
40AlphaTargetLowering::AlphaTargetLowering(TargetMachine &TM) : TargetLowering(TM) {
41 // Set up the TargetLowering object.
42 //I am having problems with shr n ubyte 1
43 setShiftAmountType(MVT::i64);
Duncan Sands8cf4a822008-11-23 15:47:28 +000044 setBooleanContents(ZeroOrOneBooleanContent);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045
46 setUsesGlobalOffsetTable(true);
47
48 addRegisterClass(MVT::i64, Alpha::GPRCRegisterClass);
49 addRegisterClass(MVT::f64, Alpha::F8RCRegisterClass);
50 addRegisterClass(MVT::f32, Alpha::F4RCRegisterClass);
Andrew Lenharthc69be952008-10-07 02:10:26 +000051
52 // We want to custom lower some of our intrinsics.
53 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
54
Evan Cheng08c171a2008-10-14 21:26:46 +000055 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
56 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057
Evan Cheng08c171a2008-10-14 21:26:46 +000058 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
59 setLoadExtAction(ISD::ZEXTLOAD, MVT::i32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060
Evan Cheng08c171a2008-10-14 21:26:46 +000061 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
62 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
63 setLoadExtAction(ISD::SEXTLOAD, MVT::i16, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 // setOperationAction(ISD::BRIND, MVT::Other, Expand);
66 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
67 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
68 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
69
70 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
71
72 setOperationAction(ISD::FREM, MVT::f32, Expand);
73 setOperationAction(ISD::FREM, MVT::f64, Expand);
74
75 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
76 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
77 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
78 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
79
80 if (!TM.getSubtarget<AlphaSubtarget>().hasCT()) {
81 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
82 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
83 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
84 }
85 setOperationAction(ISD::BSWAP , MVT::i64, Expand);
86 setOperationAction(ISD::ROTL , MVT::i64, Expand);
87 setOperationAction(ISD::ROTR , MVT::i64, Expand);
88
89 setOperationAction(ISD::SREM , MVT::i64, Custom);
90 setOperationAction(ISD::UREM , MVT::i64, Custom);
91 setOperationAction(ISD::SDIV , MVT::i64, Custom);
92 setOperationAction(ISD::UDIV , MVT::i64, Custom);
93
Andrew Lenharthc69be952008-10-07 02:10:26 +000094 setOperationAction(ISD::ADDC , MVT::i64, Expand);
95 setOperationAction(ISD::ADDE , MVT::i64, Expand);
96 setOperationAction(ISD::SUBC , MVT::i64, Expand);
97 setOperationAction(ISD::SUBE , MVT::i64, Expand);
98
Chris Lattner418b09b2008-10-09 04:50:56 +000099 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
Andrew Lenharth11a2c5f2008-11-11 06:06:07 +0000100 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
Chris Lattner418b09b2008-10-09 04:50:56 +0000101
Andrew Lenharthc69be952008-10-07 02:10:26 +0000102
Dan Gohman2f7b1982007-10-11 23:21:31 +0000103 // We don't support sin/cos/sqrt/pow
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 setOperationAction(ISD::FSIN , MVT::f64, Expand);
105 setOperationAction(ISD::FCOS , MVT::f64, Expand);
106 setOperationAction(ISD::FSIN , MVT::f32, Expand);
107 setOperationAction(ISD::FCOS , MVT::f32, Expand);
108
109 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
110 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Dan Gohman2f7b1982007-10-11 23:21:31 +0000111
112 setOperationAction(ISD::FPOW , MVT::f32, Expand);
113 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000114
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 setOperationAction(ISD::SETCC, MVT::f32, Promote);
116
117 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Promote);
118
119 // We don't have line number support yet.
Dan Gohman472d12c2008-06-30 20:59:49 +0000120 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Dan Gohmanfa607c92008-07-01 00:05:16 +0000122 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
123 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124
125 // Not implemented yet.
126 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
127 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
128 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
129
Bill Wendlingfef06052008-09-16 21:48:12 +0000130 // We want to legalize GlobalAddress and ConstantPool and
131 // ExternalSymbols nodes into the appropriate instructions to
132 // materialize the address.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
134 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
Bill Wendlingfef06052008-09-16 21:48:12 +0000135 setOperationAction(ISD::ExternalSymbol, MVT::i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
137
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 setOperationAction(ISD::VASTART, MVT::Other, Custom);
139 setOperationAction(ISD::VAEND, MVT::Other, Expand);
140 setOperationAction(ISD::VACOPY, MVT::Other, Custom);
141 setOperationAction(ISD::VAARG, MVT::Other, Custom);
142 setOperationAction(ISD::VAARG, MVT::i32, Custom);
143
144 setOperationAction(ISD::RET, MVT::Other, Custom);
145
146 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
147 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
148
149 setStackPointerRegisterToSaveRestore(Alpha::R30);
150
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000151 addLegalFPImmediate(APFloat(+0.0)); //F31
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000152 addLegalFPImmediate(APFloat(+0.0f)); //F31
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000153 addLegalFPImmediate(APFloat(-0.0)); //-F31
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000154 addLegalFPImmediate(APFloat(-0.0f)); //-F31
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155
156 setJumpBufSize(272);
157 setJumpBufAlignment(16);
158
159 computeRegisterProperties();
160}
161
Duncan Sands4a361272009-01-01 15:52:00 +0000162MVT AlphaTargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel502151f2008-03-10 15:42:14 +0000163 return MVT::i64;
164}
165
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166const char *AlphaTargetLowering::getTargetNodeName(unsigned Opcode) const {
167 switch (Opcode) {
168 default: return 0;
169 case AlphaISD::CVTQT_: return "Alpha::CVTQT_";
170 case AlphaISD::CVTQS_: return "Alpha::CVTQS_";
171 case AlphaISD::CVTTQ_: return "Alpha::CVTTQ_";
172 case AlphaISD::GPRelHi: return "Alpha::GPRelHi";
173 case AlphaISD::GPRelLo: return "Alpha::GPRelLo";
174 case AlphaISD::RelLit: return "Alpha::RelLit";
175 case AlphaISD::GlobalRetAddr: return "Alpha::GlobalRetAddr";
176 case AlphaISD::CALL: return "Alpha::CALL";
177 case AlphaISD::DivCall: return "Alpha::DivCall";
178 case AlphaISD::RET_FLAG: return "Alpha::RET_FLAG";
179 case AlphaISD::COND_BRANCH_I: return "Alpha::COND_BRANCH_I";
180 case AlphaISD::COND_BRANCH_F: return "Alpha::COND_BRANCH_F";
181 }
182}
183
Dan Gohman8181bd12008-07-27 21:46:04 +0000184static SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Duncan Sands92c43912008-06-06 12:08:01 +0000185 MVT PtrVT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +0000187 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
188 SDValue Zero = DAG.getConstant(0, PtrVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189
Dan Gohman8181bd12008-07-27 21:46:04 +0000190 SDValue Hi = DAG.getNode(AlphaISD::GPRelHi, MVT::i64, JTI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i64));
Dan Gohman8181bd12008-07-27 21:46:04 +0000192 SDValue Lo = DAG.getNode(AlphaISD::GPRelLo, MVT::i64, JTI, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 return Lo;
194}
195
196//http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/
197//AA-PY8AC-TET1_html/callCH3.html#BLOCK21
198
199//For now, just use variable size stack frame format
200
201//In a standard call, the first six items are passed in registers $16
202//- $21 and/or registers $f16 - $f21. (See Section 4.1.2 for details
203//of argument-to-register correspondence.) The remaining items are
204//collected in a memory argument list that is a naturally aligned
205//array of quadwords. In a standard call, this list, if present, must
206//be passed at 0(SP).
207//7 ... n 0(SP) ... (n-7)*8(SP)
208
209// //#define FP $15
210// //#define RA $26
211// //#define PV $27
212// //#define GP $29
213// //#define SP $30
214
Dan Gohman8181bd12008-07-27 21:46:04 +0000215static SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 int &VarArgsBase,
217 int &VarArgsOffset) {
218 MachineFunction &MF = DAG.getMachineFunction();
219 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman8181bd12008-07-27 21:46:04 +0000220 std::vector<SDValue> ArgValues;
221 SDValue Root = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222
223 AddLiveIn(MF, Alpha::R29, &Alpha::GPRCRegClass); //GP
224 AddLiveIn(MF, Alpha::R26, &Alpha::GPRCRegClass); //RA
225
226 unsigned args_int[] = {
227 Alpha::R16, Alpha::R17, Alpha::R18, Alpha::R19, Alpha::R20, Alpha::R21};
228 unsigned args_float[] = {
229 Alpha::F16, Alpha::F17, Alpha::F18, Alpha::F19, Alpha::F20, Alpha::F21};
230
Gabor Greif1c80d112008-08-28 21:40:38 +0000231 for (unsigned ArgNo = 0, e = Op.getNode()->getNumValues()-1; ArgNo != e; ++ArgNo) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000232 SDValue argt;
Duncan Sands92c43912008-06-06 12:08:01 +0000233 MVT ObjectVT = Op.getValue(ArgNo).getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +0000234 SDValue ArgVal;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235
236 if (ArgNo < 6) {
Duncan Sands92c43912008-06-06 12:08:01 +0000237 switch (ObjectVT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 default:
Duncan Sands92c43912008-06-06 12:08:01 +0000239 assert(false && "Invalid value type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 case MVT::f64:
241 args_float[ArgNo] = AddLiveIn(MF, args_float[ArgNo],
242 &Alpha::F8RCRegClass);
243 ArgVal = DAG.getCopyFromReg(Root, args_float[ArgNo], ObjectVT);
244 break;
245 case MVT::f32:
246 args_float[ArgNo] = AddLiveIn(MF, args_float[ArgNo],
247 &Alpha::F4RCRegClass);
248 ArgVal = DAG.getCopyFromReg(Root, args_float[ArgNo], ObjectVT);
249 break;
250 case MVT::i64:
251 args_int[ArgNo] = AddLiveIn(MF, args_int[ArgNo],
252 &Alpha::GPRCRegClass);
253 ArgVal = DAG.getCopyFromReg(Root, args_int[ArgNo], MVT::i64);
254 break;
255 }
256 } else { //more args
257 // Create the frame index object for this incoming parameter...
258 int FI = MFI->CreateFixedObject(8, 8 * (ArgNo - 6));
259
260 // Create the SelectionDAG nodes corresponding to a load
261 //from this parameter
Dan Gohman8181bd12008-07-27 21:46:04 +0000262 SDValue FIN = DAG.getFrameIndex(FI, MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 ArgVal = DAG.getLoad(ObjectVT, Root, FIN, NULL, 0);
264 }
265 ArgValues.push_back(ArgVal);
266 }
267
268 // If the functions takes variable number of arguments, copy all regs to stack
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000269 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 if (isVarArg) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000271 VarArgsOffset = (Op.getNode()->getNumValues()-1) * 8;
Dan Gohman8181bd12008-07-27 21:46:04 +0000272 std::vector<SDValue> LS;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273 for (int i = 0; i < 6; ++i) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000274 if (TargetRegisterInfo::isPhysicalRegister(args_int[i]))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 args_int[i] = AddLiveIn(MF, args_int[i], &Alpha::GPRCRegClass);
Dan Gohman8181bd12008-07-27 21:46:04 +0000276 SDValue argt = DAG.getCopyFromReg(Root, args_int[i], MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277 int FI = MFI->CreateFixedObject(8, -8 * (6 - i));
278 if (i == 0) VarArgsBase = FI;
Dan Gohman8181bd12008-07-27 21:46:04 +0000279 SDValue SDFI = DAG.getFrameIndex(FI, MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000280 LS.push_back(DAG.getStore(Root, argt, SDFI, NULL, 0));
281
Dan Gohman1e57df32008-02-10 18:45:23 +0000282 if (TargetRegisterInfo::isPhysicalRegister(args_float[i]))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 args_float[i] = AddLiveIn(MF, args_float[i], &Alpha::F8RCRegClass);
284 argt = DAG.getCopyFromReg(Root, args_float[i], MVT::f64);
285 FI = MFI->CreateFixedObject(8, - 8 * (12 - i));
286 SDFI = DAG.getFrameIndex(FI, MVT::i64);
287 LS.push_back(DAG.getStore(Root, argt, SDFI, NULL, 0));
288 }
289
290 //Set up a token factor with all the stack traffic
291 Root = DAG.getNode(ISD::TokenFactor, MVT::Other, &LS[0], LS.size());
292 }
293
294 ArgValues.push_back(Root);
295
296 // Return the new list of results.
Duncan Sands42d7bb82008-12-01 11:41:29 +0000297 return DAG.getNode(ISD::MERGE_VALUES, Op.getNode()->getVTList(),
298 &ArgValues[0], ArgValues.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299}
300
Dan Gohman8181bd12008-07-27 21:46:04 +0000301static SDValue LowerRET(SDValue Op, SelectionDAG &DAG) {
302 SDValue Copy = DAG.getCopyToReg(Op.getOperand(0), Alpha::R26,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 DAG.getNode(AlphaISD::GlobalRetAddr,
304 MVT::i64),
Dan Gohman8181bd12008-07-27 21:46:04 +0000305 SDValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 switch (Op.getNumOperands()) {
307 default:
308 assert(0 && "Do not know how to return this many arguments!");
309 abort();
310 case 1:
311 break;
Dan Gohman8181bd12008-07-27 21:46:04 +0000312 //return SDValue(); // ret void is legal
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313 case 3: {
Duncan Sands92c43912008-06-06 12:08:01 +0000314 MVT ArgVT = Op.getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 unsigned ArgReg;
Duncan Sands92c43912008-06-06 12:08:01 +0000316 if (ArgVT.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 ArgReg = Alpha::R0;
318 else {
Duncan Sands92c43912008-06-06 12:08:01 +0000319 assert(ArgVT.isFloatingPoint());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 ArgReg = Alpha::F0;
321 }
322 Copy = DAG.getCopyToReg(Copy, ArgReg, Op.getOperand(1), Copy.getValue(1));
Chris Lattner1b989192007-12-31 04:13:23 +0000323 if (DAG.getMachineFunction().getRegInfo().liveout_empty())
324 DAG.getMachineFunction().getRegInfo().addLiveOut(ArgReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000325 break;
326 }
Andrew Lenharthc69be952008-10-07 02:10:26 +0000327 case 5: {
328 MVT ArgVT = Op.getOperand(1).getValueType();
329 unsigned ArgReg1, ArgReg2;
330 if (ArgVT.isInteger()) {
331 ArgReg1 = Alpha::R0;
332 ArgReg2 = Alpha::R1;
333 } else {
334 assert(ArgVT.isFloatingPoint());
335 ArgReg1 = Alpha::F0;
336 ArgReg2 = Alpha::F1;
337 }
338 Copy = DAG.getCopyToReg(Copy, ArgReg1, Op.getOperand(1), Copy.getValue(1));
339 if (std::find(DAG.getMachineFunction().getRegInfo().liveout_begin(),
340 DAG.getMachineFunction().getRegInfo().liveout_end(), ArgReg1)
341 == DAG.getMachineFunction().getRegInfo().liveout_end())
342 DAG.getMachineFunction().getRegInfo().addLiveOut(ArgReg1);
343 Copy = DAG.getCopyToReg(Copy, ArgReg2, Op.getOperand(3), Copy.getValue(1));
344 if (std::find(DAG.getMachineFunction().getRegInfo().liveout_begin(),
345 DAG.getMachineFunction().getRegInfo().liveout_end(), ArgReg2)
346 == DAG.getMachineFunction().getRegInfo().liveout_end())
347 DAG.getMachineFunction().getRegInfo().addLiveOut(ArgReg2);
348 break;
349 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350 }
351 return DAG.getNode(AlphaISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
352}
353
Dan Gohman8181bd12008-07-27 21:46:04 +0000354std::pair<SDValue, SDValue>
355AlphaTargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
Duncan Sandsead972e2008-02-14 17:28:50 +0000356 bool RetSExt, bool RetZExt, bool isVarArg,
Dale Johannesen67cc9b62008-09-26 19:31:26 +0000357 bool isInreg, unsigned CallingConv,
358 bool isTailCall, SDValue Callee,
Dale Johannesenca6237b2009-01-30 23:10:59 +0000359 ArgListTy &Args, SelectionDAG &DAG,
360 DebugLoc dl) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361 int NumBytes = 0;
362 if (Args.size() > 6)
363 NumBytes = (Args.size() - 6) * 8;
364
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000365 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohman8181bd12008-07-27 21:46:04 +0000366 std::vector<SDValue> args_to_use;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 for (unsigned i = 0, e = Args.size(); i != e; ++i)
368 {
Duncan Sands92c43912008-06-06 12:08:01 +0000369 switch (getValueType(Args[i].Ty).getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 default: assert(0 && "Unexpected ValueType for argument!");
371 case MVT::i1:
372 case MVT::i8:
373 case MVT::i16:
374 case MVT::i32:
375 // Promote the integer to 64 bits. If the input type is signed use a
376 // sign extend, otherwise use a zero extend.
377 if (Args[i].isSExt)
Dale Johannesenca6237b2009-01-30 23:10:59 +0000378 Args[i].Node = DAG.getNode(ISD::SIGN_EXTEND, dl,
379 MVT::i64, Args[i].Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380 else if (Args[i].isZExt)
Dale Johannesenca6237b2009-01-30 23:10:59 +0000381 Args[i].Node = DAG.getNode(ISD::ZERO_EXTEND, dl,
382 MVT::i64, Args[i].Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 else
Dale Johannesenca6237b2009-01-30 23:10:59 +0000384 Args[i].Node = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, Args[i].Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000385 break;
386 case MVT::i64:
387 case MVT::f64:
388 case MVT::f32:
389 break;
390 }
391 args_to_use.push_back(Args[i].Node);
392 }
393
Duncan Sands92c43912008-06-06 12:08:01 +0000394 std::vector<MVT> RetVals;
395 MVT RetTyVT = getValueType(RetTy);
396 MVT ActualRetTyVT = RetTyVT;
Duncan Sandsec142ee2008-06-08 20:54:56 +0000397 if (RetTyVT.getSimpleVT() >= MVT::i1 && RetTyVT.getSimpleVT() <= MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 ActualRetTyVT = MVT::i64;
399
400 if (RetTyVT != MVT::isVoid)
401 RetVals.push_back(ActualRetTyVT);
402 RetVals.push_back(MVT::Other);
403
Dan Gohman8181bd12008-07-27 21:46:04 +0000404 std::vector<SDValue> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405 Ops.push_back(Chain);
406 Ops.push_back(Callee);
407 Ops.insert(Ops.end(), args_to_use.begin(), args_to_use.end());
Dale Johannesenca6237b2009-01-30 23:10:59 +0000408 SDValue TheCall = DAG.getNode(AlphaISD::CALL, dl,
409 RetVals, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 Chain = TheCall.getValue(RetTyVT != MVT::isVoid);
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000411 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
412 DAG.getIntPtrConstant(0, true), SDValue());
Dan Gohman8181bd12008-07-27 21:46:04 +0000413 SDValue RetVal = TheCall;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414
415 if (RetTyVT != ActualRetTyVT) {
Duncan Sandsead972e2008-02-14 17:28:50 +0000416 ISD::NodeType AssertKind = ISD::DELETED_NODE;
417 if (RetSExt)
418 AssertKind = ISD::AssertSext;
419 else if (RetZExt)
420 AssertKind = ISD::AssertZext;
421
422 if (AssertKind != ISD::DELETED_NODE)
Dale Johannesenca6237b2009-01-30 23:10:59 +0000423 RetVal = DAG.getNode(AssertKind, dl, MVT::i64, RetVal,
Duncan Sandsead972e2008-02-14 17:28:50 +0000424 DAG.getValueType(RetTyVT));
425
Dale Johannesenca6237b2009-01-30 23:10:59 +0000426 RetVal = DAG.getNode(ISD::TRUNCATE, dl, RetTyVT, RetVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 }
428
429 return std::make_pair(RetVal, Chain);
430}
431
Dan Gohman8181bd12008-07-27 21:46:04 +0000432void AlphaTargetLowering::LowerVAARG(SDNode *N, SDValue &Chain,
433 SDValue &DataPtr, SelectionDAG &DAG) {
Duncan Sandsac496a12008-07-04 11:47:58 +0000434 Chain = N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +0000435 SDValue VAListP = N->getOperand(1);
Duncan Sandsac496a12008-07-04 11:47:58 +0000436 const Value *VAListS = cast<SrcValueSDNode>(N->getOperand(2))->getValue();
Dale Johannesen85fc0932009-02-04 01:48:28 +0000437 DebugLoc dl = N->getDebugLoc();
Duncan Sandsac496a12008-07-04 11:47:58 +0000438
Dale Johannesen85fc0932009-02-04 01:48:28 +0000439 SDValue Base = DAG.getLoad(MVT::i64, dl, Chain, VAListP, VAListS, 0);
440 SDValue Tmp = DAG.getNode(ISD::ADD, dl, MVT::i64, VAListP,
Duncan Sandsac496a12008-07-04 11:47:58 +0000441 DAG.getConstant(8, MVT::i64));
Dale Johannesen85fc0932009-02-04 01:48:28 +0000442 SDValue Offset = DAG.getExtLoad(ISD::SEXTLOAD, dl, MVT::i64, Base.getValue(1),
Duncan Sandsac496a12008-07-04 11:47:58 +0000443 Tmp, NULL, 0, MVT::i32);
Dale Johannesen85fc0932009-02-04 01:48:28 +0000444 DataPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Base, Offset);
Duncan Sandsac496a12008-07-04 11:47:58 +0000445 if (N->getValueType(0).isFloatingPoint())
446 {
447 //if fp && Offset < 6*8, then subtract 6*8 from DataPtr
Dale Johannesen85fc0932009-02-04 01:48:28 +0000448 SDValue FPDataPtr = DAG.getNode(ISD::SUB, dl, MVT::i64, DataPtr,
Duncan Sandsac496a12008-07-04 11:47:58 +0000449 DAG.getConstant(8*6, MVT::i64));
Dale Johannesen85fc0932009-02-04 01:48:28 +0000450 SDValue CC = DAG.getSetCC(dl, MVT::i64, Offset,
Duncan Sandsac496a12008-07-04 11:47:58 +0000451 DAG.getConstant(8*6, MVT::i64), ISD::SETLT);
Dale Johannesen85fc0932009-02-04 01:48:28 +0000452 DataPtr = DAG.getNode(ISD::SELECT, dl, MVT::i64, CC, FPDataPtr, DataPtr);
Duncan Sandsac496a12008-07-04 11:47:58 +0000453 }
454
Dale Johannesen85fc0932009-02-04 01:48:28 +0000455 SDValue NewOffset = DAG.getNode(ISD::ADD, dl, MVT::i64, Offset,
Duncan Sandsac496a12008-07-04 11:47:58 +0000456 DAG.getConstant(8, MVT::i64));
Dale Johannesen85fc0932009-02-04 01:48:28 +0000457 Chain = DAG.getTruncStore(Offset.getValue(1), dl, NewOffset, Tmp, NULL, 0,
Duncan Sandsac496a12008-07-04 11:47:58 +0000458 MVT::i32);
459}
460
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461/// LowerOperation - Provide custom lowering hooks for some operations.
462///
Dan Gohman8181bd12008-07-27 21:46:04 +0000463SDValue AlphaTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 switch (Op.getOpcode()) {
465 default: assert(0 && "Wasn't expecting to be able to lower this!");
466 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG,
467 VarArgsBase,
468 VarArgsOffset);
469
470 case ISD::RET: return LowerRET(Op,DAG);
471 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
472
Andrew Lenharthc69be952008-10-07 02:10:26 +0000473 case ISD::INTRINSIC_WO_CHAIN: {
474 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
475 switch (IntNo) {
476 default: break; // Don't custom lower most intrinsics.
477 case Intrinsic::alpha_umulh:
478 return DAG.getNode(ISD::MULHU, MVT::i64, Op.getOperand(1), Op.getOperand(2));
479 }
480 }
481
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 case ISD::SINT_TO_FP: {
Duncan Sands92c43912008-06-06 12:08:01 +0000483 assert(Op.getOperand(0).getValueType() == MVT::i64 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 "Unhandled SINT_TO_FP type in custom expander!");
Dan Gohman8181bd12008-07-27 21:46:04 +0000485 SDValue LD;
Duncan Sands92c43912008-06-06 12:08:01 +0000486 bool isDouble = Op.getValueType() == MVT::f64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 LD = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, Op.getOperand(0));
Dan Gohman8181bd12008-07-27 21:46:04 +0000488 SDValue FP = DAG.getNode(isDouble?AlphaISD::CVTQT_:AlphaISD::CVTQS_,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 isDouble?MVT::f64:MVT::f32, LD);
490 return FP;
491 }
492 case ISD::FP_TO_SINT: {
Duncan Sands92c43912008-06-06 12:08:01 +0000493 bool isDouble = Op.getOperand(0).getValueType() == MVT::f64;
Dan Gohman8181bd12008-07-27 21:46:04 +0000494 SDValue src = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495
496 if (!isDouble) //Promote
497 src = DAG.getNode(ISD::FP_EXTEND, MVT::f64, src);
498
499 src = DAG.getNode(AlphaISD::CVTTQ_, MVT::f64, src);
500
501 return DAG.getNode(ISD::BIT_CONVERT, MVT::i64, src);
502 }
503 case ISD::ConstantPool: {
504 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
505 Constant *C = CP->getConstVal();
Dan Gohman8181bd12008-07-27 21:46:04 +0000506 SDValue CPI = DAG.getTargetConstantPool(C, MVT::i64, CP->getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507
Dan Gohman8181bd12008-07-27 21:46:04 +0000508 SDValue Hi = DAG.getNode(AlphaISD::GPRelHi, MVT::i64, CPI,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509 DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i64));
Dan Gohman8181bd12008-07-27 21:46:04 +0000510 SDValue Lo = DAG.getNode(AlphaISD::GPRelLo, MVT::i64, CPI, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 return Lo;
512 }
513 case ISD::GlobalTLSAddress:
514 assert(0 && "TLS not implemented for Alpha.");
515 case ISD::GlobalAddress: {
516 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
517 GlobalValue *GV = GSDN->getGlobal();
Dan Gohman8181bd12008-07-27 21:46:04 +0000518 SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i64, GSDN->getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519
520 // if (!GV->hasWeakLinkage() && !GV->isDeclaration() && !GV->hasLinkOnceLinkage()) {
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000521 if (GV->hasLocalLinkage()) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000522 SDValue Hi = DAG.getNode(AlphaISD::GPRelHi, MVT::i64, GA,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523 DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i64));
Dan Gohman8181bd12008-07-27 21:46:04 +0000524 SDValue Lo = DAG.getNode(AlphaISD::GPRelLo, MVT::i64, GA, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525 return Lo;
526 } else
527 return DAG.getNode(AlphaISD::RelLit, MVT::i64, GA,
528 DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i64));
529 }
Bill Wendlingfef06052008-09-16 21:48:12 +0000530 case ISD::ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 return DAG.getNode(AlphaISD::RelLit, MVT::i64,
Bill Wendlingfef06052008-09-16 21:48:12 +0000532 DAG.getTargetExternalSymbol(cast<ExternalSymbolSDNode>(Op)
533 ->getSymbol(), MVT::i64),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i64));
535 }
Bill Wendlingfef06052008-09-16 21:48:12 +0000536
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537 case ISD::UREM:
538 case ISD::SREM:
539 //Expand only on constant case
540 if (Op.getOperand(1).getOpcode() == ISD::Constant) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000541 MVT VT = Op.getNode()->getValueType(0);
542 SDValue Tmp1 = Op.getNode()->getOpcode() == ISD::UREM ?
543 BuildUDIV(Op.getNode(), DAG, NULL) :
544 BuildSDIV(Op.getNode(), DAG, NULL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545 Tmp1 = DAG.getNode(ISD::MUL, VT, Tmp1, Op.getOperand(1));
546 Tmp1 = DAG.getNode(ISD::SUB, VT, Op.getOperand(0), Tmp1);
547 return Tmp1;
548 }
549 //fall through
550 case ISD::SDIV:
551 case ISD::UDIV:
Duncan Sands92c43912008-06-06 12:08:01 +0000552 if (Op.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553 if (Op.getOperand(1).getOpcode() == ISD::Constant)
Gabor Greif1c80d112008-08-28 21:40:38 +0000554 return Op.getOpcode() == ISD::SDIV ? BuildSDIV(Op.getNode(), DAG, NULL)
555 : BuildUDIV(Op.getNode(), DAG, NULL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 const char* opstr = 0;
557 switch (Op.getOpcode()) {
558 case ISD::UREM: opstr = "__remqu"; break;
559 case ISD::SREM: opstr = "__remq"; break;
560 case ISD::UDIV: opstr = "__divqu"; break;
561 case ISD::SDIV: opstr = "__divq"; break;
562 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000563 SDValue Tmp1 = Op.getOperand(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564 Tmp2 = Op.getOperand(1),
Bill Wendlingfef06052008-09-16 21:48:12 +0000565 Addr = DAG.getExternalSymbol(opstr, MVT::i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 return DAG.getNode(AlphaISD::DivCall, MVT::i64, Addr, Tmp1, Tmp2);
567 }
568 break;
569
570 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000571 SDValue Chain, DataPtr;
Gabor Greif1c80d112008-08-28 21:40:38 +0000572 LowerVAARG(Op.getNode(), Chain, DataPtr, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573
Dan Gohman8181bd12008-07-27 21:46:04 +0000574 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 if (Op.getValueType() == MVT::i32)
Duncan Sandsac496a12008-07-04 11:47:58 +0000576 Result = DAG.getExtLoad(ISD::SEXTLOAD, MVT::i64, Chain, DataPtr,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 NULL, 0, MVT::i32);
578 else
Duncan Sandsac496a12008-07-04 11:47:58 +0000579 Result = DAG.getLoad(Op.getValueType(), Chain, DataPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580 return Result;
581 }
582 case ISD::VACOPY: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000583 SDValue Chain = Op.getOperand(0);
584 SDValue DestP = Op.getOperand(1);
585 SDValue SrcP = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +0000586 const Value *DestS = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
587 const Value *SrcS = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588
Dan Gohman8181bd12008-07-27 21:46:04 +0000589 SDValue Val = DAG.getLoad(getPointerTy(), Chain, SrcP, SrcS, 0);
590 SDValue Result = DAG.getStore(Val.getValue(1), Val, DestP, DestS, 0);
591 SDValue NP = DAG.getNode(ISD::ADD, MVT::i64, SrcP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 DAG.getConstant(8, MVT::i64));
593 Val = DAG.getExtLoad(ISD::SEXTLOAD, MVT::i64, Result, NP, NULL,0, MVT::i32);
Dan Gohman8181bd12008-07-27 21:46:04 +0000594 SDValue NPD = DAG.getNode(ISD::ADD, MVT::i64, DestP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 DAG.getConstant(8, MVT::i64));
596 return DAG.getTruncStore(Val.getValue(1), Val, NPD, NULL, 0, MVT::i32);
597 }
598 case ISD::VASTART: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000599 SDValue Chain = Op.getOperand(0);
600 SDValue VAListP = Op.getOperand(1);
Dan Gohman12a9c082008-02-06 22:27:42 +0000601 const Value *VAListS = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000602
603 // vastart stores the address of the VarArgsBase and VarArgsOffset
Dan Gohman8181bd12008-07-27 21:46:04 +0000604 SDValue FR = DAG.getFrameIndex(VarArgsBase, MVT::i64);
605 SDValue S1 = DAG.getStore(Chain, FR, VAListP, VAListS, 0);
606 SDValue SA2 = DAG.getNode(ISD::ADD, MVT::i64, VAListP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607 DAG.getConstant(8, MVT::i64));
608 return DAG.getTruncStore(S1, DAG.getConstant(VarArgsOffset, MVT::i64),
609 SA2, NULL, 0, MVT::i32);
610 }
611 case ISD::RETURNADDR:
612 return DAG.getNode(AlphaISD::GlobalRetAddr, MVT::i64);
613 //FIXME: implement
614 case ISD::FRAMEADDR: break;
615 }
616
Dan Gohman8181bd12008-07-27 21:46:04 +0000617 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618}
619
Duncan Sands7d9834b2008-12-01 11:39:25 +0000620void AlphaTargetLowering::ReplaceNodeResults(SDNode *N,
621 SmallVectorImpl<SDValue>&Results,
622 SelectionDAG &DAG) {
Duncan Sandsac496a12008-07-04 11:47:58 +0000623 assert(N->getValueType(0) == MVT::i32 &&
624 N->getOpcode() == ISD::VAARG &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 "Unknown node to custom promote!");
Duncan Sandsac496a12008-07-04 11:47:58 +0000626
Dan Gohman8181bd12008-07-27 21:46:04 +0000627 SDValue Chain, DataPtr;
Duncan Sandsac496a12008-07-04 11:47:58 +0000628 LowerVAARG(N, Chain, DataPtr, DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +0000629 SDValue Res = DAG.getLoad(N->getValueType(0), Chain, DataPtr, NULL, 0);
630 Results.push_back(Res);
631 Results.push_back(SDValue(Res.getNode(), 1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632}
633
634
635//Inline Asm
636
637/// getConstraintType - Given a constraint letter, return the type of
638/// constraint it is for this target.
639AlphaTargetLowering::ConstraintType
640AlphaTargetLowering::getConstraintType(const std::string &Constraint) const {
641 if (Constraint.size() == 1) {
642 switch (Constraint[0]) {
643 default: break;
644 case 'f':
645 case 'r':
646 return C_RegisterClass;
647 }
648 }
649 return TargetLowering::getConstraintType(Constraint);
650}
651
652std::vector<unsigned> AlphaTargetLowering::
653getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +0000654 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 if (Constraint.size() == 1) {
656 switch (Constraint[0]) {
657 default: break; // Unknown constriant letter
658 case 'f':
659 return make_vector<unsigned>(Alpha::F0 , Alpha::F1 , Alpha::F2 ,
660 Alpha::F3 , Alpha::F4 , Alpha::F5 ,
661 Alpha::F6 , Alpha::F7 , Alpha::F8 ,
662 Alpha::F9 , Alpha::F10, Alpha::F11,
663 Alpha::F12, Alpha::F13, Alpha::F14,
664 Alpha::F15, Alpha::F16, Alpha::F17,
665 Alpha::F18, Alpha::F19, Alpha::F20,
666 Alpha::F21, Alpha::F22, Alpha::F23,
667 Alpha::F24, Alpha::F25, Alpha::F26,
668 Alpha::F27, Alpha::F28, Alpha::F29,
669 Alpha::F30, Alpha::F31, 0);
670 case 'r':
671 return make_vector<unsigned>(Alpha::R0 , Alpha::R1 , Alpha::R2 ,
672 Alpha::R3 , Alpha::R4 , Alpha::R5 ,
673 Alpha::R6 , Alpha::R7 , Alpha::R8 ,
674 Alpha::R9 , Alpha::R10, Alpha::R11,
675 Alpha::R12, Alpha::R13, Alpha::R14,
676 Alpha::R15, Alpha::R16, Alpha::R17,
677 Alpha::R18, Alpha::R19, Alpha::R20,
678 Alpha::R21, Alpha::R22, Alpha::R23,
679 Alpha::R24, Alpha::R25, Alpha::R26,
680 Alpha::R27, Alpha::R28, Alpha::R29,
681 Alpha::R30, Alpha::R31, 0);
682 }
683 }
684
685 return std::vector<unsigned>();
686}
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000687//===----------------------------------------------------------------------===//
688// Other Lowering Code
689//===----------------------------------------------------------------------===//
690
691MachineBasicBlock *
692AlphaTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
693 MachineBasicBlock *BB) {
694 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
695 assert((MI->getOpcode() == Alpha::CAS32 ||
696 MI->getOpcode() == Alpha::CAS64 ||
697 MI->getOpcode() == Alpha::LAS32 ||
698 MI->getOpcode() == Alpha::LAS64 ||
699 MI->getOpcode() == Alpha::SWAP32 ||
700 MI->getOpcode() == Alpha::SWAP64) &&
701 "Unexpected instr type to insert");
702
703 bool is32 = MI->getOpcode() == Alpha::CAS32 ||
704 MI->getOpcode() == Alpha::LAS32 ||
705 MI->getOpcode() == Alpha::SWAP32;
706
707 //Load locked store conditional for atomic ops take on the same form
708 //start:
709 //ll
710 //do stuff (maybe branch to exit)
711 //sc
712 //test sc and maybe branck to start
713 //exit:
714 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +0000715 MachineFunction::iterator It = BB;
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000716 ++It;
717
718 MachineBasicBlock *thisMBB = BB;
Dan Gohman221a4372008-07-07 23:14:23 +0000719 MachineFunction *F = BB->getParent();
720 MachineBasicBlock *llscMBB = F->CreateMachineBasicBlock(LLVM_BB);
721 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000722
Dan Gohmanafc94df2008-06-21 20:21:19 +0000723 sinkMBB->transferSuccessors(thisMBB);
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000724
Dan Gohman221a4372008-07-07 23:14:23 +0000725 F->insert(It, llscMBB);
726 F->insert(It, sinkMBB);
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000727
728 BuildMI(thisMBB, TII->get(Alpha::BR)).addMBB(llscMBB);
729
730 unsigned reg_res = MI->getOperand(0).getReg(),
731 reg_ptr = MI->getOperand(1).getReg(),
732 reg_v2 = MI->getOperand(2).getReg(),
733 reg_store = F->getRegInfo().createVirtualRegister(&Alpha::GPRCRegClass);
734
735 BuildMI(llscMBB, TII->get(is32 ? Alpha::LDL_L : Alpha::LDQ_L),
736 reg_res).addImm(0).addReg(reg_ptr);
737 switch (MI->getOpcode()) {
738 case Alpha::CAS32:
739 case Alpha::CAS64: {
740 unsigned reg_cmp
741 = F->getRegInfo().createVirtualRegister(&Alpha::GPRCRegClass);
742 BuildMI(llscMBB, TII->get(Alpha::CMPEQ), reg_cmp)
743 .addReg(reg_v2).addReg(reg_res);
744 BuildMI(llscMBB, TII->get(Alpha::BEQ))
745 .addImm(0).addReg(reg_cmp).addMBB(sinkMBB);
746 BuildMI(llscMBB, TII->get(Alpha::BISr), reg_store)
747 .addReg(Alpha::R31).addReg(MI->getOperand(3).getReg());
748 break;
749 }
750 case Alpha::LAS32:
751 case Alpha::LAS64: {
752 BuildMI(llscMBB, TII->get(is32 ? Alpha::ADDLr : Alpha::ADDQr), reg_store)
753 .addReg(reg_res).addReg(reg_v2);
754 break;
755 }
756 case Alpha::SWAP32:
757 case Alpha::SWAP64: {
758 BuildMI(llscMBB, TII->get(Alpha::BISr), reg_store)
759 .addReg(reg_v2).addReg(reg_v2);
760 break;
761 }
762 }
763 BuildMI(llscMBB, TII->get(is32 ? Alpha::STL_C : Alpha::STQ_C), reg_store)
764 .addReg(reg_store).addImm(0).addReg(reg_ptr);
765 BuildMI(llscMBB, TII->get(Alpha::BEQ))
766 .addImm(0).addReg(reg_store).addMBB(llscMBB);
767 BuildMI(llscMBB, TII->get(Alpha::BR)).addMBB(sinkMBB);
768
769 thisMBB->addSuccessor(llscMBB);
770 llscMBB->addSuccessor(llscMBB);
771 llscMBB->addSuccessor(sinkMBB);
Dan Gohman221a4372008-07-07 23:14:23 +0000772 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Andrew Lenharthe44f3902008-02-21 06:45:13 +0000773
774 return sinkMBB;
775}
Dan Gohman36322c72008-10-18 02:06:02 +0000776
777bool
778AlphaTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
779 // The Alpha target isn't yet aware of offsets.
780 return false;
781}