blob: a0f52f0f3ef1ebd812f846fa9d1620f7c6981f46 [file] [log] [blame]
Chris Lattner7c90f732006-02-05 05:50:24 +00001//===-- SparcISelDAGToDAG.cpp - A dag to dag inst selector for Sparc ------===//
Chris Lattner6c18b102005-12-17 07:47:01 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner7c90f732006-02-05 05:50:24 +000010// This file defines an instruction selector for the SPARC target.
Chris Lattner6c18b102005-12-17 07:47:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner7c90f732006-02-05 05:50:24 +000014#include "Sparc.h"
15#include "SparcTargetMachine.h"
Chris Lattner384e5ef2005-12-18 13:33:06 +000016#include "llvm/DerivedTypes.h"
Chris Lattnera01b7572005-12-17 08:03:24 +000017#include "llvm/Function.h"
Chris Lattner420736d2006-03-25 06:47:10 +000018#include "llvm/Intrinsics.h"
Chris Lattner8fa54dc2005-12-18 06:59:57 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnera01b7572005-12-17 08:03:24 +000020#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner33084492005-12-18 08:13:54 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner6c18b102005-12-17 07:47:01 +000022#include "llvm/CodeGen/SelectionDAG.h"
23#include "llvm/CodeGen/SelectionDAGISel.h"
Chris Lattnera01b7572005-12-17 08:03:24 +000024#include "llvm/CodeGen/SSARegMap.h"
Chris Lattner6c18b102005-12-17 07:47:01 +000025#include "llvm/Target/TargetLowering.h"
26#include "llvm/Support/Debug.h"
27#include <iostream>
Evan Cheng2ef88a02006-08-07 22:28:20 +000028#include <queue>
Evan Cheng900c8262006-02-05 06:51:51 +000029#include <set>
Chris Lattner6c18b102005-12-17 07:47:01 +000030using namespace llvm;
31
32//===----------------------------------------------------------------------===//
33// TargetLowering Implementation
34//===----------------------------------------------------------------------===//
35
Chris Lattner7c90f732006-02-05 05:50:24 +000036namespace SPISD {
Chris Lattner4d55aca2005-12-18 01:20:35 +000037 enum {
Chris Lattner7c90f732006-02-05 05:50:24 +000038 FIRST_NUMBER = ISD::BUILTIN_OP_END+SP::INSTRUCTION_LIST_END,
Chris Lattner9072c052006-01-30 06:14:02 +000039 CMPICC, // Compare two GPR operands, set icc.
40 CMPFCC, // Compare two FP operands, set fcc.
41 BRICC, // Branch to dest on icc condition
42 BRFCC, // Branch to dest on fcc condition
43 SELECT_ICC, // Select between two values using the current ICC flags.
44 SELECT_FCC, // Select between two values using the current FCC flags.
Chris Lattnere3572462005-12-18 02:10:39 +000045
Chris Lattner9072c052006-01-30 06:14:02 +000046 Hi, Lo, // Hi/Lo operations, typically on a global address.
Chris Lattner8fa54dc2005-12-18 06:59:57 +000047
Chris Lattner9072c052006-01-30 06:14:02 +000048 FTOI, // FP to Int within a FP register.
49 ITOF, // Int to FP within a FP register.
50
Chris Lattner7c90f732006-02-05 05:50:24 +000051 CALL, // A call instruction.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000052 RET_FLAG // Return with a flag operand.
Chris Lattner4d55aca2005-12-18 01:20:35 +000053 };
54}
55
Chris Lattner3772bcb2006-01-30 07:43:04 +000056/// IntCondCCodeToICC - Convert a DAG integer condition code to a SPARC ICC
57/// condition.
Chris Lattner7c90f732006-02-05 05:50:24 +000058static SPCC::CondCodes IntCondCCodeToICC(ISD::CondCode CC) {
Chris Lattner3772bcb2006-01-30 07:43:04 +000059 switch (CC) {
60 default: assert(0 && "Unknown integer condition code!");
Chris Lattner7c90f732006-02-05 05:50:24 +000061 case ISD::SETEQ: return SPCC::ICC_E;
62 case ISD::SETNE: return SPCC::ICC_NE;
63 case ISD::SETLT: return SPCC::ICC_L;
64 case ISD::SETGT: return SPCC::ICC_G;
65 case ISD::SETLE: return SPCC::ICC_LE;
66 case ISD::SETGE: return SPCC::ICC_GE;
67 case ISD::SETULT: return SPCC::ICC_CS;
68 case ISD::SETULE: return SPCC::ICC_LEU;
69 case ISD::SETUGT: return SPCC::ICC_GU;
70 case ISD::SETUGE: return SPCC::ICC_CC;
Chris Lattner3772bcb2006-01-30 07:43:04 +000071 }
72}
73
74/// FPCondCCodeToFCC - Convert a DAG floatingp oint condition code to a SPARC
75/// FCC condition.
Chris Lattner7c90f732006-02-05 05:50:24 +000076static SPCC::CondCodes FPCondCCodeToFCC(ISD::CondCode CC) {
Chris Lattner3772bcb2006-01-30 07:43:04 +000077 switch (CC) {
78 default: assert(0 && "Unknown fp condition code!");
Chris Lattner8b5fbc52006-05-25 22:26:02 +000079 case ISD::SETEQ:
80 case ISD::SETOEQ: return SPCC::FCC_E;
81 case ISD::SETNE:
82 case ISD::SETUNE: return SPCC::FCC_NE;
83 case ISD::SETLT:
84 case ISD::SETOLT: return SPCC::FCC_L;
85 case ISD::SETGT:
86 case ISD::SETOGT: return SPCC::FCC_G;
87 case ISD::SETLE:
88 case ISD::SETOLE: return SPCC::FCC_LE;
89 case ISD::SETGE:
90 case ISD::SETOGE: return SPCC::FCC_GE;
Chris Lattner7c90f732006-02-05 05:50:24 +000091 case ISD::SETULT: return SPCC::FCC_UL;
92 case ISD::SETULE: return SPCC::FCC_ULE;
93 case ISD::SETUGT: return SPCC::FCC_UG;
94 case ISD::SETUGE: return SPCC::FCC_UGE;
95 case ISD::SETUO: return SPCC::FCC_U;
96 case ISD::SETO: return SPCC::FCC_O;
97 case ISD::SETONE: return SPCC::FCC_LG;
98 case ISD::SETUEQ: return SPCC::FCC_UE;
Chris Lattner3772bcb2006-01-30 07:43:04 +000099 }
100}
Chris Lattner3772bcb2006-01-30 07:43:04 +0000101
Chris Lattner6c18b102005-12-17 07:47:01 +0000102namespace {
Chris Lattner7c90f732006-02-05 05:50:24 +0000103 class SparcTargetLowering : public TargetLowering {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000104 int VarArgsFrameOffset; // Frame offset to start of varargs area.
Chris Lattner6c18b102005-12-17 07:47:01 +0000105 public:
Chris Lattner7c90f732006-02-05 05:50:24 +0000106 SparcTargetLowering(TargetMachine &TM);
Chris Lattner4d55aca2005-12-18 01:20:35 +0000107 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
Chris Lattner4a397e02006-01-30 03:51:45 +0000108
Nate Begeman368e18d2006-02-16 21:11:51 +0000109 /// computeMaskedBitsForTargetNode - Determine which of the bits specified
110 /// in Mask are known to be either zero or one and return them in the
111 /// KnownZero/KnownOne bitsets.
112 virtual void computeMaskedBitsForTargetNode(const SDOperand Op,
113 uint64_t Mask,
114 uint64_t &KnownZero,
115 uint64_t &KnownOne,
116 unsigned Depth = 0) const;
Chris Lattner4a397e02006-01-30 03:51:45 +0000117
Chris Lattner6c18b102005-12-17 07:47:01 +0000118 virtual std::vector<SDOperand>
119 LowerArguments(Function &F, SelectionDAG &DAG);
120 virtual std::pair<SDOperand, SDOperand>
121 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
122 unsigned CC,
123 bool isTailCall, SDOperand Callee, ArgListTy &Args,
124 SelectionDAG &DAG);
Chris Lattner33084492005-12-18 08:13:54 +0000125 virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
126 MachineBasicBlock *MBB);
Chris Lattner72878a42006-01-12 07:31:15 +0000127
128 virtual const char *getTargetNodeName(unsigned Opcode) const;
Chris Lattner6c18b102005-12-17 07:47:01 +0000129 };
130}
131
Chris Lattner7c90f732006-02-05 05:50:24 +0000132SparcTargetLowering::SparcTargetLowering(TargetMachine &TM)
Chris Lattner6c18b102005-12-17 07:47:01 +0000133 : TargetLowering(TM) {
134
135 // Set up the register classes.
Chris Lattner7c90f732006-02-05 05:50:24 +0000136 addRegisterClass(MVT::i32, SP::IntRegsRegisterClass);
137 addRegisterClass(MVT::f32, SP::FPRegsRegisterClass);
138 addRegisterClass(MVT::f64, SP::DFPRegsRegisterClass);
Chris Lattner9a60ff62005-12-17 20:50:42 +0000139
Chris Lattnere3572462005-12-18 02:10:39 +0000140 // Custom legalize GlobalAddress nodes into LO/HI parts.
141 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Chris Lattner76acc872005-12-18 02:37:35 +0000142 setOperationAction(ISD::ConstantPool , MVT::i32, Custom);
Chris Lattnere3572462005-12-18 02:10:39 +0000143
Chris Lattner9a60ff62005-12-17 20:50:42 +0000144 // Sparc doesn't have sext_inreg, replace them with shl/sra
Chris Lattner33084492005-12-18 08:13:54 +0000145 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
146 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
147 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
Chris Lattner7087e572005-12-17 22:39:19 +0000148
149 // Sparc has no REM operation.
150 setOperationAction(ISD::UREM, MVT::i32, Expand);
151 setOperationAction(ISD::SREM, MVT::i32, Expand);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000152
153 // Custom expand fp<->sint
154 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
155 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
156
157 // Expand fp<->uint
158 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
159 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Chris Lattner6c18b102005-12-17 07:47:01 +0000160
Chris Lattner53e88452005-12-23 05:13:35 +0000161 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
162 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
163
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000164 // Turn FP extload into load/fextend
Chris Lattner065c8962005-12-18 07:13:32 +0000165 setOperationAction(ISD::EXTLOAD, MVT::f32, Expand);
166
Chris Lattner4d55aca2005-12-18 01:20:35 +0000167 // Sparc has no select or setcc: expand to SELECT_CC.
168 setOperationAction(ISD::SELECT, MVT::i32, Expand);
169 setOperationAction(ISD::SELECT, MVT::f32, Expand);
170 setOperationAction(ISD::SELECT, MVT::f64, Expand);
171 setOperationAction(ISD::SETCC, MVT::i32, Expand);
172 setOperationAction(ISD::SETCC, MVT::f32, Expand);
173 setOperationAction(ISD::SETCC, MVT::f64, Expand);
174
175 // Sparc doesn't have BRCOND either, it has BR_CC.
176 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Nate Begeman37efe672006-04-22 18:53:45 +0000177 setOperationAction(ISD::BRIND, MVT::i32, Expand);
Chris Lattner4d55aca2005-12-18 01:20:35 +0000178 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
179 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
180 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
181
Chris Lattner33084492005-12-18 08:13:54 +0000182 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
183 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
184 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
185
Chris Lattner7c90f732006-02-05 05:50:24 +0000186 // SPARC has no intrinsics for these particular operations.
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000187 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
188 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
189 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
190
Chris Lattner61772c22005-12-19 01:39:40 +0000191 setOperationAction(ISD::FSIN , MVT::f64, Expand);
192 setOperationAction(ISD::FCOS , MVT::f64, Expand);
193 setOperationAction(ISD::FSIN , MVT::f32, Expand);
194 setOperationAction(ISD::FCOS , MVT::f32, Expand);
195 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
196 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
197 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000198 setOperationAction(ISD::ROTL , MVT::i32, Expand);
199 setOperationAction(ISD::ROTR , MVT::i32, Expand);
Nate Begemand88fc032006-01-14 03:14:10 +0000200 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Chris Lattner9601a862006-03-05 05:08:37 +0000201 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
202 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000203
204 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
205 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
206 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000207
208 // We don't have line number support yet.
209 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +0000210 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
211 setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000212
Nate Begemanee625572006-01-27 21:09:22 +0000213 // RET must be custom lowered, to meet ABI requirements
214 setOperationAction(ISD::RET , MVT::Other, Custom);
215
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000216 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
Nate Begemanacc398c2006-01-25 18:21:52 +0000217 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000218 // VAARG needs to be lowered to not do unaligned accesses for doubles.
219 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000220
221 // Use the default implementation.
Nate Begemanacc398c2006-01-25 18:21:52 +0000222 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
223 setOperationAction(ISD::VAEND , MVT::Other, Expand);
224 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
225 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
Chris Lattner6fa1f572006-02-15 06:41:34 +0000226 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
Chris Lattner934ea492006-01-15 08:55:25 +0000227
Chris Lattner2adc05c2006-01-30 22:20:49 +0000228 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
229 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
230
Chris Lattner7c90f732006-02-05 05:50:24 +0000231 setStackPointerRegisterToSaveRestore(SP::O6);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000232
Chris Lattner7c90f732006-02-05 05:50:24 +0000233 if (TM.getSubtarget<SparcSubtarget>().isV9()) {
Chris Lattner9072c052006-01-30 06:14:02 +0000234 setOperationAction(ISD::CTPOP, MVT::i32, Legal);
235 }
236
Chris Lattner6c18b102005-12-17 07:47:01 +0000237 computeRegisterProperties();
238}
239
Chris Lattner7c90f732006-02-05 05:50:24 +0000240const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const {
Chris Lattner72878a42006-01-12 07:31:15 +0000241 switch (Opcode) {
Chris Lattner138d3222006-01-12 07:38:04 +0000242 default: return 0;
Chris Lattner7c90f732006-02-05 05:50:24 +0000243 case SPISD::CMPICC: return "SPISD::CMPICC";
244 case SPISD::CMPFCC: return "SPISD::CMPFCC";
245 case SPISD::BRICC: return "SPISD::BRICC";
246 case SPISD::BRFCC: return "SPISD::BRFCC";
247 case SPISD::SELECT_ICC: return "SPISD::SELECT_ICC";
248 case SPISD::SELECT_FCC: return "SPISD::SELECT_FCC";
249 case SPISD::Hi: return "SPISD::Hi";
250 case SPISD::Lo: return "SPISD::Lo";
251 case SPISD::FTOI: return "SPISD::FTOI";
252 case SPISD::ITOF: return "SPISD::ITOF";
253 case SPISD::CALL: return "SPISD::CALL";
254 case SPISD::RET_FLAG: return "SPISD::RET_FLAG";
Chris Lattner72878a42006-01-12 07:31:15 +0000255 }
256}
257
Chris Lattner4a397e02006-01-30 03:51:45 +0000258/// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
259/// be zero. Op is expected to be a target specific node. Used by DAG
260/// combiner.
Nate Begeman368e18d2006-02-16 21:11:51 +0000261void SparcTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
262 uint64_t Mask,
263 uint64_t &KnownZero,
264 uint64_t &KnownOne,
265 unsigned Depth) const {
266 uint64_t KnownZero2, KnownOne2;
267 KnownZero = KnownOne = 0; // Don't know anything.
268
Chris Lattner4a397e02006-01-30 03:51:45 +0000269 switch (Op.getOpcode()) {
Nate Begeman368e18d2006-02-16 21:11:51 +0000270 default: break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000271 case SPISD::SELECT_ICC:
272 case SPISD::SELECT_FCC:
Nate Begeman368e18d2006-02-16 21:11:51 +0000273 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
274 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
275 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
276 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
277
278 // Only known if known in both the LHS and RHS.
279 KnownOne &= KnownOne2;
280 KnownZero &= KnownZero2;
281 break;
Chris Lattner4a397e02006-01-30 03:51:45 +0000282 }
283}
284
Chris Lattner384e5ef2005-12-18 13:33:06 +0000285/// LowerArguments - V8 uses a very simple ABI, where all values are passed in
286/// either one or two GPRs, including FP values. TODO: we should pass FP values
287/// in FP registers for fastcc functions.
Chris Lattner6c18b102005-12-17 07:47:01 +0000288std::vector<SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000289SparcTargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
Chris Lattnera01b7572005-12-17 08:03:24 +0000290 MachineFunction &MF = DAG.getMachineFunction();
291 SSARegMap *RegMap = MF.getSSARegMap();
292 std::vector<SDOperand> ArgValues;
293
Chris Lattner384e5ef2005-12-18 13:33:06 +0000294 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000295 SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
Chris Lattnera01b7572005-12-17 08:03:24 +0000296 };
Chris Lattner384e5ef2005-12-18 13:33:06 +0000297
298 const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6;
299 unsigned ArgOffset = 68;
300
301 SDOperand Root = DAG.getRoot();
302 std::vector<SDOperand> OutChains;
303
Chris Lattnera01b7572005-12-17 08:03:24 +0000304 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
305 MVT::ValueType ObjectVT = getValueType(I->getType());
Chris Lattnera01b7572005-12-17 08:03:24 +0000306
307 switch (ObjectVT) {
308 default: assert(0 && "Unhandled argument type!");
Chris Lattnera01b7572005-12-17 08:03:24 +0000309 case MVT::i1:
310 case MVT::i8:
311 case MVT::i16:
Chris Lattner384e5ef2005-12-18 13:33:06 +0000312 case MVT::i32:
313 if (I->use_empty()) { // Argument is dead.
314 if (CurArgReg < ArgRegEnd) ++CurArgReg;
315 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
316 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000317 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000318 MF.addLiveIn(*CurArgReg++, VReg);
319 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
320 if (ObjectVT != MVT::i32) {
321 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
322 : ISD::AssertZext;
323 Arg = DAG.getNode(AssertOp, MVT::i32, Arg,
324 DAG.getValueType(ObjectVT));
325 Arg = DAG.getNode(ISD::TRUNCATE, ObjectVT, Arg);
326 }
327 ArgValues.push_back(Arg);
328 } else {
329 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
330 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
331 SDOperand Load;
332 if (ObjectVT == MVT::i32) {
333 Load = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
334 } else {
335 unsigned LoadOp =
336 I->getType()->isSigned() ? ISD::SEXTLOAD : ISD::ZEXTLOAD;
337
Chris Lattner99cf5092006-01-16 01:40:00 +0000338 // Sparc is big endian, so add an offset based on the ObjectVT.
339 unsigned Offset = 4-std::max(1U, MVT::getSizeInBits(ObjectVT)/8);
340 FIPtr = DAG.getNode(ISD::ADD, MVT::i32, FIPtr,
341 DAG.getConstant(Offset, MVT::i32));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000342 Load = DAG.getExtLoad(LoadOp, MVT::i32, Root, FIPtr,
343 DAG.getSrcValue(0), ObjectVT);
Chris Lattnerf7511b42006-01-15 22:22:01 +0000344 Load = DAG.getNode(ISD::TRUNCATE, ObjectVT, Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000345 }
346 ArgValues.push_back(Load);
Chris Lattnera01b7572005-12-17 08:03:24 +0000347 }
Chris Lattner384e5ef2005-12-18 13:33:06 +0000348
349 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000350 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000351 case MVT::f32:
352 if (I->use_empty()) { // Argument is dead.
353 if (CurArgReg < ArgRegEnd) ++CurArgReg;
354 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
355 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
356 // FP value is passed in an integer register.
Chris Lattner7c90f732006-02-05 05:50:24 +0000357 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000358 MF.addLiveIn(*CurArgReg++, VReg);
359 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
360
Chris Lattnera01874f2005-12-23 02:31:39 +0000361 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Arg);
362 ArgValues.push_back(Arg);
Chris Lattner46030a62006-01-19 07:22:29 +0000363 } else {
364 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
365 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
366 SDOperand Load = DAG.getLoad(MVT::f32, Root, FIPtr, DAG.getSrcValue(0));
367 ArgValues.push_back(Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000368 }
369 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000370 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000371
372 case MVT::i64:
373 case MVT::f64:
374 if (I->use_empty()) { // Argument is dead.
375 if (CurArgReg < ArgRegEnd) ++CurArgReg;
376 if (CurArgReg < ArgRegEnd) ++CurArgReg;
377 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
Chris Lattnerb7163432006-01-31 02:45:52 +0000378 } else if (/* FIXME: Apparently this isn't safe?? */
379 0 && CurArgReg == ArgRegEnd && ObjectVT == MVT::f64 &&
Chris Lattner384e5ef2005-12-18 13:33:06 +0000380 ((CurArgReg-ArgRegs) & 1) == 0) {
381 // If this is a double argument and the whole thing lives on the stack,
382 // and the argument is aligned, load the double straight from the stack.
383 // We can't do a load in cases like void foo([6ints], int,double),
384 // because the double wouldn't be aligned!
385 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(8, ArgOffset);
386 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
387 ArgValues.push_back(DAG.getLoad(MVT::f64, Root, FIPtr,
388 DAG.getSrcValue(0)));
389 } else {
390 SDOperand HiVal;
391 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000392 unsigned VRegHi = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000393 MF.addLiveIn(*CurArgReg++, VRegHi);
394 HiVal = DAG.getCopyFromReg(Root, VRegHi, MVT::i32);
395 } else {
396 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
397 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
398 HiVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
399 }
400
401 SDOperand LoVal;
402 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000403 unsigned VRegLo = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000404 MF.addLiveIn(*CurArgReg++, VRegLo);
405 LoVal = DAG.getCopyFromReg(Root, VRegLo, MVT::i32);
406 } else {
407 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4);
408 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
409 LoVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
410 }
411
412 // Compose the two halves together into an i64 unit.
413 SDOperand WholeValue =
414 DAG.getNode(ISD::BUILD_PAIR, MVT::i64, LoVal, HiVal);
Chris Lattnera01874f2005-12-23 02:31:39 +0000415
416 // If we want a double, do a bit convert.
417 if (ObjectVT == MVT::f64)
418 WholeValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, WholeValue);
419
420 ArgValues.push_back(WholeValue);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000421 }
422 ArgOffset += 8;
423 break;
Chris Lattnera01b7572005-12-17 08:03:24 +0000424 }
425 }
426
Chris Lattner384e5ef2005-12-18 13:33:06 +0000427 // Store remaining ArgRegs to the stack if this is a varargs function.
428 if (F.getFunctionType()->isVarArg()) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000429 // Remember the vararg offset for the va_start implementation.
430 VarArgsFrameOffset = ArgOffset;
431
Chris Lattner384e5ef2005-12-18 13:33:06 +0000432 for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
Chris Lattner7c90f732006-02-05 05:50:24 +0000433 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000434 MF.addLiveIn(*CurArgReg, VReg);
435 SDOperand Arg = DAG.getCopyFromReg(DAG.getRoot(), VReg, MVT::i32);
436
437 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
438 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
439
440 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, DAG.getRoot(),
441 Arg, FIPtr, DAG.getSrcValue(0)));
442 ArgOffset += 4;
443 }
444 }
445
446 if (!OutChains.empty())
447 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
Chris Lattnera01b7572005-12-17 08:03:24 +0000448
449 // Finally, inform the code generator which regs we return values in.
450 switch (getValueType(F.getReturnType())) {
451 default: assert(0 && "Unknown type!");
452 case MVT::isVoid: break;
453 case MVT::i1:
454 case MVT::i8:
455 case MVT::i16:
456 case MVT::i32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000457 MF.addLiveOut(SP::I0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000458 break;
459 case MVT::i64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000460 MF.addLiveOut(SP::I0);
461 MF.addLiveOut(SP::I1);
Chris Lattnera01b7572005-12-17 08:03:24 +0000462 break;
463 case MVT::f32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000464 MF.addLiveOut(SP::F0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000465 break;
466 case MVT::f64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000467 MF.addLiveOut(SP::D0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000468 break;
469 }
470
471 return ArgValues;
Chris Lattner6c18b102005-12-17 07:47:01 +0000472}
473
474std::pair<SDOperand, SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000475SparcTargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
476 bool isVarArg, unsigned CC,
477 bool isTailCall, SDOperand Callee,
478 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000479 // Count the size of the outgoing arguments.
480 unsigned ArgsSize = 0;
481 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
482 switch (getValueType(Args[i].second)) {
483 default: assert(0 && "Unknown value type!");
484 case MVT::i1:
485 case MVT::i8:
486 case MVT::i16:
487 case MVT::i32:
488 case MVT::f32:
489 ArgsSize += 4;
490 break;
491 case MVT::i64:
492 case MVT::f64:
493 ArgsSize += 8;
494 break;
495 }
496 }
497 if (ArgsSize > 4*6)
498 ArgsSize -= 4*6; // Space for first 6 arguments is prereserved.
499 else
500 ArgsSize = 0;
501
Chris Lattner6554bef2005-12-19 01:15:13 +0000502 // Keep stack frames 8-byte aligned.
503 ArgsSize = (ArgsSize+7) & ~7;
504
Chris Lattner94dd2922006-02-13 09:00:43 +0000505 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(ArgsSize, getPointerTy()));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000506
507 SDOperand StackPtr, NullSV;
508 std::vector<SDOperand> Stores;
509 std::vector<SDOperand> RegValuesToPass;
510 unsigned ArgOffset = 68;
511 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
512 SDOperand Val = Args[i].first;
513 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercb833742006-01-06 17:56:38 +0000514 SDOperand ValToStore(0, 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000515 unsigned ObjSize;
516 switch (ObjectVT) {
517 default: assert(0 && "Unhandled argument type!");
518 case MVT::i1:
519 case MVT::i8:
520 case MVT::i16:
521 // Promote the integer to 32-bits. If the input type is signed, use a
522 // sign extend, otherwise use a zero extend.
523 if (Args[i].second->isSigned())
524 Val = DAG.getNode(ISD::SIGN_EXTEND, MVT::i32, Val);
525 else
526 Val = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Val);
527 // FALL THROUGH
528 case MVT::i32:
529 ObjSize = 4;
530
531 if (RegValuesToPass.size() >= 6) {
532 ValToStore = Val;
533 } else {
534 RegValuesToPass.push_back(Val);
535 }
536 break;
537 case MVT::f32:
538 ObjSize = 4;
539 if (RegValuesToPass.size() >= 6) {
540 ValToStore = Val;
541 } else {
542 // Convert this to a FP value in an int reg.
Chris Lattnera01874f2005-12-23 02:31:39 +0000543 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000544 RegValuesToPass.push_back(Val);
545 }
546 break;
Chris Lattnera01874f2005-12-23 02:31:39 +0000547 case MVT::f64:
Chris Lattner2db3ff62005-12-18 15:55:15 +0000548 ObjSize = 8;
549 // If we can store this directly into the outgoing slot, do so. We can
550 // do this when all ArgRegs are used and if the outgoing slot is aligned.
Chris Lattner7f9975a2006-01-15 19:15:46 +0000551 // FIXME: McGill/misr fails with this.
552 if (0 && RegValuesToPass.size() >= 6 && ((ArgOffset-68) & 7) == 0) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000553 ValToStore = Val;
554 break;
555 }
556
557 // Otherwise, convert this to a FP value in int regs.
Chris Lattnera01874f2005-12-23 02:31:39 +0000558 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000559 // FALL THROUGH
560 case MVT::i64:
561 ObjSize = 8;
562 if (RegValuesToPass.size() >= 6) {
563 ValToStore = Val; // Whole thing is passed in memory.
564 break;
565 }
566
567 // Split the value into top and bottom part. Top part goes in a reg.
Evan Chenga7dc4a52006-06-15 08:18:06 +0000568 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, getPointerTy(), Val,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000569 DAG.getConstant(1, MVT::i32));
Evan Chenga7dc4a52006-06-15 08:18:06 +0000570 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, getPointerTy(), Val,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000571 DAG.getConstant(0, MVT::i32));
572 RegValuesToPass.push_back(Hi);
573
574 if (RegValuesToPass.size() >= 6) {
575 ValToStore = Lo;
Chris Lattner7c423b42005-12-19 07:57:53 +0000576 ArgOffset += 4;
577 ObjSize = 4;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000578 } else {
579 RegValuesToPass.push_back(Lo);
580 }
581 break;
582 }
583
584 if (ValToStore.Val) {
585 if (!StackPtr.Val) {
Chris Lattner7c90f732006-02-05 05:50:24 +0000586 StackPtr = DAG.getRegister(SP::O6, MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000587 NullSV = DAG.getSrcValue(NULL);
588 }
589 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
590 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
591 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
592 ValToStore, PtrOff, NullSV));
593 }
594 ArgOffset += ObjSize;
595 }
596
597 // Emit all stores, make sure the occur before any copies into physregs.
598 if (!Stores.empty())
599 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
600
601 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000602 SP::O0, SP::O1, SP::O2, SP::O3, SP::O4, SP::O5
Chris Lattner2db3ff62005-12-18 15:55:15 +0000603 };
604
605 // Build a sequence of copy-to-reg nodes chained together with token chain
606 // and flag operands which copy the outgoing args into O[0-5].
607 SDOperand InFlag;
608 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
609 Chain = DAG.getCopyToReg(Chain, ArgRegs[i], RegValuesToPass[i], InFlag);
610 InFlag = Chain.getValue(1);
611 }
612
Chris Lattner2db3ff62005-12-18 15:55:15 +0000613 // If the callee is a GlobalAddress node (quite common, every direct call is)
614 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000615 // Likewise ExternalSymbol -> TargetExternalSymbol.
Chris Lattner2db3ff62005-12-18 15:55:15 +0000616 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
617 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i32);
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000618 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
619 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000620
621 std::vector<MVT::ValueType> NodeTys;
622 NodeTys.push_back(MVT::Other); // Returns a chain
623 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Chris Lattner44ea7b12006-01-27 23:30:03 +0000624 std::vector<SDOperand> Ops;
625 Ops.push_back(Chain);
626 Ops.push_back(Callee);
Chris Lattnerb4d899e2005-12-18 22:57:47 +0000627 if (InFlag.Val)
Chris Lattner44ea7b12006-01-27 23:30:03 +0000628 Ops.push_back(InFlag);
Chris Lattner7c90f732006-02-05 05:50:24 +0000629 Chain = DAG.getNode(SPISD::CALL, NodeTys, Ops);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000630 InFlag = Chain.getValue(1);
631
632 MVT::ValueType RetTyVT = getValueType(RetTy);
633 SDOperand RetVal;
634 if (RetTyVT != MVT::isVoid) {
635 switch (RetTyVT) {
636 default: assert(0 && "Unknown value type to return!");
637 case MVT::i1:
638 case MVT::i8:
639 case MVT::i16:
Chris Lattner7c90f732006-02-05 05:50:24 +0000640 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000641 Chain = RetVal.getValue(1);
642
643 // Add a note to keep track of whether it is sign or zero extended.
644 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
645 MVT::i32, RetVal, DAG.getValueType(RetTyVT));
646 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
647 break;
648 case MVT::i32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000649 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000650 Chain = RetVal.getValue(1);
651 break;
652 case MVT::f32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000653 RetVal = DAG.getCopyFromReg(Chain, SP::F0, MVT::f32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000654 Chain = RetVal.getValue(1);
655 break;
656 case MVT::f64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000657 RetVal = DAG.getCopyFromReg(Chain, SP::D0, MVT::f64, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000658 Chain = RetVal.getValue(1);
659 break;
660 case MVT::i64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000661 SDOperand Lo = DAG.getCopyFromReg(Chain, SP::O1, MVT::i32, InFlag);
662 SDOperand Hi = DAG.getCopyFromReg(Lo.getValue(1), SP::O0, MVT::i32,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000663 Lo.getValue(2));
664 RetVal = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
665 Chain = Hi.getValue(1);
666 break;
667 }
668 }
669
670 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
671 DAG.getConstant(ArgsSize, getPointerTy()));
672
Chris Lattner2db3ff62005-12-18 15:55:15 +0000673 return std::make_pair(RetVal, Chain);
Chris Lattner6c18b102005-12-17 07:47:01 +0000674}
675
Chris Lattner7c90f732006-02-05 05:50:24 +0000676// Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so
677// set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
Chris Lattner86638b92006-01-31 05:05:52 +0000678static void LookThroughSetCC(SDOperand &LHS, SDOperand &RHS,
Chris Lattner7c90f732006-02-05 05:50:24 +0000679 ISD::CondCode CC, unsigned &SPCC) {
Chris Lattner86638b92006-01-31 05:05:52 +0000680 if (isa<ConstantSDNode>(RHS) && cast<ConstantSDNode>(RHS)->getValue() == 0 &&
681 CC == ISD::SETNE &&
Chris Lattner7c90f732006-02-05 05:50:24 +0000682 ((LHS.getOpcode() == SPISD::SELECT_ICC &&
683 LHS.getOperand(3).getOpcode() == SPISD::CMPICC) ||
684 (LHS.getOpcode() == SPISD::SELECT_FCC &&
685 LHS.getOperand(3).getOpcode() == SPISD::CMPFCC)) &&
Chris Lattner86638b92006-01-31 05:05:52 +0000686 isa<ConstantSDNode>(LHS.getOperand(0)) &&
687 isa<ConstantSDNode>(LHS.getOperand(1)) &&
688 cast<ConstantSDNode>(LHS.getOperand(0))->getValue() == 1 &&
689 cast<ConstantSDNode>(LHS.getOperand(1))->getValue() == 0) {
690 SDOperand CMPCC = LHS.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000691 SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getValue();
Chris Lattner86638b92006-01-31 05:05:52 +0000692 LHS = CMPCC.getOperand(0);
693 RHS = CMPCC.getOperand(1);
694 }
695}
696
697
Chris Lattner7c90f732006-02-05 05:50:24 +0000698SDOperand SparcTargetLowering::
Chris Lattner4d55aca2005-12-18 01:20:35 +0000699LowerOperation(SDOperand Op, SelectionDAG &DAG) {
700 switch (Op.getOpcode()) {
701 default: assert(0 && "Should not custom lower this!");
Chris Lattnere3572462005-12-18 02:10:39 +0000702 case ISD::GlobalAddress: {
703 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
704 SDOperand GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000705 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, GA);
706 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, GA);
Chris Lattnere3572462005-12-18 02:10:39 +0000707 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
708 }
Chris Lattner76acc872005-12-18 02:37:35 +0000709 case ISD::ConstantPool: {
710 Constant *C = cast<ConstantPoolSDNode>(Op)->get();
Evan Chengb8973bd2006-01-31 22:23:14 +0000711 SDOperand CP = DAG.getTargetConstantPool(C, MVT::i32,
712 cast<ConstantPoolSDNode>(Op)->getAlignment());
Chris Lattner7c90f732006-02-05 05:50:24 +0000713 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, CP);
714 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, CP);
Chris Lattner76acc872005-12-18 02:37:35 +0000715 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
716 }
Chris Lattner3cb71872005-12-23 05:00:16 +0000717 case ISD::FP_TO_SINT:
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000718 // Convert the fp value to integer in an FP register.
Chris Lattner3cb71872005-12-23 05:00:16 +0000719 assert(Op.getValueType() == MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000720 Op = DAG.getNode(SPISD::FTOI, MVT::f32, Op.getOperand(0));
Chris Lattner3cb71872005-12-23 05:00:16 +0000721 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000722 case ISD::SINT_TO_FP: {
Chris Lattner3cb71872005-12-23 05:00:16 +0000723 assert(Op.getOperand(0).getValueType() == MVT::i32);
Chris Lattner3fbb7262006-01-11 07:27:40 +0000724 SDOperand Tmp = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000725 // Convert the int value to FP in an FP register.
Chris Lattner7c90f732006-02-05 05:50:24 +0000726 return DAG.getNode(SPISD::ITOF, Op.getValueType(), Tmp);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000727 }
Chris Lattner33084492005-12-18 08:13:54 +0000728 case ISD::BR_CC: {
729 SDOperand Chain = Op.getOperand(0);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000730 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000731 SDOperand LHS = Op.getOperand(2);
732 SDOperand RHS = Op.getOperand(3);
733 SDOperand Dest = Op.getOperand(4);
Chris Lattner7c90f732006-02-05 05:50:24 +0000734 unsigned Opc, SPCC = ~0U;
Chris Lattner86638b92006-01-31 05:05:52 +0000735
736 // If this is a br_cc of a "setcc", and if the setcc got lowered into
737 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000738 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattner33084492005-12-18 08:13:54 +0000739
740 // Get the condition flag.
Chris Lattner86638b92006-01-31 05:05:52 +0000741 SDOperand CompareFlag;
Chris Lattner33084492005-12-18 08:13:54 +0000742 if (LHS.getValueType() == MVT::i32) {
Chris Lattnerb9169ce2006-01-11 07:49:38 +0000743 std::vector<MVT::ValueType> VTs;
744 VTs.push_back(MVT::i32);
745 VTs.push_back(MVT::Flag);
746 std::vector<SDOperand> Ops;
747 Ops.push_back(LHS);
748 Ops.push_back(RHS);
Chris Lattner7c90f732006-02-05 05:50:24 +0000749 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops).getValue(1);
750 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
751 Opc = SPISD::BRICC;
Chris Lattner33084492005-12-18 08:13:54 +0000752 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000753 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
754 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
755 Opc = SPISD::BRFCC;
Chris Lattner33084492005-12-18 08:13:54 +0000756 }
Chris Lattner86638b92006-01-31 05:05:52 +0000757 return DAG.getNode(Opc, MVT::Other, Chain, Dest,
Chris Lattner7c90f732006-02-05 05:50:24 +0000758 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000759 }
760 case ISD::SELECT_CC: {
761 SDOperand LHS = Op.getOperand(0);
762 SDOperand RHS = Op.getOperand(1);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000763 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000764 SDOperand TrueVal = Op.getOperand(2);
765 SDOperand FalseVal = Op.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000766 unsigned Opc, SPCC = ~0U;
Chris Lattner3772bcb2006-01-30 07:43:04 +0000767
Chris Lattnerdea95282006-01-30 04:34:44 +0000768 // If this is a select_cc of a "setcc", and if the setcc got lowered into
769 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000770 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattnerdea95282006-01-30 04:34:44 +0000771
Chris Lattner4bb91022006-01-12 17:05:32 +0000772 SDOperand CompareFlag;
Chris Lattner4bb91022006-01-12 17:05:32 +0000773 if (LHS.getValueType() == MVT::i32) {
774 std::vector<MVT::ValueType> VTs;
775 VTs.push_back(LHS.getValueType()); // subcc returns a value
776 VTs.push_back(MVT::Flag);
777 std::vector<SDOperand> Ops;
778 Ops.push_back(LHS);
779 Ops.push_back(RHS);
Chris Lattner7c90f732006-02-05 05:50:24 +0000780 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops).getValue(1);
781 Opc = SPISD::SELECT_ICC;
782 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000783 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000784 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
785 Opc = SPISD::SELECT_FCC;
786 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000787 }
Chris Lattner33084492005-12-18 08:13:54 +0000788 return DAG.getNode(Opc, TrueVal.getValueType(), TrueVal, FalseVal,
Chris Lattner7c90f732006-02-05 05:50:24 +0000789 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000790 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000791 case ISD::VASTART: {
792 // vastart just stores the address of the VarArgsFrameIndex slot into the
793 // memory location argument.
794 SDOperand Offset = DAG.getNode(ISD::ADD, MVT::i32,
Chris Lattner7c90f732006-02-05 05:50:24 +0000795 DAG.getRegister(SP::I6, MVT::i32),
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000796 DAG.getConstant(VarArgsFrameOffset, MVT::i32));
Nate Begemanacc398c2006-01-25 18:21:52 +0000797 return DAG.getNode(ISD::STORE, MVT::Other, Op.getOperand(0), Offset,
798 Op.getOperand(1), Op.getOperand(2));
799 }
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000800 case ISD::VAARG: {
801 SDNode *Node = Op.Val;
802 MVT::ValueType VT = Node->getValueType(0);
803 SDOperand InChain = Node->getOperand(0);
804 SDOperand VAListPtr = Node->getOperand(1);
805 SDOperand VAList = DAG.getLoad(getPointerTy(), InChain, VAListPtr,
806 Node->getOperand(2));
807 // Increment the pointer, VAList, to the next vaarg
808 SDOperand NextPtr = DAG.getNode(ISD::ADD, getPointerTy(), VAList,
809 DAG.getConstant(MVT::getSizeInBits(VT)/8,
810 getPointerTy()));
811 // Store the incremented VAList to the legalized pointer
812 InChain = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), NextPtr,
813 VAListPtr, Node->getOperand(2));
814 // Load the actual argument out of the pointer VAList, unless this is an
815 // f64 load.
816 if (VT != MVT::f64) {
817 return DAG.getLoad(VT, InChain, VAList, DAG.getSrcValue(0));
818 } else {
819 // Otherwise, load it as i64, then do a bitconvert.
820 SDOperand V = DAG.getLoad(MVT::i64, InChain, VAList, DAG.getSrcValue(0));
821 std::vector<MVT::ValueType> Tys;
822 Tys.push_back(MVT::f64);
823 Tys.push_back(MVT::Other);
824 std::vector<SDOperand> Ops;
825 // Bit-Convert the value to f64.
826 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, MVT::f64, V));
827 Ops.push_back(V.getValue(1));
828 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops);
829 }
830 }
Chris Lattner6fa1f572006-02-15 06:41:34 +0000831 case ISD::DYNAMIC_STACKALLOC: {
832 SDOperand Chain = Op.getOperand(0); // Legalize the chain.
833 SDOperand Size = Op.getOperand(1); // Legalize the size.
834
835 unsigned SPReg = SP::O6;
836 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, MVT::i32);
837 SDOperand NewSP = DAG.getNode(ISD::SUB, MVT::i32, SP, Size); // Value
838 Chain = DAG.getCopyToReg(SP.getValue(1), SPReg, NewSP); // Output chain
839
840 // The resultant pointer is actually 16 words from the bottom of the stack,
841 // to provide a register spill area.
842 SDOperand NewVal = DAG.getNode(ISD::ADD, MVT::i32, NewSP,
843 DAG.getConstant(96, MVT::i32));
844 std::vector<MVT::ValueType> Tys;
845 Tys.push_back(MVT::i32);
846 Tys.push_back(MVT::Other);
847 std::vector<SDOperand> Ops;
848 Ops.push_back(NewVal);
849 Ops.push_back(Chain);
850 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops);
851 }
Nate Begemanee625572006-01-27 21:09:22 +0000852 case ISD::RET: {
853 SDOperand Copy;
854
855 switch(Op.getNumOperands()) {
856 default:
857 assert(0 && "Do not know how to return this many arguments!");
858 abort();
859 case 1:
860 return SDOperand(); // ret void is legal
Evan Cheng6848be12006-05-26 23:10:12 +0000861 case 3: {
Nate Begemanee625572006-01-27 21:09:22 +0000862 unsigned ArgReg;
863 switch(Op.getOperand(1).getValueType()) {
864 default: assert(0 && "Unknown type to return!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000865 case MVT::i32: ArgReg = SP::I0; break;
866 case MVT::f32: ArgReg = SP::F0; break;
867 case MVT::f64: ArgReg = SP::D0; break;
Nate Begemanee625572006-01-27 21:09:22 +0000868 }
869 Copy = DAG.getCopyToReg(Op.getOperand(0), ArgReg, Op.getOperand(1),
870 SDOperand());
871 break;
872 }
Evan Cheng6848be12006-05-26 23:10:12 +0000873 case 5:
874 Copy = DAG.getCopyToReg(Op.getOperand(0), SP::I0, Op.getOperand(3),
Nate Begemanee625572006-01-27 21:09:22 +0000875 SDOperand());
Chris Lattner7c90f732006-02-05 05:50:24 +0000876 Copy = DAG.getCopyToReg(Copy, SP::I1, Op.getOperand(1), Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000877 break;
878 }
Chris Lattner7c90f732006-02-05 05:50:24 +0000879 return DAG.getNode(SPISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000880 }
Chris Lattnerbce88872006-01-15 08:43:57 +0000881 }
Chris Lattner4d55aca2005-12-18 01:20:35 +0000882}
883
Chris Lattner33084492005-12-18 08:13:54 +0000884MachineBasicBlock *
Chris Lattner7c90f732006-02-05 05:50:24 +0000885SparcTargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
886 MachineBasicBlock *BB) {
Chris Lattner33084492005-12-18 08:13:54 +0000887 unsigned BROpcode;
Chris Lattner7a4d2912006-01-31 06:56:30 +0000888 unsigned CC;
Chris Lattner33084492005-12-18 08:13:54 +0000889 // Figure out the conditional branch opcode to use for this select_cc.
890 switch (MI->getOpcode()) {
891 default: assert(0 && "Unknown SELECT_CC!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000892 case SP::SELECT_CC_Int_ICC:
893 case SP::SELECT_CC_FP_ICC:
894 case SP::SELECT_CC_DFP_ICC:
895 BROpcode = SP::BCOND;
Chris Lattnerc03468b2006-01-31 17:20:06 +0000896 break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000897 case SP::SELECT_CC_Int_FCC:
898 case SP::SELECT_CC_FP_FCC:
899 case SP::SELECT_CC_DFP_FCC:
900 BROpcode = SP::FBCOND;
Chris Lattner33084492005-12-18 08:13:54 +0000901 break;
902 }
Chris Lattner7a4d2912006-01-31 06:56:30 +0000903
Chris Lattner7c90f732006-02-05 05:50:24 +0000904 CC = (SPCC::CondCodes)MI->getOperand(3).getImmedValue();
Chris Lattner33084492005-12-18 08:13:54 +0000905
906 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
907 // control-flow pattern. The incoming instruction knows the destination vreg
908 // to set, the condition code register to branch on, the true/false values to
909 // select between, and a branch opcode to use.
910 const BasicBlock *LLVM_BB = BB->getBasicBlock();
911 ilist<MachineBasicBlock>::iterator It = BB;
912 ++It;
913
914 // thisMBB:
915 // ...
916 // TrueVal = ...
917 // [f]bCC copy1MBB
918 // fallthrough --> copy0MBB
919 MachineBasicBlock *thisMBB = BB;
920 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
921 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
Chris Lattner7a4d2912006-01-31 06:56:30 +0000922 BuildMI(BB, BROpcode, 2).addMBB(sinkMBB).addImm(CC);
Chris Lattner33084492005-12-18 08:13:54 +0000923 MachineFunction *F = BB->getParent();
924 F->getBasicBlockList().insert(It, copy0MBB);
925 F->getBasicBlockList().insert(It, sinkMBB);
Nate Begemanf15485a2006-03-27 01:32:24 +0000926 // Update machine-CFG edges by first adding all successors of the current
927 // block to the new block which will contain the Phi node for the select.
928 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
929 e = BB->succ_end(); i != e; ++i)
930 sinkMBB->addSuccessor(*i);
931 // Next, remove all successors of the current block, and add the true
932 // and fallthrough blocks as its successors.
933 while(!BB->succ_empty())
934 BB->removeSuccessor(BB->succ_begin());
Chris Lattner33084492005-12-18 08:13:54 +0000935 BB->addSuccessor(copy0MBB);
936 BB->addSuccessor(sinkMBB);
937
938 // copy0MBB:
939 // %FalseValue = ...
940 // # fallthrough to sinkMBB
941 BB = copy0MBB;
942
943 // Update machine-CFG edges
944 BB->addSuccessor(sinkMBB);
945
946 // sinkMBB:
947 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
948 // ...
949 BB = sinkMBB;
Chris Lattner7c90f732006-02-05 05:50:24 +0000950 BuildMI(BB, SP::PHI, 4, MI->getOperand(0).getReg())
Chris Lattner33084492005-12-18 08:13:54 +0000951 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
952 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
953
954 delete MI; // The pseudo instruction is gone now.
955 return BB;
956}
957
Chris Lattner6c18b102005-12-17 07:47:01 +0000958//===----------------------------------------------------------------------===//
959// Instruction Selector Implementation
960//===----------------------------------------------------------------------===//
961
962//===--------------------------------------------------------------------===//
Chris Lattner7c90f732006-02-05 05:50:24 +0000963/// SparcDAGToDAGISel - SPARC specific code to select SPARC machine
Chris Lattner6c18b102005-12-17 07:47:01 +0000964/// instructions for SelectionDAG operations.
965///
966namespace {
Chris Lattner7c90f732006-02-05 05:50:24 +0000967class SparcDAGToDAGISel : public SelectionDAGISel {
968 SparcTargetLowering Lowering;
Chris Lattner76afdc92006-01-30 05:35:57 +0000969
970 /// Subtarget - Keep a pointer to the Sparc Subtarget around so that we can
971 /// make the right decision when generating code for different targets.
Chris Lattner7c90f732006-02-05 05:50:24 +0000972 const SparcSubtarget &Subtarget;
Chris Lattner6c18b102005-12-17 07:47:01 +0000973public:
Chris Lattner7c90f732006-02-05 05:50:24 +0000974 SparcDAGToDAGISel(TargetMachine &TM)
975 : SelectionDAGISel(Lowering), Lowering(TM),
976 Subtarget(TM.getSubtarget<SparcSubtarget>()) {
Chris Lattner76afdc92006-01-30 05:35:57 +0000977 }
Chris Lattner6c18b102005-12-17 07:47:01 +0000978
Evan Cheng34167212006-02-09 00:37:58 +0000979 void Select(SDOperand &Result, SDOperand Op);
Chris Lattner6c18b102005-12-17 07:47:01 +0000980
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000981 // Complex Pattern Selectors.
982 bool SelectADDRrr(SDOperand N, SDOperand &R1, SDOperand &R2);
983 bool SelectADDRri(SDOperand N, SDOperand &Base, SDOperand &Offset);
984
Chris Lattner6c18b102005-12-17 07:47:01 +0000985 /// InstructionSelectBasicBlock - This callback is invoked by
986 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
987 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
988
989 virtual const char *getPassName() const {
Chris Lattner7c90f732006-02-05 05:50:24 +0000990 return "SPARC DAG->DAG Pattern Instruction Selection";
Chris Lattner6c18b102005-12-17 07:47:01 +0000991 }
992
993 // Include the pieces autogenerated from the target description.
Chris Lattner7c90f732006-02-05 05:50:24 +0000994#include "SparcGenDAGISel.inc"
Chris Lattner6c18b102005-12-17 07:47:01 +0000995};
996} // end anonymous namespace
997
998/// InstructionSelectBasicBlock - This callback is invoked by
999/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattner7c90f732006-02-05 05:50:24 +00001000void SparcDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001001 DEBUG(BB->dump());
1002
1003 // Select target instructions for the DAG.
Evan Cheng900c8262006-02-05 06:51:51 +00001004 DAG.setRoot(SelectRoot(DAG.getRoot()));
Chris Lattner6c18b102005-12-17 07:47:01 +00001005 DAG.RemoveDeadNodes();
1006
1007 // Emit machine code to BB.
1008 ScheduleAndEmitDAG(DAG);
1009}
1010
Chris Lattner7c90f732006-02-05 05:50:24 +00001011bool SparcDAGToDAGISel::SelectADDRri(SDOperand Addr, SDOperand &Base,
Chris Lattner3029f922006-02-09 04:46:04 +00001012 SDOperand &Offset) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001013 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
1014 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001015 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1016 return true;
1017 }
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001018 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1019 Addr.getOpcode() == ISD::TargetGlobalAddress)
1020 return false; // direct calls.
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001021
1022 if (Addr.getOpcode() == ISD::ADD) {
1023 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
1024 if (Predicate_simm13(CN)) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001025 if (FrameIndexSDNode *FIN =
1026 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001027 // Constant offset from frame ref.
Chris Lattnerd5aae052005-12-18 07:09:06 +00001028 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001029 } else {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001030 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001031 }
1032 Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32);
1033 return true;
1034 }
1035 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001036 if (Addr.getOperand(0).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001037 Base = Addr.getOperand(1);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001038 Offset = Addr.getOperand(0).getOperand(0);
1039 return true;
1040 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001041 if (Addr.getOperand(1).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001042 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001043 Offset = Addr.getOperand(1).getOperand(0);
1044 return true;
1045 }
1046 }
Chris Lattnerc26017a2006-02-05 08:35:50 +00001047 Base = Addr;
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001048 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1049 return true;
1050}
1051
Chris Lattner7c90f732006-02-05 05:50:24 +00001052bool SparcDAGToDAGISel::SelectADDRrr(SDOperand Addr, SDOperand &R1,
1053 SDOperand &R2) {
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001054 if (Addr.getOpcode() == ISD::FrameIndex) return false;
1055 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1056 Addr.getOpcode() == ISD::TargetGlobalAddress)
1057 return false; // direct calls.
1058
Chris Lattner9034b882005-12-17 21:25:27 +00001059 if (Addr.getOpcode() == ISD::ADD) {
1060 if (isa<ConstantSDNode>(Addr.getOperand(1)) &&
1061 Predicate_simm13(Addr.getOperand(1).Val))
1062 return false; // Let the reg+imm pattern catch this!
Chris Lattner7c90f732006-02-05 05:50:24 +00001063 if (Addr.getOperand(0).getOpcode() == SPISD::Lo ||
1064 Addr.getOperand(1).getOpcode() == SPISD::Lo)
Chris Lattnere1389ad2005-12-18 02:27:00 +00001065 return false; // Let the reg+imm pattern catch this!
Chris Lattnerc26017a2006-02-05 08:35:50 +00001066 R1 = Addr.getOperand(0);
1067 R2 = Addr.getOperand(1);
Chris Lattner9034b882005-12-17 21:25:27 +00001068 return true;
1069 }
1070
Chris Lattnerc26017a2006-02-05 08:35:50 +00001071 R1 = Addr;
Chris Lattner7c90f732006-02-05 05:50:24 +00001072 R2 = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattnerbc83fd92005-12-17 20:04:49 +00001073 return true;
1074}
1075
Evan Cheng34167212006-02-09 00:37:58 +00001076void SparcDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001077 SDNode *N = Op.Val;
Chris Lattner4d55aca2005-12-18 01:20:35 +00001078 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng34167212006-02-09 00:37:58 +00001079 N->getOpcode() < SPISD::FIRST_NUMBER) {
1080 Result = Op;
1081 return; // Already selected.
1082 }
1083
Chris Lattner6c18b102005-12-17 07:47:01 +00001084 switch (N->getOpcode()) {
1085 default: break;
Chris Lattner7087e572005-12-17 22:39:19 +00001086 case ISD::SDIV:
1087 case ISD::UDIV: {
1088 // FIXME: should use a custom expander to expose the SRA to the dag.
Evan Cheng34167212006-02-09 00:37:58 +00001089 SDOperand DivLHS, DivRHS;
Evan Cheng2ef88a02006-08-07 22:28:20 +00001090 AddToQueue(DivLHS, N->getOperand(0));
1091 AddToQueue(DivRHS, N->getOperand(1));
Chris Lattner7087e572005-12-17 22:39:19 +00001092
1093 // Set the Y register to the high-part.
1094 SDOperand TopPart;
1095 if (N->getOpcode() == ISD::SDIV) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001096 TopPart = SDOperand(CurDAG->getTargetNode(SP::SRAri, MVT::i32, DivLHS,
1097 CurDAG->getTargetConstant(31, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001098 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +00001099 TopPart = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattner7087e572005-12-17 22:39:19 +00001100 }
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001101 TopPart = SDOperand(CurDAG->getTargetNode(SP::WRYrr, MVT::Flag, TopPart,
1102 CurDAG->getRegister(SP::G0, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001103
1104 // FIXME: Handle div by immediate.
Chris Lattner7c90f732006-02-05 05:50:24 +00001105 unsigned Opcode = N->getOpcode() == ISD::SDIV ? SP::SDIVrr : SP::UDIVrr;
Evan Cheng34167212006-02-09 00:37:58 +00001106 Result = CurDAG->SelectNodeTo(N, Opcode, MVT::i32, DivLHS, DivRHS, TopPart);
1107 return;
Chris Lattner7087e572005-12-17 22:39:19 +00001108 }
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001109 case ISD::MULHU:
1110 case ISD::MULHS: {
Chris Lattner7087e572005-12-17 22:39:19 +00001111 // FIXME: Handle mul by immediate.
Evan Cheng34167212006-02-09 00:37:58 +00001112 SDOperand MulLHS, MulRHS;
Evan Cheng2ef88a02006-08-07 22:28:20 +00001113 AddToQueue(MulLHS, N->getOperand(0));
1114 AddToQueue(MulRHS, N->getOperand(1));
Chris Lattner7c90f732006-02-05 05:50:24 +00001115 unsigned Opcode = N->getOpcode() == ISD::MULHU ? SP::UMULrr : SP::SMULrr;
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001116 SDNode *Mul = CurDAG->getTargetNode(Opcode, MVT::i32, MVT::Flag,
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001117 MulLHS, MulRHS);
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001118 // The high part is in the Y register.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001119 Result = CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDOperand(Mul, 1));
Evan Cheng34167212006-02-09 00:37:58 +00001120 return;
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001121 }
Chris Lattner6c18b102005-12-17 07:47:01 +00001122 }
1123
Evan Cheng34167212006-02-09 00:37:58 +00001124 SelectCode(Result, Op);
Chris Lattner6c18b102005-12-17 07:47:01 +00001125}
1126
1127
Chris Lattner7c90f732006-02-05 05:50:24 +00001128/// createSparcISelDag - This pass converts a legalized DAG into a
Chris Lattner4dcfaac2006-01-26 07:22:22 +00001129/// SPARC-specific DAG, ready for instruction scheduling.
Chris Lattner6c18b102005-12-17 07:47:01 +00001130///
Chris Lattner7c90f732006-02-05 05:50:24 +00001131FunctionPass *llvm::createSparcISelDag(TargetMachine &TM) {
1132 return new SparcDAGToDAGISel(TM);
Chris Lattner6c18b102005-12-17 07:47:01 +00001133}