blob: 61cf95d8bb7bf243fd285995b74543fc27a743a7 [file] [log] [blame]
Anton Korobeynikov4403b932009-07-16 13:27:25 +00001//===-- SystemZISelLowering.cpp - SystemZ DAG Lowering Implementation -----==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SystemZTargetLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "systemz-lower"
15
16#include "SystemZISelLowering.h"
17#include "SystemZ.h"
18#include "SystemZTargetMachine.h"
19#include "SystemZSubtarget.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Function.h"
22#include "llvm/Intrinsics.h"
23#include "llvm/CallingConv.h"
24#include "llvm/GlobalVariable.h"
25#include "llvm/GlobalAlias.h"
26#include "llvm/CodeGen/CallingConvLower.h"
27#include "llvm/CodeGen/MachineFrameInfo.h"
28#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
30#include "llvm/CodeGen/MachineRegisterInfo.h"
31#include "llvm/CodeGen/PseudoSourceValue.h"
32#include "llvm/CodeGen/SelectionDAGISel.h"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000033#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000034#include "llvm/CodeGen/ValueTypes.h"
Anton Korobeynikov2c97ae82009-07-16 14:19:02 +000035#include "llvm/Target/TargetOptions.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000036#include "llvm/Support/Debug.h"
Chris Lattner8f9b0f62009-11-07 09:20:54 +000037#include "llvm/Support/ErrorHandling.h"
Chris Lattner4437ae22009-08-23 07:05:07 +000038#include "llvm/Support/raw_ostream.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000039#include "llvm/ADT/VectorExtras.h"
40using namespace llvm;
41
42SystemZTargetLowering::SystemZTargetLowering(SystemZTargetMachine &tm) :
Chris Lattnerf0144122009-07-28 03:13:23 +000043 TargetLowering(tm, new TargetLoweringObjectFileELF()),
44 Subtarget(*tm.getSubtargetImpl()), TM(tm) {
Anton Korobeynikov4403b932009-07-16 13:27:25 +000045
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +000046 RegInfo = TM.getRegisterInfo();
47
Anton Korobeynikov4403b932009-07-16 13:27:25 +000048 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +000049 addRegisterClass(MVT::i32, SystemZ::GR32RegisterClass);
50 addRegisterClass(MVT::i64, SystemZ::GR64RegisterClass);
51 addRegisterClass(MVT::v2i32,SystemZ::GR64PRegisterClass);
52 addRegisterClass(MVT::v2i64,SystemZ::GR128RegisterClass);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000053
Anton Korobeynikov2c97ae82009-07-16 14:19:02 +000054 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +000055 addRegisterClass(MVT::f32, SystemZ::FP32RegisterClass);
56 addRegisterClass(MVT::f64, SystemZ::FP64RegisterClass);
Anton Korobeynikov2c97ae82009-07-16 14:19:02 +000057 }
58
Anton Korobeynikov4403b932009-07-16 13:27:25 +000059 // Compute derived properties from the register classes
60 computeRegisterProperties();
61
Anton Korobeynikov9e4816e2009-07-16 13:43:18 +000062 // Set shifts properties
Owen Anderson825b72b2009-08-11 20:47:22 +000063 setShiftAmountType(MVT::i64);
Anton Korobeynikov9e4816e2009-07-16 13:43:18 +000064
Anton Korobeynikov4403b932009-07-16 13:27:25 +000065 // Provide all sorts of operation actions
Owen Anderson825b72b2009-08-11 20:47:22 +000066 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
67 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
68 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000069
Owen Anderson825b72b2009-08-11 20:47:22 +000070 setLoadExtAction(ISD::SEXTLOAD, MVT::f32, Expand);
71 setLoadExtAction(ISD::ZEXTLOAD, MVT::f32, Expand);
72 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
Anton Korobeynikov299dc782009-07-16 14:22:30 +000073
Owen Anderson825b72b2009-08-11 20:47:22 +000074 setLoadExtAction(ISD::SEXTLOAD, MVT::f64, Expand);
75 setLoadExtAction(ISD::ZEXTLOAD, MVT::f64, Expand);
76 setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand);
Anton Korobeynikov23eff5c2009-07-16 14:20:08 +000077
Anton Korobeynikove0167c12009-07-16 13:35:30 +000078 setStackPointerRegisterToSaveRestore(SystemZ::R15D);
Dan Gohmanaa123222009-10-28 00:55:57 +000079
80 // TODO: It may be better to default to latency-oriented scheduling, however
81 // LLVM's current latency-oriented scheduler can't handle physreg definitions
82 // such as SystemZ has with PSW, so set this to the register-pressure
83 // scheduler, because it can.
Evan Cheng211ffa12010-05-19 20:19:50 +000084 setSchedulingPreference(Sched::RegPressure);
Dan Gohmanaa123222009-10-28 00:55:57 +000085
Anton Korobeynikov159ac632009-07-16 14:28:46 +000086 setBooleanContents(ZeroOrOneBooleanContent);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +000087
Owen Anderson825b72b2009-08-11 20:47:22 +000088 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
89 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
90 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
91 setOperationAction(ISD::BR_CC, MVT::i64, Custom);
92 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
93 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
94 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
95 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
96 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
97 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
98 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +000099
Owen Anderson825b72b2009-08-11 20:47:22 +0000100 setOperationAction(ISD::SDIV, MVT::i32, Expand);
101 setOperationAction(ISD::UDIV, MVT::i32, Expand);
102 setOperationAction(ISD::SDIV, MVT::i64, Expand);
103 setOperationAction(ISD::UDIV, MVT::i64, Expand);
104 setOperationAction(ISD::SREM, MVT::i32, Expand);
105 setOperationAction(ISD::UREM, MVT::i32, Expand);
106 setOperationAction(ISD::SREM, MVT::i64, Expand);
107 setOperationAction(ISD::UREM, MVT::i64, Expand);
Anton Korobeynikov0a42d2b2009-07-16 14:14:33 +0000108
Owen Anderson825b72b2009-08-11 20:47:22 +0000109 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Anton Korobeynikove37a37d2009-07-18 12:20:36 +0000110
Owen Anderson825b72b2009-08-11 20:47:22 +0000111 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
112 setOperationAction(ISD::CTPOP, MVT::i64, Expand);
113 setOperationAction(ISD::CTTZ, MVT::i32, Expand);
114 setOperationAction(ISD::CTTZ, MVT::i64, Expand);
115 setOperationAction(ISD::CTLZ, MVT::i32, Promote);
116 setOperationAction(ISD::CTLZ, MVT::i64, Legal);
Anton Korobeynikov0cca0692009-07-18 12:26:13 +0000117
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000118 // FIXME: Can we lower these 2 efficiently?
Owen Anderson825b72b2009-08-11 20:47:22 +0000119 setOperationAction(ISD::SETCC, MVT::i32, Expand);
120 setOperationAction(ISD::SETCC, MVT::i64, Expand);
121 setOperationAction(ISD::SETCC, MVT::f32, Expand);
122 setOperationAction(ISD::SETCC, MVT::f64, Expand);
123 setOperationAction(ISD::SELECT, MVT::i32, Expand);
124 setOperationAction(ISD::SELECT, MVT::i64, Expand);
125 setOperationAction(ISD::SELECT, MVT::f32, Expand);
126 setOperationAction(ISD::SELECT, MVT::f64, Expand);
127 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
128 setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
129 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
130 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Anton Korobeynikovdd0239b2009-07-16 13:53:55 +0000131
Owen Anderson825b72b2009-08-11 20:47:22 +0000132 setOperationAction(ISD::MULHS, MVT::i64, Expand);
133 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
Anton Korobeynikov9b4ae572009-07-16 14:20:56 +0000134
Anton Korobeynikovfc9489a2009-08-21 18:52:42 +0000135 // FIXME: Can we support these natively?
136 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
137 setOperationAction(ISD::SRL_PARTS, MVT::i64, Expand);
138 setOperationAction(ISD::SHL_PARTS, MVT::i64, Expand);
139 setOperationAction(ISD::SRA_PARTS, MVT::i64, Expand);
140
Anton Korobeynikov20d062f2009-07-16 14:25:46 +0000141 // Lower some FP stuff
Owen Anderson825b72b2009-08-11 20:47:22 +0000142 setOperationAction(ISD::FSIN, MVT::f32, Expand);
143 setOperationAction(ISD::FSIN, MVT::f64, Expand);
144 setOperationAction(ISD::FCOS, MVT::f32, Expand);
145 setOperationAction(ISD::FCOS, MVT::f64, Expand);
146 setOperationAction(ISD::FREM, MVT::f32, Expand);
147 setOperationAction(ISD::FREM, MVT::f64, Expand);
Anton Korobeynikov98db78a2009-07-16 14:26:06 +0000148
Anton Korobeynikov05a0b8b2009-07-16 14:27:01 +0000149 // We have only 64-bit bitconverts
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000150 setOperationAction(ISD::BITCAST, MVT::f32, Expand);
151 setOperationAction(ISD::BITCAST, MVT::i32, Expand);
Anton Korobeynikov05a0b8b2009-07-16 14:27:01 +0000152
Owen Anderson825b72b2009-08-11 20:47:22 +0000153 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
154 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
155 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
156 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
Anton Korobeynikov20d062f2009-07-16 14:25:46 +0000157
Owen Anderson825b72b2009-08-11 20:47:22 +0000158 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000159}
160
Dan Gohmand858e902010-04-17 15:26:15 +0000161SDValue SystemZTargetLowering::LowerOperation(SDValue Op,
162 SelectionDAG &DAG) const {
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000163 switch (Op.getOpcode()) {
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000164 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000165 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Anton Korobeynikovbad769f2009-07-16 13:57:27 +0000166 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Anton Korobeynikovc16cdc52009-07-16 14:07:50 +0000167 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Anton Korobeynikovae535672009-07-16 14:19:35 +0000168 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000169 default:
Anton Korobeynikov31e87442009-07-18 13:33:17 +0000170 llvm_unreachable("Should not custom lower this!");
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000171 return SDValue();
172 }
173}
174
Evan Chenga1eaa3c2009-10-28 01:43:28 +0000175bool SystemZTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
176 if (UseSoftFloat || (VT != MVT::f32 && VT != MVT::f64))
Evan Chengeb2f9692009-10-27 19:56:55 +0000177 return false;
178
179 // +0.0 lzer
180 // +0.0f lzdr
181 // -0.0 lzer + lner
182 // -0.0f lzdr + lndr
183 return Imm.isZero() || Imm.isNegZero();
184}
185
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000186//===----------------------------------------------------------------------===//
Anton Korobeynikov3c2734c2009-08-21 18:15:41 +0000187// SystemZ Inline Assembly Support
188//===----------------------------------------------------------------------===//
189
190/// getConstraintType - Given a constraint letter, return the type of
191/// constraint it is for this target.
192TargetLowering::ConstraintType
193SystemZTargetLowering::getConstraintType(const std::string &Constraint) const {
194 if (Constraint.size() == 1) {
195 switch (Constraint[0]) {
196 case 'r':
197 return C_RegisterClass;
198 default:
199 break;
200 }
201 }
202 return TargetLowering::getConstraintType(Constraint);
203}
204
205std::pair<unsigned, const TargetRegisterClass*>
206SystemZTargetLowering::
207getRegForInlineAsmConstraint(const std::string &Constraint,
208 EVT VT) const {
209 if (Constraint.size() == 1) {
210 // GCC Constraint Letters
211 switch (Constraint[0]) {
212 default: break;
213 case 'r': // GENERAL_REGS
214 if (VT == MVT::i32)
215 return std::make_pair(0U, SystemZ::GR32RegisterClass);
216 else if (VT == MVT::i128)
217 return std::make_pair(0U, SystemZ::GR128RegisterClass);
218
219 return std::make_pair(0U, SystemZ::GR64RegisterClass);
220 }
221 }
222
223 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
224}
225
226//===----------------------------------------------------------------------===//
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000227// Calling Convention Implementation
228//===----------------------------------------------------------------------===//
229
230#include "SystemZGenCallingConv.inc"
231
Dan Gohman98ca4f22009-08-05 01:29:28 +0000232SDValue
233SystemZTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000234 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000235 bool isVarArg,
236 const SmallVectorImpl<ISD::InputArg>
237 &Ins,
238 DebugLoc dl,
239 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000240 SmallVectorImpl<SDValue> &InVals)
241 const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000242
243 switch (CallConv) {
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000244 default:
Anton Korobeynikov31e87442009-07-18 13:33:17 +0000245 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000246 case CallingConv::C:
247 case CallingConv::Fast:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000248 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000249 }
250}
251
Dan Gohman98ca4f22009-08-05 01:29:28 +0000252SDValue
253SystemZTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000254 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +0000255 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000256 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000257 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000258 const SmallVectorImpl<ISD::InputArg> &Ins,
259 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000260 SmallVectorImpl<SDValue> &InVals) const {
Evan Cheng0c439eb2010-01-27 00:07:07 +0000261 // SystemZ target does not yet support tail call optimization.
262 isTailCall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000263
264 switch (CallConv) {
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000265 default:
Anton Korobeynikov31e87442009-07-18 13:33:17 +0000266 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000267 case CallingConv::Fast:
268 case CallingConv::C:
Dan Gohman98ca4f22009-08-05 01:29:28 +0000269 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
Dan Gohmanc9403652010-07-07 15:54:55 +0000270 Outs, OutVals, Ins, dl, DAG, InVals);
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000271 }
272}
273
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000274/// LowerCCCArguments - transform physical registers into virtual registers and
275/// generate load operations for arguments places on the stack.
276// FIXME: struct return stuff
277// FIXME: varargs
Dan Gohman98ca4f22009-08-05 01:29:28 +0000278SDValue
279SystemZTargetLowering::LowerCCCArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000280 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000281 bool isVarArg,
282 const SmallVectorImpl<ISD::InputArg>
283 &Ins,
284 DebugLoc dl,
285 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000286 SmallVectorImpl<SDValue> &InVals)
287 const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000288
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000289 MachineFunction &MF = DAG.getMachineFunction();
290 MachineFrameInfo *MFI = MF.getFrameInfo();
291 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000292
293 // Assign locations to all of the incoming arguments.
294 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000295 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
296 ArgLocs, *DAG.getContext());
297 CCInfo.AnalyzeFormalArguments(Ins, CC_SystemZ);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000298
Anton Korobeynikov31e87442009-07-18 13:33:17 +0000299 if (isVarArg)
Chris Lattner75361b62010-04-07 22:58:41 +0000300 report_fatal_error("Varargs not supported yet");
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000301
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000302 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Anton Korobeynikovc1a1e4a2009-07-16 14:29:05 +0000303 SDValue ArgValue;
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000304 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +0000305 EVT LocVT = VA.getLocVT();
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000306 if (VA.isRegLoc()) {
307 // Arguments passed in registers
Anton Korobeynikov0e31d5c2009-07-16 14:19:16 +0000308 TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +0000309 switch (LocVT.getSimpleVT().SimpleTy) {
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000310 default:
Anton Korobeynikov6d94eff2009-07-18 13:34:59 +0000311#ifndef NDEBUG
Chris Lattner4437ae22009-08-23 07:05:07 +0000312 errs() << "LowerFormalArguments Unhandled argument type: "
Owen Anderson825b72b2009-08-11 20:47:22 +0000313 << LocVT.getSimpleVT().SimpleTy
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000314 << "\n";
Anton Korobeynikov6d94eff2009-07-18 13:34:59 +0000315#endif
316 llvm_unreachable(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 case MVT::i64:
Anton Korobeynikov0e31d5c2009-07-16 14:19:16 +0000318 RC = SystemZ::GR64RegisterClass;
319 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000320 case MVT::f32:
Anton Korobeynikov0e31d5c2009-07-16 14:19:16 +0000321 RC = SystemZ::FP32RegisterClass;
322 break;
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 case MVT::f64:
Anton Korobeynikov0e31d5c2009-07-16 14:19:16 +0000324 RC = SystemZ::FP64RegisterClass;
325 break;
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000326 }
Anton Korobeynikov0e31d5c2009-07-16 14:19:16 +0000327
328 unsigned VReg = RegInfo.createVirtualRegister(RC);
329 RegInfo.addLiveIn(VA.getLocReg(), VReg);
Dan Gohman98ca4f22009-08-05 01:29:28 +0000330 ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, LocVT);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000331 } else {
332 // Sanity check
333 assert(VA.isMemLoc());
Anton Korobeynikov980d5502009-07-16 14:08:42 +0000334
335 // Create the nodes corresponding to a load from this parameter slot.
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000336 // Create the frame index object for this incoming parameter...
Anton Korobeynikovc1a1e4a2009-07-16 14:29:05 +0000337 int FI = MFI->CreateFixedObject(LocVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +0000338 VA.getLocMemOffset(), true);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000339
340 // Create the SelectionDAG nodes corresponding to a load
Anton Korobeynikovc1a1e4a2009-07-16 14:29:05 +0000341 // from this parameter
Anton Korobeynikov980d5502009-07-16 14:08:42 +0000342 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Dan Gohman98ca4f22009-08-05 01:29:28 +0000343 ArgValue = DAG.getLoad(LocVT, dl, Chain, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000344 MachinePointerInfo::getFixedStack(FI),
David Greene77201552010-02-15 16:57:13 +0000345 false, false, 0);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000346 }
Anton Korobeynikovc1a1e4a2009-07-16 14:29:05 +0000347
348 // If this is an 8/16/32-bit value, it is really passed promoted to 64
349 // bits. Insert an assert[sz]ext to capture this, then truncate to the
350 // right size.
351 if (VA.getLocInfo() == CCValAssign::SExt)
352 ArgValue = DAG.getNode(ISD::AssertSext, dl, LocVT, ArgValue,
353 DAG.getValueType(VA.getValVT()));
354 else if (VA.getLocInfo() == CCValAssign::ZExt)
355 ArgValue = DAG.getNode(ISD::AssertZext, dl, LocVT, ArgValue,
356 DAG.getValueType(VA.getValVT()));
357
358 if (VA.getLocInfo() != CCValAssign::Full)
359 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
360
Dan Gohman98ca4f22009-08-05 01:29:28 +0000361 InVals.push_back(ArgValue);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000362 }
363
Dan Gohman98ca4f22009-08-05 01:29:28 +0000364 return Chain;
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000365}
366
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000367/// LowerCCCCallTo - functions arguments are copied from virtual regs to
368/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
369/// TODO: sret.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000370SDValue
371SystemZTargetLowering::LowerCCCCallTo(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000372 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000373 bool isTailCall,
374 const SmallVectorImpl<ISD::OutputArg>
375 &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000376 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000377 const SmallVectorImpl<ISD::InputArg> &Ins,
378 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000379 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +0000380 MachineFunction &MF = DAG.getMachineFunction();
Anton Korobeynikovd0c38172010-11-18 21:19:35 +0000381 const TargetFrameInfo *TFI = TM.getFrameInfo();
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000382
Anton Korobeynikovc7b71be2009-07-16 13:52:10 +0000383 // Offset to first argument stack slot.
384 const unsigned FirstArgOffset = 160;
385
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000386 // Analyze operands of the call, assigning locations to each operand.
387 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000388 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
389 ArgLocs, *DAG.getContext());
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000390
Dan Gohman98ca4f22009-08-05 01:29:28 +0000391 CCInfo.AnalyzeCallOperands(Outs, CC_SystemZ);
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000392
393 // Get a count of how many bytes are to be pushed on the stack.
394 unsigned NumBytes = CCInfo.getNextStackOffset();
395
396 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
397 getPointerTy(), true));
398
399 SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass;
400 SmallVector<SDValue, 12> MemOpChains;
401 SDValue StackPtr;
402
403 // Walk the register/memloc assignments, inserting copies/loads.
404 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
405 CCValAssign &VA = ArgLocs[i];
406
Dan Gohmanc9403652010-07-07 15:54:55 +0000407 SDValue Arg = OutVals[i];
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000408
409 // Promote the value if needed.
410 switch (VA.getLocInfo()) {
411 default: assert(0 && "Unknown loc info!");
412 case CCValAssign::Full: break;
413 case CCValAssign::SExt:
414 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
415 break;
416 case CCValAssign::ZExt:
417 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
418 break;
419 case CCValAssign::AExt:
420 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
421 break;
422 }
423
424 // Arguments that can be passed on register must be kept at RegsToPass
425 // vector
426 if (VA.isRegLoc()) {
427 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
428 } else {
429 assert(VA.isMemLoc());
430
431 if (StackPtr.getNode() == 0)
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +0000432 StackPtr =
433 DAG.getCopyFromReg(Chain, dl,
Anton Korobeynikovd0c38172010-11-18 21:19:35 +0000434 (TFI->hasFP(MF) ?
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +0000435 SystemZ::R11D : SystemZ::R15D),
436 getPointerTy());
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000437
Anton Korobeynikovc7b71be2009-07-16 13:52:10 +0000438 unsigned Offset = FirstArgOffset + VA.getLocMemOffset();
439 SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(),
440 StackPtr,
441 DAG.getIntPtrConstant(Offset));
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000442
443 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000444 MachinePointerInfo(),
David Greene77201552010-02-15 16:57:13 +0000445 false, false, 0));
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000446 }
447 }
448
449 // Transform all store nodes into one single node because all store nodes are
450 // independent of each other.
451 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +0000452 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000453 &MemOpChains[0], MemOpChains.size());
454
455 // Build a sequence of copy-to-reg nodes chained together with token chain and
456 // flag operands which copy the outgoing args into registers. The InFlag in
457 // necessary since all emited instructions must be stuck together.
458 SDValue InFlag;
459 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
460 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
461 RegsToPass[i].second, InFlag);
462 InFlag = Chain.getValue(1);
463 }
464
465 // If the callee is a GlobalAddress node (quite common, every direct call is)
466 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
467 // Likewise ExternalSymbol -> TargetExternalSymbol.
468 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Devang Patel0d881da2010-07-06 22:08:15 +0000469 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, getPointerTy());
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000470 else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
471 Callee = DAG.getTargetExternalSymbol(E->getSymbol(), getPointerTy());
472
473 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000474 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000475 SmallVector<SDValue, 8> Ops;
476 Ops.push_back(Chain);
477 Ops.push_back(Callee);
478
479 // Add argument registers to the end of the list so that they are
480 // known live into the call.
481 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
482 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
483 RegsToPass[i].second.getValueType()));
484
485 if (InFlag.getNode())
486 Ops.push_back(InFlag);
487
488 Chain = DAG.getNode(SystemZISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
489 InFlag = Chain.getValue(1);
490
491 // Create the CALLSEQ_END node.
492 Chain = DAG.getCALLSEQ_END(Chain,
493 DAG.getConstant(NumBytes, getPointerTy(), true),
494 DAG.getConstant(0, getPointerTy(), true),
495 InFlag);
496 InFlag = Chain.getValue(1);
497
498 // Handle result values, copying them out of physregs into vregs that we
499 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000500 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl,
501 DAG, InVals);
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000502}
503
Dan Gohman98ca4f22009-08-05 01:29:28 +0000504/// LowerCallResult - Lower the result values of a call into the
505/// appropriate copies out of appropriate physical registers.
506///
507SDValue
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000508SystemZTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000509 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000510 const SmallVectorImpl<ISD::InputArg>
511 &Ins,
512 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +0000513 SmallVectorImpl<SDValue> &InVals) const {
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000514
515 // Assign locations to each value returned by this call.
516 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +0000517 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), RVLocs,
Owen Andersone922c022009-07-22 00:24:57 +0000518 *DAG.getContext());
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000519
Dan Gohman98ca4f22009-08-05 01:29:28 +0000520 CCInfo.AnalyzeCallResult(Ins, RetCC_SystemZ);
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000521
522 // Copy all of the result registers out of their specified physreg.
523 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Anton Korobeynikov22836d12009-07-16 13:58:24 +0000524 CCValAssign &VA = RVLocs[i];
525
526 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
527 VA.getLocVT(), InFlag).getValue(1);
528 SDValue RetValue = Chain.getValue(0);
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000529 InFlag = Chain.getValue(2);
Anton Korobeynikov22836d12009-07-16 13:58:24 +0000530
531 // If this is an 8/16/32-bit value, it is really passed promoted to 64
532 // bits. Insert an assert[sz]ext to capture this, then truncate to the
533 // right size.
534 if (VA.getLocInfo() == CCValAssign::SExt)
535 RetValue = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), RetValue,
536 DAG.getValueType(VA.getValVT()));
537 else if (VA.getLocInfo() == CCValAssign::ZExt)
538 RetValue = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), RetValue,
539 DAG.getValueType(VA.getValVT()));
540
541 if (VA.getLocInfo() != CCValAssign::Full)
542 RetValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), RetValue);
543
Dan Gohman98ca4f22009-08-05 01:29:28 +0000544 InVals.push_back(RetValue);
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000545 }
546
Dan Gohman98ca4f22009-08-05 01:29:28 +0000547 return Chain;
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000548}
549
550
Dan Gohman98ca4f22009-08-05 01:29:28 +0000551SDValue
552SystemZTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +0000553 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +0000554 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +0000555 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +0000556 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +0000557
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000558 // CCValAssign - represent the assignment of the return value to a location
559 SmallVector<CCValAssign, 16> RVLocs;
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000560
561 // CCState - Info about the registers and stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +0000562 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
563 RVLocs, *DAG.getContext());
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000564
Dan Gohman98ca4f22009-08-05 01:29:28 +0000565 // Analize return values.
566 CCInfo.AnalyzeReturn(Outs, RetCC_SystemZ);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000567
568 // If this is the first return lowered for this function, add the regs to the
569 // liveout set for the function.
570 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
571 for (unsigned i = 0; i != RVLocs.size(); ++i)
572 if (RVLocs[i].isRegLoc())
573 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
574 }
575
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000576 SDValue Flag;
577
578 // Copy the result values into the output registers.
579 for (unsigned i = 0; i != RVLocs.size(); ++i) {
580 CCValAssign &VA = RVLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +0000581 SDValue ResValue = OutVals[i];
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000582 assert(VA.isRegLoc() && "Can only return in registers!");
583
Anton Korobeynikova51752c2009-07-16 13:42:31 +0000584 // If this is an 8/16/32-bit value, it is really should be passed promoted
585 // to 64 bits.
586 if (VA.getLocInfo() == CCValAssign::SExt)
587 ResValue = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ResValue);
588 else if (VA.getLocInfo() == CCValAssign::ZExt)
589 ResValue = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ResValue);
590 else if (VA.getLocInfo() == CCValAssign::AExt)
591 ResValue = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ResValue);
592
Anton Korobeynikova51752c2009-07-16 13:42:31 +0000593 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ResValue, Flag);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000594
595 // Guarantee that all emitted copies are stuck together,
596 // avoiding something bad.
597 Flag = Chain.getValue(1);
598 }
599
600 if (Flag.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +0000601 return DAG.getNode(SystemZISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000602
603 // Return Void
Owen Anderson825b72b2009-08-11 20:47:22 +0000604 return DAG.getNode(SystemZISD::RET_FLAG, dl, MVT::Other, Chain);
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000605}
606
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000607SDValue SystemZTargetLowering::EmitCmp(SDValue LHS, SDValue RHS,
608 ISD::CondCode CC, SDValue &SystemZCC,
Dan Gohmand858e902010-04-17 15:26:15 +0000609 SelectionDAG &DAG) const {
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000610 // FIXME: Emit a test if RHS is zero
611
612 bool isUnsigned = false;
613 SystemZCC::CondCodes TCC;
614 switch (CC) {
Anton Korobeynikov31e87442009-07-18 13:33:17 +0000615 default:
616 llvm_unreachable("Invalid integer condition!");
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000617 case ISD::SETEQ:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000618 case ISD::SETOEQ:
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000619 TCC = SystemZCC::E;
620 break;
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000621 case ISD::SETUEQ:
622 TCC = SystemZCC::NLH;
623 break;
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000624 case ISD::SETNE:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000625 case ISD::SETONE:
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000626 TCC = SystemZCC::NE;
627 break;
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000628 case ISD::SETUNE:
629 TCC = SystemZCC::LH;
630 break;
631 case ISD::SETO:
632 TCC = SystemZCC::O;
633 break;
634 case ISD::SETUO:
635 TCC = SystemZCC::NO;
636 break;
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000637 case ISD::SETULE:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000638 if (LHS.getValueType().isFloatingPoint()) {
639 TCC = SystemZCC::NH;
640 break;
641 }
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000642 isUnsigned = true; // FALLTHROUGH
643 case ISD::SETLE:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000644 case ISD::SETOLE:
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000645 TCC = SystemZCC::LE;
646 break;
647 case ISD::SETUGE:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000648 if (LHS.getValueType().isFloatingPoint()) {
649 TCC = SystemZCC::NL;
650 break;
651 }
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000652 isUnsigned = true; // FALLTHROUGH
653 case ISD::SETGE:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000654 case ISD::SETOGE:
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000655 TCC = SystemZCC::HE;
656 break;
657 case ISD::SETUGT:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000658 if (LHS.getValueType().isFloatingPoint()) {
659 TCC = SystemZCC::NLE;
660 break;
661 }
662 isUnsigned = true; // FALLTHROUGH
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000663 case ISD::SETGT:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000664 case ISD::SETOGT:
665 TCC = SystemZCC::H;
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000666 break;
667 case ISD::SETULT:
Anton Korobeynikov10c086c2009-07-16 14:19:54 +0000668 if (LHS.getValueType().isFloatingPoint()) {
669 TCC = SystemZCC::NHE;
670 break;
671 }
672 isUnsigned = true; // FALLTHROUGH
673 case ISD::SETLT:
674 case ISD::SETOLT:
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000675 TCC = SystemZCC::L;
676 break;
677 }
678
Owen Anderson825b72b2009-08-11 20:47:22 +0000679 SystemZCC = DAG.getConstant(TCC, MVT::i32);
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000680
681 DebugLoc dl = LHS.getDebugLoc();
682 return DAG.getNode((isUnsigned ? SystemZISD::UCMP : SystemZISD::CMP),
Dan Gohmanaa123222009-10-28 00:55:57 +0000683 dl, MVT::i64, LHS, RHS);
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000684}
685
686
Dan Gohmand858e902010-04-17 15:26:15 +0000687SDValue SystemZTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000688 SDValue Chain = Op.getOperand(0);
689 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
690 SDValue LHS = Op.getOperand(2);
691 SDValue RHS = Op.getOperand(3);
692 SDValue Dest = Op.getOperand(4);
693 DebugLoc dl = Op.getDebugLoc();
694
695 SDValue SystemZCC;
696 SDValue Flag = EmitCmp(LHS, RHS, CC, SystemZCC, DAG);
697 return DAG.getNode(SystemZISD::BRCOND, dl, Op.getValueType(),
698 Chain, Dest, SystemZCC, Flag);
699}
700
Dan Gohmand858e902010-04-17 15:26:15 +0000701SDValue SystemZTargetLowering::LowerSELECT_CC(SDValue Op,
702 SelectionDAG &DAG) const {
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000703 SDValue LHS = Op.getOperand(0);
704 SDValue RHS = Op.getOperand(1);
705 SDValue TrueV = Op.getOperand(2);
706 SDValue FalseV = Op.getOperand(3);
707 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
708 DebugLoc dl = Op.getDebugLoc();
709
710 SDValue SystemZCC;
711 SDValue Flag = EmitCmp(LHS, RHS, CC, SystemZCC, DAG);
712
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000713 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000714 SmallVector<SDValue, 4> Ops;
715 Ops.push_back(TrueV);
716 Ops.push_back(FalseV);
717 Ops.push_back(SystemZCC);
718 Ops.push_back(Flag);
719
720 return DAG.getNode(SystemZISD::SELECT, dl, VTs, &Ops[0], Ops.size());
721}
722
Anton Korobeynikovbad769f2009-07-16 13:57:27 +0000723SDValue SystemZTargetLowering::LowerGlobalAddress(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000724 SelectionDAG &DAG) const {
Anton Korobeynikovbad769f2009-07-16 13:57:27 +0000725 DebugLoc dl = Op.getDebugLoc();
Dan Gohman46510a72010-04-15 01:51:59 +0000726 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +0000727 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Anton Korobeynikovbad769f2009-07-16 13:57:27 +0000728
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +0000729 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
730 bool ExtraLoadRequired =
731 Subtarget.GVRequiresExtraLoad(GV, getTargetMachine(), false);
732
733 SDValue Result;
734 if (!IsPic && !ExtraLoadRequired) {
Devang Patel0d881da2010-07-06 22:08:15 +0000735 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +0000736 Offset = 0;
737 } else {
738 unsigned char OpFlags = 0;
739 if (ExtraLoadRequired)
740 OpFlags = SystemZII::MO_GOTENT;
741
Devang Patel0d881da2010-07-06 22:08:15 +0000742 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +0000743 }
744
745 Result = DAG.getNode(SystemZISD::PCRelativeWrapper, dl,
746 getPointerTy(), Result);
747
748 if (ExtraLoadRequired)
749 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +0000750 MachinePointerInfo::getGOT(), false, false, 0);
Anton Korobeynikov6fe326c2009-07-16 14:16:05 +0000751
752 // If there was a non-zero offset that we didn't fold, create an explicit
753 // addition for it.
754 if (Offset != 0)
755 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
756 DAG.getConstant(Offset, getPointerTy()));
757
758 return Result;
Anton Korobeynikovbad769f2009-07-16 13:57:27 +0000759}
760
Anton Korobeynikovae535672009-07-16 14:19:35 +0000761// FIXME: PIC here
Anton Korobeynikovc16cdc52009-07-16 14:07:50 +0000762SDValue SystemZTargetLowering::LowerJumpTable(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000763 SelectionDAG &DAG) const {
Anton Korobeynikovc16cdc52009-07-16 14:07:50 +0000764 DebugLoc dl = Op.getDebugLoc();
765 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
766 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
767
768 return DAG.getNode(SystemZISD::PCRelativeWrapper, dl, getPointerTy(), Result);
769}
770
Anton Korobeynikovae535672009-07-16 14:19:35 +0000771
772// FIXME: PIC here
773// FIXME: This is just dirty hack. We need to lower cpool properly
774SDValue SystemZTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +0000775 SelectionDAG &DAG) const {
Anton Korobeynikovae535672009-07-16 14:19:35 +0000776 DebugLoc dl = Op.getDebugLoc();
777 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
778
779 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
780 CP->getAlignment(),
781 CP->getOffset());
782
783 return DAG.getNode(SystemZISD::PCRelativeWrapper, dl, getPointerTy(), Result);
784}
785
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000786const char *SystemZTargetLowering::getTargetNodeName(unsigned Opcode) const {
787 switch (Opcode) {
Anton Korobeynikov87a24e32009-07-16 13:28:59 +0000788 case SystemZISD::RET_FLAG: return "SystemZISD::RET_FLAG";
Anton Korobeynikovba249e42009-07-16 13:50:21 +0000789 case SystemZISD::CALL: return "SystemZISD::CALL";
Anton Korobeynikov4ec3e5f2009-07-16 13:52:31 +0000790 case SystemZISD::BRCOND: return "SystemZISD::BRCOND";
791 case SystemZISD::CMP: return "SystemZISD::CMP";
792 case SystemZISD::UCMP: return "SystemZISD::UCMP";
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000793 case SystemZISD::SELECT: return "SystemZISD::SELECT";
Anton Korobeynikovbad769f2009-07-16 13:57:27 +0000794 case SystemZISD::PCRelativeWrapper: return "SystemZISD::PCRelativeWrapper";
Anton Korobeynikov4403b932009-07-16 13:27:25 +0000795 default: return NULL;
796 }
797}
798
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000799//===----------------------------------------------------------------------===//
800// Other Lowering Code
801//===----------------------------------------------------------------------===//
802
803MachineBasicBlock*
804SystemZTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +0000805 MachineBasicBlock *BB) const {
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000806 const SystemZInstrInfo &TII = *TM.getInstrInfo();
807 DebugLoc dl = MI->getDebugLoc();
Anton Korobeynikovda723d72009-07-16 14:22:15 +0000808 assert((MI->getOpcode() == SystemZ::Select32 ||
809 MI->getOpcode() == SystemZ::SelectF32 ||
810 MI->getOpcode() == SystemZ::Select64 ||
811 MI->getOpcode() == SystemZ::SelectF64) &&
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000812 "Unexpected instr type to insert");
813
814 // To "insert" a SELECT instruction, we actually have to insert the diamond
815 // control-flow pattern. The incoming instruction knows the destination vreg
816 // to set, the condition code register to branch on, the true/false values to
817 // select between, and a branch opcode to use.
818 const BasicBlock *LLVM_BB = BB->getBasicBlock();
819 MachineFunction::iterator I = BB;
820 ++I;
821
822 // thisMBB:
823 // ...
824 // TrueVal = ...
825 // cmpTY ccX, r1, r2
826 // jCC copy1MBB
827 // fallthrough --> copy0MBB
828 MachineBasicBlock *thisMBB = BB;
829 MachineFunction *F = BB->getParent();
830 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
831 MachineBasicBlock *copy1MBB = F->CreateMachineBasicBlock(LLVM_BB);
832 SystemZCC::CondCodes CC = (SystemZCC::CondCodes)MI->getOperand(3).getImm();
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000833 F->insert(I, copy0MBB);
834 F->insert(I, copy1MBB);
835 // Update machine-CFG edges by transferring all successors of the current
836 // block to the new block which will contain the Phi node for the select.
Dan Gohman14152b42010-07-06 20:24:04 +0000837 copy1MBB->splice(copy1MBB->begin(), BB,
838 llvm::next(MachineBasicBlock::iterator(MI)),
839 BB->end());
840 copy1MBB->transferSuccessorsAndUpdatePHIs(BB);
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000841 // Next, add the true and fallthrough blocks as its successors.
842 BB->addSuccessor(copy0MBB);
843 BB->addSuccessor(copy1MBB);
844
Dan Gohman14152b42010-07-06 20:24:04 +0000845 BuildMI(BB, dl, TII.getBrCond(CC)).addMBB(copy1MBB);
846
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000847 // copy0MBB:
848 // %FalseValue = ...
849 // # fallthrough to copy1MBB
850 BB = copy0MBB;
851
852 // Update machine-CFG edges
853 BB->addSuccessor(copy1MBB);
854
855 // copy1MBB:
856 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
857 // ...
858 BB = copy1MBB;
Dan Gohman14152b42010-07-06 20:24:04 +0000859 BuildMI(*BB, BB->begin(), dl, TII.get(SystemZ::PHI),
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000860 MI->getOperand(0).getReg())
861 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
862 .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
863
Dan Gohman14152b42010-07-06 20:24:04 +0000864 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov7d1e39b2009-07-16 13:52:51 +0000865 return BB;
866}