blob: 3e5024ac61b94905e8b787b3a623bcec8f48de72 [file] [log] [blame]
Chris Lattnerd23405e2008-03-17 03:21:36 +00001//===-- SparcISelLowering.cpp - Sparc DAG Lowering Implementation ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the interfaces that Sparc uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#include "SparcISelLowering.h"
16#include "SparcTargetMachine.h"
Dan Gohman1e93df62010-04-17 14:41:14 +000017#include "SparcMachineFunctionInfo.h"
Chris Lattnerd23405e2008-03-17 03:21:36 +000018#include "llvm/Function.h"
Chris Lattner5a65b922008-03-17 05:41:48 +000019#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerd23405e2008-03-17 03:21:36 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
21#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
23#include "llvm/CodeGen/MachineRegisterInfo.h"
24#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000025#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Anton Korobeynikov0eefda12008-10-10 20:28:10 +000026#include "llvm/ADT/VectorExtras.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000027#include "llvm/Support/ErrorHandling.h"
Chris Lattnerd23405e2008-03-17 03:21:36 +000028using namespace llvm;
29
Chris Lattner5a65b922008-03-17 05:41:48 +000030
31//===----------------------------------------------------------------------===//
32// Calling Convention Implementation
33//===----------------------------------------------------------------------===//
34
35#include "SparcGenCallingConv.inc"
36
Dan Gohman98ca4f22009-08-05 01:29:28 +000037SDValue
38SparcTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000039 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +000040 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +000041 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +000042 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +000043
Chris Lattner5a65b922008-03-17 05:41:48 +000044 // CCValAssign - represent the assignment of the return value to locations.
45 SmallVector<CCValAssign, 16> RVLocs;
Anton Korobeynikov53835702008-10-10 20:27:31 +000046
Chris Lattner5a65b922008-03-17 05:41:48 +000047 // CCState - Info about the registers and stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +000048 CCState CCInfo(CallConv, isVarArg, DAG.getTarget(),
49 RVLocs, *DAG.getContext());
Anton Korobeynikov53835702008-10-10 20:27:31 +000050
Dan Gohman98ca4f22009-08-05 01:29:28 +000051 // Analize return values.
52 CCInfo.AnalyzeReturn(Outs, RetCC_Sparc32);
Anton Korobeynikov53835702008-10-10 20:27:31 +000053
Chris Lattner5a65b922008-03-17 05:41:48 +000054 // If this is the first return lowered for this function, add the regs to the
55 // liveout set for the function.
56 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
57 for (unsigned i = 0; i != RVLocs.size(); ++i)
58 if (RVLocs[i].isRegLoc())
59 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
60 }
Anton Korobeynikov53835702008-10-10 20:27:31 +000061
Dan Gohman475871a2008-07-27 21:46:04 +000062 SDValue Flag;
Chris Lattner5a65b922008-03-17 05:41:48 +000063
64 // Copy the result values into the output registers.
65 for (unsigned i = 0; i != RVLocs.size(); ++i) {
66 CCValAssign &VA = RVLocs[i];
67 assert(VA.isRegLoc() && "Can only return in registers!");
Anton Korobeynikov53835702008-10-10 20:27:31 +000068
Dale Johannesena05dca42009-02-04 23:02:30 +000069 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Dan Gohmanc9403652010-07-07 15:54:55 +000070 OutVals[i], Flag);
Anton Korobeynikov53835702008-10-10 20:27:31 +000071
Chris Lattner5a65b922008-03-17 05:41:48 +000072 // Guarantee that all emitted copies are stuck together with flags.
73 Flag = Chain.getValue(1);
74 }
Anton Korobeynikov53835702008-10-10 20:27:31 +000075
Gabor Greifba36cb52008-08-28 21:40:38 +000076 if (Flag.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +000077 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
78 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain);
Chris Lattner5a65b922008-03-17 05:41:48 +000079}
80
Dan Gohman98ca4f22009-08-05 01:29:28 +000081/// LowerFormalArguments - V8 uses a very simple ABI, where all values are
82/// passed in either one or two GPRs, including FP values. TODO: we should
83/// pass FP values in FP registers for fastcc functions.
Eli Friedmana786c7b2009-07-19 19:53:46 +000084SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +000085SparcTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000086 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +000087 const SmallVectorImpl<ISD::InputArg>
88 &Ins,
89 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +000090 SmallVectorImpl<SDValue> &InVals)
91 const {
Dan Gohman98ca4f22009-08-05 01:29:28 +000092
Chris Lattner5a65b922008-03-17 05:41:48 +000093 MachineFunction &MF = DAG.getMachineFunction();
94 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Dan Gohman1e93df62010-04-17 14:41:14 +000095 SparcMachineFunctionInfo *FuncInfo = MF.getInfo<SparcMachineFunctionInfo>();
Eli Friedmana786c7b2009-07-19 19:53:46 +000096
97 // Assign locations to all of the incoming arguments.
98 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +000099 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
100 ArgLocs, *DAG.getContext());
101 CCInfo.AnalyzeFormalArguments(Ins, CC_Sparc32);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000102
Chris Lattner5a65b922008-03-17 05:41:48 +0000103 static const unsigned ArgRegs[] = {
104 SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
105 };
Chris Lattner5a65b922008-03-17 05:41:48 +0000106 const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6;
107 unsigned ArgOffset = 68;
Anton Korobeynikov53835702008-10-10 20:27:31 +0000108
Eli Friedmana786c7b2009-07-19 19:53:46 +0000109 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
110 SDValue ArgValue;
111 CCValAssign &VA = ArgLocs[i];
112 // FIXME: We ignore the register assignments of AnalyzeFormalArguments
113 // because it doesn't know how to split a double into two i32 registers.
Owen Andersone50ed302009-08-10 22:56:29 +0000114 EVT ObjectVT = VA.getValVT();
Owen Anderson825b72b2009-08-11 20:47:22 +0000115 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000116 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000117 case MVT::i1:
118 case MVT::i8:
119 case MVT::i16:
120 case MVT::i32:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000121 if (!Ins[i].Used) { // Argument is dead.
122 if (CurArgReg < ArgRegEnd) ++CurArgReg;
123 InVals.push_back(DAG.getUNDEF(ObjectVT));
124 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner5a65b922008-03-17 05:41:48 +0000125 unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
126 MF.getRegInfo().addLiveIn(*CurArgReg++, VReg);
Owen Anderson825b72b2009-08-11 20:47:22 +0000127 SDValue Arg = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
128 if (ObjectVT != MVT::i32) {
Chris Lattner5a65b922008-03-17 05:41:48 +0000129 unsigned AssertOp = ISD::AssertSext;
Owen Anderson825b72b2009-08-11 20:47:22 +0000130 Arg = DAG.getNode(AssertOp, dl, MVT::i32, Arg,
Chris Lattner5a65b922008-03-17 05:41:48 +0000131 DAG.getValueType(ObjectVT));
Dale Johannesen39355f92009-02-04 02:34:38 +0000132 Arg = DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, Arg);
Chris Lattner5a65b922008-03-17 05:41:48 +0000133 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000134 InVals.push_back(Arg);
Chris Lattner5a65b922008-03-17 05:41:48 +0000135 } else {
David Greene3f2bf852009-11-12 20:49:22 +0000136 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset,
Evan Chenged2ae132010-07-03 00:40:23 +0000137 true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000138 SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000139 SDValue Load;
Owen Anderson825b72b2009-08-11 20:47:22 +0000140 if (ObjectVT == MVT::i32) {
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000141 Load = DAG.getLoad(MVT::i32, dl, Chain, FIPtr, MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000142 false, false, 0);
Chris Lattner5a65b922008-03-17 05:41:48 +0000143 } else {
144 ISD::LoadExtType LoadOp = ISD::SEXTLOAD;
145
146 // Sparc is big endian, so add an offset based on the ObjectVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000147 unsigned Offset = 4-std::max(1U, ObjectVT.getSizeInBits()/8);
Owen Anderson825b72b2009-08-11 20:47:22 +0000148 FIPtr = DAG.getNode(ISD::ADD, dl, MVT::i32, FIPtr,
149 DAG.getConstant(Offset, MVT::i32));
Evan Chengbcc80172010-07-07 22:15:37 +0000150 Load = DAG.getExtLoad(LoadOp, MVT::i32, dl, Chain, FIPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000151 MachinePointerInfo(), ObjectVT, false, false,0);
Dale Johannesen39355f92009-02-04 02:34:38 +0000152 Load = DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, Load);
Chris Lattner5a65b922008-03-17 05:41:48 +0000153 }
Dan Gohman98ca4f22009-08-05 01:29:28 +0000154 InVals.push_back(Load);
Chris Lattner5a65b922008-03-17 05:41:48 +0000155 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000156
Chris Lattner5a65b922008-03-17 05:41:48 +0000157 ArgOffset += 4;
158 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000159 case MVT::f32:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000160 if (!Ins[i].Used) { // Argument is dead.
161 if (CurArgReg < ArgRegEnd) ++CurArgReg;
162 InVals.push_back(DAG.getUNDEF(ObjectVT));
163 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner5a65b922008-03-17 05:41:48 +0000164 // FP value is passed in an integer register.
165 unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
166 MF.getRegInfo().addLiveIn(*CurArgReg++, VReg);
Owen Anderson825b72b2009-08-11 20:47:22 +0000167 SDValue Arg = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Chris Lattner5a65b922008-03-17 05:41:48 +0000168
Owen Anderson825b72b2009-08-11 20:47:22 +0000169 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Arg);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000170 InVals.push_back(Arg);
Chris Lattner5a65b922008-03-17 05:41:48 +0000171 } else {
David Greene3f2bf852009-11-12 20:49:22 +0000172 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset,
Evan Chenged2ae132010-07-03 00:40:23 +0000173 true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000174 SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000175 SDValue Load = DAG.getLoad(MVT::f32, dl, Chain, FIPtr,
176 MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000177 false, false, 0);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000178 InVals.push_back(Load);
Chris Lattner5a65b922008-03-17 05:41:48 +0000179 }
180 ArgOffset += 4;
181 break;
182
Owen Anderson825b72b2009-08-11 20:47:22 +0000183 case MVT::i64:
184 case MVT::f64:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000185 if (!Ins[i].Used) { // Argument is dead.
186 if (CurArgReg < ArgRegEnd) ++CurArgReg;
187 if (CurArgReg < ArgRegEnd) ++CurArgReg;
188 InVals.push_back(DAG.getUNDEF(ObjectVT));
189 } else {
Dan Gohman475871a2008-07-27 21:46:04 +0000190 SDValue HiVal;
Chris Lattner5a65b922008-03-17 05:41:48 +0000191 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
192 unsigned VRegHi = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
193 MF.getRegInfo().addLiveIn(*CurArgReg++, VRegHi);
Owen Anderson825b72b2009-08-11 20:47:22 +0000194 HiVal = DAG.getCopyFromReg(Chain, dl, VRegHi, MVT::i32);
Chris Lattner5a65b922008-03-17 05:41:48 +0000195 } else {
David Greene3f2bf852009-11-12 20:49:22 +0000196 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset,
Evan Chenged2ae132010-07-03 00:40:23 +0000197 true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000198 SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000199 HiVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr, MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000200 false, false, 0);
Chris Lattner5a65b922008-03-17 05:41:48 +0000201 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000202
Dan Gohman475871a2008-07-27 21:46:04 +0000203 SDValue LoVal;
Chris Lattner5a65b922008-03-17 05:41:48 +0000204 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
205 unsigned VRegLo = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
206 MF.getRegInfo().addLiveIn(*CurArgReg++, VRegLo);
Owen Anderson825b72b2009-08-11 20:47:22 +0000207 LoVal = DAG.getCopyFromReg(Chain, dl, VRegLo, MVT::i32);
Chris Lattner5a65b922008-03-17 05:41:48 +0000208 } else {
David Greene3f2bf852009-11-12 20:49:22 +0000209 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4,
Evan Chenged2ae132010-07-03 00:40:23 +0000210 true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000211 SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000212 LoVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr, MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000213 false, false, 0);
Chris Lattner5a65b922008-03-17 05:41:48 +0000214 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000215
Chris Lattner5a65b922008-03-17 05:41:48 +0000216 // Compose the two halves together into an i64 unit.
Anton Korobeynikov53835702008-10-10 20:27:31 +0000217 SDValue WholeValue =
Owen Anderson825b72b2009-08-11 20:47:22 +0000218 DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, LoVal, HiVal);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000219
Chris Lattner5a65b922008-03-17 05:41:48 +0000220 // If we want a double, do a bit convert.
Owen Anderson825b72b2009-08-11 20:47:22 +0000221 if (ObjectVT == MVT::f64)
222 WholeValue = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, WholeValue);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000223
Dan Gohman98ca4f22009-08-05 01:29:28 +0000224 InVals.push_back(WholeValue);
Chris Lattner5a65b922008-03-17 05:41:48 +0000225 }
226 ArgOffset += 8;
227 break;
228 }
229 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000230
Chris Lattner5a65b922008-03-17 05:41:48 +0000231 // Store remaining ArgRegs to the stack if this is a varargs function.
Eli Friedmana786c7b2009-07-19 19:53:46 +0000232 if (isVarArg) {
Chris Lattner5a65b922008-03-17 05:41:48 +0000233 // Remember the vararg offset for the va_start implementation.
Dan Gohman1e93df62010-04-17 14:41:14 +0000234 FuncInfo->setVarArgsFrameOffset(ArgOffset);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000235
Eli Friedmana786c7b2009-07-19 19:53:46 +0000236 std::vector<SDValue> OutChains;
237
Chris Lattner5a65b922008-03-17 05:41:48 +0000238 for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
239 unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
240 MF.getRegInfo().addLiveIn(*CurArgReg, VReg);
Owen Anderson825b72b2009-08-11 20:47:22 +0000241 SDValue Arg = DAG.getCopyFromReg(DAG.getRoot(), dl, VReg, MVT::i32);
Chris Lattner5a65b922008-03-17 05:41:48 +0000242
David Greene3f2bf852009-11-12 20:49:22 +0000243 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset,
Evan Chenged2ae132010-07-03 00:40:23 +0000244 true);
Owen Anderson825b72b2009-08-11 20:47:22 +0000245 SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Chris Lattner5a65b922008-03-17 05:41:48 +0000246
Chris Lattner6229d0a2010-09-21 18:41:36 +0000247 OutChains.push_back(DAG.getStore(DAG.getRoot(), dl, Arg, FIPtr,
248 MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000249 false, false, 0));
Chris Lattner5a65b922008-03-17 05:41:48 +0000250 ArgOffset += 4;
251 }
Eli Friedmana786c7b2009-07-19 19:53:46 +0000252
253 if (!OutChains.empty()) {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000254 OutChains.push_back(Chain);
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000256 &OutChains[0], OutChains.size());
Eli Friedmana786c7b2009-07-19 19:53:46 +0000257 }
Chris Lattner5a65b922008-03-17 05:41:48 +0000258 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000259
Dan Gohman98ca4f22009-08-05 01:29:28 +0000260 return Chain;
Chris Lattner5a65b922008-03-17 05:41:48 +0000261}
262
Dan Gohman98ca4f22009-08-05 01:29:28 +0000263SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +0000264SparcTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000265 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +0000266 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000267 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000268 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000269 const SmallVectorImpl<ISD::InputArg> &Ins,
270 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000271 SmallVectorImpl<SDValue> &InVals) const {
Evan Cheng0c439eb2010-01-27 00:07:07 +0000272 // Sparc target does not yet support tail call optimization.
273 isTailCall = false;
Chris Lattner98949a62008-03-17 06:01:07 +0000274
Chris Lattner315123f2008-03-17 06:58:37 +0000275#if 0
276 // Analyze operands of the call, assigning locations to each operand.
277 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000278 CCState CCInfo(CallConv, isVarArg, DAG.getTarget(), ArgLocs);
279 CCInfo.AnalyzeCallOperands(Outs, CC_Sparc32);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000280
Chris Lattner315123f2008-03-17 06:58:37 +0000281 // Get the size of the outgoing arguments stack space requirement.
282 unsigned ArgsSize = CCInfo.getNextStackOffset();
283 // FIXME: We can't use this until f64 is known to take two GPRs.
284#else
285 (void)CC_Sparc32;
Anton Korobeynikov53835702008-10-10 20:27:31 +0000286
Chris Lattner5a65b922008-03-17 05:41:48 +0000287 // Count the size of the outgoing arguments.
288 unsigned ArgsSize = 0;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000289 for (unsigned i = 0, e = Outs.size(); i != e; ++i) {
Dan Gohmanc9403652010-07-07 15:54:55 +0000290 switch (Outs[i].VT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000291 default: llvm_unreachable("Unknown value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 case MVT::i1:
293 case MVT::i8:
294 case MVT::i16:
295 case MVT::i32:
296 case MVT::f32:
Chris Lattner315123f2008-03-17 06:58:37 +0000297 ArgsSize += 4;
298 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 case MVT::i64:
300 case MVT::f64:
Chris Lattner315123f2008-03-17 06:58:37 +0000301 ArgsSize += 8;
302 break;
Chris Lattner5a65b922008-03-17 05:41:48 +0000303 }
304 }
305 if (ArgsSize > 4*6)
306 ArgsSize -= 4*6; // Space for first 6 arguments is prereserved.
307 else
308 ArgsSize = 0;
Anton Korobeynikov53835702008-10-10 20:27:31 +0000309#endif
310
Chris Lattner5a65b922008-03-17 05:41:48 +0000311 // Keep stack frames 8-byte aligned.
312 ArgsSize = (ArgsSize+7) & ~7;
313
Chris Lattnere563bbc2008-10-11 22:08:30 +0000314 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(ArgsSize, true));
Anton Korobeynikov53835702008-10-10 20:27:31 +0000315
Dan Gohman475871a2008-07-27 21:46:04 +0000316 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
317 SmallVector<SDValue, 8> MemOpChains;
Anton Korobeynikov53835702008-10-10 20:27:31 +0000318
Chris Lattner315123f2008-03-17 06:58:37 +0000319#if 0
320 // Walk the register/memloc assignments, inserting copies/loads.
321 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
322 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +0000323 SDValue Arg = OutVals[i];
Chris Lattner315123f2008-03-17 06:58:37 +0000324
325 // Promote the value if needed.
326 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000327 default: llvm_unreachable("Unknown loc info!");
Chris Lattner315123f2008-03-17 06:58:37 +0000328 case CCValAssign::Full: break;
329 case CCValAssign::SExt:
330 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
331 break;
332 case CCValAssign::ZExt:
333 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
334 break;
335 case CCValAssign::AExt:
336 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
337 break;
338 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000339
340 // Arguments that can be passed on register must be kept at
Chris Lattner315123f2008-03-17 06:58:37 +0000341 // RegsToPass vector
342 if (VA.isRegLoc()) {
343 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
344 continue;
345 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000346
Chris Lattner315123f2008-03-17 06:58:37 +0000347 assert(VA.isMemLoc());
Anton Korobeynikov53835702008-10-10 20:27:31 +0000348
Chris Lattner315123f2008-03-17 06:58:37 +0000349 // Create a store off the stack pointer for this argument.
Owen Anderson825b72b2009-08-11 20:47:22 +0000350 SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32);
Chris Lattner315123f2008-03-17 06:58:37 +0000351 // FIXME: VERIFY THAT 68 IS RIGHT.
Dan Gohman475871a2008-07-27 21:46:04 +0000352 SDValue PtrOff = DAG.getIntPtrConstant(VA.getLocMemOffset()+68);
Owen Anderson825b72b2009-08-11 20:47:22 +0000353 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
Chris Lattner6229d0a2010-09-21 18:41:36 +0000354 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000355 false, false, 0));
Chris Lattner315123f2008-03-17 06:58:37 +0000356 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000357
358#else
Chris Lattner315123f2008-03-17 06:58:37 +0000359 static const unsigned ArgRegs[] = {
360 SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
361 };
Chris Lattner5a65b922008-03-17 05:41:48 +0000362 unsigned ArgOffset = 68;
Chris Lattner315123f2008-03-17 06:58:37 +0000363
Dan Gohman98ca4f22009-08-05 01:29:28 +0000364 for (unsigned i = 0, e = Outs.size(); i != e; ++i) {
Dan Gohmanc9403652010-07-07 15:54:55 +0000365 SDValue Val = OutVals[i];
366 EVT ObjectVT = Outs[i].VT;
Dan Gohman475871a2008-07-27 21:46:04 +0000367 SDValue ValToStore(0, 0);
Chris Lattner5a65b922008-03-17 05:41:48 +0000368 unsigned ObjSize;
Owen Anderson825b72b2009-08-11 20:47:22 +0000369 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000370 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +0000371 case MVT::i32:
Chris Lattner5a65b922008-03-17 05:41:48 +0000372 ObjSize = 4;
373
Chris Lattner315123f2008-03-17 06:58:37 +0000374 if (RegsToPass.size() >= 6) {
Chris Lattner5a65b922008-03-17 05:41:48 +0000375 ValToStore = Val;
376 } else {
Chris Lattner315123f2008-03-17 06:58:37 +0000377 RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Val));
Chris Lattner5a65b922008-03-17 05:41:48 +0000378 }
379 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000380 case MVT::f32:
Chris Lattner5a65b922008-03-17 05:41:48 +0000381 ObjSize = 4;
Chris Lattner315123f2008-03-17 06:58:37 +0000382 if (RegsToPass.size() >= 6) {
Chris Lattner5a65b922008-03-17 05:41:48 +0000383 ValToStore = Val;
384 } else {
385 // Convert this to a FP value in an int reg.
Owen Anderson825b72b2009-08-11 20:47:22 +0000386 Val = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Val);
Chris Lattner315123f2008-03-17 06:58:37 +0000387 RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Val));
Chris Lattner5a65b922008-03-17 05:41:48 +0000388 }
389 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000390 case MVT::f64: {
Chris Lattner5a65b922008-03-17 05:41:48 +0000391 ObjSize = 8;
Duncan Sands8c0f2442008-12-12 08:05:40 +0000392 if (RegsToPass.size() >= 6) {
393 ValToStore = Val; // Whole thing is passed in memory.
394 break;
395 }
396
397 // Break into top and bottom parts by storing to the stack and loading
398 // out the parts as integers. Top part goes in a reg.
Owen Anderson825b72b2009-08-11 20:47:22 +0000399 SDValue StackPtr = DAG.CreateStackTemporary(MVT::f64, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000400 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000401 Val, StackPtr, MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000402 false, false, 0);
Duncan Sands8c0f2442008-12-12 08:05:40 +0000403 // Sparc is big-endian, so the high part comes first.
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000404 SDValue Hi = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
405 MachinePointerInfo(), false, false, 0);
Duncan Sands8c0f2442008-12-12 08:05:40 +0000406 // Increment the pointer to the other half.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000407 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands8c0f2442008-12-12 08:05:40 +0000408 DAG.getIntPtrConstant(4));
409 // Load the low part.
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000410 SDValue Lo = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
411 MachinePointerInfo(), false, false, 0);
Duncan Sands8c0f2442008-12-12 08:05:40 +0000412
413 RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Hi));
414
415 if (RegsToPass.size() >= 6) {
416 ValToStore = Lo;
417 ArgOffset += 4;
418 ObjSize = 4;
419 } else {
420 RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Lo));
421 }
422 break;
423 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 case MVT::i64: {
Chris Lattner5a65b922008-03-17 05:41:48 +0000425 ObjSize = 8;
Chris Lattner315123f2008-03-17 06:58:37 +0000426 if (RegsToPass.size() >= 6) {
Chris Lattner5a65b922008-03-17 05:41:48 +0000427 ValToStore = Val; // Whole thing is passed in memory.
428 break;
429 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000430
Chris Lattner5a65b922008-03-17 05:41:48 +0000431 // Split the value into top and bottom part. Top part goes in a reg.
Owen Anderson825b72b2009-08-11 20:47:22 +0000432 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Val,
433 DAG.getConstant(1, MVT::i32));
434 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Val,
435 DAG.getConstant(0, MVT::i32));
Chris Lattner315123f2008-03-17 06:58:37 +0000436 RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Hi));
Anton Korobeynikov53835702008-10-10 20:27:31 +0000437
Chris Lattner315123f2008-03-17 06:58:37 +0000438 if (RegsToPass.size() >= 6) {
Chris Lattner5a65b922008-03-17 05:41:48 +0000439 ValToStore = Lo;
440 ArgOffset += 4;
441 ObjSize = 4;
442 } else {
Chris Lattner315123f2008-03-17 06:58:37 +0000443 RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Lo));
Chris Lattner5a65b922008-03-17 05:41:48 +0000444 }
445 break;
446 }
Duncan Sands8c0f2442008-12-12 08:05:40 +0000447 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000448
Gabor Greifba36cb52008-08-28 21:40:38 +0000449 if (ValToStore.getNode()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000450 SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32);
451 SDValue PtrOff = DAG.getConstant(ArgOffset, MVT::i32);
452 PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000453 MemOpChains.push_back(DAG.getStore(Chain, dl, ValToStore,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000454 PtrOff, MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000455 false, false, 0));
Chris Lattner5a65b922008-03-17 05:41:48 +0000456 }
457 ArgOffset += ObjSize;
458 }
Chris Lattner315123f2008-03-17 06:58:37 +0000459#endif
Anton Korobeynikov53835702008-10-10 20:27:31 +0000460
Chris Lattner5a65b922008-03-17 05:41:48 +0000461 // Emit all stores, make sure the occur before any copies into physregs.
Chris Lattner315123f2008-03-17 06:58:37 +0000462 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +0000463 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattner315123f2008-03-17 06:58:37 +0000464 &MemOpChains[0], MemOpChains.size());
Anton Korobeynikov53835702008-10-10 20:27:31 +0000465
466 // Build a sequence of copy-to-reg nodes chained together with token
Chris Lattner315123f2008-03-17 06:58:37 +0000467 // chain and flag operands which copy the outgoing args into registers.
468 // The InFlag in necessary since all emited instructions must be
469 // stuck together.
Dan Gohman475871a2008-07-27 21:46:04 +0000470 SDValue InFlag;
Chris Lattner315123f2008-03-17 06:58:37 +0000471 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
472 unsigned Reg = RegsToPass[i].first;
473 // Remap I0->I7 -> O0->O7.
474 if (Reg >= SP::I0 && Reg <= SP::I7)
475 Reg = Reg-SP::I0+SP::O0;
476
Dale Johannesen33c960f2009-02-04 20:06:27 +0000477 Chain = DAG.getCopyToReg(Chain, dl, Reg, RegsToPass[i].second, InFlag);
Chris Lattner5a65b922008-03-17 05:41:48 +0000478 InFlag = Chain.getValue(1);
479 }
480
481 // If the callee is a GlobalAddress node (quite common, every direct call is)
482 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Bill Wendling056292f2008-09-16 21:48:12 +0000483 // Likewise ExternalSymbol -> TargetExternalSymbol.
Chris Lattner5a65b922008-03-17 05:41:48 +0000484 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Devang Patel0d881da2010-07-06 22:08:15 +0000485 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i32);
Bill Wendling056292f2008-09-16 21:48:12 +0000486 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
Owen Anderson825b72b2009-08-11 20:47:22 +0000487 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
Chris Lattner5a65b922008-03-17 05:41:48 +0000488
Owen Andersone50ed302009-08-10 22:56:29 +0000489 std::vector<EVT> NodeTys;
Owen Anderson825b72b2009-08-11 20:47:22 +0000490 NodeTys.push_back(MVT::Other); // Returns a chain
491 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Dan Gohman475871a2008-07-27 21:46:04 +0000492 SDValue Ops[] = { Chain, Callee, InFlag };
Dale Johannesen33c960f2009-02-04 20:06:27 +0000493 Chain = DAG.getNode(SPISD::CALL, dl, NodeTys, Ops, InFlag.getNode() ? 3 : 2);
Chris Lattner5a65b922008-03-17 05:41:48 +0000494 InFlag = Chain.getValue(1);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000495
Chris Lattnere563bbc2008-10-11 22:08:30 +0000496 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(ArgsSize, true),
497 DAG.getIntPtrConstant(0, true), InFlag);
Chris Lattner98949a62008-03-17 06:01:07 +0000498 InFlag = Chain.getValue(1);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000499
Chris Lattner98949a62008-03-17 06:01:07 +0000500 // Assign locations to each value returned by this call.
501 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000502 CCState RVInfo(CallConv, isVarArg, DAG.getTarget(),
Owen Andersone922c022009-07-22 00:24:57 +0000503 RVLocs, *DAG.getContext());
Anton Korobeynikov53835702008-10-10 20:27:31 +0000504
Dan Gohman98ca4f22009-08-05 01:29:28 +0000505 RVInfo.AnalyzeCallResult(Ins, RetCC_Sparc32);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000506
Chris Lattner98949a62008-03-17 06:01:07 +0000507 // Copy all of the result registers out of their specified physreg.
508 for (unsigned i = 0; i != RVLocs.size(); ++i) {
509 unsigned Reg = RVLocs[i].getLocReg();
Anton Korobeynikov53835702008-10-10 20:27:31 +0000510
Chris Lattner98949a62008-03-17 06:01:07 +0000511 // Remap I0->I7 -> O0->O7.
512 if (Reg >= SP::I0 && Reg <= SP::I7)
513 Reg = Reg-SP::I0+SP::O0;
Anton Korobeynikov53835702008-10-10 20:27:31 +0000514
Dale Johannesen33c960f2009-02-04 20:06:27 +0000515 Chain = DAG.getCopyFromReg(Chain, dl, Reg,
Chris Lattner98949a62008-03-17 06:01:07 +0000516 RVLocs[i].getValVT(), InFlag).getValue(1);
517 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000518 InVals.push_back(Chain.getValue(0));
Chris Lattner5a65b922008-03-17 05:41:48 +0000519 }
Anton Korobeynikov53835702008-10-10 20:27:31 +0000520
Dan Gohman98ca4f22009-08-05 01:29:28 +0000521 return Chain;
Chris Lattner5a65b922008-03-17 05:41:48 +0000522}
523
524
525
Chris Lattnerd23405e2008-03-17 03:21:36 +0000526//===----------------------------------------------------------------------===//
527// TargetLowering Implementation
528//===----------------------------------------------------------------------===//
529
530/// IntCondCCodeToICC - Convert a DAG integer condition code to a SPARC ICC
531/// condition.
532static SPCC::CondCodes IntCondCCodeToICC(ISD::CondCode CC) {
533 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000534 default: llvm_unreachable("Unknown integer condition code!");
Chris Lattnerd23405e2008-03-17 03:21:36 +0000535 case ISD::SETEQ: return SPCC::ICC_E;
536 case ISD::SETNE: return SPCC::ICC_NE;
537 case ISD::SETLT: return SPCC::ICC_L;
538 case ISD::SETGT: return SPCC::ICC_G;
539 case ISD::SETLE: return SPCC::ICC_LE;
540 case ISD::SETGE: return SPCC::ICC_GE;
541 case ISD::SETULT: return SPCC::ICC_CS;
542 case ISD::SETULE: return SPCC::ICC_LEU;
543 case ISD::SETUGT: return SPCC::ICC_GU;
544 case ISD::SETUGE: return SPCC::ICC_CC;
545 }
546}
547
548/// FPCondCCodeToFCC - Convert a DAG floatingp oint condition code to a SPARC
549/// FCC condition.
550static SPCC::CondCodes FPCondCCodeToFCC(ISD::CondCode CC) {
551 switch (CC) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000552 default: llvm_unreachable("Unknown fp condition code!");
Chris Lattnerd23405e2008-03-17 03:21:36 +0000553 case ISD::SETEQ:
554 case ISD::SETOEQ: return SPCC::FCC_E;
555 case ISD::SETNE:
556 case ISD::SETUNE: return SPCC::FCC_NE;
557 case ISD::SETLT:
558 case ISD::SETOLT: return SPCC::FCC_L;
559 case ISD::SETGT:
560 case ISD::SETOGT: return SPCC::FCC_G;
561 case ISD::SETLE:
562 case ISD::SETOLE: return SPCC::FCC_LE;
563 case ISD::SETGE:
564 case ISD::SETOGE: return SPCC::FCC_GE;
565 case ISD::SETULT: return SPCC::FCC_UL;
566 case ISD::SETULE: return SPCC::FCC_ULE;
567 case ISD::SETUGT: return SPCC::FCC_UG;
568 case ISD::SETUGE: return SPCC::FCC_UGE;
569 case ISD::SETUO: return SPCC::FCC_U;
570 case ISD::SETO: return SPCC::FCC_O;
571 case ISD::SETONE: return SPCC::FCC_LG;
572 case ISD::SETUEQ: return SPCC::FCC_UE;
573 }
574}
575
Chris Lattnerd23405e2008-03-17 03:21:36 +0000576SparcTargetLowering::SparcTargetLowering(TargetMachine &TM)
Chris Lattner5277b222009-08-08 20:43:12 +0000577 : TargetLowering(TM, new TargetLoweringObjectFileELF()) {
Anton Korobeynikov53835702008-10-10 20:27:31 +0000578
Chris Lattnerd23405e2008-03-17 03:21:36 +0000579 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000580 addRegisterClass(MVT::i32, SP::IntRegsRegisterClass);
581 addRegisterClass(MVT::f32, SP::FPRegsRegisterClass);
582 addRegisterClass(MVT::f64, SP::DFPRegsRegisterClass);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000583
584 // Turn FP extload into load/fextend
Owen Anderson825b72b2009-08-11 20:47:22 +0000585 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000586 // Sparc doesn't have i1 sign extending load
Owen Anderson825b72b2009-08-11 20:47:22 +0000587 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000588 // Turn FP truncstore into trunc + store.
Owen Anderson825b72b2009-08-11 20:47:22 +0000589 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000590
591 // Custom legalize GlobalAddress nodes into LO/HI parts.
Owen Anderson825b72b2009-08-11 20:47:22 +0000592 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
593 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
594 setOperationAction(ISD::ConstantPool , MVT::i32, Custom);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000595
Chris Lattnerd23405e2008-03-17 03:21:36 +0000596 // Sparc doesn't have sext_inreg, replace them with shl/sra
Owen Anderson825b72b2009-08-11 20:47:22 +0000597 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
598 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
599 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000600
601 // Sparc has no REM or DIVREM operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000602 setOperationAction(ISD::UREM, MVT::i32, Expand);
603 setOperationAction(ISD::SREM, MVT::i32, Expand);
604 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
605 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000606
607 // Custom expand fp<->sint
Owen Anderson825b72b2009-08-11 20:47:22 +0000608 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
609 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000610
611 // Expand fp<->uint
Owen Anderson825b72b2009-08-11 20:47:22 +0000612 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
613 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000614
Owen Anderson825b72b2009-08-11 20:47:22 +0000615 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
616 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000617
Chris Lattnerd23405e2008-03-17 03:21:36 +0000618 // Sparc has no select or setcc: expand to SELECT_CC.
Owen Anderson825b72b2009-08-11 20:47:22 +0000619 setOperationAction(ISD::SELECT, MVT::i32, Expand);
620 setOperationAction(ISD::SELECT, MVT::f32, Expand);
621 setOperationAction(ISD::SELECT, MVT::f64, Expand);
622 setOperationAction(ISD::SETCC, MVT::i32, Expand);
623 setOperationAction(ISD::SETCC, MVT::f32, Expand);
624 setOperationAction(ISD::SETCC, MVT::f64, Expand);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000625
Chris Lattnerd23405e2008-03-17 03:21:36 +0000626 // Sparc doesn't have BRCOND either, it has BR_CC.
Owen Anderson825b72b2009-08-11 20:47:22 +0000627 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
628 setOperationAction(ISD::BRIND, MVT::Other, Expand);
629 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
630 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
631 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
632 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000633
Owen Anderson825b72b2009-08-11 20:47:22 +0000634 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
635 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
636 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000637
Chris Lattnerd23405e2008-03-17 03:21:36 +0000638 // SPARC has no intrinsics for these particular operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000639 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000640
Owen Anderson825b72b2009-08-11 20:47:22 +0000641 setOperationAction(ISD::FSIN , MVT::f64, Expand);
642 setOperationAction(ISD::FCOS , MVT::f64, Expand);
643 setOperationAction(ISD::FREM , MVT::f64, Expand);
644 setOperationAction(ISD::FSIN , MVT::f32, Expand);
645 setOperationAction(ISD::FCOS , MVT::f32, Expand);
646 setOperationAction(ISD::FREM , MVT::f32, Expand);
647 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
648 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
649 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
650 setOperationAction(ISD::ROTL , MVT::i32, Expand);
651 setOperationAction(ISD::ROTR , MVT::i32, Expand);
652 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
653 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
654 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
655 setOperationAction(ISD::FPOW , MVT::f64, Expand);
656 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000657
Owen Anderson825b72b2009-08-11 20:47:22 +0000658 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
659 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
660 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000661
662 // FIXME: Sparc provides these multiplies, but we don't have them yet.
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
664 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000665
Owen Anderson825b72b2009-08-11 20:47:22 +0000666 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000667
Chris Lattnerd23405e2008-03-17 03:21:36 +0000668 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
Owen Anderson825b72b2009-08-11 20:47:22 +0000669 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000670 // VAARG needs to be lowered to not do unaligned accesses for doubles.
Owen Anderson825b72b2009-08-11 20:47:22 +0000671 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000672
Chris Lattnerd23405e2008-03-17 03:21:36 +0000673 // Use the default implementation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000674 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
675 setOperationAction(ISD::VAEND , MVT::Other, Expand);
676 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
677 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
678 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000679
680 // No debug info support yet.
Owen Anderson825b72b2009-08-11 20:47:22 +0000681 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000682
Chris Lattnerd23405e2008-03-17 03:21:36 +0000683 setStackPointerRegisterToSaveRestore(SP::O6);
684
685 if (TM.getSubtarget<SparcSubtarget>().isV9())
Owen Anderson825b72b2009-08-11 20:47:22 +0000686 setOperationAction(ISD::CTPOP, MVT::i32, Legal);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000687
Chris Lattnerd23405e2008-03-17 03:21:36 +0000688 computeRegisterProperties();
689}
690
691const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const {
692 switch (Opcode) {
693 default: return 0;
694 case SPISD::CMPICC: return "SPISD::CMPICC";
695 case SPISD::CMPFCC: return "SPISD::CMPFCC";
696 case SPISD::BRICC: return "SPISD::BRICC";
697 case SPISD::BRFCC: return "SPISD::BRFCC";
698 case SPISD::SELECT_ICC: return "SPISD::SELECT_ICC";
699 case SPISD::SELECT_FCC: return "SPISD::SELECT_FCC";
700 case SPISD::Hi: return "SPISD::Hi";
701 case SPISD::Lo: return "SPISD::Lo";
702 case SPISD::FTOI: return "SPISD::FTOI";
703 case SPISD::ITOF: return "SPISD::ITOF";
704 case SPISD::CALL: return "SPISD::CALL";
705 case SPISD::RET_FLAG: return "SPISD::RET_FLAG";
706 }
707}
708
709/// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
710/// be zero. Op is expected to be a target specific node. Used by DAG
711/// combiner.
Dan Gohman475871a2008-07-27 21:46:04 +0000712void SparcTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Chris Lattnerd23405e2008-03-17 03:21:36 +0000713 const APInt &Mask,
Anton Korobeynikov53835702008-10-10 20:27:31 +0000714 APInt &KnownZero,
Chris Lattnerd23405e2008-03-17 03:21:36 +0000715 APInt &KnownOne,
716 const SelectionDAG &DAG,
717 unsigned Depth) const {
718 APInt KnownZero2, KnownOne2;
719 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Anton Korobeynikov53835702008-10-10 20:27:31 +0000720
Chris Lattnerd23405e2008-03-17 03:21:36 +0000721 switch (Op.getOpcode()) {
722 default: break;
723 case SPISD::SELECT_ICC:
724 case SPISD::SELECT_FCC:
725 DAG.ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne,
726 Depth+1);
727 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2,
728 Depth+1);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000729 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
730 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
731
Chris Lattnerd23405e2008-03-17 03:21:36 +0000732 // Only known if known in both the LHS and RHS.
733 KnownOne &= KnownOne2;
734 KnownZero &= KnownZero2;
735 break;
736 }
737}
738
Chris Lattnerd23405e2008-03-17 03:21:36 +0000739// Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so
740// set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
Dan Gohman475871a2008-07-27 21:46:04 +0000741static void LookThroughSetCC(SDValue &LHS, SDValue &RHS,
Chris Lattnerd23405e2008-03-17 03:21:36 +0000742 ISD::CondCode CC, unsigned &SPCC) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000743 if (isa<ConstantSDNode>(RHS) &&
Dan Gohmane368b462010-06-18 14:22:04 +0000744 cast<ConstantSDNode>(RHS)->isNullValue() &&
Anton Korobeynikov53835702008-10-10 20:27:31 +0000745 CC == ISD::SETNE &&
Chris Lattnerd23405e2008-03-17 03:21:36 +0000746 ((LHS.getOpcode() == SPISD::SELECT_ICC &&
747 LHS.getOperand(3).getOpcode() == SPISD::CMPICC) ||
748 (LHS.getOpcode() == SPISD::SELECT_FCC &&
749 LHS.getOperand(3).getOpcode() == SPISD::CMPFCC)) &&
750 isa<ConstantSDNode>(LHS.getOperand(0)) &&
751 isa<ConstantSDNode>(LHS.getOperand(1)) &&
Dan Gohmane368b462010-06-18 14:22:04 +0000752 cast<ConstantSDNode>(LHS.getOperand(0))->isOne() &&
753 cast<ConstantSDNode>(LHS.getOperand(1))->isNullValue()) {
Dan Gohman475871a2008-07-27 21:46:04 +0000754 SDValue CMPCC = LHS.getOperand(3);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000755 SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getZExtValue();
Chris Lattnerd23405e2008-03-17 03:21:36 +0000756 LHS = CMPCC.getOperand(0);
757 RHS = CMPCC.getOperand(1);
758 }
759}
760
Chris Lattnerdb486a62009-09-15 17:46:24 +0000761SDValue SparcTargetLowering::LowerGlobalAddress(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000762 SelectionDAG &DAG) const {
Dan Gohman46510a72010-04-15 01:51:59 +0000763 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dale Johannesende064702009-02-06 21:50:26 +0000764 // FIXME there isn't really any debug info here
765 DebugLoc dl = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +0000766 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000767 SDValue Hi = DAG.getNode(SPISD::Hi, dl, MVT::i32, GA);
768 SDValue Lo = DAG.getNode(SPISD::Lo, dl, MVT::i32, GA);
Chris Lattnerdb486a62009-09-15 17:46:24 +0000769
770 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
771 return DAG.getNode(ISD::ADD, dl, MVT::i32, Lo, Hi);
772
773 SDValue GlobalBase = DAG.getNode(SPISD::GLOBAL_BASE_REG, dl,
774 getPointerTy());
775 SDValue RelAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, Lo, Hi);
776 SDValue AbsAddr = DAG.getNode(ISD::ADD, dl, MVT::i32,
777 GlobalBase, RelAddr);
778 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000779 AbsAddr, MachinePointerInfo(), false, false, 0);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000780}
781
Chris Lattnerdb486a62009-09-15 17:46:24 +0000782SDValue SparcTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000783 SelectionDAG &DAG) const {
Chris Lattnerd23405e2008-03-17 03:21:36 +0000784 ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
Dale Johannesende064702009-02-06 21:50:26 +0000785 // FIXME there isn't really any debug info here
786 DebugLoc dl = Op.getDebugLoc();
Dan Gohman46510a72010-04-15 01:51:59 +0000787 const Constant *C = N->getConstVal();
Owen Anderson825b72b2009-08-11 20:47:22 +0000788 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment());
789 SDValue Hi = DAG.getNode(SPISD::Hi, dl, MVT::i32, CP);
790 SDValue Lo = DAG.getNode(SPISD::Lo, dl, MVT::i32, CP);
Chris Lattnerdb486a62009-09-15 17:46:24 +0000791 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
792 return DAG.getNode(ISD::ADD, dl, MVT::i32, Lo, Hi);
793
794 SDValue GlobalBase = DAG.getNode(SPISD::GLOBAL_BASE_REG, dl,
795 getPointerTy());
796 SDValue RelAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, Lo, Hi);
797 SDValue AbsAddr = DAG.getNode(ISD::ADD, dl, MVT::i32,
798 GlobalBase, RelAddr);
799 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000800 AbsAddr, MachinePointerInfo(), false, false, 0);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000801}
802
Dan Gohman475871a2008-07-27 21:46:04 +0000803static SDValue LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000804 DebugLoc dl = Op.getDebugLoc();
Chris Lattnerd23405e2008-03-17 03:21:36 +0000805 // Convert the fp value to integer in an FP register.
Owen Anderson825b72b2009-08-11 20:47:22 +0000806 assert(Op.getValueType() == MVT::i32);
807 Op = DAG.getNode(SPISD::FTOI, dl, MVT::f32, Op.getOperand(0));
808 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000809}
810
Dan Gohman475871a2008-07-27 21:46:04 +0000811static SDValue LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000812 DebugLoc dl = Op.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 assert(Op.getOperand(0).getValueType() == MVT::i32);
814 SDValue Tmp = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Op.getOperand(0));
Chris Lattnerd23405e2008-03-17 03:21:36 +0000815 // Convert the int value to FP in an FP register.
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000816 return DAG.getNode(SPISD::ITOF, dl, Op.getValueType(), Tmp);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000817}
818
Dan Gohman475871a2008-07-27 21:46:04 +0000819static SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) {
820 SDValue Chain = Op.getOperand(0);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000821 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Dan Gohman475871a2008-07-27 21:46:04 +0000822 SDValue LHS = Op.getOperand(2);
823 SDValue RHS = Op.getOperand(3);
824 SDValue Dest = Op.getOperand(4);
Dale Johannesen3484c092009-02-05 22:07:54 +0000825 DebugLoc dl = Op.getDebugLoc();
Chris Lattnerd23405e2008-03-17 03:21:36 +0000826 unsigned Opc, SPCC = ~0U;
Anton Korobeynikov53835702008-10-10 20:27:31 +0000827
Chris Lattnerd23405e2008-03-17 03:21:36 +0000828 // If this is a br_cc of a "setcc", and if the setcc got lowered into
829 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
830 LookThroughSetCC(LHS, RHS, CC, SPCC);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000831
Chris Lattnerd23405e2008-03-17 03:21:36 +0000832 // Get the condition flag.
Dan Gohman475871a2008-07-27 21:46:04 +0000833 SDValue CompareFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +0000834 if (LHS.getValueType() == MVT::i32) {
Owen Andersone50ed302009-08-10 22:56:29 +0000835 std::vector<EVT> VTs;
Owen Anderson825b72b2009-08-11 20:47:22 +0000836 VTs.push_back(MVT::i32);
837 VTs.push_back(MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +0000838 SDValue Ops[2] = { LHS, RHS };
Dale Johannesen3484c092009-02-05 22:07:54 +0000839 CompareFlag = DAG.getNode(SPISD::CMPICC, dl, VTs, Ops, 2).getValue(1);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000840 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
841 Opc = SPISD::BRICC;
842 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000843 CompareFlag = DAG.getNode(SPISD::CMPFCC, dl, MVT::Flag, LHS, RHS);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000844 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
845 Opc = SPISD::BRFCC;
846 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000847 return DAG.getNode(Opc, dl, MVT::Other, Chain, Dest,
848 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000849}
850
Dan Gohman475871a2008-07-27 21:46:04 +0000851static SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
852 SDValue LHS = Op.getOperand(0);
853 SDValue RHS = Op.getOperand(1);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000854 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Dan Gohman475871a2008-07-27 21:46:04 +0000855 SDValue TrueVal = Op.getOperand(2);
856 SDValue FalseVal = Op.getOperand(3);
Dale Johannesen3484c092009-02-05 22:07:54 +0000857 DebugLoc dl = Op.getDebugLoc();
Chris Lattnerd23405e2008-03-17 03:21:36 +0000858 unsigned Opc, SPCC = ~0U;
Anton Korobeynikov53835702008-10-10 20:27:31 +0000859
Chris Lattnerd23405e2008-03-17 03:21:36 +0000860 // If this is a select_cc of a "setcc", and if the setcc got lowered into
861 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
862 LookThroughSetCC(LHS, RHS, CC, SPCC);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000863
Dan Gohman475871a2008-07-27 21:46:04 +0000864 SDValue CompareFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +0000865 if (LHS.getValueType() == MVT::i32) {
Owen Andersone50ed302009-08-10 22:56:29 +0000866 std::vector<EVT> VTs;
Chris Lattnerd23405e2008-03-17 03:21:36 +0000867 VTs.push_back(LHS.getValueType()); // subcc returns a value
Owen Anderson825b72b2009-08-11 20:47:22 +0000868 VTs.push_back(MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +0000869 SDValue Ops[2] = { LHS, RHS };
Dale Johannesen3484c092009-02-05 22:07:54 +0000870 CompareFlag = DAG.getNode(SPISD::CMPICC, dl, VTs, Ops, 2).getValue(1);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000871 Opc = SPISD::SELECT_ICC;
872 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
873 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000874 CompareFlag = DAG.getNode(SPISD::CMPFCC, dl, MVT::Flag, LHS, RHS);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000875 Opc = SPISD::SELECT_FCC;
876 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
877 }
Dale Johannesen3484c092009-02-05 22:07:54 +0000878 return DAG.getNode(Opc, dl, TrueVal.getValueType(), TrueVal, FalseVal,
Owen Anderson825b72b2009-08-11 20:47:22 +0000879 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000880}
881
Dan Gohman475871a2008-07-27 21:46:04 +0000882static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000883 const SparcTargetLowering &TLI) {
Dan Gohman1e93df62010-04-17 14:41:14 +0000884 MachineFunction &MF = DAG.getMachineFunction();
885 SparcMachineFunctionInfo *FuncInfo = MF.getInfo<SparcMachineFunctionInfo>();
886
Chris Lattnerd23405e2008-03-17 03:21:36 +0000887 // vastart just stores the address of the VarArgsFrameIndex slot into the
888 // memory location argument.
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000889 DebugLoc dl = Op.getDebugLoc();
Dan Gohman1e93df62010-04-17 14:41:14 +0000890 SDValue Offset =
891 DAG.getNode(ISD::ADD, dl, MVT::i32,
892 DAG.getRegister(SP::I6, MVT::i32),
893 DAG.getConstant(FuncInfo->getVarArgsFrameOffset(),
894 MVT::i32));
Chris Lattnerd23405e2008-03-17 03:21:36 +0000895 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner6229d0a2010-09-21 18:41:36 +0000896 return DAG.getStore(Op.getOperand(0), dl, Offset, Op.getOperand(1),
897 MachinePointerInfo(SV), false, false, 0);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000898}
899
Dan Gohman475871a2008-07-27 21:46:04 +0000900static SDValue LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000901 SDNode *Node = Op.getNode();
Owen Andersone50ed302009-08-10 22:56:29 +0000902 EVT VT = Node->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000903 SDValue InChain = Node->getOperand(0);
904 SDValue VAListPtr = Node->getOperand(1);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000905 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000906 DebugLoc dl = Node->getDebugLoc();
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000907 SDValue VAList = DAG.getLoad(MVT::i32, dl, InChain, VAListPtr,
908 MachinePointerInfo(SV), false, false, 0);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000909 // Increment the pointer, VAList, to the next vaarg
Owen Anderson825b72b2009-08-11 20:47:22 +0000910 SDValue NextPtr = DAG.getNode(ISD::ADD, dl, MVT::i32, VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000911 DAG.getConstant(VT.getSizeInBits()/8,
Owen Anderson825b72b2009-08-11 20:47:22 +0000912 MVT::i32));
Chris Lattnerd23405e2008-03-17 03:21:36 +0000913 // Store the incremented VAList to the legalized pointer
Dale Johannesen33c960f2009-02-04 20:06:27 +0000914 InChain = DAG.getStore(VAList.getValue(1), dl, NextPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000915 VAListPtr, MachinePointerInfo(SV), false, false, 0);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000916 // Load the actual argument out of the pointer VAList, unless this is an
917 // f64 load.
Owen Anderson825b72b2009-08-11 20:47:22 +0000918 if (VT != MVT::f64)
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000919 return DAG.getLoad(VT, dl, InChain, VAList, MachinePointerInfo(),
920 false, false, 0);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000921
Chris Lattnerd23405e2008-03-17 03:21:36 +0000922 // Otherwise, load it as i64, then do a bitconvert.
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000923 SDValue V = DAG.getLoad(MVT::i64, dl, InChain, VAList, MachinePointerInfo(),
David Greene54a7aa82010-02-15 16:57:02 +0000924 false, false, 0);
Anton Korobeynikov53835702008-10-10 20:27:31 +0000925
Chris Lattnerd23405e2008-03-17 03:21:36 +0000926 // Bit-Convert the value to f64.
Dan Gohman475871a2008-07-27 21:46:04 +0000927 SDValue Ops[2] = {
Owen Anderson825b72b2009-08-11 20:47:22 +0000928 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, V),
Chris Lattnerd23405e2008-03-17 03:21:36 +0000929 V.getValue(1)
930 };
Dale Johannesen33c960f2009-02-04 20:06:27 +0000931 return DAG.getMergeValues(Ops, 2, dl);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000932}
933
Dan Gohman475871a2008-07-27 21:46:04 +0000934static SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) {
935 SDValue Chain = Op.getOperand(0); // Legalize the chain.
936 SDValue Size = Op.getOperand(1); // Legalize the size.
Dale Johannesena05dca42009-02-04 23:02:30 +0000937 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov53835702008-10-10 20:27:31 +0000938
Chris Lattnerd23405e2008-03-17 03:21:36 +0000939 unsigned SPReg = SP::O6;
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, MVT::i32);
941 SDValue NewSP = DAG.getNode(ISD::SUB, dl, MVT::i32, SP, Size); // Value
Dale Johannesena05dca42009-02-04 23:02:30 +0000942 Chain = DAG.getCopyToReg(SP.getValue(1), dl, SPReg, NewSP); // Output chain
Anton Korobeynikov53835702008-10-10 20:27:31 +0000943
Chris Lattnerd23405e2008-03-17 03:21:36 +0000944 // The resultant pointer is actually 16 words from the bottom of the stack,
945 // to provide a register spill area.
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 SDValue NewVal = DAG.getNode(ISD::ADD, dl, MVT::i32, NewSP,
947 DAG.getConstant(96, MVT::i32));
Dan Gohman475871a2008-07-27 21:46:04 +0000948 SDValue Ops[2] = { NewVal, Chain };
Dale Johannesena05dca42009-02-04 23:02:30 +0000949 return DAG.getMergeValues(Ops, 2, dl);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000950}
951
Chris Lattnerd23405e2008-03-17 03:21:36 +0000952
Dan Gohman475871a2008-07-27 21:46:04 +0000953SDValue SparcTargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +0000954LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerd23405e2008-03-17 03:21:36 +0000955 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000956 default: llvm_unreachable("Should not custom lower this!");
Chris Lattnerd23405e2008-03-17 03:21:36 +0000957 // Frame & Return address. Currently unimplemented
Dan Gohman475871a2008-07-27 21:46:04 +0000958 case ISD::RETURNADDR: return SDValue();
959 case ISD::FRAMEADDR: return SDValue();
Chris Lattnerd23405e2008-03-17 03:21:36 +0000960 case ISD::GlobalTLSAddress:
Torok Edwinc23197a2009-07-14 16:55:14 +0000961 llvm_unreachable("TLS not implemented for Sparc.");
Chris Lattnerdb486a62009-09-15 17:46:24 +0000962 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
963 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000964 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
965 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
966 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
967 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
968 case ISD::VASTART: return LowerVASTART(Op, DAG, *this);
969 case ISD::VAARG: return LowerVAARG(Op, DAG);
970 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Chris Lattnerd23405e2008-03-17 03:21:36 +0000971 }
972}
973
974MachineBasicBlock *
975SparcTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000976 MachineBasicBlock *BB) const {
Chris Lattnerd23405e2008-03-17 03:21:36 +0000977 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
978 unsigned BROpcode;
979 unsigned CC;
Dale Johannesend552eee2009-02-13 02:31:35 +0000980 DebugLoc dl = MI->getDebugLoc();
Chris Lattnerd23405e2008-03-17 03:21:36 +0000981 // Figure out the conditional branch opcode to use for this select_cc.
982 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000983 default: llvm_unreachable("Unknown SELECT_CC!");
Chris Lattnerd23405e2008-03-17 03:21:36 +0000984 case SP::SELECT_CC_Int_ICC:
985 case SP::SELECT_CC_FP_ICC:
986 case SP::SELECT_CC_DFP_ICC:
987 BROpcode = SP::BCOND;
988 break;
989 case SP::SELECT_CC_Int_FCC:
990 case SP::SELECT_CC_FP_FCC:
991 case SP::SELECT_CC_DFP_FCC:
992 BROpcode = SP::FBCOND;
993 break;
994 }
995
996 CC = (SPCC::CondCodes)MI->getOperand(3).getImm();
Anton Korobeynikov53835702008-10-10 20:27:31 +0000997
Chris Lattnerd23405e2008-03-17 03:21:36 +0000998 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
999 // control-flow pattern. The incoming instruction knows the destination vreg
1000 // to set, the condition code register to branch on, the true/false values to
1001 // select between, and a branch opcode to use.
1002 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00001003 MachineFunction::iterator It = BB;
Chris Lattnerd23405e2008-03-17 03:21:36 +00001004 ++It;
Anton Korobeynikov53835702008-10-10 20:27:31 +00001005
Chris Lattnerd23405e2008-03-17 03:21:36 +00001006 // thisMBB:
1007 // ...
1008 // TrueVal = ...
1009 // [f]bCC copy1MBB
1010 // fallthrough --> copy0MBB
1011 MachineBasicBlock *thisMBB = BB;
Chris Lattnerd23405e2008-03-17 03:21:36 +00001012 MachineFunction *F = BB->getParent();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00001013 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
1014 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohman14152b42010-07-06 20:24:04 +00001015
1016 // Transfer the remainder of BB and its successor edges to sinkMBB.
1017 sinkMBB->splice(sinkMBB->begin(), BB,
1018 llvm::next(MachineBasicBlock::iterator(MI)),
1019 BB->end());
1020 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
1021
1022 // Add the true and fallthrough blocks as its successors.
1023 BB->addSuccessor(copy0MBB);
1024 BB->addSuccessor(sinkMBB);
1025
Dale Johannesend552eee2009-02-13 02:31:35 +00001026 BuildMI(BB, dl, TII.get(BROpcode)).addMBB(sinkMBB).addImm(CC);
Dan Gohman8e5f2c62008-07-07 23:14:23 +00001027 F->insert(It, copy0MBB);
1028 F->insert(It, sinkMBB);
Anton Korobeynikov53835702008-10-10 20:27:31 +00001029
Chris Lattnerd23405e2008-03-17 03:21:36 +00001030 // copy0MBB:
1031 // %FalseValue = ...
1032 // # fallthrough to sinkMBB
1033 BB = copy0MBB;
Anton Korobeynikov53835702008-10-10 20:27:31 +00001034
Chris Lattnerd23405e2008-03-17 03:21:36 +00001035 // Update machine-CFG edges
1036 BB->addSuccessor(sinkMBB);
Anton Korobeynikov53835702008-10-10 20:27:31 +00001037
Chris Lattnerd23405e2008-03-17 03:21:36 +00001038 // sinkMBB:
1039 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
1040 // ...
1041 BB = sinkMBB;
Dan Gohman14152b42010-07-06 20:24:04 +00001042 BuildMI(*BB, BB->begin(), dl, TII.get(SP::PHI), MI->getOperand(0).getReg())
Chris Lattnerd23405e2008-03-17 03:21:36 +00001043 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
1044 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
Anton Korobeynikov53835702008-10-10 20:27:31 +00001045
Dan Gohman14152b42010-07-06 20:24:04 +00001046 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattnerd23405e2008-03-17 03:21:36 +00001047 return BB;
1048}
Anton Korobeynikov0eefda12008-10-10 20:28:10 +00001049
1050//===----------------------------------------------------------------------===//
1051// Sparc Inline Assembly Support
1052//===----------------------------------------------------------------------===//
1053
1054/// getConstraintType - Given a constraint letter, return the type of
1055/// constraint it is for this target.
1056SparcTargetLowering::ConstraintType
1057SparcTargetLowering::getConstraintType(const std::string &Constraint) const {
1058 if (Constraint.size() == 1) {
1059 switch (Constraint[0]) {
1060 default: break;
1061 case 'r': return C_RegisterClass;
1062 }
1063 }
1064
1065 return TargetLowering::getConstraintType(Constraint);
1066}
1067
1068std::pair<unsigned, const TargetRegisterClass*>
1069SparcTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00001070 EVT VT) const {
Anton Korobeynikov0eefda12008-10-10 20:28:10 +00001071 if (Constraint.size() == 1) {
1072 switch (Constraint[0]) {
1073 case 'r':
1074 return std::make_pair(0U, SP::IntRegsRegisterClass);
1075 }
1076 }
1077
1078 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1079}
1080
1081std::vector<unsigned> SparcTargetLowering::
1082getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00001083 EVT VT) const {
Anton Korobeynikov0eefda12008-10-10 20:28:10 +00001084 if (Constraint.size() != 1)
1085 return std::vector<unsigned>();
1086
1087 switch (Constraint[0]) {
1088 default: break;
1089 case 'r':
1090 return make_vector<unsigned>(SP::L0, SP::L1, SP::L2, SP::L3,
1091 SP::L4, SP::L5, SP::L6, SP::L7,
1092 SP::I0, SP::I1, SP::I2, SP::I3,
1093 SP::I4, SP::I5,
1094 SP::O0, SP::O1, SP::O2, SP::O3,
1095 SP::O4, SP::O5, SP::O7, 0);
1096 }
1097
1098 return std::vector<unsigned>();
1099}
Dan Gohman6520e202008-10-18 02:06:02 +00001100
1101bool
1102SparcTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1103 // The Sparc target isn't yet aware of offsets.
1104 return false;
1105}
Bill Wendling20c568f2009-06-30 22:38:32 +00001106
Bill Wendlingb4202b82009-07-01 18:50:55 +00001107/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001108unsigned SparcTargetLowering::getFunctionAlignment(const Function *) const {
Chris Lattnerdb486a62009-09-15 17:46:24 +00001109 return 2;
Bill Wendling20c568f2009-06-30 22:38:32 +00001110}