blob: 59eb209868fe5a6ecce2c13b28e341bfcd6e0fc3 [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//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner6c18b102005-12-17 07:47:01 +00007//
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"
Evan Cheng2ef88a02006-08-07 22:28:20 +000027#include <queue>
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,
Dan Gohmanea859be2007-06-22 14:59:07 +0000115 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +0000116 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>
Reid Spencer47857812006-12-31 05:55:36 +0000121 LowerCallTo(SDOperand Chain, const Type *RetTy, bool RetTyIsSigned,
122 bool isVarArg, unsigned CC, bool isTailCall, SDOperand Callee,
123 ArgListTy &Args, 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
Evan Chengc5484282006-10-04 00:56:09 +0000139 // Turn FP extload into load/fextend
140 setLoadXAction(ISD::EXTLOAD, MVT::f32, Expand);
141
Chris Lattnere3572462005-12-18 02:10:39 +0000142 // Custom legalize GlobalAddress nodes into LO/HI parts.
143 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000144 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Chris Lattner76acc872005-12-18 02:37:35 +0000145 setOperationAction(ISD::ConstantPool , MVT::i32, Custom);
Chris Lattnere3572462005-12-18 02:10:39 +0000146
Chris Lattner9a60ff62005-12-17 20:50:42 +0000147 // Sparc doesn't have sext_inreg, replace them with shl/sra
Chris Lattner33084492005-12-18 08:13:54 +0000148 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
149 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
150 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
Chris Lattner7087e572005-12-17 22:39:19 +0000151
Chris Lattner85d0aaa2007-10-10 18:10:57 +0000152 // Sparc has no REM or DIVREM operations.
Chris Lattner7087e572005-12-17 22:39:19 +0000153 setOperationAction(ISD::UREM, MVT::i32, Expand);
154 setOperationAction(ISD::SREM, MVT::i32, Expand);
Chris Lattner85d0aaa2007-10-10 18:10:57 +0000155 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
156 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000157
158 // Custom expand fp<->sint
159 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
160 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
161
162 // Expand fp<->uint
163 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
164 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Chris Lattner6c18b102005-12-17 07:47:01 +0000165
Chris Lattner53e88452005-12-23 05:13:35 +0000166 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
167 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
168
Chris Lattner4d55aca2005-12-18 01:20:35 +0000169 // Sparc has no select or setcc: expand to SELECT_CC.
170 setOperationAction(ISD::SELECT, MVT::i32, Expand);
171 setOperationAction(ISD::SELECT, MVT::f32, Expand);
172 setOperationAction(ISD::SELECT, MVT::f64, Expand);
173 setOperationAction(ISD::SETCC, MVT::i32, Expand);
174 setOperationAction(ISD::SETCC, MVT::f32, Expand);
175 setOperationAction(ISD::SETCC, MVT::f64, Expand);
176
177 // Sparc doesn't have BRCOND either, it has BR_CC.
178 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Chengc35497f2006-10-30 08:02:39 +0000179 setOperationAction(ISD::BRIND, MVT::Other, Expand);
180 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Chris Lattner4d55aca2005-12-18 01:20:35 +0000181 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
182 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
183 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
184
Chris Lattner33084492005-12-18 08:13:54 +0000185 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
186 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
187 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
188
Chris Lattner7c90f732006-02-05 05:50:24 +0000189 // SPARC has no intrinsics for these particular operations.
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000190 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
191 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
192 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
193
Chris Lattner61772c22005-12-19 01:39:40 +0000194 setOperationAction(ISD::FSIN , MVT::f64, Expand);
195 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattner8dc4b592007-07-13 16:24:10 +0000196 setOperationAction(ISD::FREM , MVT::f64, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000197 setOperationAction(ISD::FSIN , MVT::f32, Expand);
198 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattner8dc4b592007-07-13 16:24:10 +0000199 setOperationAction(ISD::FREM , MVT::f32, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000200 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
201 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
202 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000203 setOperationAction(ISD::ROTL , MVT::i32, Expand);
204 setOperationAction(ISD::ROTR , MVT::i32, Expand);
Nate Begemand88fc032006-01-14 03:14:10 +0000205 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Chris Lattner9601a862006-03-05 05:08:37 +0000206 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
207 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000208 setOperationAction(ISD::FPOW , MVT::f64, Expand);
209 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000210
211 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
212 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
213 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000214
215 // We don't have line number support yet.
216 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +0000217 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Jim Laskey1ee29252007-01-26 14:34:52 +0000218 setOperationAction(ISD::LABEL, MVT::Other, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000219
Nate Begemanee625572006-01-27 21:09:22 +0000220 // RET must be custom lowered, to meet ABI requirements
221 setOperationAction(ISD::RET , MVT::Other, Custom);
Duncan Sands36397f52007-07-27 12:58:54 +0000222
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000223 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
Nate Begemanacc398c2006-01-25 18:21:52 +0000224 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000225 // VAARG needs to be lowered to not do unaligned accesses for doubles.
226 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000227
228 // Use the default implementation.
Nate Begemanacc398c2006-01-25 18:21:52 +0000229 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
230 setOperationAction(ISD::VAEND , MVT::Other, Expand);
231 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
232 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
Chris Lattner6fa1f572006-02-15 06:41:34 +0000233 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
Chris Lattner934ea492006-01-15 08:55:25 +0000234
Chris Lattner2adc05c2006-01-30 22:20:49 +0000235 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
236 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
237
Chris Lattner7c90f732006-02-05 05:50:24 +0000238 setStackPointerRegisterToSaveRestore(SP::O6);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000239
Chris Lattner7c90f732006-02-05 05:50:24 +0000240 if (TM.getSubtarget<SparcSubtarget>().isV9()) {
Chris Lattner9072c052006-01-30 06:14:02 +0000241 setOperationAction(ISD::CTPOP, MVT::i32, Legal);
242 }
243
Chris Lattner6c18b102005-12-17 07:47:01 +0000244 computeRegisterProperties();
245}
246
Chris Lattner7c90f732006-02-05 05:50:24 +0000247const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const {
Chris Lattner72878a42006-01-12 07:31:15 +0000248 switch (Opcode) {
Chris Lattner138d3222006-01-12 07:38:04 +0000249 default: return 0;
Chris Lattner7c90f732006-02-05 05:50:24 +0000250 case SPISD::CMPICC: return "SPISD::CMPICC";
251 case SPISD::CMPFCC: return "SPISD::CMPFCC";
252 case SPISD::BRICC: return "SPISD::BRICC";
253 case SPISD::BRFCC: return "SPISD::BRFCC";
254 case SPISD::SELECT_ICC: return "SPISD::SELECT_ICC";
255 case SPISD::SELECT_FCC: return "SPISD::SELECT_FCC";
256 case SPISD::Hi: return "SPISD::Hi";
257 case SPISD::Lo: return "SPISD::Lo";
258 case SPISD::FTOI: return "SPISD::FTOI";
259 case SPISD::ITOF: return "SPISD::ITOF";
260 case SPISD::CALL: return "SPISD::CALL";
261 case SPISD::RET_FLAG: return "SPISD::RET_FLAG";
Chris Lattner72878a42006-01-12 07:31:15 +0000262 }
263}
264
Chris Lattner4a397e02006-01-30 03:51:45 +0000265/// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
266/// be zero. Op is expected to be a target specific node. Used by DAG
267/// combiner.
Nate Begeman368e18d2006-02-16 21:11:51 +0000268void SparcTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
269 uint64_t Mask,
270 uint64_t &KnownZero,
271 uint64_t &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +0000272 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +0000273 unsigned Depth) const {
274 uint64_t KnownZero2, KnownOne2;
275 KnownZero = KnownOne = 0; // Don't know anything.
276
Chris Lattner4a397e02006-01-30 03:51:45 +0000277 switch (Op.getOpcode()) {
Nate Begeman368e18d2006-02-16 21:11:51 +0000278 default: break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000279 case SPISD::SELECT_ICC:
280 case SPISD::SELECT_FCC:
Dan Gohmanea859be2007-06-22 14:59:07 +0000281 DAG.ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne,
282 Depth+1);
283 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2,
284 Depth+1);
Nate Begeman368e18d2006-02-16 21:11:51 +0000285 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
286 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
287
288 // Only known if known in both the LHS and RHS.
289 KnownOne &= KnownOne2;
290 KnownZero &= KnownZero2;
291 break;
Chris Lattner4a397e02006-01-30 03:51:45 +0000292 }
293}
294
Chris Lattner384e5ef2005-12-18 13:33:06 +0000295/// LowerArguments - V8 uses a very simple ABI, where all values are passed in
296/// either one or two GPRs, including FP values. TODO: we should pass FP values
297/// in FP registers for fastcc functions.
Chris Lattner6c18b102005-12-17 07:47:01 +0000298std::vector<SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000299SparcTargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
Chris Lattnera01b7572005-12-17 08:03:24 +0000300 MachineFunction &MF = DAG.getMachineFunction();
301 SSARegMap *RegMap = MF.getSSARegMap();
302 std::vector<SDOperand> ArgValues;
303
Chris Lattner384e5ef2005-12-18 13:33:06 +0000304 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000305 SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
Chris Lattnera01b7572005-12-17 08:03:24 +0000306 };
Chris Lattner384e5ef2005-12-18 13:33:06 +0000307
308 const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6;
309 unsigned ArgOffset = 68;
310
311 SDOperand Root = DAG.getRoot();
312 std::vector<SDOperand> OutChains;
313
Chris Lattnera01b7572005-12-17 08:03:24 +0000314 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
315 MVT::ValueType ObjectVT = getValueType(I->getType());
Chris Lattnera01b7572005-12-17 08:03:24 +0000316
317 switch (ObjectVT) {
318 default: assert(0 && "Unhandled argument type!");
Chris Lattnera01b7572005-12-17 08:03:24 +0000319 case MVT::i1:
320 case MVT::i8:
321 case MVT::i16:
Chris Lattner384e5ef2005-12-18 13:33:06 +0000322 case MVT::i32:
323 if (I->use_empty()) { // Argument is dead.
324 if (CurArgReg < ArgRegEnd) ++CurArgReg;
325 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
326 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000327 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000328 MF.addLiveIn(*CurArgReg++, VReg);
329 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
330 if (ObjectVT != MVT::i32) {
Reid Spencer47857812006-12-31 05:55:36 +0000331 unsigned AssertOp = ISD::AssertSext;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000332 Arg = DAG.getNode(AssertOp, MVT::i32, Arg,
333 DAG.getValueType(ObjectVT));
334 Arg = DAG.getNode(ISD::TRUNCATE, ObjectVT, Arg);
335 }
336 ArgValues.push_back(Arg);
337 } else {
338 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
339 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
340 SDOperand Load;
341 if (ObjectVT == MVT::i32) {
Evan Cheng466685d2006-10-09 20:57:25 +0000342 Load = DAG.getLoad(MVT::i32, Root, FIPtr, NULL, 0);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000343 } else {
Reid Spencer47857812006-12-31 05:55:36 +0000344 ISD::LoadExtType LoadOp = ISD::SEXTLOAD;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000345
Chris Lattner99cf5092006-01-16 01:40:00 +0000346 // Sparc is big endian, so add an offset based on the ObjectVT.
347 unsigned Offset = 4-std::max(1U, MVT::getSizeInBits(ObjectVT)/8);
348 FIPtr = DAG.getNode(ISD::ADD, MVT::i32, FIPtr,
349 DAG.getConstant(Offset, MVT::i32));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000350 Load = DAG.getExtLoad(LoadOp, MVT::i32, Root, FIPtr,
Evan Cheng466685d2006-10-09 20:57:25 +0000351 NULL, 0, ObjectVT);
Chris Lattnerf7511b42006-01-15 22:22:01 +0000352 Load = DAG.getNode(ISD::TRUNCATE, ObjectVT, Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000353 }
354 ArgValues.push_back(Load);
Chris Lattnera01b7572005-12-17 08:03:24 +0000355 }
Chris Lattner384e5ef2005-12-18 13:33:06 +0000356
357 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000358 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000359 case MVT::f32:
360 if (I->use_empty()) { // Argument is dead.
361 if (CurArgReg < ArgRegEnd) ++CurArgReg;
362 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
363 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
364 // FP value is passed in an integer register.
Chris Lattner7c90f732006-02-05 05:50:24 +0000365 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000366 MF.addLiveIn(*CurArgReg++, VReg);
367 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
368
Chris Lattnera01874f2005-12-23 02:31:39 +0000369 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Arg);
370 ArgValues.push_back(Arg);
Chris Lattner46030a62006-01-19 07:22:29 +0000371 } else {
372 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
373 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000374 SDOperand Load = DAG.getLoad(MVT::f32, Root, FIPtr, NULL, 0);
Chris Lattner46030a62006-01-19 07:22:29 +0000375 ArgValues.push_back(Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000376 }
377 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000378 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000379
380 case MVT::i64:
381 case MVT::f64:
382 if (I->use_empty()) { // Argument is dead.
383 if (CurArgReg < ArgRegEnd) ++CurArgReg;
384 if (CurArgReg < ArgRegEnd) ++CurArgReg;
385 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
Chris Lattnerb7163432006-01-31 02:45:52 +0000386 } else if (/* FIXME: Apparently this isn't safe?? */
387 0 && CurArgReg == ArgRegEnd && ObjectVT == MVT::f64 &&
Chris Lattner384e5ef2005-12-18 13:33:06 +0000388 ((CurArgReg-ArgRegs) & 1) == 0) {
389 // If this is a double argument and the whole thing lives on the stack,
390 // and the argument is aligned, load the double straight from the stack.
391 // We can't do a load in cases like void foo([6ints], int,double),
392 // because the double wouldn't be aligned!
393 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(8, ArgOffset);
394 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000395 ArgValues.push_back(DAG.getLoad(MVT::f64, Root, FIPtr, NULL, 0));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000396 } else {
397 SDOperand HiVal;
398 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000399 unsigned VRegHi = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000400 MF.addLiveIn(*CurArgReg++, VRegHi);
401 HiVal = DAG.getCopyFromReg(Root, VRegHi, MVT::i32);
402 } else {
403 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
404 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000405 HiVal = DAG.getLoad(MVT::i32, Root, FIPtr, NULL, 0);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000406 }
407
408 SDOperand LoVal;
409 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner7c90f732006-02-05 05:50:24 +0000410 unsigned VRegLo = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000411 MF.addLiveIn(*CurArgReg++, VRegLo);
412 LoVal = DAG.getCopyFromReg(Root, VRegLo, MVT::i32);
413 } else {
414 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4);
415 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000416 LoVal = DAG.getLoad(MVT::i32, Root, FIPtr, NULL, 0);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000417 }
418
419 // Compose the two halves together into an i64 unit.
420 SDOperand WholeValue =
421 DAG.getNode(ISD::BUILD_PAIR, MVT::i64, LoVal, HiVal);
Chris Lattnera01874f2005-12-23 02:31:39 +0000422
423 // If we want a double, do a bit convert.
424 if (ObjectVT == MVT::f64)
425 WholeValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, WholeValue);
426
427 ArgValues.push_back(WholeValue);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000428 }
429 ArgOffset += 8;
430 break;
Chris Lattnera01b7572005-12-17 08:03:24 +0000431 }
432 }
433
Chris Lattner384e5ef2005-12-18 13:33:06 +0000434 // Store remaining ArgRegs to the stack if this is a varargs function.
435 if (F.getFunctionType()->isVarArg()) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000436 // Remember the vararg offset for the va_start implementation.
437 VarArgsFrameOffset = ArgOffset;
438
Chris Lattner384e5ef2005-12-18 13:33:06 +0000439 for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
Chris Lattner7c90f732006-02-05 05:50:24 +0000440 unsigned VReg = RegMap->createVirtualRegister(&SP::IntRegsRegClass);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000441 MF.addLiveIn(*CurArgReg, VReg);
442 SDOperand Arg = DAG.getCopyFromReg(DAG.getRoot(), VReg, MVT::i32);
443
444 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
445 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
446
Evan Cheng8b2794a2006-10-13 21:14:26 +0000447 OutChains.push_back(DAG.getStore(DAG.getRoot(), Arg, FIPtr, NULL, 0));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000448 ArgOffset += 4;
449 }
450 }
451
452 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000453 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
454 &OutChains[0], OutChains.size()));
Chris Lattnera01b7572005-12-17 08:03:24 +0000455
456 // Finally, inform the code generator which regs we return values in.
457 switch (getValueType(F.getReturnType())) {
458 default: assert(0 && "Unknown type!");
459 case MVT::isVoid: break;
460 case MVT::i1:
461 case MVT::i8:
462 case MVT::i16:
463 case MVT::i32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000464 MF.addLiveOut(SP::I0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000465 break;
466 case MVT::i64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000467 MF.addLiveOut(SP::I0);
468 MF.addLiveOut(SP::I1);
Chris Lattnera01b7572005-12-17 08:03:24 +0000469 break;
470 case MVT::f32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000471 MF.addLiveOut(SP::F0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000472 break;
473 case MVT::f64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000474 MF.addLiveOut(SP::D0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000475 break;
476 }
477
478 return ArgValues;
Chris Lattner6c18b102005-12-17 07:47:01 +0000479}
480
481std::pair<SDOperand, SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000482SparcTargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
Reid Spencer47857812006-12-31 05:55:36 +0000483 bool RetTyIsSigned, bool isVarArg, unsigned CC,
Chris Lattner7c90f732006-02-05 05:50:24 +0000484 bool isTailCall, SDOperand Callee,
485 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000486 // Count the size of the outgoing arguments.
487 unsigned ArgsSize = 0;
488 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Reid Spencer47857812006-12-31 05:55:36 +0000489 switch (getValueType(Args[i].Ty)) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000490 default: assert(0 && "Unknown value type!");
491 case MVT::i1:
492 case MVT::i8:
493 case MVT::i16:
494 case MVT::i32:
495 case MVT::f32:
496 ArgsSize += 4;
497 break;
498 case MVT::i64:
499 case MVT::f64:
500 ArgsSize += 8;
501 break;
502 }
503 }
504 if (ArgsSize > 4*6)
505 ArgsSize -= 4*6; // Space for first 6 arguments is prereserved.
506 else
507 ArgsSize = 0;
508
Chris Lattner6554bef2005-12-19 01:15:13 +0000509 // Keep stack frames 8-byte aligned.
510 ArgsSize = (ArgsSize+7) & ~7;
511
Chris Lattner94dd2922006-02-13 09:00:43 +0000512 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(ArgsSize, getPointerTy()));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000513
Evan Cheng8b2794a2006-10-13 21:14:26 +0000514 SDOperand StackPtr;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000515 std::vector<SDOperand> Stores;
516 std::vector<SDOperand> RegValuesToPass;
517 unsigned ArgOffset = 68;
518 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Reid Spencer47857812006-12-31 05:55:36 +0000519 SDOperand Val = Args[i].Node;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000520 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercb833742006-01-06 17:56:38 +0000521 SDOperand ValToStore(0, 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000522 unsigned ObjSize;
523 switch (ObjectVT) {
524 default: assert(0 && "Unhandled argument type!");
525 case MVT::i1:
526 case MVT::i8:
Reid Spencer47857812006-12-31 05:55:36 +0000527 case MVT::i16: {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000528 // Promote the integer to 32-bits. If the input type is signed, use a
529 // sign extend, otherwise use a zero extend.
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000530 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
531 if (Args[i].isSExt)
Reid Spencer47857812006-12-31 05:55:36 +0000532 ExtendKind = ISD::SIGN_EXTEND;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000533 else if (Args[i].isZExt)
534 ExtendKind = ISD::ZERO_EXTEND;
Reid Spencer47857812006-12-31 05:55:36 +0000535 Val = DAG.getNode(ExtendKind, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000536 // FALL THROUGH
Reid Spencer47857812006-12-31 05:55:36 +0000537 }
Chris Lattner2db3ff62005-12-18 15:55:15 +0000538 case MVT::i32:
539 ObjSize = 4;
540
541 if (RegValuesToPass.size() >= 6) {
542 ValToStore = Val;
543 } else {
544 RegValuesToPass.push_back(Val);
545 }
546 break;
547 case MVT::f32:
548 ObjSize = 4;
549 if (RegValuesToPass.size() >= 6) {
550 ValToStore = Val;
551 } else {
552 // Convert this to a FP value in an int reg.
Chris Lattnera01874f2005-12-23 02:31:39 +0000553 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000554 RegValuesToPass.push_back(Val);
555 }
556 break;
Chris Lattnera01874f2005-12-23 02:31:39 +0000557 case MVT::f64:
Chris Lattner2db3ff62005-12-18 15:55:15 +0000558 ObjSize = 8;
559 // If we can store this directly into the outgoing slot, do so. We can
560 // do this when all ArgRegs are used and if the outgoing slot is aligned.
Chris Lattner7f9975a2006-01-15 19:15:46 +0000561 // FIXME: McGill/misr fails with this.
562 if (0 && RegValuesToPass.size() >= 6 && ((ArgOffset-68) & 7) == 0) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000563 ValToStore = Val;
564 break;
565 }
566
567 // Otherwise, convert this to a FP value in int regs.
Chris Lattnera01874f2005-12-23 02:31:39 +0000568 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000569 // FALL THROUGH
570 case MVT::i64:
571 ObjSize = 8;
572 if (RegValuesToPass.size() >= 6) {
573 ValToStore = Val; // Whole thing is passed in memory.
574 break;
575 }
576
577 // Split the value into top and bottom part. Top part goes in a reg.
Evan Chenga7dc4a52006-06-15 08:18:06 +0000578 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, getPointerTy(), Val,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000579 DAG.getConstant(1, MVT::i32));
Evan Chenga7dc4a52006-06-15 08:18:06 +0000580 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, getPointerTy(), Val,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000581 DAG.getConstant(0, MVT::i32));
582 RegValuesToPass.push_back(Hi);
583
584 if (RegValuesToPass.size() >= 6) {
585 ValToStore = Lo;
Chris Lattner7c423b42005-12-19 07:57:53 +0000586 ArgOffset += 4;
587 ObjSize = 4;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000588 } else {
589 RegValuesToPass.push_back(Lo);
590 }
591 break;
592 }
593
594 if (ValToStore.Val) {
595 if (!StackPtr.Val) {
Chris Lattner7c90f732006-02-05 05:50:24 +0000596 StackPtr = DAG.getRegister(SP::O6, MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000597 }
598 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
599 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
Evan Cheng8b2794a2006-10-13 21:14:26 +0000600 Stores.push_back(DAG.getStore(Chain, ValToStore, PtrOff, NULL, 0));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000601 }
602 ArgOffset += ObjSize;
603 }
604
605 // Emit all stores, make sure the occur before any copies into physregs.
606 if (!Stores.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000607 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Stores[0],Stores.size());
Chris Lattner2db3ff62005-12-18 15:55:15 +0000608
609 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000610 SP::O0, SP::O1, SP::O2, SP::O3, SP::O4, SP::O5
Chris Lattner2db3ff62005-12-18 15:55:15 +0000611 };
612
613 // Build a sequence of copy-to-reg nodes chained together with token chain
614 // and flag operands which copy the outgoing args into O[0-5].
615 SDOperand InFlag;
616 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
617 Chain = DAG.getCopyToReg(Chain, ArgRegs[i], RegValuesToPass[i], InFlag);
618 InFlag = Chain.getValue(1);
619 }
620
Chris Lattner2db3ff62005-12-18 15:55:15 +0000621 // If the callee is a GlobalAddress node (quite common, every direct call is)
622 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000623 // Likewise ExternalSymbol -> TargetExternalSymbol.
Chris Lattner2db3ff62005-12-18 15:55:15 +0000624 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
625 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i32);
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000626 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
627 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000628
629 std::vector<MVT::ValueType> NodeTys;
630 NodeTys.push_back(MVT::Other); // Returns a chain
631 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000632 SDOperand Ops[] = { Chain, Callee, InFlag };
633 Chain = DAG.getNode(SPISD::CALL, NodeTys, Ops, InFlag.Val ? 3 : 2);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000634 InFlag = Chain.getValue(1);
635
636 MVT::ValueType RetTyVT = getValueType(RetTy);
637 SDOperand RetVal;
638 if (RetTyVT != MVT::isVoid) {
639 switch (RetTyVT) {
640 default: assert(0 && "Unknown value type to return!");
641 case MVT::i1:
642 case MVT::i8:
Reid Spencer47857812006-12-31 05:55:36 +0000643 case MVT::i16: {
Chris Lattner7c90f732006-02-05 05:50:24 +0000644 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000645 Chain = RetVal.getValue(1);
646
647 // Add a note to keep track of whether it is sign or zero extended.
Reid Spencer47857812006-12-31 05:55:36 +0000648 ISD::NodeType AssertKind = ISD::AssertZext;
649 if (RetTyIsSigned)
650 AssertKind = ISD::AssertSext;
651 RetVal = DAG.getNode(AssertKind, MVT::i32, RetVal,
652 DAG.getValueType(RetTyVT));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000653 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
654 break;
Reid Spencer47857812006-12-31 05:55:36 +0000655 }
Chris Lattner2db3ff62005-12-18 15:55:15 +0000656 case MVT::i32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000657 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000658 Chain = RetVal.getValue(1);
659 break;
660 case MVT::f32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000661 RetVal = DAG.getCopyFromReg(Chain, SP::F0, MVT::f32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000662 Chain = RetVal.getValue(1);
663 break;
664 case MVT::f64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000665 RetVal = DAG.getCopyFromReg(Chain, SP::D0, MVT::f64, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000666 Chain = RetVal.getValue(1);
667 break;
668 case MVT::i64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000669 SDOperand Lo = DAG.getCopyFromReg(Chain, SP::O1, MVT::i32, InFlag);
670 SDOperand Hi = DAG.getCopyFromReg(Lo.getValue(1), SP::O0, MVT::i32,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000671 Lo.getValue(2));
672 RetVal = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
673 Chain = Hi.getValue(1);
674 break;
675 }
676 }
677
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000678 Chain = DAG.getCALLSEQ_END(Chain,
679 DAG.getConstant(ArgsSize, getPointerTy()),
680 DAG.getConstant(0, getPointerTy()),
681 SDOperand());
Chris Lattner2db3ff62005-12-18 15:55:15 +0000682 return std::make_pair(RetVal, Chain);
Chris Lattner6c18b102005-12-17 07:47:01 +0000683}
684
Chris Lattner7c90f732006-02-05 05:50:24 +0000685// Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so
686// set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
Chris Lattner86638b92006-01-31 05:05:52 +0000687static void LookThroughSetCC(SDOperand &LHS, SDOperand &RHS,
Chris Lattner7c90f732006-02-05 05:50:24 +0000688 ISD::CondCode CC, unsigned &SPCC) {
Chris Lattner86638b92006-01-31 05:05:52 +0000689 if (isa<ConstantSDNode>(RHS) && cast<ConstantSDNode>(RHS)->getValue() == 0 &&
690 CC == ISD::SETNE &&
Chris Lattner7c90f732006-02-05 05:50:24 +0000691 ((LHS.getOpcode() == SPISD::SELECT_ICC &&
692 LHS.getOperand(3).getOpcode() == SPISD::CMPICC) ||
693 (LHS.getOpcode() == SPISD::SELECT_FCC &&
694 LHS.getOperand(3).getOpcode() == SPISD::CMPFCC)) &&
Chris Lattner86638b92006-01-31 05:05:52 +0000695 isa<ConstantSDNode>(LHS.getOperand(0)) &&
696 isa<ConstantSDNode>(LHS.getOperand(1)) &&
697 cast<ConstantSDNode>(LHS.getOperand(0))->getValue() == 1 &&
698 cast<ConstantSDNode>(LHS.getOperand(1))->getValue() == 0) {
699 SDOperand CMPCC = LHS.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000700 SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getValue();
Chris Lattner86638b92006-01-31 05:05:52 +0000701 LHS = CMPCC.getOperand(0);
702 RHS = CMPCC.getOperand(1);
703 }
704}
705
706
Chris Lattner7c90f732006-02-05 05:50:24 +0000707SDOperand SparcTargetLowering::
Chris Lattner4d55aca2005-12-18 01:20:35 +0000708LowerOperation(SDOperand Op, SelectionDAG &DAG) {
709 switch (Op.getOpcode()) {
710 default: assert(0 && "Should not custom lower this!");
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000711 case ISD::GlobalTLSAddress:
712 assert(0 && "TLS not implemented for Sparc.");
Chris Lattnere3572462005-12-18 02:10:39 +0000713 case ISD::GlobalAddress: {
714 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
715 SDOperand GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000716 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, GA);
717 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, GA);
Chris Lattnere3572462005-12-18 02:10:39 +0000718 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
719 }
Chris Lattner76acc872005-12-18 02:37:35 +0000720 case ISD::ConstantPool: {
Evan Chengc356a572006-09-12 21:04:05 +0000721 Constant *C = cast<ConstantPoolSDNode>(Op)->getConstVal();
Evan Chengb8973bd2006-01-31 22:23:14 +0000722 SDOperand CP = DAG.getTargetConstantPool(C, MVT::i32,
723 cast<ConstantPoolSDNode>(Op)->getAlignment());
Chris Lattner7c90f732006-02-05 05:50:24 +0000724 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, CP);
725 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, CP);
Chris Lattner76acc872005-12-18 02:37:35 +0000726 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
727 }
Chris Lattner3cb71872005-12-23 05:00:16 +0000728 case ISD::FP_TO_SINT:
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000729 // Convert the fp value to integer in an FP register.
Chris Lattner3cb71872005-12-23 05:00:16 +0000730 assert(Op.getValueType() == MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000731 Op = DAG.getNode(SPISD::FTOI, MVT::f32, Op.getOperand(0));
Chris Lattner3cb71872005-12-23 05:00:16 +0000732 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000733 case ISD::SINT_TO_FP: {
Chris Lattner3cb71872005-12-23 05:00:16 +0000734 assert(Op.getOperand(0).getValueType() == MVT::i32);
Chris Lattner3fbb7262006-01-11 07:27:40 +0000735 SDOperand Tmp = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000736 // Convert the int value to FP in an FP register.
Chris Lattner7c90f732006-02-05 05:50:24 +0000737 return DAG.getNode(SPISD::ITOF, Op.getValueType(), Tmp);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000738 }
Chris Lattner33084492005-12-18 08:13:54 +0000739 case ISD::BR_CC: {
740 SDOperand Chain = Op.getOperand(0);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000741 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000742 SDOperand LHS = Op.getOperand(2);
743 SDOperand RHS = Op.getOperand(3);
744 SDOperand Dest = Op.getOperand(4);
Chris Lattner7c90f732006-02-05 05:50:24 +0000745 unsigned Opc, SPCC = ~0U;
Chris Lattner86638b92006-01-31 05:05:52 +0000746
747 // If this is a br_cc of a "setcc", and if the setcc got lowered into
748 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000749 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattner33084492005-12-18 08:13:54 +0000750
751 // Get the condition flag.
Chris Lattner86638b92006-01-31 05:05:52 +0000752 SDOperand CompareFlag;
Chris Lattner33084492005-12-18 08:13:54 +0000753 if (LHS.getValueType() == MVT::i32) {
Chris Lattnerb9169ce2006-01-11 07:49:38 +0000754 std::vector<MVT::ValueType> VTs;
755 VTs.push_back(MVT::i32);
756 VTs.push_back(MVT::Flag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000757 SDOperand Ops[2] = { LHS, RHS };
758 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops, 2).getValue(1);
Chris Lattner7c90f732006-02-05 05:50:24 +0000759 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
760 Opc = SPISD::BRICC;
Chris Lattner33084492005-12-18 08:13:54 +0000761 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000762 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
763 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
764 Opc = SPISD::BRFCC;
Chris Lattner33084492005-12-18 08:13:54 +0000765 }
Chris Lattner86638b92006-01-31 05:05:52 +0000766 return DAG.getNode(Opc, MVT::Other, Chain, Dest,
Chris Lattner7c90f732006-02-05 05:50:24 +0000767 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000768 }
769 case ISD::SELECT_CC: {
770 SDOperand LHS = Op.getOperand(0);
771 SDOperand RHS = Op.getOperand(1);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000772 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000773 SDOperand TrueVal = Op.getOperand(2);
774 SDOperand FalseVal = Op.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000775 unsigned Opc, SPCC = ~0U;
Chris Lattner3772bcb2006-01-30 07:43:04 +0000776
Chris Lattnerdea95282006-01-30 04:34:44 +0000777 // If this is a select_cc of a "setcc", and if the setcc got lowered into
778 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000779 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattnerdea95282006-01-30 04:34:44 +0000780
Chris Lattner4bb91022006-01-12 17:05:32 +0000781 SDOperand CompareFlag;
Chris Lattner4bb91022006-01-12 17:05:32 +0000782 if (LHS.getValueType() == MVT::i32) {
783 std::vector<MVT::ValueType> VTs;
784 VTs.push_back(LHS.getValueType()); // subcc returns a value
785 VTs.push_back(MVT::Flag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000786 SDOperand Ops[2] = { LHS, RHS };
787 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops, 2).getValue(1);
Chris Lattner7c90f732006-02-05 05:50:24 +0000788 Opc = SPISD::SELECT_ICC;
789 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000790 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000791 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
792 Opc = SPISD::SELECT_FCC;
793 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000794 }
Chris Lattner33084492005-12-18 08:13:54 +0000795 return DAG.getNode(Opc, TrueVal.getValueType(), TrueVal, FalseVal,
Chris Lattner7c90f732006-02-05 05:50:24 +0000796 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000797 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000798 case ISD::VASTART: {
799 // vastart just stores the address of the VarArgsFrameIndex slot into the
800 // memory location argument.
801 SDOperand Offset = DAG.getNode(ISD::ADD, MVT::i32,
Chris Lattner7c90f732006-02-05 05:50:24 +0000802 DAG.getRegister(SP::I6, MVT::i32),
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000803 DAG.getConstant(VarArgsFrameOffset, MVT::i32));
Evan Cheng8b2794a2006-10-13 21:14:26 +0000804 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
Evan Cheng786225a2006-10-05 23:01:46 +0000805 return DAG.getStore(Op.getOperand(0), Offset,
Evan Cheng8b2794a2006-10-13 21:14:26 +0000806 Op.getOperand(1), SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000807 }
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000808 case ISD::VAARG: {
809 SDNode *Node = Op.Val;
810 MVT::ValueType VT = Node->getValueType(0);
811 SDOperand InChain = Node->getOperand(0);
812 SDOperand VAListPtr = Node->getOperand(1);
Evan Cheng466685d2006-10-09 20:57:25 +0000813 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000814 SDOperand VAList = DAG.getLoad(getPointerTy(), InChain, VAListPtr,
Evan Cheng466685d2006-10-09 20:57:25 +0000815 SV->getValue(), SV->getOffset());
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000816 // Increment the pointer, VAList, to the next vaarg
817 SDOperand NextPtr = DAG.getNode(ISD::ADD, getPointerTy(), VAList,
818 DAG.getConstant(MVT::getSizeInBits(VT)/8,
819 getPointerTy()));
820 // Store the incremented VAList to the legalized pointer
Evan Cheng786225a2006-10-05 23:01:46 +0000821 InChain = DAG.getStore(VAList.getValue(1), NextPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +0000822 VAListPtr, SV->getValue(), SV->getOffset());
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000823 // Load the actual argument out of the pointer VAList, unless this is an
824 // f64 load.
825 if (VT != MVT::f64) {
Evan Cheng466685d2006-10-09 20:57:25 +0000826 return DAG.getLoad(VT, InChain, VAList, NULL, 0);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000827 } else {
828 // Otherwise, load it as i64, then do a bitconvert.
Evan Cheng466685d2006-10-09 20:57:25 +0000829 SDOperand V = DAG.getLoad(MVT::i64, InChain, VAList, NULL, 0);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000830 std::vector<MVT::ValueType> Tys;
831 Tys.push_back(MVT::f64);
832 Tys.push_back(MVT::Other);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000833 // Bit-Convert the value to f64.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000834 SDOperand Ops[2] = { DAG.getNode(ISD::BIT_CONVERT, MVT::f64, V),
835 V.getValue(1) };
836 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000837 }
838 }
Chris Lattner6fa1f572006-02-15 06:41:34 +0000839 case ISD::DYNAMIC_STACKALLOC: {
840 SDOperand Chain = Op.getOperand(0); // Legalize the chain.
841 SDOperand Size = Op.getOperand(1); // Legalize the size.
842
843 unsigned SPReg = SP::O6;
844 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, MVT::i32);
845 SDOperand NewSP = DAG.getNode(ISD::SUB, MVT::i32, SP, Size); // Value
846 Chain = DAG.getCopyToReg(SP.getValue(1), SPReg, NewSP); // Output chain
847
848 // The resultant pointer is actually 16 words from the bottom of the stack,
849 // to provide a register spill area.
850 SDOperand NewVal = DAG.getNode(ISD::ADD, MVT::i32, NewSP,
851 DAG.getConstant(96, MVT::i32));
852 std::vector<MVT::ValueType> Tys;
853 Tys.push_back(MVT::i32);
854 Tys.push_back(MVT::Other);
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000855 SDOperand Ops[2] = { NewVal, Chain };
856 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2);
Chris Lattner6fa1f572006-02-15 06:41:34 +0000857 }
Nate Begemanee625572006-01-27 21:09:22 +0000858 case ISD::RET: {
859 SDOperand Copy;
860
861 switch(Op.getNumOperands()) {
862 default:
863 assert(0 && "Do not know how to return this many arguments!");
864 abort();
865 case 1:
866 return SDOperand(); // ret void is legal
Evan Cheng6848be12006-05-26 23:10:12 +0000867 case 3: {
Nate Begemanee625572006-01-27 21:09:22 +0000868 unsigned ArgReg;
869 switch(Op.getOperand(1).getValueType()) {
870 default: assert(0 && "Unknown type to return!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000871 case MVT::i32: ArgReg = SP::I0; break;
872 case MVT::f32: ArgReg = SP::F0; break;
873 case MVT::f64: ArgReg = SP::D0; break;
Nate Begemanee625572006-01-27 21:09:22 +0000874 }
875 Copy = DAG.getCopyToReg(Op.getOperand(0), ArgReg, Op.getOperand(1),
876 SDOperand());
877 break;
878 }
Evan Cheng6848be12006-05-26 23:10:12 +0000879 case 5:
880 Copy = DAG.getCopyToReg(Op.getOperand(0), SP::I0, Op.getOperand(3),
Nate Begemanee625572006-01-27 21:09:22 +0000881 SDOperand());
Chris Lattner7c90f732006-02-05 05:50:24 +0000882 Copy = DAG.getCopyToReg(Copy, SP::I1, Op.getOperand(1), Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000883 break;
884 }
Chris Lattner7c90f732006-02-05 05:50:24 +0000885 return DAG.getNode(SPISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000886 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000887 // Frame & Return address. Currently unimplemented
888 case ISD::RETURNADDR: break;
889 case ISD::FRAMEADDR: break;
Chris Lattnerbce88872006-01-15 08:43:57 +0000890 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000891 return SDOperand();
Chris Lattner4d55aca2005-12-18 01:20:35 +0000892}
893
Chris Lattner33084492005-12-18 08:13:54 +0000894MachineBasicBlock *
Chris Lattner7c90f732006-02-05 05:50:24 +0000895SparcTargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
896 MachineBasicBlock *BB) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000897 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
Chris Lattner33084492005-12-18 08:13:54 +0000898 unsigned BROpcode;
Chris Lattner7a4d2912006-01-31 06:56:30 +0000899 unsigned CC;
Chris Lattner33084492005-12-18 08:13:54 +0000900 // Figure out the conditional branch opcode to use for this select_cc.
901 switch (MI->getOpcode()) {
902 default: assert(0 && "Unknown SELECT_CC!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000903 case SP::SELECT_CC_Int_ICC:
904 case SP::SELECT_CC_FP_ICC:
905 case SP::SELECT_CC_DFP_ICC:
906 BROpcode = SP::BCOND;
Chris Lattnerc03468b2006-01-31 17:20:06 +0000907 break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000908 case SP::SELECT_CC_Int_FCC:
909 case SP::SELECT_CC_FP_FCC:
910 case SP::SELECT_CC_DFP_FCC:
911 BROpcode = SP::FBCOND;
Chris Lattner33084492005-12-18 08:13:54 +0000912 break;
913 }
Chris Lattner7a4d2912006-01-31 06:56:30 +0000914
Chris Lattner7c90f732006-02-05 05:50:24 +0000915 CC = (SPCC::CondCodes)MI->getOperand(3).getImmedValue();
Chris Lattner33084492005-12-18 08:13:54 +0000916
917 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
918 // control-flow pattern. The incoming instruction knows the destination vreg
919 // to set, the condition code register to branch on, the true/false values to
920 // select between, and a branch opcode to use.
921 const BasicBlock *LLVM_BB = BB->getBasicBlock();
922 ilist<MachineBasicBlock>::iterator It = BB;
923 ++It;
924
925 // thisMBB:
926 // ...
927 // TrueVal = ...
928 // [f]bCC copy1MBB
929 // fallthrough --> copy0MBB
930 MachineBasicBlock *thisMBB = BB;
931 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
932 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
Evan Chengc0f64ff2006-11-27 23:37:22 +0000933 BuildMI(BB, TII.get(BROpcode)).addMBB(sinkMBB).addImm(CC);
Chris Lattner33084492005-12-18 08:13:54 +0000934 MachineFunction *F = BB->getParent();
935 F->getBasicBlockList().insert(It, copy0MBB);
936 F->getBasicBlockList().insert(It, sinkMBB);
Nate Begemanf15485a2006-03-27 01:32:24 +0000937 // Update machine-CFG edges by first adding all successors of the current
938 // block to the new block which will contain the Phi node for the select.
939 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
940 e = BB->succ_end(); i != e; ++i)
941 sinkMBB->addSuccessor(*i);
942 // Next, remove all successors of the current block, and add the true
943 // and fallthrough blocks as its successors.
944 while(!BB->succ_empty())
945 BB->removeSuccessor(BB->succ_begin());
Chris Lattner33084492005-12-18 08:13:54 +0000946 BB->addSuccessor(copy0MBB);
947 BB->addSuccessor(sinkMBB);
948
949 // copy0MBB:
950 // %FalseValue = ...
951 // # fallthrough to sinkMBB
952 BB = copy0MBB;
953
954 // Update machine-CFG edges
955 BB->addSuccessor(sinkMBB);
956
957 // sinkMBB:
958 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
959 // ...
960 BB = sinkMBB;
Evan Chengc0f64ff2006-11-27 23:37:22 +0000961 BuildMI(BB, TII.get(SP::PHI), MI->getOperand(0).getReg())
Chris Lattner33084492005-12-18 08:13:54 +0000962 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
963 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
964
965 delete MI; // The pseudo instruction is gone now.
966 return BB;
967}
968
Chris Lattner6c18b102005-12-17 07:47:01 +0000969//===----------------------------------------------------------------------===//
970// Instruction Selector Implementation
971//===----------------------------------------------------------------------===//
972
973//===--------------------------------------------------------------------===//
Chris Lattner7c90f732006-02-05 05:50:24 +0000974/// SparcDAGToDAGISel - SPARC specific code to select SPARC machine
Chris Lattner6c18b102005-12-17 07:47:01 +0000975/// instructions for SelectionDAG operations.
976///
977namespace {
Chris Lattner7c90f732006-02-05 05:50:24 +0000978class SparcDAGToDAGISel : public SelectionDAGISel {
979 SparcTargetLowering Lowering;
Chris Lattner76afdc92006-01-30 05:35:57 +0000980
981 /// Subtarget - Keep a pointer to the Sparc Subtarget around so that we can
982 /// make the right decision when generating code for different targets.
Chris Lattner7c90f732006-02-05 05:50:24 +0000983 const SparcSubtarget &Subtarget;
Chris Lattner6c18b102005-12-17 07:47:01 +0000984public:
Chris Lattner7c90f732006-02-05 05:50:24 +0000985 SparcDAGToDAGISel(TargetMachine &TM)
986 : SelectionDAGISel(Lowering), Lowering(TM),
987 Subtarget(TM.getSubtarget<SparcSubtarget>()) {
Chris Lattner76afdc92006-01-30 05:35:57 +0000988 }
Chris Lattner6c18b102005-12-17 07:47:01 +0000989
Evan Cheng9ade2182006-08-26 05:34:46 +0000990 SDNode *Select(SDOperand Op);
Chris Lattner6c18b102005-12-17 07:47:01 +0000991
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000992 // Complex Pattern Selectors.
Evan Cheng0d538262006-11-08 20:34:28 +0000993 bool SelectADDRrr(SDOperand Op, SDOperand N, SDOperand &R1, SDOperand &R2);
994 bool SelectADDRri(SDOperand Op, SDOperand N, SDOperand &Base,
995 SDOperand &Offset);
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000996
Chris Lattner6c18b102005-12-17 07:47:01 +0000997 /// InstructionSelectBasicBlock - This callback is invoked by
998 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
999 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
1000
1001 virtual const char *getPassName() const {
Chris Lattner7c90f732006-02-05 05:50:24 +00001002 return "SPARC DAG->DAG Pattern Instruction Selection";
Chris Lattner6c18b102005-12-17 07:47:01 +00001003 }
1004
1005 // Include the pieces autogenerated from the target description.
Chris Lattner7c90f732006-02-05 05:50:24 +00001006#include "SparcGenDAGISel.inc"
Chris Lattner6c18b102005-12-17 07:47:01 +00001007};
1008} // end anonymous namespace
1009
1010/// InstructionSelectBasicBlock - This callback is invoked by
1011/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattner7c90f732006-02-05 05:50:24 +00001012void SparcDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001013 DEBUG(BB->dump());
1014
1015 // Select target instructions for the DAG.
Evan Cheng900c8262006-02-05 06:51:51 +00001016 DAG.setRoot(SelectRoot(DAG.getRoot()));
Chris Lattner6c18b102005-12-17 07:47:01 +00001017 DAG.RemoveDeadNodes();
1018
1019 // Emit machine code to BB.
1020 ScheduleAndEmitDAG(DAG);
1021}
1022
Evan Cheng0d538262006-11-08 20:34:28 +00001023bool SparcDAGToDAGISel::SelectADDRri(SDOperand Op, SDOperand Addr,
1024 SDOperand &Base, SDOperand &Offset) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001025 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
1026 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001027 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1028 return true;
1029 }
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001030 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1031 Addr.getOpcode() == ISD::TargetGlobalAddress)
1032 return false; // direct calls.
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001033
1034 if (Addr.getOpcode() == ISD::ADD) {
1035 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
1036 if (Predicate_simm13(CN)) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001037 if (FrameIndexSDNode *FIN =
1038 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001039 // Constant offset from frame ref.
Chris Lattnerd5aae052005-12-18 07:09:06 +00001040 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001041 } else {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001042 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001043 }
1044 Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32);
1045 return true;
1046 }
1047 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001048 if (Addr.getOperand(0).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001049 Base = Addr.getOperand(1);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001050 Offset = Addr.getOperand(0).getOperand(0);
1051 return true;
1052 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001053 if (Addr.getOperand(1).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001054 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001055 Offset = Addr.getOperand(1).getOperand(0);
1056 return true;
1057 }
1058 }
Chris Lattnerc26017a2006-02-05 08:35:50 +00001059 Base = Addr;
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001060 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1061 return true;
1062}
1063
Evan Cheng0d538262006-11-08 20:34:28 +00001064bool SparcDAGToDAGISel::SelectADDRrr(SDOperand Op, SDOperand Addr,
1065 SDOperand &R1, SDOperand &R2) {
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001066 if (Addr.getOpcode() == ISD::FrameIndex) return false;
1067 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1068 Addr.getOpcode() == ISD::TargetGlobalAddress)
1069 return false; // direct calls.
1070
Chris Lattner9034b882005-12-17 21:25:27 +00001071 if (Addr.getOpcode() == ISD::ADD) {
1072 if (isa<ConstantSDNode>(Addr.getOperand(1)) &&
1073 Predicate_simm13(Addr.getOperand(1).Val))
1074 return false; // Let the reg+imm pattern catch this!
Chris Lattner7c90f732006-02-05 05:50:24 +00001075 if (Addr.getOperand(0).getOpcode() == SPISD::Lo ||
1076 Addr.getOperand(1).getOpcode() == SPISD::Lo)
Chris Lattnere1389ad2005-12-18 02:27:00 +00001077 return false; // Let the reg+imm pattern catch this!
Chris Lattnerc26017a2006-02-05 08:35:50 +00001078 R1 = Addr.getOperand(0);
1079 R2 = Addr.getOperand(1);
Chris Lattner9034b882005-12-17 21:25:27 +00001080 return true;
1081 }
1082
Chris Lattnerc26017a2006-02-05 08:35:50 +00001083 R1 = Addr;
Chris Lattner7c90f732006-02-05 05:50:24 +00001084 R2 = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattnerbc83fd92005-12-17 20:04:49 +00001085 return true;
1086}
1087
Evan Cheng9ade2182006-08-26 05:34:46 +00001088SDNode *SparcDAGToDAGISel::Select(SDOperand Op) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001089 SDNode *N = Op.Val;
Chris Lattner4d55aca2005-12-18 01:20:35 +00001090 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng9ade2182006-08-26 05:34:46 +00001091 N->getOpcode() < SPISD::FIRST_NUMBER)
Evan Cheng64a752f2006-08-11 09:08:15 +00001092 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001093
Chris Lattner6c18b102005-12-17 07:47:01 +00001094 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 Cheng6da2f322006-08-26 01:07:58 +00001099 SDOperand DivLHS = N->getOperand(0);
1100 SDOperand DivRHS = N->getOperand(1);
1101 AddToISelQueue(DivLHS);
1102 AddToISelQueue(DivRHS);
Chris Lattner7087e572005-12-17 22:39:19 +00001103
1104 // Set the Y register to the high-part.
1105 SDOperand TopPart;
1106 if (N->getOpcode() == ISD::SDIV) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001107 TopPart = SDOperand(CurDAG->getTargetNode(SP::SRAri, MVT::i32, DivLHS,
1108 CurDAG->getTargetConstant(31, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001109 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +00001110 TopPart = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattner7087e572005-12-17 22:39:19 +00001111 }
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001112 TopPart = SDOperand(CurDAG->getTargetNode(SP::WRYrr, MVT::Flag, TopPart,
1113 CurDAG->getRegister(SP::G0, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001114
1115 // FIXME: Handle div by immediate.
Chris Lattner7c90f732006-02-05 05:50:24 +00001116 unsigned Opcode = N->getOpcode() == ISD::SDIV ? SP::SDIVrr : SP::UDIVrr;
Evan Cheng23329f52006-08-16 07:30:09 +00001117 return CurDAG->SelectNodeTo(N, Opcode, MVT::i32, DivLHS, DivRHS,
Evan Cheng95514ba2006-08-26 08:00:10 +00001118 TopPart);
Chris Lattner7087e572005-12-17 22:39:19 +00001119 }
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001120 case ISD::MULHU:
1121 case ISD::MULHS: {
Chris Lattner7087e572005-12-17 22:39:19 +00001122 // FIXME: Handle mul by immediate.
Evan Cheng6da2f322006-08-26 01:07:58 +00001123 SDOperand MulLHS = N->getOperand(0);
1124 SDOperand MulRHS = N->getOperand(1);
1125 AddToISelQueue(MulLHS);
1126 AddToISelQueue(MulRHS);
Chris Lattner7c90f732006-02-05 05:50:24 +00001127 unsigned Opcode = N->getOpcode() == ISD::MULHU ? SP::UMULrr : SP::SMULrr;
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001128 SDNode *Mul = CurDAG->getTargetNode(Opcode, MVT::i32, MVT::Flag,
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001129 MulLHS, MulRHS);
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001130 // The high part is in the Y register.
Evan Cheng95514ba2006-08-26 08:00:10 +00001131 return CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDOperand(Mul, 1));
Evan Cheng64a752f2006-08-11 09:08:15 +00001132 return NULL;
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001133 }
Chris Lattner6c18b102005-12-17 07:47:01 +00001134 }
1135
Evan Cheng9ade2182006-08-26 05:34:46 +00001136 return SelectCode(Op);
Chris Lattner6c18b102005-12-17 07:47:01 +00001137}
1138
1139
Chris Lattner7c90f732006-02-05 05:50:24 +00001140/// createSparcISelDag - This pass converts a legalized DAG into a
Chris Lattner4dcfaac2006-01-26 07:22:22 +00001141/// SPARC-specific DAG, ready for instruction scheduling.
Chris Lattner6c18b102005-12-17 07:47:01 +00001142///
Chris Lattner7c90f732006-02-05 05:50:24 +00001143FunctionPass *llvm::createSparcISelDag(TargetMachine &TM) {
1144 return new SparcDAGToDAGISel(TM);
Chris Lattner6c18b102005-12-17 07:47:01 +00001145}