blob: d5b1784485aabf3862703ac087e2e9d433165d13 [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"
Evan Chenga844bde2008-02-02 04:07:54 +000022#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000023#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner6c18b102005-12-17 07:47:01 +000024#include "llvm/CodeGen/SelectionDAG.h"
25#include "llvm/CodeGen/SelectionDAGISel.h"
26#include "llvm/Target/TargetLowering.h"
Chris Lattner3d62d782008-02-03 05:43:57 +000027#include "llvm/Support/Compiler.h"
Chris Lattner6c18b102005-12-17 07:47:01 +000028#include "llvm/Support/Debug.h"
Evan Cheng2ef88a02006-08-07 22:28:20 +000029#include <queue>
Evan Cheng900c8262006-02-05 06:51:51 +000030#include <set>
Chris Lattner6c18b102005-12-17 07:47:01 +000031using namespace llvm;
32
33//===----------------------------------------------------------------------===//
34// TargetLowering Implementation
35//===----------------------------------------------------------------------===//
36
Chris Lattner7c90f732006-02-05 05:50:24 +000037namespace SPISD {
Chris Lattner4d55aca2005-12-18 01:20:35 +000038 enum {
Chris Lattner7c90f732006-02-05 05:50:24 +000039 FIRST_NUMBER = ISD::BUILTIN_OP_END+SP::INSTRUCTION_LIST_END,
Chris Lattner9072c052006-01-30 06:14:02 +000040 CMPICC, // Compare two GPR operands, set icc.
41 CMPFCC, // Compare two FP operands, set fcc.
42 BRICC, // Branch to dest on icc condition
43 BRFCC, // Branch to dest on fcc condition
44 SELECT_ICC, // Select between two values using the current ICC flags.
45 SELECT_FCC, // Select between two values using the current FCC flags.
Chris Lattnere3572462005-12-18 02:10:39 +000046
Chris Lattner9072c052006-01-30 06:14:02 +000047 Hi, Lo, // Hi/Lo operations, typically on a global address.
Chris Lattner8fa54dc2005-12-18 06:59:57 +000048
Chris Lattner9072c052006-01-30 06:14:02 +000049 FTOI, // FP to Int within a FP register.
50 ITOF, // Int to FP within a FP register.
51
Chris Lattner7c90f732006-02-05 05:50:24 +000052 CALL, // A call instruction.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000053 RET_FLAG // Return with a flag operand.
Chris Lattner4d55aca2005-12-18 01:20:35 +000054 };
55}
56
Chris Lattner3772bcb2006-01-30 07:43:04 +000057/// IntCondCCodeToICC - Convert a DAG integer condition code to a SPARC ICC
58/// condition.
Chris Lattner7c90f732006-02-05 05:50:24 +000059static SPCC::CondCodes IntCondCCodeToICC(ISD::CondCode CC) {
Chris Lattner3772bcb2006-01-30 07:43:04 +000060 switch (CC) {
61 default: assert(0 && "Unknown integer condition code!");
Chris Lattner7c90f732006-02-05 05:50:24 +000062 case ISD::SETEQ: return SPCC::ICC_E;
63 case ISD::SETNE: return SPCC::ICC_NE;
64 case ISD::SETLT: return SPCC::ICC_L;
65 case ISD::SETGT: return SPCC::ICC_G;
66 case ISD::SETLE: return SPCC::ICC_LE;
67 case ISD::SETGE: return SPCC::ICC_GE;
68 case ISD::SETULT: return SPCC::ICC_CS;
69 case ISD::SETULE: return SPCC::ICC_LEU;
70 case ISD::SETUGT: return SPCC::ICC_GU;
71 case ISD::SETUGE: return SPCC::ICC_CC;
Chris Lattner3772bcb2006-01-30 07:43:04 +000072 }
73}
74
75/// FPCondCCodeToFCC - Convert a DAG floatingp oint condition code to a SPARC
76/// FCC condition.
Chris Lattner7c90f732006-02-05 05:50:24 +000077static SPCC::CondCodes FPCondCCodeToFCC(ISD::CondCode CC) {
Chris Lattner3772bcb2006-01-30 07:43:04 +000078 switch (CC) {
79 default: assert(0 && "Unknown fp condition code!");
Chris Lattner8b5fbc52006-05-25 22:26:02 +000080 case ISD::SETEQ:
81 case ISD::SETOEQ: return SPCC::FCC_E;
82 case ISD::SETNE:
83 case ISD::SETUNE: return SPCC::FCC_NE;
84 case ISD::SETLT:
85 case ISD::SETOLT: return SPCC::FCC_L;
86 case ISD::SETGT:
87 case ISD::SETOGT: return SPCC::FCC_G;
88 case ISD::SETLE:
89 case ISD::SETOLE: return SPCC::FCC_LE;
90 case ISD::SETGE:
91 case ISD::SETOGE: return SPCC::FCC_GE;
Chris Lattner7c90f732006-02-05 05:50:24 +000092 case ISD::SETULT: return SPCC::FCC_UL;
93 case ISD::SETULE: return SPCC::FCC_ULE;
94 case ISD::SETUGT: return SPCC::FCC_UG;
95 case ISD::SETUGE: return SPCC::FCC_UGE;
96 case ISD::SETUO: return SPCC::FCC_U;
97 case ISD::SETO: return SPCC::FCC_O;
98 case ISD::SETONE: return SPCC::FCC_LG;
99 case ISD::SETUEQ: return SPCC::FCC_UE;
Chris Lattner3772bcb2006-01-30 07:43:04 +0000100 }
101}
Chris Lattner3772bcb2006-01-30 07:43:04 +0000102
Chris Lattner6c18b102005-12-17 07:47:01 +0000103namespace {
Chris Lattner7c90f732006-02-05 05:50:24 +0000104 class SparcTargetLowering : public TargetLowering {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000105 int VarArgsFrameOffset; // Frame offset to start of varargs area.
Chris Lattner6c18b102005-12-17 07:47:01 +0000106 public:
Chris Lattner7c90f732006-02-05 05:50:24 +0000107 SparcTargetLowering(TargetMachine &TM);
Chris Lattner4d55aca2005-12-18 01:20:35 +0000108 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
Chris Lattner4a397e02006-01-30 03:51:45 +0000109
Nate Begeman368e18d2006-02-16 21:11:51 +0000110 /// computeMaskedBitsForTargetNode - Determine which of the bits specified
111 /// in Mask are known to be either zero or one and return them in the
112 /// KnownZero/KnownOne bitsets.
113 virtual void computeMaskedBitsForTargetNode(const SDOperand Op,
114 uint64_t Mask,
115 uint64_t &KnownZero,
116 uint64_t &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +0000117 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +0000118 unsigned Depth = 0) const;
Chris Lattner4a397e02006-01-30 03:51:45 +0000119
Chris Lattner6c18b102005-12-17 07:47:01 +0000120 virtual std::vector<SDOperand>
121 LowerArguments(Function &F, SelectionDAG &DAG);
122 virtual std::pair<SDOperand, SDOperand>
Reid Spencer47857812006-12-31 05:55:36 +0000123 LowerCallTo(SDOperand Chain, const Type *RetTy, bool RetTyIsSigned,
124 bool isVarArg, unsigned CC, bool isTailCall, SDOperand Callee,
125 ArgListTy &Args, SelectionDAG &DAG);
Evan Chengff9b3732008-01-30 18:18:23 +0000126 virtual MachineBasicBlock *EmitInstrWithCustomInserter(MachineInstr *MI,
127 MachineBasicBlock *MBB);
Chris Lattner72878a42006-01-12 07:31:15 +0000128
129 virtual const char *getTargetNodeName(unsigned Opcode) const;
Chris Lattner6c18b102005-12-17 07:47:01 +0000130 };
131}
132
Chris Lattner7c90f732006-02-05 05:50:24 +0000133SparcTargetLowering::SparcTargetLowering(TargetMachine &TM)
Chris Lattner6c18b102005-12-17 07:47:01 +0000134 : TargetLowering(TM) {
135
136 // Set up the register classes.
Chris Lattner7c90f732006-02-05 05:50:24 +0000137 addRegisterClass(MVT::i32, SP::IntRegsRegisterClass);
138 addRegisterClass(MVT::f32, SP::FPRegsRegisterClass);
139 addRegisterClass(MVT::f64, SP::DFPRegsRegisterClass);
Chris Lattner9a60ff62005-12-17 20:50:42 +0000140
Evan Chengc5484282006-10-04 00:56:09 +0000141 // Turn FP extload into load/fextend
142 setLoadXAction(ISD::EXTLOAD, MVT::f32, Expand);
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000143
144 // Sparc doesn't have i1 sign extending load
145 setLoadXAction(ISD::SEXTLOAD, MVT::i1, Promote);
146
Chris Lattnere3572462005-12-18 02:10:39 +0000147 // Custom legalize GlobalAddress nodes into LO/HI parts.
148 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000149 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Chris Lattner76acc872005-12-18 02:37:35 +0000150 setOperationAction(ISD::ConstantPool , MVT::i32, Custom);
Chris Lattnere3572462005-12-18 02:10:39 +0000151
Chris Lattner9a60ff62005-12-17 20:50:42 +0000152 // Sparc doesn't have sext_inreg, replace them with shl/sra
Chris Lattner33084492005-12-18 08:13:54 +0000153 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
154 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
155 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
Chris Lattner7087e572005-12-17 22:39:19 +0000156
Chris Lattner85d0aaa2007-10-10 18:10:57 +0000157 // Sparc has no REM or DIVREM operations.
Chris Lattner7087e572005-12-17 22:39:19 +0000158 setOperationAction(ISD::UREM, MVT::i32, Expand);
159 setOperationAction(ISD::SREM, MVT::i32, Expand);
Chris Lattner85d0aaa2007-10-10 18:10:57 +0000160 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
161 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000162
163 // Custom expand fp<->sint
164 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
165 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
166
167 // Expand fp<->uint
168 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
169 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Chris Lattner6c18b102005-12-17 07:47:01 +0000170
Chris Lattner53e88452005-12-23 05:13:35 +0000171 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
172 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
173
Chris Lattner4d55aca2005-12-18 01:20:35 +0000174 // Sparc has no select or setcc: expand to SELECT_CC.
175 setOperationAction(ISD::SELECT, MVT::i32, Expand);
176 setOperationAction(ISD::SELECT, MVT::f32, Expand);
177 setOperationAction(ISD::SELECT, MVT::f64, Expand);
178 setOperationAction(ISD::SETCC, MVT::i32, Expand);
179 setOperationAction(ISD::SETCC, MVT::f32, Expand);
180 setOperationAction(ISD::SETCC, MVT::f64, Expand);
181
182 // Sparc doesn't have BRCOND either, it has BR_CC.
183 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Chengc35497f2006-10-30 08:02:39 +0000184 setOperationAction(ISD::BRIND, MVT::Other, Expand);
185 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Chris Lattner4d55aca2005-12-18 01:20:35 +0000186 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
187 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
188 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
189
Chris Lattner33084492005-12-18 08:13:54 +0000190 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
191 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
192 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
193
Chris Lattner7c90f732006-02-05 05:50:24 +0000194 // SPARC has no intrinsics for these particular operations.
Chris Lattnere90ac3a2005-12-18 23:00:27 +0000195 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
196 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
197 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
198
Chris Lattner61772c22005-12-19 01:39:40 +0000199 setOperationAction(ISD::FSIN , MVT::f64, Expand);
200 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattner8dc4b592007-07-13 16:24:10 +0000201 setOperationAction(ISD::FREM , MVT::f64, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000202 setOperationAction(ISD::FSIN , MVT::f32, Expand);
203 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattner8dc4b592007-07-13 16:24:10 +0000204 setOperationAction(ISD::FREM , MVT::f32, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000205 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
206 setOperationAction(ISD::CTTZ , MVT::i32, Expand);
207 setOperationAction(ISD::CTLZ , MVT::i32, Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000208 setOperationAction(ISD::ROTL , MVT::i32, Expand);
209 setOperationAction(ISD::ROTR , MVT::i32, Expand);
Nate Begemand88fc032006-01-14 03:14:10 +0000210 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Chris Lattner9601a862006-03-05 05:08:37 +0000211 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
212 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000213 setOperationAction(ISD::FPOW , MVT::f64, Expand);
214 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Chris Lattner61772c22005-12-19 01:39:40 +0000215
216 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
217 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
218 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000219
220 // We don't have line number support yet.
221 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +0000222 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Jim Laskey1ee29252007-01-26 14:34:52 +0000223 setOperationAction(ISD::LABEL, MVT::Other, Expand);
Jim Laskeye81aecb2005-12-21 20:51:37 +0000224
Nate Begemanee625572006-01-27 21:09:22 +0000225 // RET must be custom lowered, to meet ABI requirements
226 setOperationAction(ISD::RET , MVT::Other, Custom);
Duncan Sands36397f52007-07-27 12:58:54 +0000227
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000228 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
Nate Begemanacc398c2006-01-25 18:21:52 +0000229 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000230 // VAARG needs to be lowered to not do unaligned accesses for doubles.
231 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000232
233 // Use the default implementation.
Nate Begemanacc398c2006-01-25 18:21:52 +0000234 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
235 setOperationAction(ISD::VAEND , MVT::Other, Expand);
236 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
237 setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand);
Chris Lattner6fa1f572006-02-15 06:41:34 +0000238 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
Chris Lattner934ea492006-01-15 08:55:25 +0000239
Chris Lattner2adc05c2006-01-30 22:20:49 +0000240 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
241 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
242
Chris Lattner7c90f732006-02-05 05:50:24 +0000243 setStackPointerRegisterToSaveRestore(SP::O6);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000244
Chris Lattner7c90f732006-02-05 05:50:24 +0000245 if (TM.getSubtarget<SparcSubtarget>().isV9()) {
Chris Lattner9072c052006-01-30 06:14:02 +0000246 setOperationAction(ISD::CTPOP, MVT::i32, Legal);
247 }
248
Chris Lattner6c18b102005-12-17 07:47:01 +0000249 computeRegisterProperties();
250}
251
Chris Lattner7c90f732006-02-05 05:50:24 +0000252const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const {
Chris Lattner72878a42006-01-12 07:31:15 +0000253 switch (Opcode) {
Chris Lattner138d3222006-01-12 07:38:04 +0000254 default: return 0;
Chris Lattner7c90f732006-02-05 05:50:24 +0000255 case SPISD::CMPICC: return "SPISD::CMPICC";
256 case SPISD::CMPFCC: return "SPISD::CMPFCC";
257 case SPISD::BRICC: return "SPISD::BRICC";
258 case SPISD::BRFCC: return "SPISD::BRFCC";
259 case SPISD::SELECT_ICC: return "SPISD::SELECT_ICC";
260 case SPISD::SELECT_FCC: return "SPISD::SELECT_FCC";
261 case SPISD::Hi: return "SPISD::Hi";
262 case SPISD::Lo: return "SPISD::Lo";
263 case SPISD::FTOI: return "SPISD::FTOI";
264 case SPISD::ITOF: return "SPISD::ITOF";
265 case SPISD::CALL: return "SPISD::CALL";
266 case SPISD::RET_FLAG: return "SPISD::RET_FLAG";
Chris Lattner72878a42006-01-12 07:31:15 +0000267 }
268}
269
Chris Lattner4a397e02006-01-30 03:51:45 +0000270/// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
271/// be zero. Op is expected to be a target specific node. Used by DAG
272/// combiner.
Nate Begeman368e18d2006-02-16 21:11:51 +0000273void SparcTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
274 uint64_t Mask,
275 uint64_t &KnownZero,
276 uint64_t &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +0000277 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +0000278 unsigned Depth) const {
279 uint64_t KnownZero2, KnownOne2;
280 KnownZero = KnownOne = 0; // Don't know anything.
281
Chris Lattner4a397e02006-01-30 03:51:45 +0000282 switch (Op.getOpcode()) {
Nate Begeman368e18d2006-02-16 21:11:51 +0000283 default: break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000284 case SPISD::SELECT_ICC:
285 case SPISD::SELECT_FCC:
Dan Gohmanea859be2007-06-22 14:59:07 +0000286 DAG.ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne,
287 Depth+1);
288 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2,
289 Depth+1);
Nate Begeman368e18d2006-02-16 21:11:51 +0000290 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
291 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
292
293 // Only known if known in both the LHS and RHS.
294 KnownOne &= KnownOne2;
295 KnownZero &= KnownZero2;
296 break;
Chris Lattner4a397e02006-01-30 03:51:45 +0000297 }
298}
299
Chris Lattner384e5ef2005-12-18 13:33:06 +0000300/// LowerArguments - V8 uses a very simple ABI, where all values are passed in
301/// either one or two GPRs, including FP values. TODO: we should pass FP values
302/// in FP registers for fastcc functions.
Chris Lattner6c18b102005-12-17 07:47:01 +0000303std::vector<SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000304SparcTargetLowering::LowerArguments(Function &F, SelectionDAG &DAG) {
Chris Lattnera01b7572005-12-17 08:03:24 +0000305 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner84bc5422007-12-31 04:13:23 +0000306 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattnera01b7572005-12-17 08:03:24 +0000307 std::vector<SDOperand> ArgValues;
308
Chris Lattner384e5ef2005-12-18 13:33:06 +0000309 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000310 SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
Chris Lattnera01b7572005-12-17 08:03:24 +0000311 };
Chris Lattner384e5ef2005-12-18 13:33:06 +0000312
313 const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6;
314 unsigned ArgOffset = 68;
315
316 SDOperand Root = DAG.getRoot();
317 std::vector<SDOperand> OutChains;
318
Chris Lattnera01b7572005-12-17 08:03:24 +0000319 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) {
320 MVT::ValueType ObjectVT = getValueType(I->getType());
Chris Lattnera01b7572005-12-17 08:03:24 +0000321
322 switch (ObjectVT) {
323 default: assert(0 && "Unhandled argument type!");
Chris Lattnera01b7572005-12-17 08:03:24 +0000324 case MVT::i1:
325 case MVT::i8:
326 case MVT::i16:
Chris Lattner384e5ef2005-12-18 13:33:06 +0000327 case MVT::i32:
328 if (I->use_empty()) { // Argument is dead.
329 if (CurArgReg < ArgRegEnd) ++CurArgReg;
330 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
331 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner84bc5422007-12-31 04:13:23 +0000332 unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
333 MF.getRegInfo().addLiveIn(*CurArgReg++, VReg);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000334 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
335 if (ObjectVT != MVT::i32) {
Reid Spencer47857812006-12-31 05:55:36 +0000336 unsigned AssertOp = ISD::AssertSext;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000337 Arg = DAG.getNode(AssertOp, MVT::i32, Arg,
338 DAG.getValueType(ObjectVT));
339 Arg = DAG.getNode(ISD::TRUNCATE, ObjectVT, Arg);
340 }
341 ArgValues.push_back(Arg);
342 } else {
343 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
344 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
345 SDOperand Load;
346 if (ObjectVT == MVT::i32) {
Evan Cheng466685d2006-10-09 20:57:25 +0000347 Load = DAG.getLoad(MVT::i32, Root, FIPtr, NULL, 0);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000348 } else {
Reid Spencer47857812006-12-31 05:55:36 +0000349 ISD::LoadExtType LoadOp = ISD::SEXTLOAD;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000350
Chris Lattner99cf5092006-01-16 01:40:00 +0000351 // Sparc is big endian, so add an offset based on the ObjectVT.
352 unsigned Offset = 4-std::max(1U, MVT::getSizeInBits(ObjectVT)/8);
353 FIPtr = DAG.getNode(ISD::ADD, MVT::i32, FIPtr,
354 DAG.getConstant(Offset, MVT::i32));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000355 Load = DAG.getExtLoad(LoadOp, MVT::i32, Root, FIPtr,
Evan Cheng466685d2006-10-09 20:57:25 +0000356 NULL, 0, ObjectVT);
Chris Lattnerf7511b42006-01-15 22:22:01 +0000357 Load = DAG.getNode(ISD::TRUNCATE, ObjectVT, Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000358 }
359 ArgValues.push_back(Load);
Chris Lattnera01b7572005-12-17 08:03:24 +0000360 }
Chris Lattner384e5ef2005-12-18 13:33:06 +0000361
362 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000363 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000364 case MVT::f32:
365 if (I->use_empty()) { // Argument is dead.
366 if (CurArgReg < ArgRegEnd) ++CurArgReg;
367 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
368 } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
369 // FP value is passed in an integer register.
Chris Lattner84bc5422007-12-31 04:13:23 +0000370 unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
371 MF.getRegInfo().addLiveIn(*CurArgReg++, VReg);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000372 SDOperand Arg = DAG.getCopyFromReg(Root, VReg, MVT::i32);
373
Chris Lattnera01874f2005-12-23 02:31:39 +0000374 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Arg);
375 ArgValues.push_back(Arg);
Chris Lattner46030a62006-01-19 07:22:29 +0000376 } else {
377 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
378 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000379 SDOperand Load = DAG.getLoad(MVT::f32, Root, FIPtr, NULL, 0);
Chris Lattner46030a62006-01-19 07:22:29 +0000380 ArgValues.push_back(Load);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000381 }
382 ArgOffset += 4;
Chris Lattner217aabf2005-12-17 20:59:06 +0000383 break;
Chris Lattner384e5ef2005-12-18 13:33:06 +0000384
385 case MVT::i64:
386 case MVT::f64:
387 if (I->use_empty()) { // Argument is dead.
388 if (CurArgReg < ArgRegEnd) ++CurArgReg;
389 if (CurArgReg < ArgRegEnd) ++CurArgReg;
390 ArgValues.push_back(DAG.getNode(ISD::UNDEF, ObjectVT));
Chris Lattnerb7163432006-01-31 02:45:52 +0000391 } else if (/* FIXME: Apparently this isn't safe?? */
392 0 && CurArgReg == ArgRegEnd && ObjectVT == MVT::f64 &&
Chris Lattner384e5ef2005-12-18 13:33:06 +0000393 ((CurArgReg-ArgRegs) & 1) == 0) {
394 // If this is a double argument and the whole thing lives on the stack,
395 // and the argument is aligned, load the double straight from the stack.
396 // We can't do a load in cases like void foo([6ints], int,double),
397 // because the double wouldn't be aligned!
398 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(8, ArgOffset);
399 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000400 ArgValues.push_back(DAG.getLoad(MVT::f64, Root, FIPtr, NULL, 0));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000401 } else {
402 SDOperand HiVal;
403 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner84bc5422007-12-31 04:13:23 +0000404 unsigned VRegHi = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
405 MF.getRegInfo().addLiveIn(*CurArgReg++, VRegHi);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000406 HiVal = DAG.getCopyFromReg(Root, VRegHi, MVT::i32);
407 } else {
408 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
409 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000410 HiVal = DAG.getLoad(MVT::i32, Root, FIPtr, NULL, 0);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000411 }
412
413 SDOperand LoVal;
414 if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR
Chris Lattner84bc5422007-12-31 04:13:23 +0000415 unsigned VRegLo = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
416 MF.getRegInfo().addLiveIn(*CurArgReg++, VRegLo);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000417 LoVal = DAG.getCopyFromReg(Root, VRegLo, MVT::i32);
418 } else {
419 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4);
420 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
Evan Cheng466685d2006-10-09 20:57:25 +0000421 LoVal = DAG.getLoad(MVT::i32, Root, FIPtr, NULL, 0);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000422 }
423
424 // Compose the two halves together into an i64 unit.
425 SDOperand WholeValue =
426 DAG.getNode(ISD::BUILD_PAIR, MVT::i64, LoVal, HiVal);
Chris Lattnera01874f2005-12-23 02:31:39 +0000427
428 // If we want a double, do a bit convert.
429 if (ObjectVT == MVT::f64)
430 WholeValue = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, WholeValue);
431
432 ArgValues.push_back(WholeValue);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000433 }
434 ArgOffset += 8;
435 break;
Chris Lattnera01b7572005-12-17 08:03:24 +0000436 }
437 }
438
Chris Lattner384e5ef2005-12-18 13:33:06 +0000439 // Store remaining ArgRegs to the stack if this is a varargs function.
440 if (F.getFunctionType()->isVarArg()) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000441 // Remember the vararg offset for the va_start implementation.
442 VarArgsFrameOffset = ArgOffset;
443
Chris Lattner384e5ef2005-12-18 13:33:06 +0000444 for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000445 unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
446 MF.getRegInfo().addLiveIn(*CurArgReg, VReg);
Chris Lattner384e5ef2005-12-18 13:33:06 +0000447 SDOperand Arg = DAG.getCopyFromReg(DAG.getRoot(), VReg, MVT::i32);
448
449 int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset);
450 SDOperand FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
451
Evan Cheng8b2794a2006-10-13 21:14:26 +0000452 OutChains.push_back(DAG.getStore(DAG.getRoot(), Arg, FIPtr, NULL, 0));
Chris Lattner384e5ef2005-12-18 13:33:06 +0000453 ArgOffset += 4;
454 }
455 }
456
457 if (!OutChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000458 DAG.setRoot(DAG.getNode(ISD::TokenFactor, MVT::Other,
459 &OutChains[0], OutChains.size()));
Chris Lattnera01b7572005-12-17 08:03:24 +0000460
461 // Finally, inform the code generator which regs we return values in.
462 switch (getValueType(F.getReturnType())) {
463 default: assert(0 && "Unknown type!");
464 case MVT::isVoid: break;
465 case MVT::i1:
466 case MVT::i8:
467 case MVT::i16:
468 case MVT::i32:
Chris Lattner84bc5422007-12-31 04:13:23 +0000469 MF.getRegInfo().addLiveOut(SP::I0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000470 break;
471 case MVT::i64:
Chris Lattner84bc5422007-12-31 04:13:23 +0000472 MF.getRegInfo().addLiveOut(SP::I0);
473 MF.getRegInfo().addLiveOut(SP::I1);
Chris Lattnera01b7572005-12-17 08:03:24 +0000474 break;
475 case MVT::f32:
Chris Lattner84bc5422007-12-31 04:13:23 +0000476 MF.getRegInfo().addLiveOut(SP::F0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000477 break;
478 case MVT::f64:
Chris Lattner84bc5422007-12-31 04:13:23 +0000479 MF.getRegInfo().addLiveOut(SP::D0);
Chris Lattnera01b7572005-12-17 08:03:24 +0000480 break;
481 }
482
483 return ArgValues;
Chris Lattner6c18b102005-12-17 07:47:01 +0000484}
485
486std::pair<SDOperand, SDOperand>
Chris Lattner7c90f732006-02-05 05:50:24 +0000487SparcTargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
Reid Spencer47857812006-12-31 05:55:36 +0000488 bool RetTyIsSigned, bool isVarArg, unsigned CC,
Chris Lattner7c90f732006-02-05 05:50:24 +0000489 bool isTailCall, SDOperand Callee,
490 ArgListTy &Args, SelectionDAG &DAG) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000491 // Count the size of the outgoing arguments.
492 unsigned ArgsSize = 0;
493 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Reid Spencer47857812006-12-31 05:55:36 +0000494 switch (getValueType(Args[i].Ty)) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000495 default: assert(0 && "Unknown value type!");
496 case MVT::i1:
497 case MVT::i8:
498 case MVT::i16:
499 case MVT::i32:
500 case MVT::f32:
501 ArgsSize += 4;
502 break;
503 case MVT::i64:
504 case MVT::f64:
505 ArgsSize += 8;
506 break;
507 }
508 }
509 if (ArgsSize > 4*6)
510 ArgsSize -= 4*6; // Space for first 6 arguments is prereserved.
511 else
512 ArgsSize = 0;
513
Chris Lattner6554bef2005-12-19 01:15:13 +0000514 // Keep stack frames 8-byte aligned.
515 ArgsSize = (ArgsSize+7) & ~7;
516
Chris Lattner94dd2922006-02-13 09:00:43 +0000517 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(ArgsSize, getPointerTy()));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000518
Evan Cheng8b2794a2006-10-13 21:14:26 +0000519 SDOperand StackPtr;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000520 std::vector<SDOperand> Stores;
521 std::vector<SDOperand> RegValuesToPass;
522 unsigned ArgOffset = 68;
523 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
Reid Spencer47857812006-12-31 05:55:36 +0000524 SDOperand Val = Args[i].Node;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000525 MVT::ValueType ObjectVT = Val.getValueType();
Chris Lattnercb833742006-01-06 17:56:38 +0000526 SDOperand ValToStore(0, 0);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000527 unsigned ObjSize;
528 switch (ObjectVT) {
529 default: assert(0 && "Unhandled argument type!");
530 case MVT::i1:
531 case MVT::i8:
Reid Spencer47857812006-12-31 05:55:36 +0000532 case MVT::i16: {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000533 // Promote the integer to 32-bits. If the input type is signed, use a
534 // sign extend, otherwise use a zero extend.
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000535 ISD::NodeType ExtendKind = ISD::ANY_EXTEND;
536 if (Args[i].isSExt)
Reid Spencer47857812006-12-31 05:55:36 +0000537 ExtendKind = ISD::SIGN_EXTEND;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000538 else if (Args[i].isZExt)
539 ExtendKind = ISD::ZERO_EXTEND;
Reid Spencer47857812006-12-31 05:55:36 +0000540 Val = DAG.getNode(ExtendKind, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000541 // FALL THROUGH
Reid Spencer47857812006-12-31 05:55:36 +0000542 }
Chris Lattner2db3ff62005-12-18 15:55:15 +0000543 case MVT::i32:
544 ObjSize = 4;
545
546 if (RegValuesToPass.size() >= 6) {
547 ValToStore = Val;
548 } else {
549 RegValuesToPass.push_back(Val);
550 }
551 break;
552 case MVT::f32:
553 ObjSize = 4;
554 if (RegValuesToPass.size() >= 6) {
555 ValToStore = Val;
556 } else {
557 // Convert this to a FP value in an int reg.
Chris Lattnera01874f2005-12-23 02:31:39 +0000558 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000559 RegValuesToPass.push_back(Val);
560 }
561 break;
Chris Lattnera01874f2005-12-23 02:31:39 +0000562 case MVT::f64:
Chris Lattner2db3ff62005-12-18 15:55:15 +0000563 ObjSize = 8;
564 // If we can store this directly into the outgoing slot, do so. We can
565 // do this when all ArgRegs are used and if the outgoing slot is aligned.
Chris Lattner7f9975a2006-01-15 19:15:46 +0000566 // FIXME: McGill/misr fails with this.
567 if (0 && RegValuesToPass.size() >= 6 && ((ArgOffset-68) & 7) == 0) {
Chris Lattner2db3ff62005-12-18 15:55:15 +0000568 ValToStore = Val;
569 break;
570 }
571
572 // Otherwise, convert this to a FP value in int regs.
Chris Lattnera01874f2005-12-23 02:31:39 +0000573 Val = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Val);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000574 // FALL THROUGH
575 case MVT::i64:
576 ObjSize = 8;
577 if (RegValuesToPass.size() >= 6) {
578 ValToStore = Val; // Whole thing is passed in memory.
579 break;
580 }
581
582 // Split the value into top and bottom part. Top part goes in a reg.
Evan Chenga7dc4a52006-06-15 08:18:06 +0000583 SDOperand Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, getPointerTy(), Val,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000584 DAG.getConstant(1, MVT::i32));
Evan Chenga7dc4a52006-06-15 08:18:06 +0000585 SDOperand Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, getPointerTy(), Val,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000586 DAG.getConstant(0, MVT::i32));
587 RegValuesToPass.push_back(Hi);
588
589 if (RegValuesToPass.size() >= 6) {
590 ValToStore = Lo;
Chris Lattner7c423b42005-12-19 07:57:53 +0000591 ArgOffset += 4;
592 ObjSize = 4;
Chris Lattner2db3ff62005-12-18 15:55:15 +0000593 } else {
594 RegValuesToPass.push_back(Lo);
595 }
596 break;
597 }
598
599 if (ValToStore.Val) {
600 if (!StackPtr.Val) {
Chris Lattner7c90f732006-02-05 05:50:24 +0000601 StackPtr = DAG.getRegister(SP::O6, MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000602 }
603 SDOperand PtrOff = DAG.getConstant(ArgOffset, getPointerTy());
604 PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff);
Evan Cheng8b2794a2006-10-13 21:14:26 +0000605 Stores.push_back(DAG.getStore(Chain, ValToStore, PtrOff, NULL, 0));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000606 }
607 ArgOffset += ObjSize;
608 }
609
610 // Emit all stores, make sure the occur before any copies into physregs.
611 if (!Stores.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000612 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Stores[0],Stores.size());
Chris Lattner2db3ff62005-12-18 15:55:15 +0000613
614 static const unsigned ArgRegs[] = {
Chris Lattner7c90f732006-02-05 05:50:24 +0000615 SP::O0, SP::O1, SP::O2, SP::O3, SP::O4, SP::O5
Chris Lattner2db3ff62005-12-18 15:55:15 +0000616 };
617
618 // Build a sequence of copy-to-reg nodes chained together with token chain
619 // and flag operands which copy the outgoing args into O[0-5].
620 SDOperand InFlag;
621 for (unsigned i = 0, e = RegValuesToPass.size(); i != e; ++i) {
622 Chain = DAG.getCopyToReg(Chain, ArgRegs[i], RegValuesToPass[i], InFlag);
623 InFlag = Chain.getValue(1);
624 }
625
Chris Lattner2db3ff62005-12-18 15:55:15 +0000626 // If the callee is a GlobalAddress node (quite common, every direct call is)
627 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000628 // Likewise ExternalSymbol -> TargetExternalSymbol.
Chris Lattner2db3ff62005-12-18 15:55:15 +0000629 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
630 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i32);
Chris Lattnerad7a3e62006-02-10 07:35:42 +0000631 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
632 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000633
634 std::vector<MVT::ValueType> NodeTys;
635 NodeTys.push_back(MVT::Other); // Returns a chain
636 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000637 SDOperand Ops[] = { Chain, Callee, InFlag };
638 Chain = DAG.getNode(SPISD::CALL, NodeTys, Ops, InFlag.Val ? 3 : 2);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000639 InFlag = Chain.getValue(1);
640
641 MVT::ValueType RetTyVT = getValueType(RetTy);
642 SDOperand RetVal;
643 if (RetTyVT != MVT::isVoid) {
644 switch (RetTyVT) {
645 default: assert(0 && "Unknown value type to return!");
646 case MVT::i1:
647 case MVT::i8:
Reid Spencer47857812006-12-31 05:55:36 +0000648 case MVT::i16: {
Chris Lattner7c90f732006-02-05 05:50:24 +0000649 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000650 Chain = RetVal.getValue(1);
651
652 // Add a note to keep track of whether it is sign or zero extended.
Reid Spencer47857812006-12-31 05:55:36 +0000653 ISD::NodeType AssertKind = ISD::AssertZext;
654 if (RetTyIsSigned)
655 AssertKind = ISD::AssertSext;
656 RetVal = DAG.getNode(AssertKind, MVT::i32, RetVal,
657 DAG.getValueType(RetTyVT));
Chris Lattner2db3ff62005-12-18 15:55:15 +0000658 RetVal = DAG.getNode(ISD::TRUNCATE, RetTyVT, RetVal);
659 break;
Reid Spencer47857812006-12-31 05:55:36 +0000660 }
Chris Lattner2db3ff62005-12-18 15:55:15 +0000661 case MVT::i32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000662 RetVal = DAG.getCopyFromReg(Chain, SP::O0, MVT::i32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000663 Chain = RetVal.getValue(1);
664 break;
665 case MVT::f32:
Chris Lattner7c90f732006-02-05 05:50:24 +0000666 RetVal = DAG.getCopyFromReg(Chain, SP::F0, MVT::f32, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000667 Chain = RetVal.getValue(1);
668 break;
669 case MVT::f64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000670 RetVal = DAG.getCopyFromReg(Chain, SP::D0, MVT::f64, InFlag);
Chris Lattner2db3ff62005-12-18 15:55:15 +0000671 Chain = RetVal.getValue(1);
672 break;
673 case MVT::i64:
Chris Lattner7c90f732006-02-05 05:50:24 +0000674 SDOperand Lo = DAG.getCopyFromReg(Chain, SP::O1, MVT::i32, InFlag);
675 SDOperand Hi = DAG.getCopyFromReg(Lo.getValue(1), SP::O0, MVT::i32,
Chris Lattner2db3ff62005-12-18 15:55:15 +0000676 Lo.getValue(2));
677 RetVal = DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Lo, Hi);
678 Chain = Hi.getValue(1);
679 break;
680 }
681 }
682
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000683 Chain = DAG.getCALLSEQ_END(Chain,
684 DAG.getConstant(ArgsSize, getPointerTy()),
685 DAG.getConstant(0, getPointerTy()),
686 SDOperand());
Chris Lattner2db3ff62005-12-18 15:55:15 +0000687 return std::make_pair(RetVal, Chain);
Chris Lattner6c18b102005-12-17 07:47:01 +0000688}
689
Chris Lattner7c90f732006-02-05 05:50:24 +0000690// Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so
691// set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
Chris Lattner86638b92006-01-31 05:05:52 +0000692static void LookThroughSetCC(SDOperand &LHS, SDOperand &RHS,
Chris Lattner7c90f732006-02-05 05:50:24 +0000693 ISD::CondCode CC, unsigned &SPCC) {
Chris Lattner86638b92006-01-31 05:05:52 +0000694 if (isa<ConstantSDNode>(RHS) && cast<ConstantSDNode>(RHS)->getValue() == 0 &&
695 CC == ISD::SETNE &&
Chris Lattner7c90f732006-02-05 05:50:24 +0000696 ((LHS.getOpcode() == SPISD::SELECT_ICC &&
697 LHS.getOperand(3).getOpcode() == SPISD::CMPICC) ||
698 (LHS.getOpcode() == SPISD::SELECT_FCC &&
699 LHS.getOperand(3).getOpcode() == SPISD::CMPFCC)) &&
Chris Lattner86638b92006-01-31 05:05:52 +0000700 isa<ConstantSDNode>(LHS.getOperand(0)) &&
701 isa<ConstantSDNode>(LHS.getOperand(1)) &&
702 cast<ConstantSDNode>(LHS.getOperand(0))->getValue() == 1 &&
703 cast<ConstantSDNode>(LHS.getOperand(1))->getValue() == 0) {
704 SDOperand CMPCC = LHS.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000705 SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getValue();
Chris Lattner86638b92006-01-31 05:05:52 +0000706 LHS = CMPCC.getOperand(0);
707 RHS = CMPCC.getOperand(1);
708 }
709}
710
711
Chris Lattner7c90f732006-02-05 05:50:24 +0000712SDOperand SparcTargetLowering::
Chris Lattner4d55aca2005-12-18 01:20:35 +0000713LowerOperation(SDOperand Op, SelectionDAG &DAG) {
714 switch (Op.getOpcode()) {
715 default: assert(0 && "Should not custom lower this!");
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000716 case ISD::GlobalTLSAddress:
717 assert(0 && "TLS not implemented for Sparc.");
Chris Lattnere3572462005-12-18 02:10:39 +0000718 case ISD::GlobalAddress: {
719 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
720 SDOperand GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000721 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, GA);
722 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, GA);
Chris Lattnere3572462005-12-18 02:10:39 +0000723 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
724 }
Chris Lattner76acc872005-12-18 02:37:35 +0000725 case ISD::ConstantPool: {
Evan Chengc356a572006-09-12 21:04:05 +0000726 Constant *C = cast<ConstantPoolSDNode>(Op)->getConstVal();
Evan Chengb8973bd2006-01-31 22:23:14 +0000727 SDOperand CP = DAG.getTargetConstantPool(C, MVT::i32,
728 cast<ConstantPoolSDNode>(Op)->getAlignment());
Chris Lattner7c90f732006-02-05 05:50:24 +0000729 SDOperand Hi = DAG.getNode(SPISD::Hi, MVT::i32, CP);
730 SDOperand Lo = DAG.getNode(SPISD::Lo, MVT::i32, CP);
Chris Lattner76acc872005-12-18 02:37:35 +0000731 return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
732 }
Chris Lattner3cb71872005-12-23 05:00:16 +0000733 case ISD::FP_TO_SINT:
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000734 // Convert the fp value to integer in an FP register.
Chris Lattner3cb71872005-12-23 05:00:16 +0000735 assert(Op.getValueType() == MVT::i32);
Chris Lattner7c90f732006-02-05 05:50:24 +0000736 Op = DAG.getNode(SPISD::FTOI, MVT::f32, Op.getOperand(0));
Chris Lattner3cb71872005-12-23 05:00:16 +0000737 return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000738 case ISD::SINT_TO_FP: {
Chris Lattner3cb71872005-12-23 05:00:16 +0000739 assert(Op.getOperand(0).getValueType() == MVT::i32);
Chris Lattner3fbb7262006-01-11 07:27:40 +0000740 SDOperand Tmp = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000741 // Convert the int value to FP in an FP register.
Chris Lattner7c90f732006-02-05 05:50:24 +0000742 return DAG.getNode(SPISD::ITOF, Op.getValueType(), Tmp);
Chris Lattner8fa54dc2005-12-18 06:59:57 +0000743 }
Chris Lattner33084492005-12-18 08:13:54 +0000744 case ISD::BR_CC: {
745 SDOperand Chain = Op.getOperand(0);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000746 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000747 SDOperand LHS = Op.getOperand(2);
748 SDOperand RHS = Op.getOperand(3);
749 SDOperand Dest = Op.getOperand(4);
Chris Lattner7c90f732006-02-05 05:50:24 +0000750 unsigned Opc, SPCC = ~0U;
Chris Lattner86638b92006-01-31 05:05:52 +0000751
752 // If this is a br_cc of a "setcc", and if the setcc got lowered into
753 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000754 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattner33084492005-12-18 08:13:54 +0000755
756 // Get the condition flag.
Chris Lattner86638b92006-01-31 05:05:52 +0000757 SDOperand CompareFlag;
Chris Lattner33084492005-12-18 08:13:54 +0000758 if (LHS.getValueType() == MVT::i32) {
Chris Lattnerb9169ce2006-01-11 07:49:38 +0000759 std::vector<MVT::ValueType> VTs;
760 VTs.push_back(MVT::i32);
761 VTs.push_back(MVT::Flag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000762 SDOperand Ops[2] = { LHS, RHS };
763 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops, 2).getValue(1);
Chris Lattner7c90f732006-02-05 05:50:24 +0000764 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
765 Opc = SPISD::BRICC;
Chris Lattner33084492005-12-18 08:13:54 +0000766 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000767 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
768 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
769 Opc = SPISD::BRFCC;
Chris Lattner33084492005-12-18 08:13:54 +0000770 }
Chris Lattner86638b92006-01-31 05:05:52 +0000771 return DAG.getNode(Opc, MVT::Other, Chain, Dest,
Chris Lattner7c90f732006-02-05 05:50:24 +0000772 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000773 }
774 case ISD::SELECT_CC: {
775 SDOperand LHS = Op.getOperand(0);
776 SDOperand RHS = Op.getOperand(1);
Chris Lattner3772bcb2006-01-30 07:43:04 +0000777 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Chris Lattner33084492005-12-18 08:13:54 +0000778 SDOperand TrueVal = Op.getOperand(2);
779 SDOperand FalseVal = Op.getOperand(3);
Chris Lattner7c90f732006-02-05 05:50:24 +0000780 unsigned Opc, SPCC = ~0U;
Chris Lattner3772bcb2006-01-30 07:43:04 +0000781
Chris Lattnerdea95282006-01-30 04:34:44 +0000782 // If this is a select_cc of a "setcc", and if the setcc got lowered into
783 // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
Chris Lattner7c90f732006-02-05 05:50:24 +0000784 LookThroughSetCC(LHS, RHS, CC, SPCC);
Chris Lattnerdea95282006-01-30 04:34:44 +0000785
Chris Lattner4bb91022006-01-12 17:05:32 +0000786 SDOperand CompareFlag;
Chris Lattner4bb91022006-01-12 17:05:32 +0000787 if (LHS.getValueType() == MVT::i32) {
788 std::vector<MVT::ValueType> VTs;
789 VTs.push_back(LHS.getValueType()); // subcc returns a value
790 VTs.push_back(MVT::Flag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000791 SDOperand Ops[2] = { LHS, RHS };
792 CompareFlag = DAG.getNode(SPISD::CMPICC, VTs, Ops, 2).getValue(1);
Chris Lattner7c90f732006-02-05 05:50:24 +0000793 Opc = SPISD::SELECT_ICC;
794 if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000795 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +0000796 CompareFlag = DAG.getNode(SPISD::CMPFCC, MVT::Flag, LHS, RHS);
797 Opc = SPISD::SELECT_FCC;
798 if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
Chris Lattner4bb91022006-01-12 17:05:32 +0000799 }
Chris Lattner33084492005-12-18 08:13:54 +0000800 return DAG.getNode(Opc, TrueVal.getValueType(), TrueVal, FalseVal,
Chris Lattner7c90f732006-02-05 05:50:24 +0000801 DAG.getConstant(SPCC, MVT::i32), CompareFlag);
Chris Lattner33084492005-12-18 08:13:54 +0000802 }
Nate Begemanacc398c2006-01-25 18:21:52 +0000803 case ISD::VASTART: {
804 // vastart just stores the address of the VarArgsFrameIndex slot into the
805 // memory location argument.
806 SDOperand Offset = DAG.getNode(ISD::ADD, MVT::i32,
Chris Lattner7c90f732006-02-05 05:50:24 +0000807 DAG.getRegister(SP::I6, MVT::i32),
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000808 DAG.getConstant(VarArgsFrameOffset, MVT::i32));
Evan Cheng334dc1f2008-01-31 21:00:00 +0000809 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
810 return DAG.getStore(Op.getOperand(0), Offset,
811 Op.getOperand(1), SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +0000812 }
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000813 case ISD::VAARG: {
814 SDNode *Node = Op.Val;
815 MVT::ValueType VT = Node->getValueType(0);
816 SDOperand InChain = Node->getOperand(0);
817 SDOperand VAListPtr = Node->getOperand(1);
Evan Cheng334dc1f2008-01-31 21:00:00 +0000818 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
819 SDOperand VAList = DAG.getLoad(getPointerTy(), InChain, VAListPtr,
820 SV->getValue(), SV->getOffset());
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000821 // Increment the pointer, VAList, to the next vaarg
822 SDOperand NextPtr = DAG.getNode(ISD::ADD, getPointerTy(), VAList,
823 DAG.getConstant(MVT::getSizeInBits(VT)/8,
824 getPointerTy()));
825 // Store the incremented VAList to the legalized pointer
Evan Cheng786225a2006-10-05 23:01:46 +0000826 InChain = DAG.getStore(VAList.getValue(1), NextPtr,
Evan Cheng334dc1f2008-01-31 21:00:00 +0000827 VAListPtr, SV->getValue(), SV->getOffset());
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000828 // Load the actual argument out of the pointer VAList, unless this is an
829 // f64 load.
830 if (VT != MVT::f64) {
Evan Cheng466685d2006-10-09 20:57:25 +0000831 return DAG.getLoad(VT, InChain, VAList, NULL, 0);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000832 } else {
833 // Otherwise, load it as i64, then do a bitconvert.
Evan Cheng466685d2006-10-09 20:57:25 +0000834 SDOperand V = DAG.getLoad(MVT::i64, InChain, VAList, NULL, 0);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000835 std::vector<MVT::ValueType> Tys;
836 Tys.push_back(MVT::f64);
837 Tys.push_back(MVT::Other);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000838 // Bit-Convert the value to f64.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000839 SDOperand Ops[2] = { DAG.getNode(ISD::BIT_CONVERT, MVT::f64, V),
840 V.getValue(1) };
841 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2);
Chris Lattnerc275dfa2006-02-04 08:31:30 +0000842 }
843 }
Chris Lattner6fa1f572006-02-15 06:41:34 +0000844 case ISD::DYNAMIC_STACKALLOC: {
845 SDOperand Chain = Op.getOperand(0); // Legalize the chain.
846 SDOperand Size = Op.getOperand(1); // Legalize the size.
847
848 unsigned SPReg = SP::O6;
849 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, MVT::i32);
850 SDOperand NewSP = DAG.getNode(ISD::SUB, MVT::i32, SP, Size); // Value
851 Chain = DAG.getCopyToReg(SP.getValue(1), SPReg, NewSP); // Output chain
852
853 // The resultant pointer is actually 16 words from the bottom of the stack,
854 // to provide a register spill area.
855 SDOperand NewVal = DAG.getNode(ISD::ADD, MVT::i32, NewSP,
856 DAG.getConstant(96, MVT::i32));
857 std::vector<MVT::ValueType> Tys;
858 Tys.push_back(MVT::i32);
859 Tys.push_back(MVT::Other);
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000860 SDOperand Ops[2] = { NewVal, Chain };
861 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2);
Chris Lattner6fa1f572006-02-15 06:41:34 +0000862 }
Nate Begemanee625572006-01-27 21:09:22 +0000863 case ISD::RET: {
864 SDOperand Copy;
865
866 switch(Op.getNumOperands()) {
867 default:
868 assert(0 && "Do not know how to return this many arguments!");
869 abort();
870 case 1:
871 return SDOperand(); // ret void is legal
Evan Cheng6848be12006-05-26 23:10:12 +0000872 case 3: {
Nate Begemanee625572006-01-27 21:09:22 +0000873 unsigned ArgReg;
874 switch(Op.getOperand(1).getValueType()) {
875 default: assert(0 && "Unknown type to return!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000876 case MVT::i32: ArgReg = SP::I0; break;
877 case MVT::f32: ArgReg = SP::F0; break;
878 case MVT::f64: ArgReg = SP::D0; break;
Nate Begemanee625572006-01-27 21:09:22 +0000879 }
880 Copy = DAG.getCopyToReg(Op.getOperand(0), ArgReg, Op.getOperand(1),
881 SDOperand());
882 break;
883 }
Evan Cheng6848be12006-05-26 23:10:12 +0000884 case 5:
885 Copy = DAG.getCopyToReg(Op.getOperand(0), SP::I0, Op.getOperand(3),
Nate Begemanee625572006-01-27 21:09:22 +0000886 SDOperand());
Chris Lattner7c90f732006-02-05 05:50:24 +0000887 Copy = DAG.getCopyToReg(Copy, SP::I1, Op.getOperand(1), Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000888 break;
889 }
Chris Lattner7c90f732006-02-05 05:50:24 +0000890 return DAG.getNode(SPISD::RET_FLAG, MVT::Other, Copy, Copy.getValue(1));
Nate Begemanee625572006-01-27 21:09:22 +0000891 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000892 // Frame & Return address. Currently unimplemented
893 case ISD::RETURNADDR: break;
894 case ISD::FRAMEADDR: break;
Chris Lattnerbce88872006-01-15 08:43:57 +0000895 }
Nate Begemanbcc5f362007-01-29 22:58:52 +0000896 return SDOperand();
Chris Lattner4d55aca2005-12-18 01:20:35 +0000897}
898
Chris Lattner33084492005-12-18 08:13:54 +0000899MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +0000900SparcTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
901 MachineBasicBlock *BB) {
Evan Chengc0f64ff2006-11-27 23:37:22 +0000902 const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
Chris Lattner33084492005-12-18 08:13:54 +0000903 unsigned BROpcode;
Chris Lattner7a4d2912006-01-31 06:56:30 +0000904 unsigned CC;
Chris Lattner33084492005-12-18 08:13:54 +0000905 // Figure out the conditional branch opcode to use for this select_cc.
906 switch (MI->getOpcode()) {
907 default: assert(0 && "Unknown SELECT_CC!");
Chris Lattner7c90f732006-02-05 05:50:24 +0000908 case SP::SELECT_CC_Int_ICC:
909 case SP::SELECT_CC_FP_ICC:
910 case SP::SELECT_CC_DFP_ICC:
911 BROpcode = SP::BCOND;
Chris Lattnerc03468b2006-01-31 17:20:06 +0000912 break;
Chris Lattner7c90f732006-02-05 05:50:24 +0000913 case SP::SELECT_CC_Int_FCC:
914 case SP::SELECT_CC_FP_FCC:
915 case SP::SELECT_CC_DFP_FCC:
916 BROpcode = SP::FBCOND;
Chris Lattner33084492005-12-18 08:13:54 +0000917 break;
918 }
Chris Lattner7a4d2912006-01-31 06:56:30 +0000919
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000920 CC = (SPCC::CondCodes)MI->getOperand(3).getImm();
Chris Lattner33084492005-12-18 08:13:54 +0000921
922 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
923 // control-flow pattern. The incoming instruction knows the destination vreg
924 // to set, the condition code register to branch on, the true/false values to
925 // select between, and a branch opcode to use.
926 const BasicBlock *LLVM_BB = BB->getBasicBlock();
927 ilist<MachineBasicBlock>::iterator It = BB;
928 ++It;
929
930 // thisMBB:
931 // ...
932 // TrueVal = ...
933 // [f]bCC copy1MBB
934 // fallthrough --> copy0MBB
935 MachineBasicBlock *thisMBB = BB;
936 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
937 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
Evan Chengc0f64ff2006-11-27 23:37:22 +0000938 BuildMI(BB, TII.get(BROpcode)).addMBB(sinkMBB).addImm(CC);
Chris Lattner33084492005-12-18 08:13:54 +0000939 MachineFunction *F = BB->getParent();
940 F->getBasicBlockList().insert(It, copy0MBB);
941 F->getBasicBlockList().insert(It, sinkMBB);
Nate Begemanf15485a2006-03-27 01:32:24 +0000942 // Update machine-CFG edges by first adding all successors of the current
943 // block to the new block which will contain the Phi node for the select.
944 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
945 e = BB->succ_end(); i != e; ++i)
946 sinkMBB->addSuccessor(*i);
947 // Next, remove all successors of the current block, and add the true
948 // and fallthrough blocks as its successors.
949 while(!BB->succ_empty())
950 BB->removeSuccessor(BB->succ_begin());
Chris Lattner33084492005-12-18 08:13:54 +0000951 BB->addSuccessor(copy0MBB);
952 BB->addSuccessor(sinkMBB);
953
954 // copy0MBB:
955 // %FalseValue = ...
956 // # fallthrough to sinkMBB
957 BB = copy0MBB;
958
959 // Update machine-CFG edges
960 BB->addSuccessor(sinkMBB);
961
962 // sinkMBB:
963 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
964 // ...
965 BB = sinkMBB;
Evan Chengc0f64ff2006-11-27 23:37:22 +0000966 BuildMI(BB, TII.get(SP::PHI), MI->getOperand(0).getReg())
Chris Lattner33084492005-12-18 08:13:54 +0000967 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
968 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
969
970 delete MI; // The pseudo instruction is gone now.
971 return BB;
972}
973
Chris Lattner6c18b102005-12-17 07:47:01 +0000974//===----------------------------------------------------------------------===//
975// Instruction Selector Implementation
976//===----------------------------------------------------------------------===//
977
978//===--------------------------------------------------------------------===//
Chris Lattner7c90f732006-02-05 05:50:24 +0000979/// SparcDAGToDAGISel - SPARC specific code to select SPARC machine
Chris Lattner6c18b102005-12-17 07:47:01 +0000980/// instructions for SelectionDAG operations.
981///
982namespace {
Chris Lattner7c90f732006-02-05 05:50:24 +0000983class SparcDAGToDAGISel : public SelectionDAGISel {
984 SparcTargetLowering Lowering;
Chris Lattner76afdc92006-01-30 05:35:57 +0000985
986 /// Subtarget - Keep a pointer to the Sparc Subtarget around so that we can
987 /// make the right decision when generating code for different targets.
Chris Lattner7c90f732006-02-05 05:50:24 +0000988 const SparcSubtarget &Subtarget;
Chris Lattner6c18b102005-12-17 07:47:01 +0000989public:
Chris Lattner7c90f732006-02-05 05:50:24 +0000990 SparcDAGToDAGISel(TargetMachine &TM)
991 : SelectionDAGISel(Lowering), Lowering(TM),
992 Subtarget(TM.getSubtarget<SparcSubtarget>()) {
Chris Lattner76afdc92006-01-30 05:35:57 +0000993 }
Chris Lattner6c18b102005-12-17 07:47:01 +0000994
Evan Cheng9ade2182006-08-26 05:34:46 +0000995 SDNode *Select(SDOperand Op);
Chris Lattner6c18b102005-12-17 07:47:01 +0000996
Chris Lattnerbc83fd92005-12-17 20:04:49 +0000997 // Complex Pattern Selectors.
Evan Cheng0d538262006-11-08 20:34:28 +0000998 bool SelectADDRrr(SDOperand Op, SDOperand N, SDOperand &R1, SDOperand &R2);
999 bool SelectADDRri(SDOperand Op, SDOperand N, SDOperand &Base,
1000 SDOperand &Offset);
Chris Lattnerbc83fd92005-12-17 20:04:49 +00001001
Chris Lattner6c18b102005-12-17 07:47:01 +00001002 /// InstructionSelectBasicBlock - This callback is invoked by
1003 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
1004 virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
1005
1006 virtual const char *getPassName() const {
Chris Lattner7c90f732006-02-05 05:50:24 +00001007 return "SPARC DAG->DAG Pattern Instruction Selection";
Chris Lattner6c18b102005-12-17 07:47:01 +00001008 }
1009
1010 // Include the pieces autogenerated from the target description.
Chris Lattner7c90f732006-02-05 05:50:24 +00001011#include "SparcGenDAGISel.inc"
Chris Lattner6c18b102005-12-17 07:47:01 +00001012};
1013} // end anonymous namespace
1014
1015/// InstructionSelectBasicBlock - This callback is invoked by
1016/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Chris Lattner7c90f732006-02-05 05:50:24 +00001017void SparcDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001018 DEBUG(BB->dump());
1019
1020 // Select target instructions for the DAG.
Evan Cheng900c8262006-02-05 06:51:51 +00001021 DAG.setRoot(SelectRoot(DAG.getRoot()));
Chris Lattner6c18b102005-12-17 07:47:01 +00001022 DAG.RemoveDeadNodes();
1023
1024 // Emit machine code to BB.
1025 ScheduleAndEmitDAG(DAG);
1026}
1027
Evan Cheng0d538262006-11-08 20:34:28 +00001028bool SparcDAGToDAGISel::SelectADDRri(SDOperand Op, SDOperand Addr,
1029 SDOperand &Base, SDOperand &Offset) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001030 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
1031 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001032 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1033 return true;
1034 }
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001035 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1036 Addr.getOpcode() == ISD::TargetGlobalAddress)
1037 return false; // direct calls.
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001038
1039 if (Addr.getOpcode() == ISD::ADD) {
1040 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
1041 if (Predicate_simm13(CN)) {
Chris Lattnerd5aae052005-12-18 07:09:06 +00001042 if (FrameIndexSDNode *FIN =
1043 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001044 // Constant offset from frame ref.
Chris Lattnerd5aae052005-12-18 07:09:06 +00001045 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001046 } else {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001047 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001048 }
1049 Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32);
1050 return true;
1051 }
1052 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001053 if (Addr.getOperand(0).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001054 Base = Addr.getOperand(1);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001055 Offset = Addr.getOperand(0).getOperand(0);
1056 return true;
1057 }
Chris Lattner7c90f732006-02-05 05:50:24 +00001058 if (Addr.getOperand(1).getOpcode() == SPISD::Lo) {
Chris Lattnerc26017a2006-02-05 08:35:50 +00001059 Base = Addr.getOperand(0);
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001060 Offset = Addr.getOperand(1).getOperand(0);
1061 return true;
1062 }
1063 }
Chris Lattnerc26017a2006-02-05 08:35:50 +00001064 Base = Addr;
Chris Lattner8fa54dc2005-12-18 06:59:57 +00001065 Offset = CurDAG->getTargetConstant(0, MVT::i32);
1066 return true;
1067}
1068
Evan Cheng0d538262006-11-08 20:34:28 +00001069bool SparcDAGToDAGISel::SelectADDRrr(SDOperand Op, SDOperand Addr,
1070 SDOperand &R1, SDOperand &R2) {
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001071 if (Addr.getOpcode() == ISD::FrameIndex) return false;
1072 if (Addr.getOpcode() == ISD::TargetExternalSymbol ||
1073 Addr.getOpcode() == ISD::TargetGlobalAddress)
1074 return false; // direct calls.
1075
Chris Lattner9034b882005-12-17 21:25:27 +00001076 if (Addr.getOpcode() == ISD::ADD) {
1077 if (isa<ConstantSDNode>(Addr.getOperand(1)) &&
1078 Predicate_simm13(Addr.getOperand(1).Val))
1079 return false; // Let the reg+imm pattern catch this!
Chris Lattner7c90f732006-02-05 05:50:24 +00001080 if (Addr.getOperand(0).getOpcode() == SPISD::Lo ||
1081 Addr.getOperand(1).getOpcode() == SPISD::Lo)
Chris Lattnere1389ad2005-12-18 02:27:00 +00001082 return false; // Let the reg+imm pattern catch this!
Chris Lattnerc26017a2006-02-05 08:35:50 +00001083 R1 = Addr.getOperand(0);
1084 R2 = Addr.getOperand(1);
Chris Lattner9034b882005-12-17 21:25:27 +00001085 return true;
1086 }
1087
Chris Lattnerc26017a2006-02-05 08:35:50 +00001088 R1 = Addr;
Chris Lattner7c90f732006-02-05 05:50:24 +00001089 R2 = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattnerbc83fd92005-12-17 20:04:49 +00001090 return true;
1091}
1092
Evan Cheng9ade2182006-08-26 05:34:46 +00001093SDNode *SparcDAGToDAGISel::Select(SDOperand Op) {
Chris Lattner6c18b102005-12-17 07:47:01 +00001094 SDNode *N = Op.Val;
Chris Lattner4d55aca2005-12-18 01:20:35 +00001095 if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
Evan Cheng9ade2182006-08-26 05:34:46 +00001096 N->getOpcode() < SPISD::FIRST_NUMBER)
Evan Cheng64a752f2006-08-11 09:08:15 +00001097 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001098
Chris Lattner6c18b102005-12-17 07:47:01 +00001099 switch (N->getOpcode()) {
1100 default: break;
Chris Lattner7087e572005-12-17 22:39:19 +00001101 case ISD::SDIV:
1102 case ISD::UDIV: {
1103 // FIXME: should use a custom expander to expose the SRA to the dag.
Evan Cheng6da2f322006-08-26 01:07:58 +00001104 SDOperand DivLHS = N->getOperand(0);
1105 SDOperand DivRHS = N->getOperand(1);
1106 AddToISelQueue(DivLHS);
1107 AddToISelQueue(DivRHS);
Chris Lattner7087e572005-12-17 22:39:19 +00001108
1109 // Set the Y register to the high-part.
1110 SDOperand TopPart;
1111 if (N->getOpcode() == ISD::SDIV) {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001112 TopPart = SDOperand(CurDAG->getTargetNode(SP::SRAri, MVT::i32, DivLHS,
1113 CurDAG->getTargetConstant(31, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001114 } else {
Chris Lattner7c90f732006-02-05 05:50:24 +00001115 TopPart = CurDAG->getRegister(SP::G0, MVT::i32);
Chris Lattner7087e572005-12-17 22:39:19 +00001116 }
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001117 TopPart = SDOperand(CurDAG->getTargetNode(SP::WRYrr, MVT::Flag, TopPart,
1118 CurDAG->getRegister(SP::G0, MVT::i32)), 0);
Chris Lattner7087e572005-12-17 22:39:19 +00001119
1120 // FIXME: Handle div by immediate.
Chris Lattner7c90f732006-02-05 05:50:24 +00001121 unsigned Opcode = N->getOpcode() == ISD::SDIV ? SP::SDIVrr : SP::UDIVrr;
Evan Cheng23329f52006-08-16 07:30:09 +00001122 return CurDAG->SelectNodeTo(N, Opcode, MVT::i32, DivLHS, DivRHS,
Evan Cheng95514ba2006-08-26 08:00:10 +00001123 TopPart);
Chris Lattner7087e572005-12-17 22:39:19 +00001124 }
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001125 case ISD::MULHU:
1126 case ISD::MULHS: {
Chris Lattner7087e572005-12-17 22:39:19 +00001127 // FIXME: Handle mul by immediate.
Evan Cheng6da2f322006-08-26 01:07:58 +00001128 SDOperand MulLHS = N->getOperand(0);
1129 SDOperand MulRHS = N->getOperand(1);
1130 AddToISelQueue(MulLHS);
1131 AddToISelQueue(MulRHS);
Chris Lattner7c90f732006-02-05 05:50:24 +00001132 unsigned Opcode = N->getOpcode() == ISD::MULHU ? SP::UMULrr : SP::SMULrr;
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001133 SDNode *Mul = CurDAG->getTargetNode(Opcode, MVT::i32, MVT::Flag,
Chris Lattnerad7a3e62006-02-10 07:35:42 +00001134 MulLHS, MulRHS);
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001135 // The high part is in the Y register.
Evan Cheng95514ba2006-08-26 08:00:10 +00001136 return CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDOperand(Mul, 1));
Evan Cheng64a752f2006-08-11 09:08:15 +00001137 return NULL;
Chris Lattneree3d5fb2005-12-17 22:30:00 +00001138 }
Chris Lattner6c18b102005-12-17 07:47:01 +00001139 }
1140
Evan Cheng9ade2182006-08-26 05:34:46 +00001141 return SelectCode(Op);
Chris Lattner6c18b102005-12-17 07:47:01 +00001142}
1143
1144
Chris Lattner7c90f732006-02-05 05:50:24 +00001145/// createSparcISelDag - This pass converts a legalized DAG into a
Chris Lattner4dcfaac2006-01-26 07:22:22 +00001146/// SPARC-specific DAG, ready for instruction scheduling.
Chris Lattner6c18b102005-12-17 07:47:01 +00001147///
Chris Lattner7c90f732006-02-05 05:50:24 +00001148FunctionPass *llvm::createSparcISelDag(TargetMachine &TM) {
1149 return new SparcDAGToDAGISel(TM);
Chris Lattner6c18b102005-12-17 07:47:01 +00001150}