blob: b5eafaa144a7358ac450782c159f052561ab02c0 [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 Cheng900c8262006-02-05 06:51:51 +000028#include <set>
Chris Lattner6c18b102005-12-17 07:47:01 +000029using namespace llvm;
30
31//===----------------------------------------------------------------------===//
32// TargetLowering Implementation
33//===----------------------------------------------------------------------===//
34
Chris Lattner7c90f732006-02-05 05:50:24 +000035namespace SPISD {
Chris Lattner4d55aca2005-12-18 01:20:35 +000036 enum {
Chris Lattner7c90f732006-02-05 05:50:24 +000037 FIRST_NUMBER = ISD::BUILTIN_OP_END+SP::INSTRUCTION_LIST_END,
Chris Lattner9072c052006-01-30 06:14:02 +000038 CMPICC, // Compare two GPR operands, set icc.
39 CMPFCC, // Compare two FP operands, set fcc.
40 BRICC, // Branch to dest on icc condition
41 BRFCC, // Branch to dest on fcc condition
42 SELECT_ICC, // Select between two values using the current ICC flags.
43 SELECT_FCC, // Select between two values using the current FCC flags.
Chris Lattnere3572462005-12-18 02:10:39 +000044
Chris Lattner9072c052006-01-30 06:14:02 +000045 Hi, Lo, // Hi/Lo operations, typically on a global address.
Chris Lattner8fa54dc2005-12-18 06:59:57 +000046
Chris Lattner9072c052006-01-30 06:14:02 +000047 FTOI, // FP to Int within a FP register.
48 ITOF, // Int to FP within a FP register.
49
Chris Lattner7c90f732006-02-05 05:50:24 +000050 CALL, // A call instruction.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000051 RET_FLAG // Return with a flag operand.
Chris Lattner4d55aca2005-12-18 01:20:35 +000052 };
53}
54
Chris Lattner3772bcb2006-01-30 07:43:04 +000055/// IntCondCCodeToICC - Convert a DAG integer condition code to a SPARC ICC
56/// condition.
Chris Lattner7c90f732006-02-05 05:50:24 +000057static SPCC::CondCodes IntCondCCodeToICC(ISD::CondCode CC) {
Chris Lattner3772bcb2006-01-30 07:43:04 +000058 switch (CC) {
59 default: assert(0 && "Unknown integer condition code!");
Chris Lattner7c90f732006-02-05 05:50:24 +000060 case ISD::SETEQ: return SPCC::ICC_E;
61 case ISD::SETNE: return SPCC::ICC_NE;
62 case ISD::SETLT: return SPCC::ICC_L;
63 case ISD::SETGT: return SPCC::ICC_G;
64 case ISD::SETLE: return SPCC::ICC_LE;
65 case ISD::SETGE: return SPCC::ICC_GE;
66 case ISD::SETULT: return SPCC::ICC_CS;
67 case ISD::SETULE: return SPCC::ICC_LEU;
68 case ISD::SETUGT: return SPCC::ICC_GU;
69 case ISD::SETUGE: return SPCC::ICC_CC;
Chris Lattner3772bcb2006-01-30 07:43:04 +000070 }
71}
72
73/// FPCondCCodeToFCC - Convert a DAG floatingp oint condition code to a SPARC
74/// FCC condition.
Chris Lattner7c90f732006-02-05 05:50:24 +000075static SPCC::CondCodes FPCondCCodeToFCC(ISD::CondCode CC) {
Chris Lattner3772bcb2006-01-30 07:43:04 +000076 switch (CC) {
77 default: assert(0 && "Unknown fp condition code!");
Chris Lattner8b5fbc52006-05-25 22:26:02 +000078 case ISD::SETEQ:
79 case ISD::SETOEQ: return SPCC::FCC_E;
80 case ISD::SETNE:
81 case ISD::SETUNE: return SPCC::FCC_NE;
82 case ISD::SETLT:
83 case ISD::SETOLT: return SPCC::FCC_L;
84 case ISD::SETGT:
85 case ISD::SETOGT: return SPCC::FCC_G;
86 case ISD::SETLE:
87 case ISD::SETOLE: return SPCC::FCC_LE;
88 case ISD::SETGE:
89 case ISD::SETOGE: return SPCC::FCC_GE;
Chris Lattner7c90f732006-02-05 05:50:24 +000090 case ISD::SETULT: return SPCC::FCC_UL;
91 case ISD::SETULE: return SPCC::FCC_ULE;
92 case ISD::SETUGT: return SPCC::FCC_UG;
93 case ISD::SETUGE: return SPCC::FCC_UGE;
94 case ISD::SETUO: return SPCC::FCC_U;
95 case ISD::SETO: return SPCC::FCC_O;
96 case ISD::SETONE: return SPCC::FCC_LG;
97 case ISD::SETUEQ: return SPCC::FCC_UE;
Chris Lattner3772bcb2006-01-30 07:43:04 +000098 }
99}
Chris Lattner3772bcb2006-01-30 07:43:04 +0000100
Chris Lattner6c18b102005-12-17 07:47:01 +0000101namespace {
Chris Lattner7c90f732006-02-05 05:50:24 +0000102 class SparcTargetLowering : public TargetLowering {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000103 int VarArgsFrameOffset; // Frame offset to start of varargs area.
Chris Lattner6c18b102005-12-17 07:47:01 +0000104 public:
Chris Lattner7c90f732006-02-05 05:50:24 +0000105 SparcTargetLowering(TargetMachine &TM);
Chris Lattner4d55aca2005-12-18 01:20:35 +0000106 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
Chris Lattner4a397e02006-01-30 03:51:45 +0000107
Nate Begeman368e18d2006-02-16 21:11:51 +0000108 /// computeMaskedBitsForTargetNode - Determine which of the bits specified
109 /// in Mask are known to be either zero or one and return them in the
110 /// KnownZero/KnownOne bitsets.
111 virtual void computeMaskedBitsForTargetNode(const SDOperand Op,
112 uint64_t Mask,
113 uint64_t &KnownZero,
114 uint64_t &KnownOne,
115 unsigned Depth = 0) const;
Chris Lattner4a397e02006-01-30 03:51:45 +0000116
Chris Lattner6c18b102005-12-17 07:47:01 +0000117 virtual std::vector<SDOperand>
118 LowerArguments(Function &F, SelectionDAG &DAG);
119 virtual std::pair<SDOperand, SDOperand>
120 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
121 unsigned CC,
122 bool isTailCall, SDOperand Callee, ArgListTy &Args,
123 SelectionDAG &DAG);
Chris Lattner33084492005-12-18 08:13:54 +0000124 virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
125 MachineBasicBlock *MBB);
Chris Lattner72878a42006-01-12 07:31:15 +0000126
127 virtual const char *getTargetNodeName(unsigned Opcode) const;
Chris Lattner6c18b102005-12-17 07:47:01 +0000128 };
129}
130
Chris Lattner7c90f732006-02-05 05:50:24 +0000131SparcTargetLowering::SparcTargetLowering(TargetMachine &TM)
Chris Lattner6c18b102005-12-17 07:47:01 +0000132 : TargetLowering(TM) {
133
134 // Set up the register classes.
Chris Lattner7c90f732006-02-05 05:50:24 +0000135 addRegisterClass(MVT::i32, SP::IntRegsRegisterClass);
136 addRegisterClass(MVT::f32, SP::FPRegsRegisterClass);
137 addRegisterClass(MVT::f64, SP::DFPRegsRegisterClass);
Chris Lattner9a60ff62005-12-17 20:50:42 +0000138
Chris Lattnere3572462005-12-18 02:10:39 +0000139 // Custom legalize GlobalAddress nodes into LO/HI parts.
140 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Chris Lattner76acc872005-12-18 02:37:35 +0000141 setOperationAction(ISD::ConstantPool , MVT::i32, Custom);
Chris Lattnere3572462005-12-18 02:10:39 +0000142
Chris Lattner9a60ff62005-12-17 20:50:42 +0000143 // Sparc doesn't have sext_inreg, replace them with shl/sra
Chris Lattner33084492005-12-18 08:13:54 +0000144 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
145 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
146 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
Chris Lattner7087e572005-12-17 22:39:19 +0000147
148 // Sparc has no REM operation.
149 setOperationAction(ISD::UREM, MVT::i32, Expand);
150 setOperationAction(ISD::SREM, MVT::i32, Expand);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000151
152 // Custom expand fp<->sint
153 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
154 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
155
156 // Expand fp<->uint
157 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
158 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Chris Lattner6c18b102005-12-17 07:47:01 +0000159
Chris Lattner53e88452005-12-23 05:13:35 +0000160 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
161 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
162
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000163 // Turn FP extload into load/fextend
Chris Lattner065c8962005-12-18 07:13:32 +0000164 setOperationAction(ISD::EXTLOAD, MVT::f32, Expand);
165
Chris Lattner4d55aca2005-12-18 01:20:35 +0000166 // Sparc has no select or setcc: expand to SELECT_CC.
167 setOperationAction(ISD::SELECT, MVT::i32, Expand);
168 setOperationAction(ISD::SELECT, MVT::f32, Expand);
169 setOperationAction(ISD::SELECT, MVT::f64, Expand);
170 setOperationAction(ISD::SETCC, MVT::i32, Expand);
171 setOperationAction(ISD::SETCC, MVT::f32, Expand);
172 setOperationAction(ISD::SETCC, MVT::f64, Expand);
173
174 // Sparc doesn't have BRCOND either, it has BR_CC.
175 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Nate Begeman37efe672006-04-22 18:53:45 +0000176 setOperationAction(ISD::BRIND, MVT::i32, Expand);
Chris Lattner4d55aca2005-12-18 01:20:35 +0000177 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
178 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
179 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
180
Chris Lattner33084492005-12-18 08:13:54 +0000181 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
182 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
183 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
184
Chris Lattner7c90f732006-02-05 05:50:24 +0000185 // SPARC has no intrinsics for these particular operations.
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000186 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
187 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
188 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
189
Chris Lattner61772c22005-12-19 01:39:40 +0000190 setOperationAction(ISD::FSIN , MVT::f64, Expand);
191 setOperationAction(ISD::FCOS , MVT::f64, Expand);
192 setOperationAction(ISD::FSIN , MVT::f32, Expand);
193 setOperationAction(ISD::FCOS , MVT::f32, Expand);
194 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
195 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
196 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000197 setOperationAction(ISD::ROTL , MVT::i32, Expand);
198 setOperationAction(ISD::ROTR , MVT::i32, Expand);
Nate Begemand88fc032006-01-14 03:14:10 +0000199 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Chris Lattner9601a862006-03-05 05:08:37 +0000200 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
201 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000202
203 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
204 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
205 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000206
207 // We don't have line number support yet.
208 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +0000209 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
210 setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000211
Nate Begemanee625572006-01-27 21:09:22 +0000212 // RET must be custom lowered, to meet ABI requirements
213 setOperationAction(ISD::RET , MVT::Other, Custom);
214
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000215 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
Nate Begemanacc398c2006-01-25 18:21:52 +0000216 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000217 // VAARG needs to be lowered to not do unaligned accesses for doubles.
218 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000219
220 // Use the default implementation.
Nate Begemanacc398c2006-01-25 18:21:52 +0000221 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
222 setOperationAction(ISD::VAEND , MVT::Other, Expand);
223 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
224 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
Chris Lattner6fa1f572006-02-15 06:41:34 +0000225 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
Chris Lattner934ea492006-01-15 08:55:25 +0000226
Chris Lattner2adc05c2006-01-30 22:20:49 +0000227 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
228 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
229
Chris Lattner7c90f732006-02-05 05:50:24 +0000230 setStackPointerRegisterToSaveRestore(SP::O6);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000231
Chris Lattner7c90f732006-02-05 05:50:24 +0000232 if (TM.getSubtarget<SparcSubtarget>().isV9()) {
Chris Lattner9072c052006-01-30 06:14:02 +0000233 setOperationAction(ISD::CTPOP, MVT::i32, Legal);
234 }
235
Chris Lattner6c18b102005-12-17 07:47:01 +0000236 computeRegisterProperties();
237}
238
Chris Lattner7c90f732006-02-05 05:50:24 +0000239const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const {
Chris Lattner72878a42006-01-12 07:31:15 +0000240 switch (Opcode) {
Chris Lattner138d3222006-01-12 07:38:04 +0000241 default: return 0;
Chris Lattner7c90f732006-02-05 05:50:24 +0000242 case SPISD::CMPICC: return "SPISD::CMPICC";
243 case SPISD::CMPFCC: return "SPISD::CMPFCC";
244 case SPISD::BRICC: return "SPISD::BRICC";
245 case SPISD::BRFCC: return "SPISD::BRFCC";
246 case SPISD::SELECT_ICC: return "SPISD::SELECT_ICC";
247 case SPISD::SELECT_FCC: return "SPISD::SELECT_FCC";
248 case SPISD::Hi: return "SPISD::Hi";
249 case SPISD::Lo: return "SPISD::Lo";
250 case SPISD::FTOI: return "SPISD::FTOI";
251 case SPISD::ITOF: return "SPISD::ITOF";
252 case SPISD::CALL: return "SPISD::CALL";
253 case SPISD::RET_FLAG: return "SPISD::RET_FLAG";
Chris Lattner72878a42006-01-12 07:31:15 +0000254 }
255}
256
Chris Lattner4a397e02006-01-30 03:51:45 +0000257/// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
258/// be zero. Op is expected to be a target specific node. Used by DAG
259/// combiner.
Nate Begeman368e18d2006-02-16 21:11:51 +0000260void SparcTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
261 uint64_t Mask,
262 uint64_t &KnownZero,
263 uint64_t &KnownOne,
264 unsigned Depth) const {
265 uint64_t KnownZero2, KnownOne2;
266 KnownZero = KnownOne = 0; // Don't know anything.
267
Chris Lattner4a397e02006-01-30 03:51:45 +0000268 switch (Op.getOpcode()) {
Nate Begeman368e18d2006-02-16 21:11:51 +0000269 default: break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000270 case SPISD::SELECT_ICC:
271 case SPISD::SELECT_FCC:
Nate Begeman368e18d2006-02-16 21:11:51 +0000272 ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
273 ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
274 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
275 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
276
277 // Only known if known in both the LHS and RHS.
278 KnownOne &= KnownOne2;
279 KnownZero &= KnownZero2;
280 break;
Chris Lattner4a397e02006-01-30 03:51:45 +0000281 }
282}
283
Chris Lattner384e5ef2005-12-18 13:33:06 +0000284/// LowerArguments - V8 uses a very simple ABI, where all values are passed in
285/// either one or two GPRs, including FP values. TODO: we should pass FP values
286/// in FP registers for fastcc functions.
Chris Lattner6c18b102005-12-17 07:47:01 +0000287std::vector<SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000288SparcTargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
Chris Lattnera01b7572005-12-17 08:03:24 +0000289 MachineFunction &MF = DAG.getMachineFunction();
290 SSARegMap *RegMap = MF.getSSARegMap();
291 std::vector<SDOperand> ArgValues;
292
Chris Lattner384e5ef2005-12-18 13:33:06 +0000293 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000294 SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
Chris Lattnera01b7572005-12-17 08:03:24 +0000295 };
Chris Lattner384e5ef2005-12-18 13:33:06 +0000296
297 const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6;
298 unsigned ArgOffset = 68;
299
300 SDOperand Root = DAG.getRoot();
301 std::vector<SDOperand> OutChains;
302
Chris Lattnera01b7572005-12-17 08:03:24 +0000303 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
304 MVT::ValueType ObjectVT = getValueType(I->getType());
Chris Lattnera01b7572005-12-17 08:03:24 +0000305
306 switch (ObjectVT) {
307 default: assert(0 && "Unhandled argument type!");
Chris Lattnera01b7572005-12-17 08:03:24 +0000308 case MVT::i1:
309 case MVT::i8:
310 case MVT::i16:
Chris Lattner384e5ef2005-12-18 13:33:06 +0000311 case MVT::i32:
312 if (I->use_empty()) { // Argument is dead.
313 if (CurArgReg < ArgRegEnd) ++CurArgReg;
314 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
315 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000316 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000317 MF.addLiveIn(*CurArgReg++, VReg);
318 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
319 if (ObjectVT != MVT::i32) {
320 unsigned AssertOp = I->getType()->isSigned() ? ISD::AssertSext
321 : ISD::AssertZext;
322 Arg = DAG.getNode(AssertOp, MVT::i32, Arg,
323 DAG.getValueType(ObjectVT));
324 Arg = DAG.getNode(ISD::TRUNCATE, ObjectVT, Arg);
325 }
326 ArgValues.push_back(Arg);
327 } else {
328 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
329 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
330 SDOperand Load;
331 if (ObjectVT == MVT::i32) {
332 Load = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
333 } else {
334 unsigned LoadOp =
335 I->getType()->isSigned() ? ISD::SEXTLOAD : ISD::ZEXTLOAD;
336
Chris Lattner99cf5092006-01-16 01:40:00 +0000337 // Sparc is big endian, so add an offset based on the ObjectVT.
338 unsigned Offset = 4-std::max(1U, MVT::getSizeInBits(ObjectVT)/8);
339 FIPtr = DAG.getNode(ISD::ADD, MVT::i32, FIPtr,
340 DAG.getConstant(Offset, MVT::i32));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000341 Load = DAG.getExtLoad(LoadOp, MVT::i32, Root, FIPtr,
342 DAG.getSrcValue(0), ObjectVT);
Chris Lattnerf7511b42006-01-15 22:22:01 +0000343 Load = DAG.getNode(ISD::TRUNCATE, ObjectVT, Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000344 }
345 ArgValues.push_back(Load);
Chris Lattnera01b7572005-12-17 08:03:24 +0000346 }
Chris Lattner384e5ef2005-12-18 13:33:06 +0000347
348 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000349 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000350 case MVT::f32:
351 if (I->use_empty()) { // Argument is dead.
352 if (CurArgReg < ArgRegEnd) ++CurArgReg;
353 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
354 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
355 // FP value is passed in an integer register.
Chris Lattner7c90f732006-02-05 05:50:24 +0000356 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000357 MF.addLiveIn(*CurArgReg++, VReg);
358 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
359
Chris Lattnera01874f2005-12-23 02:31:39 +0000360 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Arg);
361 ArgValues.push_back(Arg);
Chris Lattner46030a62006-01-19 07:22:29 +0000362 } else {
363 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
364 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
365 SDOperand Load = DAG.getLoad(MVT::f32, Root, FIPtr, DAG.getSrcValue(0));
366 ArgValues.push_back(Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000367 }
368 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000369 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000370
371 case MVT::i64:
372 case MVT::f64:
373 if (I->use_empty()) { // Argument is dead.
374 if (CurArgReg < ArgRegEnd) ++CurArgReg;
375 if (CurArgReg < ArgRegEnd) ++CurArgReg;
376 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
Chris Lattnerb7163432006-01-31 02:45:52 +0000377 } else if (/* FIXME: Apparently this isn't safe?? */
378 0 && CurArgReg == ArgRegEnd && ObjectVT == MVT::f64 &&
Chris Lattner384e5ef2005-12-18 13:33:06 +0000379 ((CurArgReg-ArgRegs) & 1) == 0) {
380 // If this is a double argument and the whole thing lives on the stack,
381 // and the argument is aligned, load the double straight from the stack.
382 // We can't do a load in cases like void foo([6ints], int,double),
383 // because the double wouldn't be aligned!
384 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(8, ArgOffset);
385 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
386 ArgValues.push_back(DAG.getLoad(MVT::f64, Root, FIPtr,
387 DAG.getSrcValue(0)));
388 } else {
389 SDOperand HiVal;
390 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000391 unsigned VRegHi = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000392 MF.addLiveIn(*CurArgReg++, VRegHi);
393 HiVal = DAG.getCopyFromReg(Root, VRegHi, MVT::i32);
394 } else {
395 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
396 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
397 HiVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
398 }
399
400 SDOperand LoVal;
401 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000402 unsigned VRegLo = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000403 MF.addLiveIn(*CurArgReg++, VRegLo);
404 LoVal = DAG.getCopyFromReg(Root, VRegLo, MVT::i32);
405 } else {
406 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4);
407 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
408 LoVal = DAG.getLoad(MVT::i32, Root, FIPtr, DAG.getSrcValue(0));
409 }
410
411 // Compose the two halves together into an i64 unit.
412 SDOperand WholeValue =
413 DAG.getNode(ISD::BUILD_PAIR, MVT::i64, LoVal, HiVal);
Chris Lattnera01874f2005-12-23 02:31:39 +0000414
415 // If we want a double, do a bit convert.
416 if (ObjectVT == MVT::f64)
417 WholeValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, WholeValue);
418
419 ArgValues.push_back(WholeValue);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000420 }
421 ArgOffset += 8;
422 break;
Chris Lattnera01b7572005-12-17 08:03:24 +0000423 }
424 }
425
Chris Lattner384e5ef2005-12-18 13:33:06 +0000426 // Store remaining ArgRegs to the stack if this is a varargs function.
427 if (F.getFunctionType()->isVarArg()) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000428 // Remember the vararg offset for the va_start implementation.
429 VarArgsFrameOffset = ArgOffset;
430
Chris Lattner384e5ef2005-12-18 13:33:06 +0000431 for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
Chris Lattner7c90f732006-02-05 05:50:24 +0000432 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000433 MF.addLiveIn(*CurArgReg, VReg);
434 SDOperand Arg = DAG.getCopyFromReg(DAG.getRoot(), VReg, MVT::i32);
435
436 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
437 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
438
439 OutChains.push_back(DAG.getNode(ISD::STORE, MVT::Other, DAG.getRoot(),
440 Arg, FIPtr, DAG.getSrcValue(0)));
441 ArgOffset += 4;
442 }
443 }
444
445 if (!OutChains.empty())
446 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains));
Chris Lattnera01b7572005-12-17 08:03:24 +0000447
448 // Finally, inform the code generator which regs we return values in.
449 switch (getValueType(F.getReturnType())) {
450 default: assert(0 && "Unknown type!");
451 case MVT::isVoid: break;
452 case MVT::i1:
453 case MVT::i8:
454 case MVT::i16:
455 case MVT::i32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000456 MF.addLiveOut(SP::I0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000457 break;
458 case MVT::i64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000459 MF.addLiveOut(SP::I0);
460 MF.addLiveOut(SP::I1);
Chris Lattnera01b7572005-12-17 08:03:24 +0000461 break;
462 case MVT::f32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000463 MF.addLiveOut(SP::F0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000464 break;
465 case MVT::f64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000466 MF.addLiveOut(SP::D0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000467 break;
468 }
469
470 return ArgValues;
Chris Lattner6c18b102005-12-17 07:47:01 +0000471}
472
473std::pair<SDOperand, SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000474SparcTargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
475 bool isVarArg, unsigned CC,
476 bool isTailCall, SDOperand Callee,
477 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000478 // Count the size of the outgoing arguments.
479 unsigned ArgsSize = 0;
480 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
481 switch (getValueType(Args[i].second)) {
482 default: assert(0 && "Unknown value type!");
483 case MVT::i1:
484 case MVT::i8:
485 case MVT::i16:
486 case MVT::i32:
487 case MVT::f32:
488 ArgsSize += 4;
489 break;
490 case MVT::i64:
491 case MVT::f64:
492 ArgsSize += 8;
493 break;
494 }
495 }
496 if (ArgsSize > 4*6)
497 ArgsSize -= 4*6; // Space for first 6 arguments is prereserved.
498 else
499 ArgsSize = 0;
500
Chris Lattner6554bef2005-12-19 01:15:13 +0000501 // Keep stack frames 8-byte aligned.
502 ArgsSize = (ArgsSize+7) & ~7;
503
Chris Lattner94dd2922006-02-13 09:00:43 +0000504 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(ArgsSize, getPointerTy()));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000505
506 SDOperand StackPtr, NullSV;
507 std::vector<SDOperand> Stores;
508 std::vector<SDOperand> RegValuesToPass;
509 unsigned ArgOffset = 68;
510 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
511 SDOperand Val = Args[i].first;
512 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercb833742006-01-06 17:56:38 +0000513 SDOperand ValToStore(0, 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000514 unsigned ObjSize;
515 switch (ObjectVT) {
516 default: assert(0 && "Unhandled argument type!");
517 case MVT::i1:
518 case MVT::i8:
519 case MVT::i16:
520 // Promote the integer to 32-bits. If the input type is signed, use a
521 // sign extend, otherwise use a zero extend.
522 if (Args[i].second->isSigned())
523 Val = DAG.getNode(ISD::SIGN_EXTEND, MVT::i32, Val);
524 else
525 Val = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Val);
526 // FALL THROUGH
527 case MVT::i32:
528 ObjSize = 4;
529
530 if (RegValuesToPass.size() >= 6) {
531 ValToStore = Val;
532 } else {
533 RegValuesToPass.push_back(Val);
534 }
535 break;
536 case MVT::f32:
537 ObjSize = 4;
538 if (RegValuesToPass.size() >= 6) {
539 ValToStore = Val;
540 } else {
541 // Convert this to a FP value in an int reg.
Chris Lattnera01874f2005-12-23 02:31:39 +0000542 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000543 RegValuesToPass.push_back(Val);
544 }
545 break;
Chris Lattnera01874f2005-12-23 02:31:39 +0000546 case MVT::f64:
Chris Lattner2db3ff62005-12-18 15:55:15 +0000547 ObjSize = 8;
548 // If we can store this directly into the outgoing slot, do so. We can
549 // do this when all ArgRegs are used and if the outgoing slot is aligned.
Chris Lattner7f9975a2006-01-15 19:15:46 +0000550 // FIXME: McGill/misr fails with this.
551 if (0 && RegValuesToPass.size() >= 6 && ((ArgOffset-68) & 7) == 0) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000552 ValToStore = Val;
553 break;
554 }
555
556 // Otherwise, convert this to a FP value in int regs.
Chris Lattnera01874f2005-12-23 02:31:39 +0000557 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000558 // FALL THROUGH
559 case MVT::i64:
560 ObjSize = 8;
561 if (RegValuesToPass.size() >= 6) {
562 ValToStore = Val; // Whole thing is passed in memory.
563 break;
564 }
565
566 // Split the value into top and bottom part. Top part goes in a reg.
567 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Val,
568 DAG.getConstant(1, MVT::i32));
569 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, Val,
570 DAG.getConstant(0, MVT::i32));
571 RegValuesToPass.push_back(Hi);
572
573 if (RegValuesToPass.size() >= 6) {
574 ValToStore = Lo;
Chris Lattner7c423b42005-12-19 07:57:53 +0000575 ArgOffset += 4;
576 ObjSize = 4;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000577 } else {
578 RegValuesToPass.push_back(Lo);
579 }
580 break;
581 }
582
583 if (ValToStore.Val) {
584 if (!StackPtr.Val) {
Chris Lattner7c90f732006-02-05 05:50:24 +0000585 StackPtr = DAG.getRegister(SP::O6, MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000586 NullSV = DAG.getSrcValue(NULL);
587 }
588 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
589 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
590 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, Chain,
591 ValToStore, PtrOff, NullSV));
592 }
593 ArgOffset += ObjSize;
594 }
595
596 // Emit all stores, make sure the occur before any copies into physregs.
597 if (!Stores.empty())
598 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
599
600 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000601 SP::O0, SP::O1, SP::O2, SP::O3, SP::O4, SP::O5
Chris Lattner2db3ff62005-12-18 15:55:15 +0000602 };
603
604 // Build a sequence of copy-to-reg nodes chained together with token chain
605 // and flag operands which copy the outgoing args into O[0-5].
606 SDOperand InFlag;
607 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
608 Chain = DAG.getCopyToReg(Chain, ArgRegs[i], RegValuesToPass[i], InFlag);
609 InFlag = Chain.getValue(1);
610 }
611
Chris Lattner2db3ff62005-12-18 15:55:15 +0000612 // If the callee is a GlobalAddress node (quite common, every direct call is)
613 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000614 // Likewise ExternalSymbol -> TargetExternalSymbol.
Chris Lattner2db3ff62005-12-18 15:55:15 +0000615 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
616 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i32);
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000617 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
618 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000619
620 std::vector<MVT::ValueType> NodeTys;
621 NodeTys.push_back(MVT::Other); // Returns a chain
622 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Chris Lattner44ea7b12006-01-27 23:30:03 +0000623 std::vector<SDOperand> Ops;
624 Ops.push_back(Chain);
625 Ops.push_back(Callee);
Chris Lattnerb4d899e2005-12-18 22:57:47 +0000626 if (InFlag.Val)
Chris Lattner44ea7b12006-01-27 23:30:03 +0000627 Ops.push_back(InFlag);
Chris Lattner7c90f732006-02-05 05:50:24 +0000628 Chain = DAG.getNode(SPISD::CALL, NodeTys, Ops);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000629 InFlag = Chain.getValue(1);
630
631 MVT::ValueType RetTyVT = getValueType(RetTy);
632 SDOperand RetVal;
633 if (RetTyVT != MVT::isVoid) {
634 switch (RetTyVT) {
635 default: assert(0 && "Unknown value type to return!");
636 case MVT::i1:
637 case MVT::i8:
638 case MVT::i16:
Chris Lattner7c90f732006-02-05 05:50:24 +0000639 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000640 Chain = RetVal.getValue(1);
641
642 // Add a note to keep track of whether it is sign or zero extended.
643 RetVal = DAG.getNode(RetTy->isSigned() ? ISD::AssertSext :ISD::AssertZext,
644 MVT::i32, RetVal, DAG.getValueType(RetTyVT));
645 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
646 break;
647 case MVT::i32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000648 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000649 Chain = RetVal.getValue(1);
650 break;
651 case MVT::f32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000652 RetVal = DAG.getCopyFromReg(Chain, SP::F0, MVT::f32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000653 Chain = RetVal.getValue(1);
654 break;
655 case MVT::f64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000656 RetVal = DAG.getCopyFromReg(Chain, SP::D0, MVT::f64, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000657 Chain = RetVal.getValue(1);
658 break;
659 case MVT::i64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000660 SDOperand Lo = DAG.getCopyFromReg(Chain, SP::O1, MVT::i32, InFlag);
661 SDOperand Hi = DAG.getCopyFromReg(Lo.getValue(1), SP::O0, MVT::i32,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000662 Lo.getValue(2));
663 RetVal = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
664 Chain = Hi.getValue(1);
665 break;
666 }
667 }
668
669 Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
670 DAG.getConstant(ArgsSize, getPointerTy()));
671
Chris Lattner2db3ff62005-12-18 15:55:15 +0000672 return std::make_pair(RetVal, Chain);
Chris Lattner6c18b102005-12-17 07:47:01 +0000673}
674
Chris Lattner7c90f732006-02-05 05:50:24 +0000675// Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so
676// set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
Chris Lattner86638b92006-01-31 05:05:52 +0000677static void LookThroughSetCC(SDOperand &LHS, SDOperand &RHS,
Chris Lattner7c90f732006-02-05 05:50:24 +0000678 ISD::CondCode CC, unsigned &SPCC) {
Chris Lattner86638b92006-01-31 05:05:52 +0000679 if (isa<ConstantSDNode>(RHS) && cast<ConstantSDNode>(RHS)->getValue() == 0 &&
680 CC == ISD::SETNE &&
Chris Lattner7c90f732006-02-05 05:50:24 +0000681 ((LHS.getOpcode() == SPISD::SELECT_ICC &&
682 LHS.getOperand(3).getOpcode() == SPISD::CMPICC) ||
683 (LHS.getOpcode() == SPISD::SELECT_FCC &&
684 LHS.getOperand(3).getOpcode() == SPISD::CMPFCC)) &&
Chris Lattner86638b92006-01-31 05:05:52 +0000685 isa<ConstantSDNode>(LHS.getOperand(0)) &&
686 isa<ConstantSDNode>(LHS.getOperand(1)) &&
687 cast<ConstantSDNode>(LHS.getOperand(0))->getValue() == 1 &&
688 cast<ConstantSDNode>(LHS.getOperand(1))->getValue() == 0) {
689 SDOperand CMPCC = LHS.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000690 SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getValue();
Chris Lattner86638b92006-01-31 05:05:52 +0000691 LHS = CMPCC.getOperand(0);
692 RHS = CMPCC.getOperand(1);
693 }
694}
695
696
Chris Lattner7c90f732006-02-05 05:50:24 +0000697SDOperand SparcTargetLowering::
Chris Lattner4d55aca2005-12-18 01:20:35 +0000698LowerOperation(SDOperand Op, SelectionDAG &DAG) {
699 switch (Op.getOpcode()) {
700 default: assert(0 && "Should not custom lower this!");
Chris Lattnere3572462005-12-18 02:10:39 +0000701 case ISD::GlobalAddress: {
702 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
703 SDOperand GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000704 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, GA);
705 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, GA);
Chris Lattnere3572462005-12-18 02:10:39 +0000706 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
707 }
Chris Lattner76acc872005-12-18 02:37:35 +0000708 case ISD::ConstantPool: {
709 Constant *C = cast<ConstantPoolSDNode>(Op)->get();
Evan Chengb8973bd2006-01-31 22:23:14 +0000710 SDOperand CP = DAG.getTargetConstantPool(C, MVT::i32,
711 cast<ConstantPoolSDNode>(Op)->getAlignment());
Chris Lattner7c90f732006-02-05 05:50:24 +0000712 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, CP);
713 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, CP);
Chris Lattner76acc872005-12-18 02:37:35 +0000714 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
715 }
Chris Lattner3cb71872005-12-23 05:00:16 +0000716 case ISD::FP_TO_SINT:
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000717 // Convert the fp value to integer in an FP register.
Chris Lattner3cb71872005-12-23 05:00:16 +0000718 assert(Op.getValueType() == MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000719 Op = DAG.getNode(SPISD::FTOI, MVT::f32, Op.getOperand(0));
Chris Lattner3cb71872005-12-23 05:00:16 +0000720 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000721 case ISD::SINT_TO_FP: {
Chris Lattner3cb71872005-12-23 05:00:16 +0000722 assert(Op.getOperand(0).getValueType() == MVT::i32);
Chris Lattner3fbb7262006-01-11 07:27:40 +0000723 SDOperand Tmp = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000724 // Convert the int value to FP in an FP register.
Chris Lattner7c90f732006-02-05 05:50:24 +0000725 return DAG.getNode(SPISD::ITOF, Op.getValueType(), Tmp);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000726 }
Chris Lattner33084492005-12-18 08:13:54 +0000727 case ISD::BR_CC: {
728 SDOperand Chain = Op.getOperand(0);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000729 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000730 SDOperand LHS = Op.getOperand(2);
731 SDOperand RHS = Op.getOperand(3);
732 SDOperand Dest = Op.getOperand(4);
Chris Lattner7c90f732006-02-05 05:50:24 +0000733 unsigned Opc, SPCC = ~0U;
Chris Lattner86638b92006-01-31 05:05:52 +0000734
735 // If this is a br_cc of a "setcc", and if the setcc got lowered into
736 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000737 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattner33084492005-12-18 08:13:54 +0000738
739 // Get the condition flag.
Chris Lattner86638b92006-01-31 05:05:52 +0000740 SDOperand CompareFlag;
Chris Lattner33084492005-12-18 08:13:54 +0000741 if (LHS.getValueType() == MVT::i32) {
Chris Lattnerb9169ce2006-01-11 07:49:38 +0000742 std::vector<MVT::ValueType> VTs;
743 VTs.push_back(MVT::i32);
744 VTs.push_back(MVT::Flag);
745 std::vector<SDOperand> Ops;
746 Ops.push_back(LHS);
747 Ops.push_back(RHS);
Chris Lattner7c90f732006-02-05 05:50:24 +0000748 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops).getValue(1);
749 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
750 Opc = SPISD::BRICC;
Chris Lattner33084492005-12-18 08:13:54 +0000751 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000752 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
753 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
754 Opc = SPISD::BRFCC;
Chris Lattner33084492005-12-18 08:13:54 +0000755 }
Chris Lattner86638b92006-01-31 05:05:52 +0000756 return DAG.getNode(Opc, MVT::Other, Chain, Dest,
Chris Lattner7c90f732006-02-05 05:50:24 +0000757 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000758 }
759 case ISD::SELECT_CC: {
760 SDOperand LHS = Op.getOperand(0);
761 SDOperand RHS = Op.getOperand(1);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000762 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000763 SDOperand TrueVal = Op.getOperand(2);
764 SDOperand FalseVal = Op.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000765 unsigned Opc, SPCC = ~0U;
Chris Lattner3772bcb2006-01-30 07:43:04 +0000766
Chris Lattnerdea95282006-01-30 04:34:44 +0000767 // If this is a select_cc of a "setcc", and if the setcc got lowered into
768 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000769 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattnerdea95282006-01-30 04:34:44 +0000770
Chris Lattner4bb91022006-01-12 17:05:32 +0000771 SDOperand CompareFlag;
Chris Lattner4bb91022006-01-12 17:05:32 +0000772 if (LHS.getValueType() == MVT::i32) {
773 std::vector<MVT::ValueType> VTs;
774 VTs.push_back(LHS.getValueType()); // subcc returns a value
775 VTs.push_back(MVT::Flag);
776 std::vector<SDOperand> Ops;
777 Ops.push_back(LHS);
778 Ops.push_back(RHS);
Chris Lattner7c90f732006-02-05 05:50:24 +0000779 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops).getValue(1);
780 Opc = SPISD::SELECT_ICC;
781 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000782 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000783 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
784 Opc = SPISD::SELECT_FCC;
785 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000786 }
Chris Lattner33084492005-12-18 08:13:54 +0000787 return DAG.getNode(Opc, TrueVal.getValueType(), TrueVal, FalseVal,
Chris Lattner7c90f732006-02-05 05:50:24 +0000788 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000789 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000790 case ISD::VASTART: {
791 // vastart just stores the address of the VarArgsFrameIndex slot into the
792 // memory location argument.
793 SDOperand Offset = DAG.getNode(ISD::ADD, MVT::i32,
Chris Lattner7c90f732006-02-05 05:50:24 +0000794 DAG.getRegister(SP::I6, MVT::i32),
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000795 DAG.getConstant(VarArgsFrameOffset, MVT::i32));
Nate Begemanacc398c2006-01-25 18:21:52 +0000796 return DAG.getNode(ISD::STORE, MVT::Other, Op.getOperand(0), Offset,
797 Op.getOperand(1), Op.getOperand(2));
798 }
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000799 case ISD::VAARG: {
800 SDNode *Node = Op.Val;
801 MVT::ValueType VT = Node->getValueType(0);
802 SDOperand InChain = Node->getOperand(0);
803 SDOperand VAListPtr = Node->getOperand(1);
804 SDOperand VAList = DAG.getLoad(getPointerTy(), InChain, VAListPtr,
805 Node->getOperand(2));
806 // Increment the pointer, VAList, to the next vaarg
807 SDOperand NextPtr = DAG.getNode(ISD::ADD, getPointerTy(), VAList,
808 DAG.getConstant(MVT::getSizeInBits(VT)/8,
809 getPointerTy()));
810 // Store the incremented VAList to the legalized pointer
811 InChain = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), NextPtr,
812 VAListPtr, Node->getOperand(2));
813 // Load the actual argument out of the pointer VAList, unless this is an
814 // f64 load.
815 if (VT != MVT::f64) {
816 return DAG.getLoad(VT, InChain, VAList, DAG.getSrcValue(0));
817 } else {
818 // Otherwise, load it as i64, then do a bitconvert.
819 SDOperand V = DAG.getLoad(MVT::i64, InChain, VAList, DAG.getSrcValue(0));
820 std::vector<MVT::ValueType> Tys;
821 Tys.push_back(MVT::f64);
822 Tys.push_back(MVT::Other);
823 std::vector<SDOperand> Ops;
824 // Bit-Convert the value to f64.
825 Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, MVT::f64, V));
826 Ops.push_back(V.getValue(1));
827 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops);
828 }
829 }
Chris Lattner6fa1f572006-02-15 06:41:34 +0000830 case ISD::DYNAMIC_STACKALLOC: {
831 SDOperand Chain = Op.getOperand(0); // Legalize the chain.
832 SDOperand Size = Op.getOperand(1); // Legalize the size.
833
834 unsigned SPReg = SP::O6;
835 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, MVT::i32);
836 SDOperand NewSP = DAG.getNode(ISD::SUB, MVT::i32, SP, Size); // Value
837 Chain = DAG.getCopyToReg(SP.getValue(1), SPReg, NewSP); // Output chain
838
839 // The resultant pointer is actually 16 words from the bottom of the stack,
840 // to provide a register spill area.
841 SDOperand NewVal = DAG.getNode(ISD::ADD, MVT::i32, NewSP,
842 DAG.getConstant(96, MVT::i32));
843 std::vector<MVT::ValueType> Tys;
844 Tys.push_back(MVT::i32);
845 Tys.push_back(MVT::Other);
846 std::vector<SDOperand> Ops;
847 Ops.push_back(NewVal);
848 Ops.push_back(Chain);
849 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops);
850 }
Nate Begemanee625572006-01-27 21:09:22 +0000851 case ISD::RET: {
852 SDOperand Copy;
853
854 switch(Op.getNumOperands()) {
855 default:
856 assert(0 && "Do not know how to return this many arguments!");
857 abort();
858 case 1:
859 return SDOperand(); // ret void is legal
860 case 2: {
861 unsigned ArgReg;
862 switch(Op.getOperand(1).getValueType()) {
863 default: assert(0 && "Unknown type to return!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000864 case MVT::i32: ArgReg = SP::I0; break;
865 case MVT::f32: ArgReg = SP::F0; break;
866 case MVT::f64: ArgReg = SP::D0; break;
Nate Begemanee625572006-01-27 21:09:22 +0000867 }
868 Copy = DAG.getCopyToReg(Op.getOperand(0), ArgReg, Op.getOperand(1),
869 SDOperand());
870 break;
871 }
872 case 3:
Chris Lattner7c90f732006-02-05 05:50:24 +0000873 Copy = DAG.getCopyToReg(Op.getOperand(0), SP::I0, Op.getOperand(2),
Nate Begemanee625572006-01-27 21:09:22 +0000874 SDOperand());
Chris Lattner7c90f732006-02-05 05:50:24 +0000875 Copy = DAG.getCopyToReg(Copy, SP::I1, Op.getOperand(1), Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000876 break;
877 }
Chris Lattner7c90f732006-02-05 05:50:24 +0000878 return DAG.getNode(SPISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000879 }
Chris Lattnerbce88872006-01-15 08:43:57 +0000880 }
Chris Lattner4d55aca2005-12-18 01:20:35 +0000881}
882
Chris Lattner33084492005-12-18 08:13:54 +0000883MachineBasicBlock *
Chris Lattner7c90f732006-02-05 05:50:24 +0000884SparcTargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
885 MachineBasicBlock *BB) {
Chris Lattner33084492005-12-18 08:13:54 +0000886 unsigned BROpcode;
Chris Lattner7a4d2912006-01-31 06:56:30 +0000887 unsigned CC;
Chris Lattner33084492005-12-18 08:13:54 +0000888 // Figure out the conditional branch opcode to use for this select_cc.
889 switch (MI->getOpcode()) {
890 default: assert(0 && "Unknown SELECT_CC!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000891 case SP::SELECT_CC_Int_ICC:
892 case SP::SELECT_CC_FP_ICC:
893 case SP::SELECT_CC_DFP_ICC:
894 BROpcode = SP::BCOND;
Chris Lattnerc03468b2006-01-31 17:20:06 +0000895 break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000896 case SP::SELECT_CC_Int_FCC:
897 case SP::SELECT_CC_FP_FCC:
898 case SP::SELECT_CC_DFP_FCC:
899 BROpcode = SP::FBCOND;
Chris Lattner33084492005-12-18 08:13:54 +0000900 break;
901 }
Chris Lattner7a4d2912006-01-31 06:56:30 +0000902
Chris Lattner7c90f732006-02-05 05:50:24 +0000903 CC = (SPCC::CondCodes)MI->getOperand(3).getImmedValue();
Chris Lattner33084492005-12-18 08:13:54 +0000904
905 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
906 // control-flow pattern. The incoming instruction knows the destination vreg
907 // to set, the condition code register to branch on, the true/false values to
908 // select between, and a branch opcode to use.
909 const BasicBlock *LLVM_BB = BB->getBasicBlock();
910 ilist<MachineBasicBlock>::iterator It = BB;
911 ++It;
912
913 // thisMBB:
914 // ...
915 // TrueVal = ...
916 // [f]bCC copy1MBB
917 // fallthrough --> copy0MBB
918 MachineBasicBlock *thisMBB = BB;
919 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
920 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
Chris Lattner7a4d2912006-01-31 06:56:30 +0000921 BuildMI(BB, BROpcode, 2).addMBB(sinkMBB).addImm(CC);
Chris Lattner33084492005-12-18 08:13:54 +0000922 MachineFunction *F = BB->getParent();
923 F->getBasicBlockList().insert(It, copy0MBB);
924 F->getBasicBlockList().insert(It, sinkMBB);
Nate Begemanf15485a2006-03-27 01:32:24 +0000925 // Update machine-CFG edges by first adding all successors of the current
926 // block to the new block which will contain the Phi node for the select.
927 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
928 e = BB->succ_end(); i != e; ++i)
929 sinkMBB->addSuccessor(*i);
930 // Next, remove all successors of the current block, and add the true
931 // and fallthrough blocks as its successors.
932 while(!BB->succ_empty())
933 BB->removeSuccessor(BB->succ_begin());
Chris Lattner33084492005-12-18 08:13:54 +0000934 BB->addSuccessor(copy0MBB);
935 BB->addSuccessor(sinkMBB);
936
937 // copy0MBB:
938 // %FalseValue = ...
939 // # fallthrough to sinkMBB
940 BB = copy0MBB;
941
942 // Update machine-CFG edges
943 BB->addSuccessor(sinkMBB);
944
945 // sinkMBB:
946 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
947 // ...
948 BB = sinkMBB;
Chris Lattner7c90f732006-02-05 05:50:24 +0000949 BuildMI(BB, SP::PHI, 4, MI->getOperand(0).getReg())
Chris Lattner33084492005-12-18 08:13:54 +0000950 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
951 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
952
953 delete MI; // The pseudo instruction is gone now.
954 return BB;
955}
956
Chris Lattner6c18b102005-12-17 07:47:01 +0000957//===----------------------------------------------------------------------===//
958// Instruction Selector Implementation
959//===----------------------------------------------------------------------===//
960
961//===--------------------------------------------------------------------===//
Chris Lattner7c90f732006-02-05 05:50:24 +0000962/// SparcDAGToDAGISel - SPARC specific code to select SPARC machine
Chris Lattner6c18b102005-12-17 07:47:01 +0000963/// instructions for SelectionDAG operations.
964///
965namespace {
Chris Lattner7c90f732006-02-05 05:50:24 +0000966class SparcDAGToDAGISel : public SelectionDAGISel {
967 SparcTargetLowering Lowering;
Chris Lattner76afdc92006-01-30 05:35:57 +0000968
969 /// Subtarget - Keep a pointer to the Sparc Subtarget around so that we can
970 /// make the right decision when generating code for different targets.
Chris Lattner7c90f732006-02-05 05:50:24 +0000971 const SparcSubtarget &Subtarget;
Chris Lattner6c18b102005-12-17 07:47:01 +0000972public:
Chris Lattner7c90f732006-02-05 05:50:24 +0000973 SparcDAGToDAGISel(TargetMachine &TM)
974 : SelectionDAGISel(Lowering), Lowering(TM),
975 Subtarget(TM.getSubtarget<SparcSubtarget>()) {
Chris Lattner76afdc92006-01-30 05:35:57 +0000976 }
Chris Lattner6c18b102005-12-17 07:47:01 +0000977
Evan Cheng34167212006-02-09 00:37:58 +0000978 void Select(SDOperand &Result, SDOperand Op);
Chris Lattner6c18b102005-12-17 07:47:01 +0000979
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000980 // Complex Pattern Selectors.
981 bool SelectADDRrr(SDOperand N, SDOperand &R1, SDOperand &R2);
982 bool SelectADDRri(SDOperand N, SDOperand &Base, SDOperand &Offset);
983
Chris Lattner6c18b102005-12-17 07:47:01 +0000984 /// InstructionSelectBasicBlock - This callback is invoked by
985 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
986 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
987
988 virtual const char *getPassName() const {
Chris Lattner7c90f732006-02-05 05:50:24 +0000989 return "SPARC DAG->DAG Pattern Instruction Selection";
Chris Lattner6c18b102005-12-17 07:47:01 +0000990 }
991
992 // Include the pieces autogenerated from the target description.
Chris Lattner7c90f732006-02-05 05:50:24 +0000993#include "SparcGenDAGISel.inc"
Chris Lattner6c18b102005-12-17 07:47:01 +0000994};
995} // end anonymous namespace
996
997/// InstructionSelectBasicBlock - This callback is invoked by
998/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattner7c90f732006-02-05 05:50:24 +0000999void SparcDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001000 DEBUG(BB->dump());
1001
1002 // Select target instructions for the DAG.
Evan Cheng900c8262006-02-05 06:51:51 +00001003 DAG.setRoot(SelectRoot(DAG.getRoot()));
Evan Cheng6a3d5a62006-05-25 00:24:28 +00001004 assert(InFlightSet.empty() && "ISel InFlightSet has not been emptied!");
Chris Lattner6c18b102005-12-17 07:47:01 +00001005 CodeGenMap.clear();
Evan Chengafe358e2006-05-24 20:46:25 +00001006 HandleMap.clear();
1007 ReplaceMap.clear();
Chris Lattner6c18b102005-12-17 07:47:01 +00001008 DAG.RemoveDeadNodes();
1009
1010 // Emit machine code to BB.
1011 ScheduleAndEmitDAG(DAG);
1012}
1013
Chris Lattner7c90f732006-02-05 05:50:24 +00001014bool SparcDAGToDAGISel::SelectADDRri(SDOperand Addr, SDOperand &Base,
Chris Lattner3029f922006-02-09 04:46:04 +00001015 SDOperand &Offset) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001016 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
1017 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001018 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1019 return true;
1020 }
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001021 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1022 Addr.getOpcode() == ISD::TargetGlobalAddress)
1023 return false; // direct calls.
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001024
1025 if (Addr.getOpcode() == ISD::ADD) {
1026 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
1027 if (Predicate_simm13(CN)) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001028 if (FrameIndexSDNode *FIN =
1029 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001030 // Constant offset from frame ref.
Chris Lattnerd5aae052005-12-18 07:09:06 +00001031 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001032 } else {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001033 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001034 }
1035 Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32);
1036 return true;
1037 }
1038 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001039 if (Addr.getOperand(0).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001040 Base = Addr.getOperand(1);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001041 Offset = Addr.getOperand(0).getOperand(0);
1042 return true;
1043 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001044 if (Addr.getOperand(1).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001045 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001046 Offset = Addr.getOperand(1).getOperand(0);
1047 return true;
1048 }
1049 }
Chris Lattnerc26017a2006-02-05 08:35:50 +00001050 Base = Addr;
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001051 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1052 return true;
1053}
1054
Chris Lattner7c90f732006-02-05 05:50:24 +00001055bool SparcDAGToDAGISel::SelectADDRrr(SDOperand Addr, SDOperand &R1,
1056 SDOperand &R2) {
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001057 if (Addr.getOpcode() == ISD::FrameIndex) return false;
1058 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1059 Addr.getOpcode() == ISD::TargetGlobalAddress)
1060 return false; // direct calls.
1061
Chris Lattner9034b882005-12-17 21:25:27 +00001062 if (Addr.getOpcode() == ISD::ADD) {
1063 if (isa<ConstantSDNode>(Addr.getOperand(1)) &&
1064 Predicate_simm13(Addr.getOperand(1).Val))
1065 return false; // Let the reg+imm pattern catch this!
Chris Lattner7c90f732006-02-05 05:50:24 +00001066 if (Addr.getOperand(0).getOpcode() == SPISD::Lo ||
1067 Addr.getOperand(1).getOpcode() == SPISD::Lo)
Chris Lattnere1389ad2005-12-18 02:27:00 +00001068 return false; // Let the reg+imm pattern catch this!
Chris Lattnerc26017a2006-02-05 08:35:50 +00001069 R1 = Addr.getOperand(0);
1070 R2 = Addr.getOperand(1);
Chris Lattner9034b882005-12-17 21:25:27 +00001071 return true;
1072 }
1073
Chris Lattnerc26017a2006-02-05 08:35:50 +00001074 R1 = Addr;
Chris Lattner7c90f732006-02-05 05:50:24 +00001075 R2 = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattnerbc83fd92005-12-17 20:04:49 +00001076 return true;
1077}
1078
Evan Cheng34167212006-02-09 00:37:58 +00001079void SparcDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001080 SDNode *N = Op.Val;
Chris Lattner4d55aca2005-12-18 01:20:35 +00001081 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng34167212006-02-09 00:37:58 +00001082 N->getOpcode() < SPISD::FIRST_NUMBER) {
1083 Result = Op;
1084 return; // Already selected.
1085 }
1086
Chris Lattner6c18b102005-12-17 07:47:01 +00001087 // If this has already been converted, use it.
1088 std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
Evan Cheng34167212006-02-09 00:37:58 +00001089 if (CGMI != CodeGenMap.end()) {
1090 Result = CGMI->second;
1091 return;
1092 }
Chris Lattner6c18b102005-12-17 07:47:01 +00001093
1094 switch (N->getOpcode()) {
1095 default: break;
Chris Lattner7087e572005-12-17 22:39:19 +00001096 case ISD::SDIV:
1097 case ISD::UDIV: {
1098 // FIXME: should use a custom expander to expose the SRA to the dag.
Evan Cheng34167212006-02-09 00:37:58 +00001099 SDOperand DivLHS, DivRHS;
1100 Select(DivLHS, N->getOperand(0));
1101 Select(DivRHS, N->getOperand(1));
Chris Lattner7087e572005-12-17 22:39:19 +00001102
1103 // Set the Y register to the high-part.
1104 SDOperand TopPart;
1105 if (N->getOpcode() == ISD::SDIV) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001106 TopPart = SDOperand(CurDAG->getTargetNode(SP::SRAri, MVT::i32, DivLHS,
1107 CurDAG->getTargetConstant(31, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001108 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +00001109 TopPart = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattner7087e572005-12-17 22:39:19 +00001110 }
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001111 TopPart = SDOperand(CurDAG->getTargetNode(SP::WRYrr, MVT::Flag, TopPart,
1112 CurDAG->getRegister(SP::G0, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001113
1114 // FIXME: Handle div by immediate.
Chris Lattner7c90f732006-02-05 05:50:24 +00001115 unsigned Opcode = N->getOpcode() == ISD::SDIV ? SP::SDIVrr : SP::UDIVrr;
Evan Cheng34167212006-02-09 00:37:58 +00001116 Result = CurDAG->SelectNodeTo(N, Opcode, MVT::i32, DivLHS, DivRHS, TopPart);
1117 return;
Chris Lattner7087e572005-12-17 22:39:19 +00001118 }
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001119 case ISD::MULHU:
1120 case ISD::MULHS: {
Chris Lattner7087e572005-12-17 22:39:19 +00001121 // FIXME: Handle mul by immediate.
Evan Cheng34167212006-02-09 00:37:58 +00001122 SDOperand MulLHS, MulRHS;
1123 Select(MulLHS, N->getOperand(0));
1124 Select(MulRHS, N->getOperand(1));
Chris Lattner7c90f732006-02-05 05:50:24 +00001125 unsigned Opcode = N->getOpcode() == ISD::MULHU ? SP::UMULrr : SP::SMULrr;
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001126 SDNode *Mul = CurDAG->getTargetNode(Opcode, MVT::i32, MVT::Flag,
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001127 MulLHS, MulRHS);
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001128 // The high part is in the Y register.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001129 Result = CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDOperand(Mul, 1));
Evan Cheng34167212006-02-09 00:37:58 +00001130 return;
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001131 }
Chris Lattner6c18b102005-12-17 07:47:01 +00001132 }
1133
Evan Cheng34167212006-02-09 00:37:58 +00001134 SelectCode(Result, Op);
Chris Lattner6c18b102005-12-17 07:47:01 +00001135}
1136
1137
Chris Lattner7c90f732006-02-05 05:50:24 +00001138/// createSparcISelDag - This pass converts a legalized DAG into a
Chris Lattner4dcfaac2006-01-26 07:22:22 +00001139/// SPARC-specific DAG, ready for instruction scheduling.
Chris Lattner6c18b102005-12-17 07:47:01 +00001140///
Chris Lattner7c90f732006-02-05 05:50:24 +00001141FunctionPass *llvm::createSparcISelDag(TargetMachine &TM) {
1142 return new SparcDAGToDAGISel(TM);
Chris Lattner6c18b102005-12-17 07:47:01 +00001143}