blob: d3410749d1a5375b323b11fb8df561ddf5ad87d7 [file] [log] [blame]
Nate Begeman0b71e002005-10-18 00:28:58 +00001//===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
Chris Lattnerf22556d2005-08-16 17:14:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Lattnerf22556d2005-08-16 17:14:42 +00007//
8//===----------------------------------------------------------------------===//
9//
Nate Begeman6cca84e2005-10-16 05:39:50 +000010// This file implements the PPCISelLowering class.
Chris Lattnerf22556d2005-08-16 17:14:42 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner6f3b9542005-10-14 23:59:06 +000014#include "PPCISelLowering.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "MCTargetDesc/PPCPredicates.h"
Jim Laskey48850c12006-11-16 22:43:37 +000016#include "PPCMachineFunctionInfo.h"
Bill Wendlingdd3fe942010-03-12 02:00:43 +000017#include "PPCPerfectShuffle.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000018#include "PPCTargetMachine.h"
Bill Schmidt22d40dc2013-05-13 19:34:37 +000019#include "PPCTargetObjectFile.h"
Owen Andersone2f23a32007-09-07 04:06:50 +000020#include "llvm/ADT/STLExtras.h"
Chris Lattner4f2e4e02007-03-06 00:59:59 +000021#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner9b577f12005-08-26 21:23:58 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000026#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000027#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/CallingConv.h"
29#include "llvm/IR/Constants.h"
30#include "llvm/IR/DerivedTypes.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/Intrinsics.h"
Chris Lattnerce645542006-11-10 02:08:47 +000033#include "llvm/Support/CommandLine.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
Craig Topperb25fda92012-03-17 18:46:09 +000035#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000036#include "llvm/Support/raw_ostream.h"
Craig Topperb25fda92012-03-17 18:46:09 +000037#include "llvm/Target/TargetOptions.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000038using namespace llvm;
39
Hal Finkel595817e2012-06-04 02:21:00 +000040static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
41cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
Chris Lattnerce645542006-11-10 02:08:47 +000042
Hal Finkel4e9f1a82012-06-10 19:32:29 +000043static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
44cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
45
Hal Finkel8d7fbc92013-03-15 15:27:13 +000046static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
47cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
48
Chris Lattner5e693ed2009-07-28 03:13:23 +000049static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
50 if (TM.getSubtargetImpl()->isDarwin())
Bill Wendlingbbcaa402010-03-15 21:09:38 +000051 return new TargetLoweringObjectFileMachO();
Bill Wendlingdd3fe942010-03-12 02:00:43 +000052
Bill Schmidt22d40dc2013-05-13 19:34:37 +000053 if (TM.getSubtargetImpl()->isSVR4ABI())
54 return new PPC64LinuxTargetObjectFile();
55
Bruno Cardoso Lopes62e6a8b2009-08-13 23:30:21 +000056 return new TargetLoweringObjectFileELF();
Chris Lattner5e693ed2009-07-28 03:13:23 +000057}
58
Chris Lattner584a11a2006-11-02 01:44:04 +000059PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
Chris Lattner5e693ed2009-07-28 03:13:23 +000060 : TargetLowering(TM, CreateTLOF(TM)), PPCSubTarget(*TM.getSubtargetImpl()) {
Evan Cheng39e90022012-07-02 22:39:56 +000061 const PPCSubtarget *Subtarget = &TM.getSubtarget<PPCSubtarget>();
Scott Michelcf0da6c2009-02-17 22:15:04 +000062
Nate Begeman4dd38312005-10-21 00:02:42 +000063 setPow2DivIsCheap();
Dale Johannesenc31eb202008-07-31 18:13:12 +000064
Chris Lattnera028e7a2005-09-27 22:18:25 +000065 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikov3b7c2572006-12-10 23:12:42 +000066 setUseUnderscoreSetJmp(true);
67 setUseUnderscoreLongJmp(true);
Scott Michelcf0da6c2009-02-17 22:15:04 +000068
Chris Lattnerd10babf2010-10-10 18:34:00 +000069 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
70 // arguments are at least 4/8 bytes aligned.
Evan Cheng39e90022012-07-02 22:39:56 +000071 bool isPPC64 = Subtarget->isPPC64();
72 setMinStackArgumentAlignment(isPPC64 ? 8:4);
Wesley Peck527da1b2010-11-23 03:31:01 +000073
Chris Lattnerf22556d2005-08-16 17:14:42 +000074 // Set up the register classes.
Craig Topperabadc662012-04-20 06:31:50 +000075 addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
76 addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
77 addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +000078
Evan Cheng5d9fd972006-10-04 00:56:09 +000079 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Owen Anderson9f944592009-08-11 20:47:22 +000080 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
81 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Duncan Sands95d46ef2008-01-23 20:39:46 +000082
Owen Anderson9f944592009-08-11 20:47:22 +000083 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +000084
Chris Lattnerc9fa36d2006-11-10 23:58:45 +000085 // PowerPC has pre-inc load and store's.
Owen Anderson9f944592009-08-11 20:47:22 +000086 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
87 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
88 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
89 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
90 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
91 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
92 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
93 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
94 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
95 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
Evan Cheng36a8fbf2006-11-09 19:11:50 +000096
Dale Johannesen666323e2007-10-10 01:01:31 +000097 // This is used in the ppcf128->int sequence. Note it has different semantics
98 // from FP_ROUND: that rounds to nearest, this rounds to zero.
Owen Anderson9f944592009-08-11 20:47:22 +000099 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesenf864ac92007-10-06 01:24:11 +0000100
Roman Divacky1faf5b02012-08-16 18:19:29 +0000101 // We do not currently implement these libm ops for PowerPC.
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000102 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
103 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand);
104 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
105 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand);
106 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
Bill Schmidt92e26642013-04-03 13:05:44 +0000107 setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000108
Chris Lattnerf22556d2005-08-16 17:14:42 +0000109 // PowerPC has no SREM/UREM instructions
Owen Anderson9f944592009-08-11 20:47:22 +0000110 setOperationAction(ISD::SREM, MVT::i32, Expand);
111 setOperationAction(ISD::UREM, MVT::i32, Expand);
112 setOperationAction(ISD::SREM, MVT::i64, Expand);
113 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman71f0d7d2007-10-08 17:28:24 +0000114
115 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson9f944592009-08-11 20:47:22 +0000116 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
117 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
118 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
119 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
120 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
121 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
122 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
123 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000124
Dan Gohman482732a2007-10-11 23:21:31 +0000125 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson9f944592009-08-11 20:47:22 +0000126 setOperationAction(ISD::FSIN , MVT::f64, Expand);
127 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000128 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000129 setOperationAction(ISD::FREM , MVT::f64, Expand);
130 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000131 setOperationAction(ISD::FMA , MVT::f64, Legal);
Owen Anderson9f944592009-08-11 20:47:22 +0000132 setOperationAction(ISD::FSIN , MVT::f32, Expand);
133 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000134 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000135 setOperationAction(ISD::FREM , MVT::f32, Expand);
136 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000137 setOperationAction(ISD::FMA , MVT::f32, Legal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +0000138
Owen Anderson9f944592009-08-11 20:47:22 +0000139 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000140
Chris Lattnerf22556d2005-08-16 17:14:42 +0000141 // If we're enabling GP optimizations, use hardware square root
Hal Finkel2e103312013-04-03 04:01:11 +0000142 if (!Subtarget->hasFSQRT() &&
143 !(TM.Options.UnsafeFPMath &&
144 Subtarget->hasFRSQRTE() && Subtarget->hasFRE()))
Owen Anderson9f944592009-08-11 20:47:22 +0000145 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Hal Finkel2e103312013-04-03 04:01:11 +0000146
147 if (!Subtarget->hasFSQRT() &&
148 !(TM.Options.UnsafeFPMath &&
149 Subtarget->hasFRSQRTES() && Subtarget->hasFRES()))
Owen Anderson9f944592009-08-11 20:47:22 +0000150 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000151
Hal Finkeldbc78e12013-08-19 05:01:02 +0000152 if (Subtarget->hasFCPSGN()) {
153 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
154 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
155 } else {
156 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
157 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
158 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000159
Hal Finkelc20a08d2013-03-29 08:57:48 +0000160 if (Subtarget->hasFPRND()) {
161 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
162 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
163 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000164 setOperationAction(ISD::FROUND, MVT::f64, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000165
166 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
167 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
168 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000169 setOperationAction(ISD::FROUND, MVT::f32, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000170 }
171
Nate Begeman2fba8a32006-01-14 03:14:10 +0000172 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson9f944592009-08-11 20:47:22 +0000173 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000174 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000175 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
176 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000177 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000178 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000179 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
180 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000181
Hal Finkela4d07482013-03-28 13:29:47 +0000182 if (Subtarget->hasPOPCNTD()) {
Hal Finkel290376d2013-04-01 15:58:15 +0000183 setOperationAction(ISD::CTPOP, MVT::i32 , Legal);
Hal Finkela4d07482013-03-28 13:29:47 +0000184 setOperationAction(ISD::CTPOP, MVT::i64 , Legal);
185 } else {
186 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
187 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
188 }
189
Nate Begeman1b8121b2006-01-11 21:21:00 +0000190 // PowerPC does not have ROTR
Owen Anderson9f944592009-08-11 20:47:22 +0000191 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
192 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000193
Chris Lattnerf22556d2005-08-16 17:14:42 +0000194 // PowerPC does not have Select
Owen Anderson9f944592009-08-11 20:47:22 +0000195 setOperationAction(ISD::SELECT, MVT::i32, Expand);
196 setOperationAction(ISD::SELECT, MVT::i64, Expand);
197 setOperationAction(ISD::SELECT, MVT::f32, Expand);
198 setOperationAction(ISD::SELECT, MVT::f64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000199
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000200 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson9f944592009-08-11 20:47:22 +0000201 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
202 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begemana162f202006-01-31 08:17:29 +0000203
Nate Begeman7e7f4392006-02-01 07:19:44 +0000204 // PowerPC wants to optimize integer setcc a bit
Owen Anderson9f944592009-08-11 20:47:22 +0000205 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000206
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000207 // PowerPC does not have BRCOND which requires SetCC
Owen Anderson9f944592009-08-11 20:47:22 +0000208 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Cheng0d41d192006-10-30 08:02:39 +0000209
Owen Anderson9f944592009-08-11 20:47:22 +0000210 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000211
Chris Lattnerda2e04c2005-08-31 21:09:52 +0000212 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson9f944592009-08-11 20:47:22 +0000213 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000214
Jim Laskey6267b2c2005-08-17 00:40:22 +0000215 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson9f944592009-08-11 20:47:22 +0000216 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
217 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskey6267b2c2005-08-17 00:40:22 +0000218
Wesley Peck527da1b2010-11-23 03:31:01 +0000219 setOperationAction(ISD::BITCAST, MVT::f32, Expand);
220 setOperationAction(ISD::BITCAST, MVT::i32, Expand);
221 setOperationAction(ISD::BITCAST, MVT::i64, Expand);
222 setOperationAction(ISD::BITCAST, MVT::f64, Expand);
Chris Lattnerc46fc242005-12-23 05:13:35 +0000223
Chris Lattner84b49d52006-04-28 21:56:10 +0000224 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson9f944592009-08-11 20:47:22 +0000225 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskeye0008e22007-02-22 14:56:36 +0000226
Hal Finkel1996f3d2013-03-27 19:10:42 +0000227 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Hal Finkel756810f2013-03-21 21:37:52 +0000228 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
229 // support continuation, user-level threading, and etc.. As a result, no
230 // other SjLj exception interfaces are implemented and please don't build
231 // your own exception handling based on them.
232 // LLVM/Clang supports zero-cost DWARF exception handling.
233 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
234 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000235
236 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman4e56db62005-12-10 02:36:00 +0000237 // appropriate instructions to materialize the address.
Owen Anderson9f944592009-08-11 20:47:22 +0000238 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
239 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000240 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000241 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
242 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
243 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
244 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000245 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000246 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
247 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000248
Nate Begemanf69d13b2008-08-11 17:36:31 +0000249 // TRAP is legal.
Owen Anderson9f944592009-08-11 20:47:22 +0000250 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling95e1af22008-09-17 00:30:57 +0000251
252 // TRAMPOLINE is custom lowered.
Duncan Sandsa0984362011-09-06 13:37:06 +0000253 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
254 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Bill Wendling95e1af22008-09-17 00:30:57 +0000255
Nate Begemane74795c2006-01-25 18:21:52 +0000256 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson9f944592009-08-11 20:47:22 +0000257 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000258
Evan Cheng39e90022012-07-02 22:39:56 +0000259 if (Subtarget->isSVR4ABI()) {
260 if (isPPC64) {
Hal Finkele44eb282012-03-24 03:53:55 +0000261 // VAARG always uses double-word chunks, so promote anything smaller.
262 setOperationAction(ISD::VAARG, MVT::i1, Promote);
263 AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
264 setOperationAction(ISD::VAARG, MVT::i8, Promote);
265 AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
266 setOperationAction(ISD::VAARG, MVT::i16, Promote);
267 AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
268 setOperationAction(ISD::VAARG, MVT::i32, Promote);
269 AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
270 setOperationAction(ISD::VAARG, MVT::Other, Expand);
271 } else {
272 // VAARG is custom lowered with the 32-bit SVR4 ABI.
273 setOperationAction(ISD::VAARG, MVT::Other, Custom);
274 setOperationAction(ISD::VAARG, MVT::i64, Custom);
275 }
Roman Divacky4394e682011-06-28 15:30:42 +0000276 } else
Owen Anderson9f944592009-08-11 20:47:22 +0000277 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000278
Roman Divackyc3825df2013-07-25 21:36:47 +0000279 if (Subtarget->isSVR4ABI() && !isPPC64)
280 // VACOPY is custom lowered with the 32-bit SVR4 ABI.
281 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
282 else
283 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
284
Chris Lattner5bd514d2006-01-15 09:02:48 +0000285 // Use the default implementation.
Owen Anderson9f944592009-08-11 20:47:22 +0000286 setOperationAction(ISD::VAEND , MVT::Other, Expand);
287 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
288 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
289 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
290 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Chris Lattnerab4df8342006-10-18 01:18:48 +0000291
Chris Lattner6961fc72006-03-26 10:06:40 +0000292 // We want to custom lower some of our intrinsics.
Owen Anderson9f944592009-08-11 20:47:22 +0000293 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000294
Hal Finkel25c19922013-05-15 21:37:41 +0000295 // To handle counter-based loop conditions.
296 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
297
Dale Johannesen160be0f2008-11-07 22:54:33 +0000298 // Comparisons that require checking two conditions.
Owen Anderson9f944592009-08-11 20:47:22 +0000299 setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
300 setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
301 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
302 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
303 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
304 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
305 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
306 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
307 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
308 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
309 setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
310 setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000311
Evan Cheng39e90022012-07-02 22:39:56 +0000312 if (Subtarget->has64BitSupport()) {
Nate Begeman0b71e002005-10-18 00:28:58 +0000313 // They also have instructions for converting between i64 and fp.
Owen Anderson9f944592009-08-11 20:47:22 +0000314 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
315 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
316 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
317 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Dale Johannesen37bc85f2009-06-04 20:53:52 +0000318 // This is just the low 32 bits of a (signed) fp->i64 conversion.
319 // We cannot do this with Promote because i64 is not a legal type.
Owen Anderson9f944592009-08-11 20:47:22 +0000320 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000321
Hal Finkelf6d45f22013-04-01 17:52:07 +0000322 if (PPCSubTarget.hasLFIWAX() || Subtarget->isPPC64())
Hal Finkele53429a2013-03-31 01:58:02 +0000323 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begeman762bf802005-10-25 23:48:36 +0000324 } else {
Chris Lattner595088a2005-11-17 07:30:41 +0000325 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson9f944592009-08-11 20:47:22 +0000326 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begemane74dfbb2005-10-18 00:56:42 +0000327 }
328
Hal Finkelf6d45f22013-04-01 17:52:07 +0000329 // With the instructions enabled under FPCVT, we can do everything.
330 if (PPCSubTarget.hasFPCVT()) {
331 if (Subtarget->has64BitSupport()) {
332 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
333 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
334 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
335 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
336 }
337
338 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
339 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
340 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
341 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
342 }
343
Evan Cheng39e90022012-07-02 22:39:56 +0000344 if (Subtarget->use64BitRegs()) {
Chris Lattnerb1935762007-10-19 04:08:28 +0000345 // 64-bit PowerPC implementations can support i64 types directly
Craig Topperabadc662012-04-20 06:31:50 +0000346 addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
Nate Begeman0b71e002005-10-18 00:28:58 +0000347 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson9f944592009-08-11 20:47:22 +0000348 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman8d2ead22008-03-07 20:36:53 +0000349 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000350 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
351 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
352 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman0b71e002005-10-18 00:28:58 +0000353 } else {
Chris Lattnerb1935762007-10-19 04:08:28 +0000354 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000355 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
356 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
357 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000358 }
Evan Cheng19264272006-03-01 01:11:20 +0000359
Evan Cheng39e90022012-07-02 22:39:56 +0000360 if (Subtarget->hasAltivec()) {
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000361 // First set operation action for all vector types to expand. Then we
362 // will selectively turn on ones that can be effectively codegen'd.
Owen Anderson9f944592009-08-11 20:47:22 +0000363 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
364 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
365 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
Duncan Sands13237ac2008-06-06 12:08:01 +0000366
Chris Lattner06a21ba2006-04-16 01:37:57 +0000367 // add/sub are legal for all supported vector VT's.
Duncan Sands13237ac2008-06-06 12:08:01 +0000368 setOperationAction(ISD::ADD , VT, Legal);
369 setOperationAction(ISD::SUB , VT, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000370
Chris Lattner95c7adc2006-04-04 17:25:31 +0000371 // We promote all shuffles to v16i8.
Duncan Sands13237ac2008-06-06 12:08:01 +0000372 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000373 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattner06a21ba2006-04-16 01:37:57 +0000374
375 // We promote all non-typed operations to v4i32.
Duncan Sands13237ac2008-06-06 12:08:01 +0000376 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000377 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000378 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000379 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000380 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000381 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000382 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000383 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000384 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000385 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000386 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000387 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000388
Chris Lattner06a21ba2006-04-16 01:37:57 +0000389 // No other operations are legal.
Duncan Sands13237ac2008-06-06 12:08:01 +0000390 setOperationAction(ISD::MUL , VT, Expand);
391 setOperationAction(ISD::SDIV, VT, Expand);
392 setOperationAction(ISD::SREM, VT, Expand);
393 setOperationAction(ISD::UDIV, VT, Expand);
394 setOperationAction(ISD::UREM, VT, Expand);
395 setOperationAction(ISD::FDIV, VT, Expand);
Hal Finkele3930222013-07-08 17:30:25 +0000396 setOperationAction(ISD::FREM, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000397 setOperationAction(ISD::FNEG, VT, Expand);
Craig Topperc8a2adf2012-11-15 08:02:19 +0000398 setOperationAction(ISD::FSQRT, VT, Expand);
399 setOperationAction(ISD::FLOG, VT, Expand);
400 setOperationAction(ISD::FLOG10, VT, Expand);
401 setOperationAction(ISD::FLOG2, VT, Expand);
402 setOperationAction(ISD::FEXP, VT, Expand);
403 setOperationAction(ISD::FEXP2, VT, Expand);
404 setOperationAction(ISD::FSIN, VT, Expand);
405 setOperationAction(ISD::FCOS, VT, Expand);
406 setOperationAction(ISD::FABS, VT, Expand);
407 setOperationAction(ISD::FPOWI, VT, Expand);
Craig Topperc4343f22012-11-14 08:11:25 +0000408 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper61d04572012-11-15 06:51:10 +0000409 setOperationAction(ISD::FCEIL, VT, Expand);
410 setOperationAction(ISD::FTRUNC, VT, Expand);
411 setOperationAction(ISD::FRINT, VT, Expand);
412 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000413 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
414 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
415 setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
416 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
417 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
418 setOperationAction(ISD::UDIVREM, VT, Expand);
419 setOperationAction(ISD::SDIVREM, VT, Expand);
420 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
421 setOperationAction(ISD::FPOW, VT, Expand);
422 setOperationAction(ISD::CTPOP, VT, Expand);
423 setOperationAction(ISD::CTLZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000424 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000425 setOperationAction(ISD::CTTZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000426 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
Benjamin Kramerc5071462012-12-19 15:49:14 +0000427 setOperationAction(ISD::VSELECT, VT, Expand);
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000428 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
429
430 for (unsigned j = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
431 j <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++j) {
432 MVT::SimpleValueType InnerVT = (MVT::SimpleValueType)j;
433 setTruncStoreAction(VT, InnerVT, Expand);
434 }
435 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
436 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
437 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000438 }
439
Chris Lattner95c7adc2006-04-04 17:25:31 +0000440 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
441 // with merges, splats, etc.
Owen Anderson9f944592009-08-11 20:47:22 +0000442 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner95c7adc2006-04-04 17:25:31 +0000443
Owen Anderson9f944592009-08-11 20:47:22 +0000444 setOperationAction(ISD::AND , MVT::v4i32, Legal);
445 setOperationAction(ISD::OR , MVT::v4i32, Legal);
446 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
447 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
448 setOperationAction(ISD::SELECT, MVT::v4i32, Expand);
449 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
Adhemerval Zanella5c6e0842012-10-08 17:27:24 +0000450 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
451 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
452 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
453 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
Adhemerval Zanellabdface52012-11-15 20:56:03 +0000454 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
455 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
456 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
457 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000458
Craig Topperabadc662012-04-20 06:31:50 +0000459 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
460 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
461 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
462 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000463
Owen Anderson9f944592009-08-11 20:47:22 +0000464 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000465 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
Hal Finkel2e103312013-04-03 04:01:11 +0000466
467 if (TM.Options.UnsafeFPMath) {
468 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
469 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
470 }
471
Owen Anderson9f944592009-08-11 20:47:22 +0000472 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
473 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
474 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnera8713b12006-03-20 01:53:53 +0000475
Owen Anderson9f944592009-08-11 20:47:22 +0000476 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
477 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000478
Owen Anderson9f944592009-08-11 20:47:22 +0000479 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
480 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
481 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
482 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Adhemerval Zanella56775e02012-10-30 13:50:19 +0000483
484 // Altivec does not contain unordered floating-point compare instructions
485 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
486 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
487 setCondCodeAction(ISD::SETUGT, MVT::v4f32, Expand);
488 setCondCodeAction(ISD::SETUGE, MVT::v4f32, Expand);
489 setCondCodeAction(ISD::SETULT, MVT::v4f32, Expand);
490 setCondCodeAction(ISD::SETULE, MVT::v4f32, Expand);
Hal Finkel21ada792013-07-08 20:00:03 +0000491
492 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand);
493 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
Nate Begeman3e7db9c2005-11-29 08:17:20 +0000494 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000495
Hal Finkel70381a72012-08-04 14:10:46 +0000496 if (Subtarget->has64BitSupport()) {
Hal Finkel322e41a2012-04-01 20:08:17 +0000497 setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
Hal Finkel70381a72012-08-04 14:10:46 +0000498 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Legal);
499 }
Hal Finkel322e41a2012-04-01 20:08:17 +0000500
Eli Friedman7dfa7912011-08-29 18:23:02 +0000501 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Expand);
502 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Expand);
Hal Finkel1b5ff082012-12-25 17:22:53 +0000503 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
504 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
Eli Friedman7dfa7912011-08-29 18:23:02 +0000505
Duncan Sands8d6e2e12008-11-23 15:47:28 +0000506 setBooleanContents(ZeroOrOneBooleanContent);
Bill Schmidta76bf5a2013-04-23 18:49:44 +0000507 // Altivec instructions set fields to all zeros or all ones.
508 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000509
Evan Cheng39e90022012-07-02 22:39:56 +0000510 if (isPPC64) {
Chris Lattner454436d2006-10-18 01:20:43 +0000511 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000512 setExceptionPointerRegister(PPC::X3);
513 setExceptionSelectorRegister(PPC::X4);
514 } else {
Chris Lattner454436d2006-10-18 01:20:43 +0000515 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000516 setExceptionPointerRegister(PPC::R3);
517 setExceptionSelectorRegister(PPC::R4);
518 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000519
Chris Lattnerf4184352006-03-01 04:57:39 +0000520 // We have target-specific dag combine patterns for the following nodes:
521 setTargetDAGCombine(ISD::SINT_TO_FP);
Hal Finkelcf2e9082013-05-24 23:00:14 +0000522 setTargetDAGCombine(ISD::LOAD);
Chris Lattner27f53452006-03-01 05:50:56 +0000523 setTargetDAGCombine(ISD::STORE);
Chris Lattner9754d142006-04-18 17:59:36 +0000524 setTargetDAGCombine(ISD::BR_CC);
Chris Lattnera7976d32006-07-10 20:56:58 +0000525 setTargetDAGCombine(ISD::BSWAP);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +0000526 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000527
Hal Finkel2e103312013-04-03 04:01:11 +0000528 // Use reciprocal estimates.
529 if (TM.Options.UnsafeFPMath) {
530 setTargetDAGCombine(ISD::FDIV);
531 setTargetDAGCombine(ISD::FSQRT);
532 }
533
Dale Johannesen10432e52007-10-19 00:59:18 +0000534 // Darwin long double math library functions have $LDBL128 appended.
Evan Cheng39e90022012-07-02 22:39:56 +0000535 if (Subtarget->isDarwin()) {
Duncan Sands53c954f2008-01-10 10:28:30 +0000536 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000537 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
538 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands53c954f2008-01-10 10:28:30 +0000539 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
540 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesenda2d8062008-09-04 00:47:13 +0000541 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
542 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
543 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
544 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
545 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000546 }
547
Hal Finkel65298572011-10-17 18:53:03 +0000548 setMinFunctionAlignment(2);
549 if (PPCSubTarget.isDarwin())
550 setPrefFunctionAlignment(4);
Eli Friedman2518f832011-05-06 20:34:06 +0000551
Evan Cheng39e90022012-07-02 22:39:56 +0000552 if (isPPC64 && Subtarget->isJITCodeModel())
553 // Temporary workaround for the inability of PPC64 JIT to handle jump
554 // tables.
555 setSupportJumpTables(false);
556
Eli Friedman30a49e92011-08-03 21:06:02 +0000557 setInsertFencesForAtomic(true);
558
Hal Finkel21442b22013-09-11 23:05:25 +0000559 if (Subtarget->enableMachineScheduler())
560 setSchedulingPreference(Sched::Source);
561 else
562 setSchedulingPreference(Sched::Hybrid);
Hal Finkel6f0ae782011-11-22 16:21:04 +0000563
Chris Lattnerf22556d2005-08-16 17:14:42 +0000564 computeRegisterProperties();
Hal Finkel742b5352012-08-28 16:12:39 +0000565
566 // The Freescale cores does better with aggressive inlining of memcpy and
567 // friends. Gcc uses same threshold of 128 bytes (= 32 word stores).
568 if (Subtarget->getDarwinDirective() == PPC::DIR_E500mc ||
569 Subtarget->getDarwinDirective() == PPC::DIR_E5500) {
Jim Grosbach341ad3e2013-02-20 21:13:59 +0000570 MaxStoresPerMemset = 32;
571 MaxStoresPerMemsetOptSize = 16;
572 MaxStoresPerMemcpy = 32;
573 MaxStoresPerMemcpyOptSize = 8;
574 MaxStoresPerMemmove = 32;
575 MaxStoresPerMemmoveOptSize = 8;
Hal Finkel742b5352012-08-28 16:12:39 +0000576
577 setPrefFunctionAlignment(4);
Hal Finkel742b5352012-08-28 16:12:39 +0000578 }
Chris Lattnerf22556d2005-08-16 17:14:42 +0000579}
580
Dale Johannesencbde4c22008-02-28 22:31:51 +0000581/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
582/// function arguments in the caller parameter area.
Chris Lattner229907c2011-07-18 04:54:35 +0000583unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
Dan Gohman57c732b2010-04-21 01:34:56 +0000584 const TargetMachine &TM = getTargetMachine();
Dale Johannesencbde4c22008-02-28 22:31:51 +0000585 // Darwin passes everything on 4 byte boundary.
586 if (TM.getSubtarget<PPCSubtarget>().isDarwin())
587 return 4;
Roman Divackyb9663cc2012-04-02 15:49:30 +0000588
589 // 16byte and wider vectors are passed on 16byte boundary.
590 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
591 if (VTy->getBitWidth() >= 128)
592 return 16;
593
594 // The rest is 8 on PPC64 and 4 on PPC32 boundary.
595 if (PPCSubTarget.isPPC64())
596 return 8;
597
Dale Johannesencbde4c22008-02-28 22:31:51 +0000598 return 4;
599}
600
Chris Lattner347ed8a2006-01-09 23:52:17 +0000601const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
602 switch (Opcode) {
603 default: return 0;
Evan Cheng32e376f2008-07-12 02:23:19 +0000604 case PPCISD::FSEL: return "PPCISD::FSEL";
605 case PPCISD::FCFID: return "PPCISD::FCFID";
606 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
607 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Hal Finkel2e103312013-04-03 04:01:11 +0000608 case PPCISD::FRE: return "PPCISD::FRE";
609 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE";
Evan Cheng32e376f2008-07-12 02:23:19 +0000610 case PPCISD::STFIWX: return "PPCISD::STFIWX";
611 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
612 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
613 case PPCISD::VPERM: return "PPCISD::VPERM";
614 case PPCISD::Hi: return "PPCISD::Hi";
615 case PPCISD::Lo: return "PPCISD::Lo";
Tilmann Schellerd1aaa322009-08-15 11:54:46 +0000616 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY";
Tilmann Scheller79fef932009-12-18 13:00:15 +0000617 case PPCISD::TOC_RESTORE: return "PPCISD::TOC_RESTORE";
618 case PPCISD::LOAD: return "PPCISD::LOAD";
619 case PPCISD::LOAD_TOC: return "PPCISD::LOAD_TOC";
Evan Cheng32e376f2008-07-12 02:23:19 +0000620 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
621 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
622 case PPCISD::SRL: return "PPCISD::SRL";
623 case PPCISD::SRA: return "PPCISD::SRA";
624 case PPCISD::SHL: return "PPCISD::SHL";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000625 case PPCISD::CALL: return "PPCISD::CALL";
626 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP";
Evan Cheng32e376f2008-07-12 02:23:19 +0000627 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000628 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Evan Cheng32e376f2008-07-12 02:23:19 +0000629 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkel756810f2013-03-21 21:37:52 +0000630 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
631 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Ulrich Weigandd5ebc622013-07-03 17:05:42 +0000632 case PPCISD::MFOCRF: return "PPCISD::MFOCRF";
Evan Cheng32e376f2008-07-12 02:23:19 +0000633 case PPCISD::VCMP: return "PPCISD::VCMP";
634 case PPCISD::VCMPo: return "PPCISD::VCMPo";
635 case PPCISD::LBRX: return "PPCISD::LBRX";
636 case PPCISD::STBRX: return "PPCISD::STBRX";
Evan Cheng32e376f2008-07-12 02:23:19 +0000637 case PPCISD::LARX: return "PPCISD::LARX";
638 case PPCISD::STCX: return "PPCISD::STCX";
639 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkel25c19922013-05-15 21:37:41 +0000640 case PPCISD::BDNZ: return "PPCISD::BDNZ";
641 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000642 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng32e376f2008-07-12 02:23:19 +0000643 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000644 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel5ab37802012-08-28 02:10:27 +0000645 case PPCISD::CR6SET: return "PPCISD::CR6SET";
646 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Bill Schmidt34627e32012-11-27 17:35:46 +0000647 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA";
648 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L";
649 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L";
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +0000650 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
651 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtca4a0c92012-12-04 16:18:08 +0000652 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidtc56f1d32012-12-11 20:30:11 +0000653 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
654 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
655 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR";
Bill Schmidt24b8dd62012-12-12 19:29:35 +0000656 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
657 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
658 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR";
659 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
660 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L";
Bill Schmidt51e79512013-02-20 15:50:31 +0000661 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT";
Bill Schmidta87a7e22013-05-14 19:35:45 +0000662 case PPCISD::SC: return "PPCISD::SC";
Chris Lattner347ed8a2006-01-09 23:52:17 +0000663 }
664}
665
Matt Arsenault758659232013-05-18 00:21:46 +0000666EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000667 if (!VT.isVector())
668 return MVT::i32;
669 return VT.changeVectorElementTypeToInteger();
Scott Michela6729e82008-03-10 15:42:14 +0000670}
671
Chris Lattner4211ca92006-04-14 06:01:58 +0000672//===----------------------------------------------------------------------===//
673// Node matching predicates, for use by the tblgen matching code.
674//===----------------------------------------------------------------------===//
675
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000676/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000677static bool isFloatingPointZero(SDValue Op) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000678 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000679 return CFP->getValueAPF().isZero();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000680 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000681 // Maybe this has already been legalized into the constant pool?
682 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000683 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000684 return CFP->getValueAPF().isZero();
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000685 }
686 return false;
687}
688
Chris Lattnere8b83b42006-04-06 17:23:16 +0000689/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
690/// true if Op is undef or if it matches the specified value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000691static bool isConstantOrUndef(int Op, int Val) {
692 return Op < 0 || Op == Val;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000693}
694
695/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
696/// VPKUHUM instruction.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000697bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000698 if (!isUnary) {
699 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000700 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000701 return false;
702 } else {
703 for (unsigned i = 0; i != 8; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000704 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1) ||
705 !isConstantOrUndef(N->getMaskElt(i+8), i*2+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000706 return false;
707 }
Chris Lattner1d338192006-04-06 18:26:28 +0000708 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000709}
710
711/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
712/// VPKUWUM instruction.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000713bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000714 if (!isUnary) {
715 for (unsigned i = 0; i != 16; i += 2)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000716 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
717 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000718 return false;
719 } else {
720 for (unsigned i = 0; i != 8; i += 2)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000721 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
722 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3) ||
723 !isConstantOrUndef(N->getMaskElt(i+8), i*2+2) ||
724 !isConstantOrUndef(N->getMaskElt(i+9), i*2+3))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000725 return false;
726 }
Chris Lattner1d338192006-04-06 18:26:28 +0000727 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000728}
729
Chris Lattnerf38e0332006-04-06 22:02:42 +0000730/// isVMerge - Common function, used to match vmrg* shuffles.
731///
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000732static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnerf38e0332006-04-06 22:02:42 +0000733 unsigned LHSStart, unsigned RHSStart) {
Owen Anderson9f944592009-08-11 20:47:22 +0000734 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000735 "PPC only supports shuffles by bytes!");
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000736 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
737 "Unsupported merge size!");
Scott Michelcf0da6c2009-02-17 22:15:04 +0000738
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000739 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
740 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000741 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000742 LHSStart+j+i*UnitSize) ||
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000743 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000744 RHSStart+j+i*UnitSize))
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000745 return false;
746 }
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000747 return true;
Chris Lattnerf38e0332006-04-06 22:02:42 +0000748}
749
750/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
751/// a VRGL* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peck527da1b2010-11-23 03:31:01 +0000752bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000753 bool isUnary) {
Chris Lattnerf38e0332006-04-06 22:02:42 +0000754 if (!isUnary)
755 return isVMerge(N, UnitSize, 8, 24);
756 return isVMerge(N, UnitSize, 8, 8);
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000757}
758
759/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
760/// a VRGH* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peck527da1b2010-11-23 03:31:01 +0000761bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000762 bool isUnary) {
Chris Lattnerf38e0332006-04-06 22:02:42 +0000763 if (!isUnary)
764 return isVMerge(N, UnitSize, 0, 16);
765 return isVMerge(N, UnitSize, 0, 0);
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000766}
767
768
Chris Lattner1d338192006-04-06 18:26:28 +0000769/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
770/// amount, otherwise return -1.
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000771int PPC::isVSLDOIShuffleMask(SDNode *N, bool isUnary) {
Owen Anderson9f944592009-08-11 20:47:22 +0000772 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000773 "PPC only supports shuffles by bytes!");
774
775 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Wesley Peck527da1b2010-11-23 03:31:01 +0000776
Chris Lattner1d338192006-04-06 18:26:28 +0000777 // Find the first non-undef value in the shuffle mask.
778 unsigned i;
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000779 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattner1d338192006-04-06 18:26:28 +0000780 /*search*/;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000781
Chris Lattner1d338192006-04-06 18:26:28 +0000782 if (i == 16) return -1; // all undef.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000783
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000784 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattner1d338192006-04-06 18:26:28 +0000785 // numbered from this value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000786 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattner1d338192006-04-06 18:26:28 +0000787 if (ShiftAmt < i) return -1;
788 ShiftAmt -= i;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000789
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000790 if (!isUnary) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000791 // Check the rest of the elements to see if they are consecutive.
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000792 for (++i; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000793 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000794 return -1;
795 } else {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000796 // Check the rest of the elements to see if they are consecutive.
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000797 for (++i; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000798 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000799 return -1;
800 }
Chris Lattner1d338192006-04-06 18:26:28 +0000801 return ShiftAmt;
802}
Chris Lattnerffc47562006-03-20 06:33:01 +0000803
804/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
805/// specifies a splat of a single element that is suitable for input to
806/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000807bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson9f944592009-08-11 20:47:22 +0000808 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner95c7adc2006-04-04 17:25:31 +0000809 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelcf0da6c2009-02-17 22:15:04 +0000810
Chris Lattnera8fbb6d2006-03-20 06:37:44 +0000811 // This is a splat operation if each element of the permute is the same, and
812 // if the value doesn't reference the second vector.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000813 unsigned ElementBase = N->getMaskElt(0);
Wesley Peck527da1b2010-11-23 03:31:01 +0000814
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000815 // FIXME: Handle UNDEF elements too!
816 if (ElementBase >= 16)
Chris Lattner95c7adc2006-04-04 17:25:31 +0000817 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000818
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000819 // Check that the indices are consecutive, in the case of a multi-byte element
820 // splatted with a v16i8 mask.
821 for (unsigned i = 1; i != EltSize; ++i)
822 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner95c7adc2006-04-04 17:25:31 +0000823 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000824
Chris Lattner95c7adc2006-04-04 17:25:31 +0000825 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000826 if (N->getMaskElt(i) < 0) continue;
Chris Lattner95c7adc2006-04-04 17:25:31 +0000827 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000828 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner95c7adc2006-04-04 17:25:31 +0000829 return false;
Chris Lattnera8fbb6d2006-03-20 06:37:44 +0000830 }
Chris Lattner95c7adc2006-04-04 17:25:31 +0000831 return true;
Chris Lattnerffc47562006-03-20 06:33:01 +0000832}
833
Evan Cheng581d2792007-07-30 07:51:22 +0000834/// isAllNegativeZeroVector - Returns true if all elements of build_vector
835/// are -0.0.
836bool PPC::isAllNegativeZeroVector(SDNode *N) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000837 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
838
839 APInt APVal, APUndef;
840 unsigned BitSize;
841 bool HasAnyUndefs;
Wesley Peck527da1b2010-11-23 03:31:01 +0000842
Dale Johannesen5f4eecf2009-11-13 01:45:18 +0000843 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000844 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000845 return CFP->getValueAPF().isNegZero();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000846
Evan Cheng581d2792007-07-30 07:51:22 +0000847 return false;
848}
849
Chris Lattnerffc47562006-03-20 06:33:01 +0000850/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
851/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Chris Lattner95c7adc2006-04-04 17:25:31 +0000852unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000853 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
854 assert(isSplatShuffleMask(SVOp, EltSize));
855 return SVOp->getMaskElt(0) / EltSize;
Chris Lattnerffc47562006-03-20 06:33:01 +0000856}
857
Chris Lattner74cf9ff2006-04-12 17:37:20 +0000858/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattnerd71a1f92006-04-08 06:46:53 +0000859/// by using a vspltis[bhw] instruction of the specified element size, return
860/// the constant being splatted. The ByteSize field indicates the number of
861/// bytes of each element [124] -> [bhw].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000862SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
863 SDValue OpVal(0, 0);
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000864
865 // If ByteSize of the splat is bigger than the element size of the
866 // build_vector, then we have a case where we are checking for a splat where
867 // multiple elements of the buildvector are folded together into a single
868 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
869 unsigned EltSize = 16/N->getNumOperands();
870 if (EltSize < ByteSize) {
871 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000872 SDValue UniquedVals[4];
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000873 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelcf0da6c2009-02-17 22:15:04 +0000874
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000875 // See if all of the elements in the buildvector agree across.
876 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
877 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
878 // If the element isn't a constant, bail fully out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000879 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000880
Scott Michelcf0da6c2009-02-17 22:15:04 +0000881
Gabor Greiff304a7a2008-08-28 21:40:38 +0000882 if (UniquedVals[i&(Multiple-1)].getNode() == 0)
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000883 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
884 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000885 return SDValue(); // no match.
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000886 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000887
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000888 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
889 // either constant or undef values that are identical for each chunk. See
890 // if these chunks can form into a larger vspltis*.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000891
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000892 // Check to see if all of the leading entries are either 0 or -1. If
893 // neither, then this won't fit into the immediate field.
894 bool LeadingZero = true;
895 bool LeadingOnes = true;
896 for (unsigned i = 0; i != Multiple-1; ++i) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000897 if (UniquedVals[i].getNode() == 0) continue; // Must have been undefs.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000898
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000899 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
900 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
901 }
902 // Finally, check the least significant entry.
903 if (LeadingZero) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000904 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson9f944592009-08-11 20:47:22 +0000905 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
Dan Gohmaneffb8942008-09-12 16:56:44 +0000906 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000907 if (Val < 16)
Owen Anderson9f944592009-08-11 20:47:22 +0000908 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000909 }
910 if (LeadingOnes) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000911 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson9f944592009-08-11 20:47:22 +0000912 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
Dan Gohman6e054832008-09-26 21:54:37 +0000913 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000914 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Owen Anderson9f944592009-08-11 20:47:22 +0000915 return DAG.getTargetConstant(Val, MVT::i32);
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000916 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000917
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000918 return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000919 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000920
Chris Lattner2771e2c2006-03-25 06:12:06 +0000921 // Check to see if this buildvec has a single non-undef value in its elements.
922 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
923 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000924 if (OpVal.getNode() == 0)
Chris Lattner2771e2c2006-03-25 06:12:06 +0000925 OpVal = N->getOperand(i);
926 else if (OpVal != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000927 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000928 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000929
Gabor Greiff304a7a2008-08-28 21:40:38 +0000930 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000931
Eli Friedman9c6ab1a2009-05-24 02:03:36 +0000932 unsigned ValSizeInBytes = EltSize;
Nate Begeman1b392872006-03-28 04:15:58 +0000933 uint64_t Value = 0;
Chris Lattner2771e2c2006-03-25 06:12:06 +0000934 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +0000935 Value = CN->getZExtValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000936 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson9f944592009-08-11 20:47:22 +0000937 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000938 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner2771e2c2006-03-25 06:12:06 +0000939 }
940
941 // If the splat value is larger than the element value, then we can never do
942 // this splat. The only case that we could fit the replicated bits into our
943 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000944 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +0000945
Chris Lattner2771e2c2006-03-25 06:12:06 +0000946 // If the element value is larger than the splat value, cut it in half and
947 // check to see if the two halves are equal. Continue doing this until we
948 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
949 while (ValSizeInBytes > ByteSize) {
950 ValSizeInBytes >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000951
Chris Lattner2771e2c2006-03-25 06:12:06 +0000952 // If the top half equals the bottom half, we're still ok.
Chris Lattner39cc7172006-04-05 17:39:25 +0000953 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
954 (Value & ((1 << (8*ValSizeInBytes))-1)))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000955 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000956 }
957
958 // Properly sign extend the value.
Richard Smith228e6d42012-08-24 23:29:28 +0000959 int MaskVal = SignExtend32(Value, ByteSize * 8);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000960
Evan Chengb1ddc982006-03-26 09:52:32 +0000961 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000962 if (MaskVal == 0) return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000963
Chris Lattnerd71a1f92006-04-08 06:46:53 +0000964 // Finally, if this value fits in a 5 bit sext field, return it
Richard Smith228e6d42012-08-24 23:29:28 +0000965 if (SignExtend32<5>(MaskVal) == MaskVal)
Owen Anderson9f944592009-08-11 20:47:22 +0000966 return DAG.getTargetConstant(MaskVal, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000967 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000968}
969
Chris Lattner4211ca92006-04-14 06:01:58 +0000970//===----------------------------------------------------------------------===//
Chris Lattnera801fced2006-11-08 02:15:41 +0000971// Addressing Mode Selection
972//===----------------------------------------------------------------------===//
973
974/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
975/// or 64-bit immediate, and if the value can be accurately represented as a
976/// sign extension from a 16-bit value. If so, this returns true and the
977/// immediate.
978static bool isIntS16Immediate(SDNode *N, short &Imm) {
979 if (N->getOpcode() != ISD::Constant)
980 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000981
Dan Gohmaneffb8942008-09-12 16:56:44 +0000982 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson9f944592009-08-11 20:47:22 +0000983 if (N->getValueType(0) == MVT::i32)
Dan Gohmaneffb8942008-09-12 16:56:44 +0000984 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +0000985 else
Dan Gohmaneffb8942008-09-12 16:56:44 +0000986 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +0000987}
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000988static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000989 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnera801fced2006-11-08 02:15:41 +0000990}
991
992
993/// SelectAddressRegReg - Given the specified addressed, check to see if it
994/// can be represented as an indexed [r+r] operation. Returns false if it
995/// can be more efficiently represented with [r+imm].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000996bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
997 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +0000998 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +0000999 short imm = 0;
1000 if (N.getOpcode() == ISD::ADD) {
1001 if (isIntS16Immediate(N.getOperand(1), imm))
1002 return false; // r+i
1003 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1004 return false; // r+i
Scott Michelcf0da6c2009-02-17 22:15:04 +00001005
Chris Lattnera801fced2006-11-08 02:15:41 +00001006 Base = N.getOperand(0);
1007 Index = N.getOperand(1);
1008 return true;
1009 } else if (N.getOpcode() == ISD::OR) {
1010 if (isIntS16Immediate(N.getOperand(1), imm))
1011 return false; // r+i can fold it if we can.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001012
Chris Lattnera801fced2006-11-08 02:15:41 +00001013 // If this is an or of disjoint bitfields, we can codegen this as an add
1014 // (for better address arithmetic) if the LHS and RHS of the OR are provably
1015 // disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001016 APInt LHSKnownZero, LHSKnownOne;
1017 APInt RHSKnownZero, RHSKnownOne;
1018 DAG.ComputeMaskedBits(N.getOperand(0),
Dan Gohmanf19609a2008-02-27 01:23:58 +00001019 LHSKnownZero, LHSKnownOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001020
Dan Gohmanf19609a2008-02-27 01:23:58 +00001021 if (LHSKnownZero.getBoolValue()) {
1022 DAG.ComputeMaskedBits(N.getOperand(1),
Dan Gohmanf19609a2008-02-27 01:23:58 +00001023 RHSKnownZero, RHSKnownOne);
Chris Lattnera801fced2006-11-08 02:15:41 +00001024 // If all of the bits are known zero on the LHS or RHS, the add won't
1025 // carry.
Dan Gohman26854f22008-02-27 21:12:32 +00001026 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001027 Base = N.getOperand(0);
1028 Index = N.getOperand(1);
1029 return true;
1030 }
1031 }
1032 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001033
Chris Lattnera801fced2006-11-08 02:15:41 +00001034 return false;
1035}
1036
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001037// If we happen to be doing an i64 load or store into a stack slot that has
1038// less than a 4-byte alignment, then the frame-index elimination may need to
1039// use an indexed load or store instruction (because the offset may not be a
1040// multiple of 4). The extra register needed to hold the offset comes from the
1041// register scavenger, and it is possible that the scavenger will need to use
1042// an emergency spill slot. As a result, we need to make sure that a spill slot
1043// is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1044// stack slot.
1045static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1046 // FIXME: This does not handle the LWA case.
1047 if (VT != MVT::i64)
1048 return;
1049
Hal Finkel7ab3db52013-07-10 15:29:01 +00001050 // NOTE: We'll exclude negative FIs here, which come from argument
1051 // lowering, because there are no known test cases triggering this problem
1052 // using packed structures (or similar). We can remove this exclusion if
1053 // we find such a test case. The reason why this is so test-case driven is
1054 // because this entire 'fixup' is only to prevent crashes (from the
1055 // register scavenger) on not-really-valid inputs. For example, if we have:
1056 // %a = alloca i1
1057 // %b = bitcast i1* %a to i64*
1058 // store i64* a, i64 b
1059 // then the store should really be marked as 'align 1', but is not. If it
1060 // were marked as 'align 1' then the indexed form would have been
1061 // instruction-selected initially, and the problem this 'fixup' is preventing
1062 // won't happen regardless.
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001063 if (FrameIdx < 0)
1064 return;
1065
1066 MachineFunction &MF = DAG.getMachineFunction();
1067 MachineFrameInfo *MFI = MF.getFrameInfo();
1068
1069 unsigned Align = MFI->getObjectAlignment(FrameIdx);
1070 if (Align >= 4)
1071 return;
1072
1073 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1074 FuncInfo->setHasNonRISpills();
1075}
1076
Chris Lattnera801fced2006-11-08 02:15:41 +00001077/// Returns true if the address N can be represented by a base register plus
1078/// a signed 16-bit displacement [r+imm], and if it is not better
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001079/// represented as reg+reg. If Aligned is true, only accept displacements
1080/// suitable for STD and friends, i.e. multiples of 4.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001081bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman02b93132009-01-15 16:29:45 +00001082 SDValue &Base,
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001083 SelectionDAG &DAG,
1084 bool Aligned) const {
Dale Johannesenab8e4422009-02-06 19:16:40 +00001085 // FIXME dl should come from parent load or store, not from address
Andrew Trickef9de2a2013-05-25 02:42:55 +00001086 SDLoc dl(N);
Chris Lattnera801fced2006-11-08 02:15:41 +00001087 // If this can be more profitably realized as r+r, fail.
1088 if (SelectAddressRegReg(N, Disp, Base, DAG))
1089 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001090
Chris Lattnera801fced2006-11-08 02:15:41 +00001091 if (N.getOpcode() == ISD::ADD) {
1092 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001093 if (isIntS16Immediate(N.getOperand(1), imm) &&
1094 (!Aligned || (imm & 3) == 0)) {
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001095 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001096 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1097 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001098 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001099 } else {
1100 Base = N.getOperand(0);
1101 }
1102 return true; // [r+i]
1103 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1104 // Match LOAD (ADD (X, Lo(G))).
Gabor Greifc8a9abe2012-04-20 11:41:38 +00001105 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnera801fced2006-11-08 02:15:41 +00001106 && "Cannot handle constant offsets yet!");
1107 Disp = N.getOperand(1).getOperand(0); // The global address.
1108 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
Roman Divackye3f15c982012-06-04 17:36:38 +00001109 Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
Chris Lattnera801fced2006-11-08 02:15:41 +00001110 Disp.getOpcode() == ISD::TargetConstantPool ||
1111 Disp.getOpcode() == ISD::TargetJumpTable);
1112 Base = N.getOperand(0);
1113 return true; // [&g+r]
1114 }
1115 } else if (N.getOpcode() == ISD::OR) {
1116 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001117 if (isIntS16Immediate(N.getOperand(1), imm) &&
1118 (!Aligned || (imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001119 // If this is an or of disjoint bitfields, we can codegen this as an add
1120 // (for better address arithmetic) if the LHS and RHS of the OR are
1121 // provably disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001122 APInt LHSKnownZero, LHSKnownOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001123 DAG.ComputeMaskedBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
Bill Wendling63061832008-03-24 23:16:37 +00001124
Dan Gohmanf19609a2008-02-27 01:23:58 +00001125 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001126 // If all of the bits are known zero on the LHS or RHS, the add won't
1127 // carry.
1128 Base = N.getOperand(0);
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001129 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001130 return true;
1131 }
1132 }
1133 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1134 // Loading from a constant address.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001135
Chris Lattnera801fced2006-11-08 02:15:41 +00001136 // If this address fits entirely in a 16-bit sext immediate field, codegen
1137 // this as "d, 0"
1138 short Imm;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001139 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001140 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
Hal Finkelf70c41e2013-03-21 23:45:03 +00001141 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1142 CN->getValueType(0));
Chris Lattnera801fced2006-11-08 02:15:41 +00001143 return true;
1144 }
Chris Lattner4a9c0bb2007-02-17 06:44:03 +00001145
1146 // Handle 32-bit sext immediates with LIS + addr mode.
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001147 if ((CN->getValueType(0) == MVT::i32 ||
1148 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1149 (!Aligned || (CN->getZExtValue() & 3) == 0)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001150 int Addr = (int)CN->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001151
Chris Lattnera801fced2006-11-08 02:15:41 +00001152 // Otherwise, break this down into an LIS + disp.
Owen Anderson9f944592009-08-11 20:47:22 +00001153 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001154
Owen Anderson9f944592009-08-11 20:47:22 +00001155 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
1156 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dan Gohman32f71d72009-09-25 18:54:59 +00001157 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnera801fced2006-11-08 02:15:41 +00001158 return true;
1159 }
1160 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001161
Chris Lattnera801fced2006-11-08 02:15:41 +00001162 Disp = DAG.getTargetConstant(0, getPointerTy());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001163 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001164 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001165 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1166 } else
Chris Lattnera801fced2006-11-08 02:15:41 +00001167 Base = N;
1168 return true; // [r+0]
1169}
1170
1171/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1172/// represented as an indexed [r+r] operation.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001173bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1174 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001175 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001176 // Check to see if we can easily represent this as an [r+r] address. This
1177 // will fail if it thinks that the address is more profitably represented as
1178 // reg+imm, e.g. where imm = 0.
1179 if (SelectAddressRegReg(N, Base, Index, DAG))
1180 return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001181
Chris Lattnera801fced2006-11-08 02:15:41 +00001182 // If the operand is an addition, always emit this as [r+r], since this is
1183 // better (for code size, and execution, as the memop does the add for free)
1184 // than emitting an explicit add.
1185 if (N.getOpcode() == ISD::ADD) {
1186 Base = N.getOperand(0);
1187 Index = N.getOperand(1);
1188 return true;
1189 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001190
Chris Lattnera801fced2006-11-08 02:15:41 +00001191 // Otherwise, do it the hard way, using R0 as the base register.
Hal Finkelf70c41e2013-03-21 23:45:03 +00001192 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1193 N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001194 Index = N;
1195 return true;
1196}
1197
Chris Lattnera801fced2006-11-08 02:15:41 +00001198/// getPreIndexedAddressParts - returns true by value, base pointer and
1199/// offset pointer and addressing mode by reference if the node's address
1200/// can be legally represented as pre-indexed load / store address.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001201bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1202 SDValue &Offset,
Evan Chengb1500072006-11-09 17:55:04 +00001203 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +00001204 SelectionDAG &DAG) const {
Hal Finkel595817e2012-06-04 02:21:00 +00001205 if (DisablePPCPreinc) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001206
Ulrich Weigande90b0222013-03-22 14:58:48 +00001207 bool isLoad = true;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001208 SDValue Ptr;
Owen Anderson53aa7a92009-08-10 22:56:29 +00001209 EVT VT;
Hal Finkelb09680b2013-03-18 23:00:58 +00001210 unsigned Alignment;
Chris Lattnera801fced2006-11-08 02:15:41 +00001211 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1212 Ptr = LD->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001213 VT = LD->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001214 Alignment = LD->getAlignment();
Chris Lattnera801fced2006-11-08 02:15:41 +00001215 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner68371252006-11-14 01:38:31 +00001216 Ptr = ST->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001217 VT = ST->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001218 Alignment = ST->getAlignment();
Ulrich Weigande90b0222013-03-22 14:58:48 +00001219 isLoad = false;
Chris Lattnera801fced2006-11-08 02:15:41 +00001220 } else
1221 return false;
1222
Chris Lattner68371252006-11-14 01:38:31 +00001223 // PowerPC doesn't have preinc load/store instructions for vectors.
Duncan Sands13237ac2008-06-06 12:08:01 +00001224 if (VT.isVector())
Chris Lattner68371252006-11-14 01:38:31 +00001225 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001226
Ulrich Weigande90b0222013-03-22 14:58:48 +00001227 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1228
1229 // Common code will reject creating a pre-inc form if the base pointer
1230 // is a frame index, or if N is a store and the base pointer is either
1231 // the same as or a predecessor of the value being stored. Check for
1232 // those situations here, and try with swapped Base/Offset instead.
1233 bool Swap = false;
1234
1235 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1236 Swap = true;
1237 else if (!isLoad) {
1238 SDValue Val = cast<StoreSDNode>(N)->getValue();
1239 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1240 Swap = true;
1241 }
1242
1243 if (Swap)
1244 std::swap(Base, Offset);
1245
Hal Finkelca542be2012-06-20 15:43:03 +00001246 AM = ISD::PRE_INC;
1247 return true;
Hal Finkel1cc27e42012-06-19 02:34:32 +00001248 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001249
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001250 // LDU/STU can only handle immediates that are a multiple of 4.
Owen Anderson9f944592009-08-11 20:47:22 +00001251 if (VT != MVT::i64) {
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001252 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
Chris Lattner474b5b72006-11-15 19:55:13 +00001253 return false;
1254 } else {
Hal Finkelb09680b2013-03-18 23:00:58 +00001255 // LDU/STU need an address with at least 4-byte alignment.
1256 if (Alignment < 4)
1257 return false;
1258
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001259 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
Chris Lattner474b5b72006-11-15 19:55:13 +00001260 return false;
1261 }
Chris Lattnerb314b152006-11-11 00:08:42 +00001262
Chris Lattnerb314b152006-11-11 00:08:42 +00001263 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner474b5b72006-11-15 19:55:13 +00001264 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1265 // sext i32 to i64 when addr mode is r+i.
Owen Anderson9f944592009-08-11 20:47:22 +00001266 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerb314b152006-11-11 00:08:42 +00001267 LD->getExtensionType() == ISD::SEXTLOAD &&
1268 isa<ConstantSDNode>(Offset))
1269 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001270 }
1271
Chris Lattnerce645542006-11-10 02:08:47 +00001272 AM = ISD::PRE_INC;
1273 return true;
Chris Lattnera801fced2006-11-08 02:15:41 +00001274}
1275
1276//===----------------------------------------------------------------------===//
Chris Lattner4211ca92006-04-14 06:01:58 +00001277// LowerOperation implementation
1278//===----------------------------------------------------------------------===//
1279
Chris Lattneredb9d842010-11-15 02:46:57 +00001280/// GetLabelAccessInfo - Return true if we should reference labels using a
1281/// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1282static bool GetLabelAccessInfo(const TargetMachine &TM, unsigned &HiOpFlags,
Chris Lattnerdd6df842010-11-15 03:13:19 +00001283 unsigned &LoOpFlags, const GlobalValue *GV = 0) {
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001284 HiOpFlags = PPCII::MO_HA;
1285 LoOpFlags = PPCII::MO_LO;
Wesley Peck527da1b2010-11-23 03:31:01 +00001286
Chris Lattneredb9d842010-11-15 02:46:57 +00001287 // Don't use the pic base if not in PIC relocation model. Or if we are on a
1288 // non-darwin platform. We don't support PIC on other platforms yet.
Wesley Peck527da1b2010-11-23 03:31:01 +00001289 bool isPIC = TM.getRelocationModel() == Reloc::PIC_ &&
Chris Lattneredb9d842010-11-15 02:46:57 +00001290 TM.getSubtarget<PPCSubtarget>().isDarwin();
Chris Lattnerdd6df842010-11-15 03:13:19 +00001291 if (isPIC) {
1292 HiOpFlags |= PPCII::MO_PIC_FLAG;
1293 LoOpFlags |= PPCII::MO_PIC_FLAG;
1294 }
1295
1296 // If this is a reference to a global value that requires a non-lazy-ptr, make
1297 // sure that instruction lowering adds it.
1298 if (GV && TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV, TM)) {
1299 HiOpFlags |= PPCII::MO_NLP_FLAG;
1300 LoOpFlags |= PPCII::MO_NLP_FLAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00001301
Chris Lattnerdd6df842010-11-15 03:13:19 +00001302 if (GV->hasHiddenVisibility()) {
1303 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1304 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1305 }
1306 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001307
Chris Lattneredb9d842010-11-15 02:46:57 +00001308 return isPIC;
1309}
1310
1311static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1312 SelectionDAG &DAG) {
1313 EVT PtrVT = HiPart.getValueType();
1314 SDValue Zero = DAG.getConstant(0, PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001315 SDLoc DL(HiPart);
Chris Lattneredb9d842010-11-15 02:46:57 +00001316
1317 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1318 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
Wesley Peck527da1b2010-11-23 03:31:01 +00001319
Chris Lattneredb9d842010-11-15 02:46:57 +00001320 // With PIC, the first instruction is actually "GR+hi(&G)".
1321 if (isPIC)
1322 Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1323 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
Wesley Peck527da1b2010-11-23 03:31:01 +00001324
Chris Lattneredb9d842010-11-15 02:46:57 +00001325 // Generate non-pic code that has direct accesses to the constant pool.
1326 // The address of the global is just (hi(&g)+lo(&g)).
1327 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1328}
1329
Scott Michelcf0da6c2009-02-17 22:15:04 +00001330SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001331 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001332 EVT PtrVT = Op.getValueType();
Chris Lattner4211ca92006-04-14 06:01:58 +00001333 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001334 const Constant *C = CP->getConstVal();
Chris Lattner4211ca92006-04-14 06:01:58 +00001335
Roman Divackyace47072012-08-24 16:26:02 +00001336 // 64-bit SVR4 ABI code is always position-independent.
1337 // The actual address of the GlobalValue is stored in the TOC.
1338 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1339 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001340 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001341 DAG.getRegister(PPC::X2, MVT::i64));
1342 }
1343
Chris Lattneredb9d842010-11-15 02:46:57 +00001344 unsigned MOHiFlag, MOLoFlag;
1345 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1346 SDValue CPIHi =
1347 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1348 SDValue CPILo =
1349 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1350 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00001351}
1352
Dan Gohman21cea8a2010-04-17 15:26:15 +00001353SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001354 EVT PtrVT = Op.getValueType();
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001355 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peck527da1b2010-11-23 03:31:01 +00001356
Roman Divackyace47072012-08-24 16:26:02 +00001357 // 64-bit SVR4 ABI code is always position-independent.
1358 // The actual address of the GlobalValue is stored in the TOC.
1359 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1360 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001361 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001362 DAG.getRegister(PPC::X2, MVT::i64));
1363 }
1364
Chris Lattneredb9d842010-11-15 02:46:57 +00001365 unsigned MOHiFlag, MOLoFlag;
1366 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1367 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1368 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1369 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio09d73c02007-07-11 17:19:51 +00001370}
1371
Dan Gohman21cea8a2010-04-17 15:26:15 +00001372SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1373 SelectionDAG &DAG) const {
Bob Wilsonf84f7102009-11-04 21:31:18 +00001374 EVT PtrVT = Op.getValueType();
Bob Wilsonf84f7102009-11-04 21:31:18 +00001375
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001376 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Wesley Peck527da1b2010-11-23 03:31:01 +00001377
Chris Lattneredb9d842010-11-15 02:46:57 +00001378 unsigned MOHiFlag, MOLoFlag;
1379 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
Michael Liaoabb87d42012-09-12 21:43:09 +00001380 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1381 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattneredb9d842010-11-15 02:46:57 +00001382 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1383}
1384
Roman Divackye3f15c982012-06-04 17:36:38 +00001385SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1386 SelectionDAG &DAG) const {
1387
1388 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001389 SDLoc dl(GA);
Roman Divackye3f15c982012-06-04 17:36:38 +00001390 const GlobalValue *GV = GA->getGlobal();
1391 EVT PtrVT = getPointerTy();
1392 bool is64bit = PPCSubTarget.isPPC64();
1393
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001394 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackye3f15c982012-06-04 17:36:38 +00001395
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001396 if (Model == TLSModel::LocalExec) {
1397 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001398 PPCII::MO_TPREL_HA);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001399 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001400 PPCII::MO_TPREL_LO);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001401 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1402 is64bit ? MVT::i64 : MVT::i32);
1403 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1404 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1405 }
Roman Divackye3f15c982012-06-04 17:36:38 +00001406
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001407 if (!is64bit)
1408 llvm_unreachable("only local-exec is currently supported for ppc32");
1409
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001410 if (Model == TLSModel::InitialExec) {
Bill Schmidt732eb912012-12-13 18:45:54 +00001411 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001412 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1413 PPCII::MO_TLS);
Bill Schmidt732eb912012-12-13 18:45:54 +00001414 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +00001415 SDValue TPOffsetHi = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1416 PtrVT, GOTReg, TGA);
1417 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
1418 PtrVT, TGA, TPOffsetHi);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001419 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001420 }
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001421
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001422 if (Model == TLSModel::GeneralDynamic) {
1423 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1424 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1425 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1426 GOTReg, TGA);
1427 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl, PtrVT,
1428 GOTEntryHi, TGA);
1429
1430 // We need a chain node, and don't have one handy. The underlying
1431 // call has no side effects, so using the function entry node
1432 // suffices.
1433 SDValue Chain = DAG.getEntryNode();
1434 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1435 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1436 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLS_ADDR, dl,
1437 PtrVT, ParmReg, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001438 // The return value from GET_TLS_ADDR really is in X3 already, but
1439 // some hacks are needed here to tie everything together. The extra
1440 // copies dissolve during subsequent transforms.
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001441 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1442 return DAG.getCopyFromReg(Chain, dl, PPC::X3, PtrVT);
1443 }
1444
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001445 if (Model == TLSModel::LocalDynamic) {
1446 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1447 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1448 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1449 GOTReg, TGA);
1450 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT,
1451 GOTEntryHi, TGA);
1452
1453 // We need a chain node, and don't have one handy. The underlying
1454 // call has no side effects, so using the function entry node
1455 // suffices.
1456 SDValue Chain = DAG.getEntryNode();
1457 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1458 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1459 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLSLD_ADDR, dl,
1460 PtrVT, ParmReg, TGA);
1461 // The return value from GET_TLSLD_ADDR really is in X3 already, but
1462 // some hacks are needed here to tie everything together. The extra
1463 // copies dissolve during subsequent transforms.
1464 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1465 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, PtrVT,
Bill Schmidt9ed4dbc2012-12-13 20:57:10 +00001466 Chain, ParmReg, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001467 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1468 }
1469
1470 llvm_unreachable("Unknown TLS model!");
Roman Divackye3f15c982012-06-04 17:36:38 +00001471}
1472
Chris Lattneredb9d842010-11-15 02:46:57 +00001473SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1474 SelectionDAG &DAG) const {
1475 EVT PtrVT = Op.getValueType();
1476 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001477 SDLoc DL(GSDN);
Chris Lattneredb9d842010-11-15 02:46:57 +00001478 const GlobalValue *GV = GSDN->getGlobal();
1479
Chris Lattneredb9d842010-11-15 02:46:57 +00001480 // 64-bit SVR4 ABI code is always position-independent.
1481 // The actual address of the GlobalValue is stored in the TOC.
1482 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1483 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1484 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1485 DAG.getRegister(PPC::X2, MVT::i64));
1486 }
1487
Chris Lattnerdd6df842010-11-15 03:13:19 +00001488 unsigned MOHiFlag, MOLoFlag;
1489 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag, GV);
Chris Lattneredb9d842010-11-15 02:46:57 +00001490
Chris Lattnerdd6df842010-11-15 03:13:19 +00001491 SDValue GAHi =
1492 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1493 SDValue GALo =
1494 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peck527da1b2010-11-23 03:31:01 +00001495
Chris Lattnerdd6df842010-11-15 03:13:19 +00001496 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00001497
Chris Lattnerdd6df842010-11-15 03:13:19 +00001498 // If the global reference is actually to a non-lazy-pointer, we have to do an
1499 // extra load to get the address of the global.
1500 if (MOHiFlag & PPCII::MO_NLP_FLAG)
1501 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001502 false, false, false, 0);
Chris Lattnerdd6df842010-11-15 03:13:19 +00001503 return Ptr;
Chris Lattner4211ca92006-04-14 06:01:58 +00001504}
1505
Dan Gohman21cea8a2010-04-17 15:26:15 +00001506SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00001507 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001508 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001509
Chris Lattner4211ca92006-04-14 06:01:58 +00001510 // If we're comparing for equality to zero, expose the fact that this is
1511 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1512 // fold the new nodes.
1513 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1514 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001515 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001516 SDValue Zext = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00001517 if (VT.bitsLT(MVT::i32)) {
1518 VT = MVT::i32;
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001519 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001520 }
Duncan Sands13237ac2008-06-06 12:08:01 +00001521 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001522 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1523 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson9f944592009-08-11 20:47:22 +00001524 DAG.getConstant(Log2b, MVT::i32));
1525 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner4211ca92006-04-14 06:01:58 +00001526 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001527 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner4211ca92006-04-14 06:01:58 +00001528 // optimized. FIXME: revisit this when we can custom lower all setcc
1529 // optimizations.
1530 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001531 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001532 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001533
Chris Lattner4211ca92006-04-14 06:01:58 +00001534 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattner97ff46b2006-11-14 05:28:08 +00001535 // by xor'ing the rhs with the lhs, which is faster than setting a
1536 // condition register, reading it back out, and masking the correct bit. The
1537 // normal approach here uses sub to do this instead of xor. Using xor exposes
1538 // the result to other bit-twiddling opportunities.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001539 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00001540 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001541 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001542 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner4211ca92006-04-14 06:01:58 +00001543 Op.getOperand(1));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001544 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner4211ca92006-04-14 06:01:58 +00001545 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001546 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001547}
1548
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001549SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001550 const PPCSubtarget &Subtarget) const {
Roman Divacky4394e682011-06-28 15:30:42 +00001551 SDNode *Node = Op.getNode();
1552 EVT VT = Node->getValueType(0);
1553 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1554 SDValue InChain = Node->getOperand(0);
1555 SDValue VAListPtr = Node->getOperand(1);
1556 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001557 SDLoc dl(Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001558
Roman Divacky4394e682011-06-28 15:30:42 +00001559 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1560
1561 // gpr_index
1562 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1563 VAListPtr, MachinePointerInfo(SV), MVT::i8,
1564 false, false, 0);
1565 InChain = GprIndex.getValue(1);
1566
1567 if (VT == MVT::i64) {
1568 // Check if GprIndex is even
1569 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1570 DAG.getConstant(1, MVT::i32));
1571 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1572 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1573 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1574 DAG.getConstant(1, MVT::i32));
1575 // Align GprIndex to be even if it isn't
1576 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1577 GprIndex);
1578 }
1579
1580 // fpr index is 1 byte after gpr
1581 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1582 DAG.getConstant(1, MVT::i32));
1583
1584 // fpr
1585 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1586 FprPtr, MachinePointerInfo(SV), MVT::i8,
1587 false, false, 0);
1588 InChain = FprIndex.getValue(1);
1589
1590 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1591 DAG.getConstant(8, MVT::i32));
1592
1593 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1594 DAG.getConstant(4, MVT::i32));
1595
1596 // areas
1597 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001598 MachinePointerInfo(), false, false,
1599 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001600 InChain = OverflowArea.getValue(1);
1601
1602 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001603 MachinePointerInfo(), false, false,
1604 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001605 InChain = RegSaveArea.getValue(1);
1606
1607 // select overflow_area if index > 8
1608 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1609 DAG.getConstant(8, MVT::i32), ISD::SETLT);
1610
Roman Divacky4394e682011-06-28 15:30:42 +00001611 // adjustment constant gpr_index * 4/8
1612 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1613 VT.isInteger() ? GprIndex : FprIndex,
1614 DAG.getConstant(VT.isInteger() ? 4 : 8,
1615 MVT::i32));
1616
1617 // OurReg = RegSaveArea + RegConstant
1618 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1619 RegConstant);
1620
1621 // Floating types are 32 bytes into RegSaveArea
1622 if (VT.isFloatingPoint())
1623 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1624 DAG.getConstant(32, MVT::i32));
1625
1626 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1627 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1628 VT.isInteger() ? GprIndex : FprIndex,
1629 DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1630 MVT::i32));
1631
1632 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1633 VT.isInteger() ? VAListPtr : FprPtr,
1634 MachinePointerInfo(SV),
1635 MVT::i8, false, false, 0);
1636
1637 // determine if we should load from reg_save_area or overflow_area
1638 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1639
1640 // increase overflow_area by 4/8 if gpr/fpr > 8
1641 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1642 DAG.getConstant(VT.isInteger() ? 4 : 8,
1643 MVT::i32));
1644
1645 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1646 OverflowAreaPlusN);
1647
1648 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
1649 OverflowAreaPtr,
1650 MachinePointerInfo(),
1651 MVT::i32, false, false, 0);
1652
NAKAMURA Takumi8ad54e02012-08-30 15:52:23 +00001653 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001654 false, false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001655}
1656
Roman Divackyc3825df2013-07-25 21:36:47 +00001657SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
1658 const PPCSubtarget &Subtarget) const {
1659 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
1660
1661 // We have to copy the entire va_list struct:
1662 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
1663 return DAG.getMemcpy(Op.getOperand(0), Op,
1664 Op.getOperand(1), Op.getOperand(2),
1665 DAG.getConstant(12, MVT::i32), 8, false, true,
1666 MachinePointerInfo(), MachinePointerInfo());
1667}
1668
Duncan Sandsa0984362011-09-06 13:37:06 +00001669SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
1670 SelectionDAG &DAG) const {
1671 return Op.getOperand(0);
1672}
1673
1674SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
1675 SelectionDAG &DAG) const {
Bill Wendling95e1af22008-09-17 00:30:57 +00001676 SDValue Chain = Op.getOperand(0);
1677 SDValue Trmp = Op.getOperand(1); // trampoline
1678 SDValue FPtr = Op.getOperand(2); // nested function
1679 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickef9de2a2013-05-25 02:42:55 +00001680 SDLoc dl(Op);
Bill Wendling95e1af22008-09-17 00:30:57 +00001681
Owen Anderson53aa7a92009-08-10 22:56:29 +00001682 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00001683 bool isPPC64 = (PtrVT == MVT::i64);
Chris Lattner229907c2011-07-18 04:54:35 +00001684 Type *IntPtrTy =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001685 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
Chandler Carruth7ec50852012-11-01 08:07:29 +00001686 *DAG.getContext());
Bill Wendling95e1af22008-09-17 00:30:57 +00001687
Scott Michelcf0da6c2009-02-17 22:15:04 +00001688 TargetLowering::ArgListTy Args;
Bill Wendling95e1af22008-09-17 00:30:57 +00001689 TargetLowering::ArgListEntry Entry;
1690
1691 Entry.Ty = IntPtrTy;
1692 Entry.Node = Trmp; Args.push_back(Entry);
1693
1694 // TrampSize == (isPPC64 ? 48 : 40);
1695 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson9f944592009-08-11 20:47:22 +00001696 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling95e1af22008-09-17 00:30:57 +00001697 Args.push_back(Entry);
1698
1699 Entry.Node = FPtr; Args.push_back(Entry);
1700 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001701
Bill Wendling95e1af22008-09-17 00:30:57 +00001702 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Justin Holewinskiaa583972012-05-25 16:35:28 +00001703 TargetLowering::CallLoweringInfo CLI(Chain,
1704 Type::getVoidTy(*DAG.getContext()),
1705 false, false, false, false, 0,
1706 CallingConv::C,
Evan Cheng65f9d192012-02-28 18:51:51 +00001707 /*isTailCall=*/false,
Justin Holewinskiaa583972012-05-25 16:35:28 +00001708 /*doesNotRet=*/false,
1709 /*isReturnValueUsed=*/true,
Bill Wendling95e1af22008-09-17 00:30:57 +00001710 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
Bill Wendling78c5b7a2010-03-02 01:55:18 +00001711 Args, DAG, dl);
Justin Holewinskiaa583972012-05-25 16:35:28 +00001712 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Bill Wendling95e1af22008-09-17 00:30:57 +00001713
Duncan Sandsa0984362011-09-06 13:37:06 +00001714 return CallResult.second;
Bill Wendling95e1af22008-09-17 00:30:57 +00001715}
1716
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001717SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001718 const PPCSubtarget &Subtarget) const {
Dan Gohman31ae5862010-04-17 14:41:14 +00001719 MachineFunction &MF = DAG.getMachineFunction();
1720 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1721
Andrew Trickef9de2a2013-05-25 02:42:55 +00001722 SDLoc dl(Op);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001723
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001724 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001725 // vastart just stores the address of the VarArgsFrameIndex slot into the
1726 // memory location argument.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001727 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman31ae5862010-04-17 14:41:14 +00001728 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00001729 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner676c61d2010-09-21 18:41:36 +00001730 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
1731 MachinePointerInfo(SV),
David Greene87a5abe2010-02-15 16:56:53 +00001732 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001733 }
1734
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001735 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001736 // We suppose the given va_list is already allocated.
1737 //
1738 // typedef struct {
1739 // char gpr; /* index into the array of 8 GPRs
1740 // * stored in the register save area
1741 // * gpr=0 corresponds to r3,
1742 // * gpr=1 to r4, etc.
1743 // */
1744 // char fpr; /* index into the array of 8 FPRs
1745 // * stored in the register save area
1746 // * fpr=0 corresponds to f1,
1747 // * fpr=1 to f2, etc.
1748 // */
1749 // char *overflow_arg_area;
1750 // /* location on stack that holds
1751 // * the next overflow argument
1752 // */
1753 // char *reg_save_area;
1754 // /* where r3:r10 and f1:f8 (if saved)
1755 // * are stored
1756 // */
1757 // } va_list[1];
1758
1759
Dan Gohman31ae5862010-04-17 14:41:14 +00001760 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
1761 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001762
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001763
Owen Anderson53aa7a92009-08-10 22:56:29 +00001764 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001765
Dan Gohman31ae5862010-04-17 14:41:14 +00001766 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
1767 PtrVT);
1768 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
1769 PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001770
Duncan Sands13237ac2008-06-06 12:08:01 +00001771 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001772 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00001773
Duncan Sands13237ac2008-06-06 12:08:01 +00001774 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001775 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00001776
1777 uint64_t FPROffset = 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001778 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001779
Dan Gohman2d489b52008-02-06 22:27:42 +00001780 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001781
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001782 // Store first byte : number of int regs
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001783 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001784 Op.getOperand(1),
1785 MachinePointerInfo(SV),
1786 MVT::i8, false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001787 uint64_t nextOffset = FPROffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00001788 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001789 ConstFPROffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001790
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001791 // Store second byte : number of float regs
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001792 SDValue secondStore =
Chris Lattner6963c1f2010-09-21 17:42:31 +00001793 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
1794 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene87a5abe2010-02-15 16:56:53 +00001795 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001796 nextOffset += StackOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00001797 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001798
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001799 // Store second word : arguments given on stack
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001800 SDValue thirdStore =
Chris Lattner676c61d2010-09-21 18:41:36 +00001801 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
1802 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00001803 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001804 nextOffset += FrameOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00001805 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001806
1807 // Store third word : arguments given in registers
Chris Lattner676c61d2010-09-21 18:41:36 +00001808 return DAG.getStore(thirdStore, dl, FR, nextPtr,
1809 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00001810 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001811
Chris Lattner4211ca92006-04-14 06:01:58 +00001812}
1813
Chris Lattner4f2e4e02007-03-06 00:59:59 +00001814#include "PPCGenCallingConv.inc"
1815
Bill Schmidt8c3976e2013-08-26 20:11:46 +00001816// Function whose sole purpose is to kill compiler warnings
1817// stemming from unused functions included from PPCGenCallingConv.inc.
1818CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001819 return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
Bill Schmidt8c3976e2013-08-26 20:11:46 +00001820}
1821
Bill Schmidt230b4512013-06-12 16:39:22 +00001822bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
1823 CCValAssign::LocInfo &LocInfo,
1824 ISD::ArgFlagsTy &ArgFlags,
1825 CCState &State) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001826 return true;
1827}
1828
Bill Schmidt230b4512013-06-12 16:39:22 +00001829bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
1830 MVT &LocVT,
1831 CCValAssign::LocInfo &LocInfo,
1832 ISD::ArgFlagsTy &ArgFlags,
1833 CCState &State) {
Craig Topperbef78fc2012-03-11 07:57:25 +00001834 static const uint16_t ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001835 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1836 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1837 };
1838 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00001839
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001840 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1841
1842 // Skip one register if the first unallocated register has an even register
1843 // number and there are still argument registers available which have not been
1844 // allocated yet. RegNum is actually an index into ArgRegs, which means we
1845 // need to skip a register if RegNum is odd.
1846 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
1847 State.AllocateReg(ArgRegs[RegNum]);
1848 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001849
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001850 // Always return false here, as this function only makes sure that the first
1851 // unallocated register has an odd register number and does not actually
1852 // allocate a register for the current argument.
1853 return false;
1854}
1855
Bill Schmidt230b4512013-06-12 16:39:22 +00001856bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
1857 MVT &LocVT,
1858 CCValAssign::LocInfo &LocInfo,
1859 ISD::ArgFlagsTy &ArgFlags,
1860 CCState &State) {
Craig Topperbef78fc2012-03-11 07:57:25 +00001861 static const uint16_t ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001862 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1863 PPC::F8
1864 };
1865
1866 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00001867
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001868 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1869
1870 // If there is only one Floating-point register left we need to put both f64
1871 // values of a split ppc_fp128 value on the stack.
1872 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
1873 State.AllocateReg(ArgRegs[RegNum]);
1874 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001875
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001876 // Always return false here, as this function only makes sure that the two f64
1877 // values a ppc_fp128 value is split into are both passed in registers or both
1878 // passed on the stack and does not actually allocate a register for the
1879 // current argument.
1880 return false;
1881}
1882
Chris Lattner43df5b32007-02-25 05:34:32 +00001883/// GetFPR - Get the set of FP registers that should be allocated for arguments,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001884/// on Darwin.
Craig Topperca658c22012-03-11 07:16:55 +00001885static const uint16_t *GetFPR() {
1886 static const uint16_t FPR[] = {
Chris Lattner43df5b32007-02-25 05:34:32 +00001887 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001888 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
Chris Lattner43df5b32007-02-25 05:34:32 +00001889 };
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001890
Chris Lattner43df5b32007-02-25 05:34:32 +00001891 return FPR;
1892}
1893
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00001894/// CalculateStackSlotSize - Calculates the size reserved for this argument on
1895/// the stack.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001896static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00001897 unsigned PtrByteSize) {
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00001898 unsigned ArgSize = ArgVT.getSizeInBits()/8;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00001899 if (Flags.isByVal())
1900 ArgSize = Flags.getByValSize();
1901 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1902
1903 return ArgSize;
1904}
1905
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001906SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001907PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00001908 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001909 const SmallVectorImpl<ISD::InputArg>
1910 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001911 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001912 SmallVectorImpl<SDValue> &InVals)
1913 const {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00001914 if (PPCSubTarget.isSVR4ABI()) {
1915 if (PPCSubTarget.isPPC64())
1916 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
1917 dl, DAG, InVals);
1918 else
1919 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
1920 dl, DAG, InVals);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00001921 } else {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00001922 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
1923 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001924 }
1925}
1926
1927SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00001928PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001929 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00001930 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001931 const SmallVectorImpl<ISD::InputArg>
1932 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001933 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001934 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001935
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001936 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001937 // +-----------------------------------+
1938 // +--> | Back chain |
1939 // | +-----------------------------------+
1940 // | | Floating-point register save area |
1941 // | +-----------------------------------+
1942 // | | General register save area |
1943 // | +-----------------------------------+
1944 // | | CR save word |
1945 // | +-----------------------------------+
1946 // | | VRSAVE save word |
1947 // | +-----------------------------------+
1948 // | | Alignment padding |
1949 // | +-----------------------------------+
1950 // | | Vector register save area |
1951 // | +-----------------------------------+
1952 // | | Local variable space |
1953 // | +-----------------------------------+
1954 // | | Parameter list area |
1955 // | +-----------------------------------+
1956 // | | LR save word |
1957 // | +-----------------------------------+
1958 // SP--> +--- | Back chain |
1959 // +-----------------------------------+
1960 //
1961 // Specifications:
1962 // System V Application Binary Interface PowerPC Processor Supplement
1963 // AltiVec Technology Programming Interface Manual
Wesley Peck527da1b2010-11-23 03:31:01 +00001964
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001965 MachineFunction &MF = DAG.getMachineFunction();
1966 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00001967 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001968
Owen Anderson53aa7a92009-08-10 22:56:29 +00001969 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001970 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001971 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
1972 (CallConv == CallingConv::Fast));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001973 unsigned PtrByteSize = 4;
1974
1975 // Assign locations to all of the incoming arguments.
1976 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00001977 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00001978 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001979
1980 // Reserve space for the linkage area on the stack.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001981 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001982
Bill Schmidtef17c142013-02-06 17:33:58 +00001983 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peck527da1b2010-11-23 03:31:01 +00001984
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001985 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1986 CCValAssign &VA = ArgLocs[i];
Wesley Peck527da1b2010-11-23 03:31:01 +00001987
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001988 // Arguments stored in registers.
1989 if (VA.isRegLoc()) {
Craig Topper760b1342012-02-22 05:59:10 +00001990 const TargetRegisterClass *RC;
Owen Anderson53aa7a92009-08-10 22:56:29 +00001991 EVT ValVT = VA.getValVT();
Wesley Peck527da1b2010-11-23 03:31:01 +00001992
Owen Anderson9f944592009-08-11 20:47:22 +00001993 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001994 default:
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001995 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Owen Anderson9f944592009-08-11 20:47:22 +00001996 case MVT::i32:
Craig Topperabadc662012-04-20 06:31:50 +00001997 RC = &PPC::GPRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001998 break;
Owen Anderson9f944592009-08-11 20:47:22 +00001999 case MVT::f32:
Craig Topperabadc662012-04-20 06:31:50 +00002000 RC = &PPC::F4RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002001 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002002 case MVT::f64:
Craig Topperabadc662012-04-20 06:31:50 +00002003 RC = &PPC::F8RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002004 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002005 case MVT::v16i8:
2006 case MVT::v8i16:
2007 case MVT::v4i32:
2008 case MVT::v4f32:
Craig Topperabadc662012-04-20 06:31:50 +00002009 RC = &PPC::VRRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002010 break;
2011 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002012
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002013 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00002014 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002015 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, ValVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002016
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002017 InVals.push_back(ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002018 } else {
2019 // Argument stored in memory.
2020 assert(VA.isMemLoc());
2021
2022 unsigned ArgSize = VA.getLocVT().getSizeInBits() / 8;
2023 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Cheng0664a672010-07-03 00:40:23 +00002024 isImmutable);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002025
2026 // Create load nodes to retrieve arguments from the stack.
2027 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002028 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2029 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002030 false, false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002031 }
2032 }
2033
2034 // Assign locations to all of the incoming aggregate by value arguments.
2035 // Aggregates passed by value are stored in the local variable space of the
2036 // caller's stack frame, right above the parameter list area.
2037 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002038 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00002039 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002040
2041 // Reserve stack space for the allocations in CCInfo.
2042 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2043
Bill Schmidtef17c142013-02-06 17:33:58 +00002044 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002045
2046 // Area that is at least reserved in the caller of this function.
2047 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00002048
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002049 // Set the size that is at least reserved in caller of this function. Tail
2050 // call optimized function's reserved stack space needs to be aligned so that
2051 // taking the difference between two stack areas will result in an aligned
2052 // stack.
2053 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2054
2055 MinReservedArea =
2056 std::max(MinReservedArea,
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002057 PPCFrameLowering::getMinCallFrameSize(false, false));
Wesley Peck527da1b2010-11-23 03:31:01 +00002058
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002059 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameLowering()->
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002060 getStackAlignment();
2061 unsigned AlignMask = TargetAlign-1;
2062 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
Wesley Peck527da1b2010-11-23 03:31:01 +00002063
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002064 FI->setMinReservedArea(MinReservedArea);
2065
2066 SmallVector<SDValue, 8> MemOps;
Wesley Peck527da1b2010-11-23 03:31:01 +00002067
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002068 // If the function takes variable number of arguments, make a frame index for
2069 // the start of the first vararg value... for expansion of llvm.va_start.
2070 if (isVarArg) {
Craig Topperbef78fc2012-03-11 07:57:25 +00002071 static const uint16_t GPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002072 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2073 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2074 };
2075 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2076
Craig Topperbef78fc2012-03-11 07:57:25 +00002077 static const uint16_t FPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002078 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2079 PPC::F8
2080 };
2081 const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2082
Dan Gohman31ae5862010-04-17 14:41:14 +00002083 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2084 NumGPArgRegs));
2085 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2086 NumFPArgRegs));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002087
2088 // Make room for NumGPArgRegs and NumFPArgRegs.
2089 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Owen Anderson9f944592009-08-11 20:47:22 +00002090 NumFPArgRegs * EVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002091
Dan Gohman31ae5862010-04-17 14:41:14 +00002092 FuncInfo->setVarArgsStackOffset(
2093 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002094 CCInfo.getNextStackOffset(), true));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002095
Dan Gohman31ae5862010-04-17 14:41:14 +00002096 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2097 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002098
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002099 // The fixed integer arguments of a variadic function are stored to the
2100 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2101 // the result of va_next.
2102 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2103 // Get an existing live-in vreg, or add a new one.
2104 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2105 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002106 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002107
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002108 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002109 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2110 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002111 MemOps.push_back(Store);
2112 // Increment the address by four for the next argument to store
2113 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2114 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2115 }
2116
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002117 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2118 // is set.
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002119 // The double arguments are stored to the VarArgsFrameIndex
2120 // on the stack.
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002121 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2122 // Get an existing live-in vreg, or add a new one.
2123 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2124 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002125 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002126
Owen Anderson9f944592009-08-11 20:47:22 +00002127 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner676c61d2010-09-21 18:41:36 +00002128 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2129 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002130 MemOps.push_back(Store);
2131 // Increment the address by eight for the next argument to store
Owen Anderson9f944592009-08-11 20:47:22 +00002132 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002133 PtrVT);
2134 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2135 }
2136 }
2137
2138 if (!MemOps.empty())
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002139 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00002140 MVT::Other, &MemOps[0], MemOps.size());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002141
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002142 return Chain;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002143}
2144
Bill Schmidt57d6de52012-10-23 15:51:16 +00002145// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2146// value to MVT::i64 and then truncate to the correct register size.
2147SDValue
2148PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2149 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002150 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00002151 if (Flags.isSExt())
2152 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2153 DAG.getValueType(ObjectVT));
2154 else if (Flags.isZExt())
2155 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2156 DAG.getValueType(ObjectVT));
Matt Arsenault758659232013-05-18 00:21:46 +00002157
Bill Schmidt57d6de52012-10-23 15:51:16 +00002158 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2159}
2160
2161// Set the size that is at least reserved in caller of this function. Tail
2162// call optimized functions' reserved stack space needs to be aligned so that
2163// taking the difference between two stack areas will result in an aligned
2164// stack.
2165void
2166PPCTargetLowering::setMinReservedArea(MachineFunction &MF, SelectionDAG &DAG,
2167 unsigned nAltivecParamsAtEnd,
2168 unsigned MinReservedArea,
2169 bool isPPC64) const {
2170 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2171 // Add the Altivec parameters at the end, if needed.
2172 if (nAltivecParamsAtEnd) {
2173 MinReservedArea = ((MinReservedArea+15)/16)*16;
2174 MinReservedArea += 16*nAltivecParamsAtEnd;
2175 }
2176 MinReservedArea =
2177 std::max(MinReservedArea,
2178 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
2179 unsigned TargetAlign
2180 = DAG.getMachineFunction().getTarget().getFrameLowering()->
2181 getStackAlignment();
2182 unsigned AlignMask = TargetAlign-1;
2183 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
2184 FI->setMinReservedArea(MinReservedArea);
2185}
2186
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002187SDValue
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002188PPCTargetLowering::LowerFormalArguments_64SVR4(
2189 SDValue Chain,
2190 CallingConv::ID CallConv, bool isVarArg,
2191 const SmallVectorImpl<ISD::InputArg>
2192 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002193 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002194 SmallVectorImpl<SDValue> &InVals) const {
2195 // TODO: add description of PPC stack frame format, or at least some docs.
2196 //
2197 MachineFunction &MF = DAG.getMachineFunction();
2198 MachineFrameInfo *MFI = MF.getFrameInfo();
2199 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2200
2201 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2202 // Potential tail calls could cause overwriting of argument stack slots.
2203 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2204 (CallConv == CallingConv::Fast));
2205 unsigned PtrByteSize = 8;
2206
2207 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
2208 // Area that is at least reserved in caller of this function.
2209 unsigned MinReservedArea = ArgOffset;
2210
2211 static const uint16_t GPR[] = {
2212 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2213 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2214 };
2215
2216 static const uint16_t *FPR = GetFPR();
2217
2218 static const uint16_t VR[] = {
2219 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2220 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2221 };
2222
2223 const unsigned Num_GPR_Regs = array_lengthof(GPR);
2224 const unsigned Num_FPR_Regs = 13;
2225 const unsigned Num_VR_Regs = array_lengthof(VR);
2226
2227 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
2228
2229 // Add DAG nodes to load the arguments or copy them out of registers. On
2230 // entry to a function on PPC, the arguments start after the linkage area,
2231 // although the first ones are often in registers.
2232
2233 SmallVector<SDValue, 8> MemOps;
2234 unsigned nAltivecParamsAtEnd = 0;
2235 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt6631e942013-02-20 17:31:41 +00002236 unsigned CurArgIdx = 0;
2237 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002238 SDValue ArgVal;
2239 bool needsLoad = false;
2240 EVT ObjectVT = Ins[ArgNo].VT;
2241 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
2242 unsigned ArgSize = ObjSize;
2243 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt6631e942013-02-20 17:31:41 +00002244 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2245 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002246
2247 unsigned CurArgOffset = ArgOffset;
2248
2249 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
2250 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2251 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
2252 if (isVarArg) {
2253 MinReservedArea = ((MinReservedArea+15)/16)*16;
2254 MinReservedArea += CalculateStackSlotSize(ObjectVT,
2255 Flags,
2256 PtrByteSize);
2257 } else
2258 nAltivecParamsAtEnd++;
2259 } else
2260 // Calculate min reserved area.
2261 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
2262 Flags,
2263 PtrByteSize);
2264
2265 // FIXME the codegen can be much improved in some cases.
2266 // We do not have to keep everything in memory.
2267 if (Flags.isByVal()) {
2268 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2269 ObjSize = Flags.getByValSize();
2270 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt9953cf22012-10-31 01:15:05 +00002271 // Empty aggregate parameters do not take up registers. Examples:
2272 // struct { } a;
2273 // union { } b;
2274 // int c[0];
2275 // etc. However, we have to provide a place-holder in InVals, so
2276 // pretend we have an 8-byte item at the current address for that
2277 // purpose.
2278 if (!ObjSize) {
2279 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2280 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2281 InVals.push_back(FIN);
2282 continue;
2283 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002284 // All aggregates smaller than 8 bytes must be passed right-justified.
Bill Schmidt48081ca2012-10-16 13:30:53 +00002285 if (ObjSize < PtrByteSize)
2286 CurArgOffset = CurArgOffset + (PtrByteSize - ObjSize);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002287 // The value of the object is its address.
2288 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
2289 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2290 InVals.push_back(FIN);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002291
2292 if (ObjSize < 8) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002293 if (GPR_idx != Num_GPR_Regs) {
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002294 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002295 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002296 SDValue Store;
2297
2298 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2299 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2300 (ObjSize == 2 ? MVT::i16 : MVT::i32));
2301 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
2302 MachinePointerInfo(FuncArg, CurArgOffset),
2303 ObjType, false, false, 0);
2304 } else {
2305 // For sizes that don't fit a truncating store (3, 5, 6, 7),
2306 // store the whole register as-is to the parameter save area
2307 // slot. The address of the parameter was already calculated
2308 // above (InVals.push_back(FIN)) to be the right-justified
2309 // offset within the slot. For this store, we need a new
2310 // frame index that points at the beginning of the slot.
2311 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2312 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2313 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2314 MachinePointerInfo(FuncArg, ArgOffset),
2315 false, false, 0);
2316 }
2317
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002318 MemOps.push_back(Store);
2319 ++GPR_idx;
2320 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002321 // Whether we copied from a register or not, advance the offset
2322 // into the parameter save area by a full doubleword.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002323 ArgOffset += PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002324 continue;
2325 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002326
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002327 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2328 // Store whatever pieces of the object are in registers
2329 // to memory. ArgOffset will be the address of the beginning
2330 // of the object.
2331 if (GPR_idx != Num_GPR_Regs) {
2332 unsigned VReg;
2333 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2334 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2335 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2336 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002337 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002338 MachinePointerInfo(FuncArg, ArgOffset),
2339 false, false, 0);
2340 MemOps.push_back(Store);
2341 ++GPR_idx;
2342 ArgOffset += PtrByteSize;
2343 } else {
Bill Schmidt48081ca2012-10-16 13:30:53 +00002344 ArgOffset += ArgSize - j;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002345 break;
2346 }
2347 }
2348 continue;
2349 }
2350
2351 switch (ObjectVT.getSimpleVT().SimpleTy) {
2352 default: llvm_unreachable("Unhandled argument type!");
2353 case MVT::i32:
2354 case MVT::i64:
2355 if (GPR_idx != Num_GPR_Regs) {
2356 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2357 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2358
Bill Schmidt57d6de52012-10-23 15:51:16 +00002359 if (ObjectVT == MVT::i32)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002360 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2361 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002362 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002363
2364 ++GPR_idx;
2365 } else {
2366 needsLoad = true;
2367 ArgSize = PtrByteSize;
2368 }
2369 ArgOffset += 8;
2370 break;
2371
2372 case MVT::f32:
2373 case MVT::f64:
2374 // Every 8 bytes of argument space consumes one of the GPRs available for
2375 // argument passing.
2376 if (GPR_idx != Num_GPR_Regs) {
2377 ++GPR_idx;
2378 }
2379 if (FPR_idx != Num_FPR_Regs) {
2380 unsigned VReg;
2381
2382 if (ObjectVT == MVT::f32)
2383 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2384 else
2385 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
2386
2387 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2388 ++FPR_idx;
2389 } else {
2390 needsLoad = true;
Bill Schmidt22162472012-10-11 15:38:20 +00002391 ArgSize = PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002392 }
2393
2394 ArgOffset += 8;
2395 break;
2396 case MVT::v4f32:
2397 case MVT::v4i32:
2398 case MVT::v8i16:
2399 case MVT::v16i8:
2400 // Note that vector arguments in registers don't reserve stack space,
2401 // except in varargs functions.
2402 if (VR_idx != Num_VR_Regs) {
2403 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
2404 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2405 if (isVarArg) {
2406 while ((ArgOffset % 16) != 0) {
2407 ArgOffset += PtrByteSize;
2408 if (GPR_idx != Num_GPR_Regs)
2409 GPR_idx++;
2410 }
2411 ArgOffset += 16;
2412 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
2413 }
2414 ++VR_idx;
2415 } else {
2416 // Vectors are aligned.
2417 ArgOffset = ((ArgOffset+15)/16)*16;
2418 CurArgOffset = ArgOffset;
2419 ArgOffset += 16;
2420 needsLoad = true;
2421 }
2422 break;
2423 }
2424
2425 // We need to load the argument to a virtual register if we determined
2426 // above that we ran out of physical registers of the appropriate type.
2427 if (needsLoad) {
2428 int FI = MFI->CreateFixedObject(ObjSize,
2429 CurArgOffset + (ArgSize - ObjSize),
2430 isImmutable);
2431 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2432 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2433 false, false, false, 0);
2434 }
2435
2436 InVals.push_back(ArgVal);
2437 }
2438
2439 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00002440 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002441 // taking the difference between two stack areas will result in an aligned
2442 // stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002443 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, true);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002444
2445 // If the function takes variable number of arguments, make a frame index for
2446 // the start of the first vararg value... for expansion of llvm.va_start.
2447 if (isVarArg) {
2448 int Depth = ArgOffset;
2449
2450 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt57d6de52012-10-23 15:51:16 +00002451 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002452 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2453
2454 // If this function is vararg, store any remaining integer argument regs
2455 // to their spots on the stack so that they may be loaded by deferencing the
2456 // result of va_next.
2457 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
2458 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2459 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2460 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2461 MachinePointerInfo(), false, false, 0);
2462 MemOps.push_back(Store);
2463 // Increment the address by four for the next argument to store
Bill Schmidt57d6de52012-10-23 15:51:16 +00002464 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002465 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2466 }
2467 }
2468
2469 if (!MemOps.empty())
2470 Chain = DAG.getNode(ISD::TokenFactor, dl,
2471 MVT::Other, &MemOps[0], MemOps.size());
2472
2473 return Chain;
2474}
2475
2476SDValue
2477PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002478 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002479 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002480 const SmallVectorImpl<ISD::InputArg>
2481 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002482 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002483 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002484 // TODO: add description of PPC stack frame format, or at least some docs.
2485 //
2486 MachineFunction &MF = DAG.getMachineFunction();
2487 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002488 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002489
Owen Anderson53aa7a92009-08-10 22:56:29 +00002490 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00002491 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002492 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002493 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2494 (CallConv == CallingConv::Fast));
Jim Laskeyf4e2e002006-11-28 14:53:52 +00002495 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey48850c12006-11-16 22:43:37 +00002496
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002497 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002498 // Area that is at least reserved in caller of this function.
2499 unsigned MinReservedArea = ArgOffset;
2500
Craig Topperca658c22012-03-11 07:16:55 +00002501 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattner4302e8f2006-05-16 18:18:50 +00002502 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2503 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2504 };
Craig Topperca658c22012-03-11 07:16:55 +00002505 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00002506 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2507 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2508 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00002509
Craig Topperca658c22012-03-11 07:16:55 +00002510 static const uint16_t *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002511
Craig Topperca658c22012-03-11 07:16:55 +00002512 static const uint16_t VR[] = {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002513 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2514 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2515 };
Chris Lattnerec78cad2006-06-26 22:48:35 +00002516
Owen Andersone2f23a32007-09-07 04:06:50 +00002517 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002518 const unsigned Num_FPR_Regs = 13;
Owen Andersone2f23a32007-09-07 04:06:50 +00002519 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey48850c12006-11-16 22:43:37 +00002520
2521 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002522
Craig Topperca658c22012-03-11 07:16:55 +00002523 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002524
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002525 // In 32-bit non-varargs functions, the stack space for vectors is after the
2526 // stack space for non-vectors. We do not use this space unless we have
2527 // too many vectors to fit in registers, something that only occurs in
Scott Michelcf0da6c2009-02-17 22:15:04 +00002528 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002529 // that out...for the pathological case, compute VecArgOffset as the
2530 // start of the vector parameter area. Computing VecArgOffset is the
2531 // entire point of the following loop.
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002532 unsigned VecArgOffset = ArgOffset;
2533 if (!isVarArg && !isPPC64) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002534 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002535 ++ArgNo) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002536 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002537 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002538
Duncan Sandsd97eea32008-03-21 09:14:45 +00002539 if (Flags.isByVal()) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002540 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer084b9f42012-01-20 14:42:32 +00002541 unsigned ObjSize = Flags.getByValSize();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002542 unsigned ArgSize =
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002543 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2544 VecArgOffset += ArgSize;
2545 continue;
2546 }
2547
Owen Anderson9f944592009-08-11 20:47:22 +00002548 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002549 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson9f944592009-08-11 20:47:22 +00002550 case MVT::i32:
2551 case MVT::f32:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002552 VecArgOffset += 4;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002553 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002554 case MVT::i64: // PPC64
2555 case MVT::f64:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002556 // FIXME: We are guaranteed to be !isPPC64 at this point.
2557 // Does MVT::i64 apply?
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002558 VecArgOffset += 8;
2559 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002560 case MVT::v4f32:
2561 case MVT::v4i32:
2562 case MVT::v8i16:
2563 case MVT::v16i8:
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002564 // Nothing to do, we're only looking at Nonvector args here.
2565 break;
2566 }
2567 }
2568 }
2569 // We've found where the vector parameter area in memory is. Skip the
2570 // first 12 parameters; these don't use that memory.
2571 VecArgOffset = ((VecArgOffset+15)/16)*16;
2572 VecArgOffset += 12*16;
2573
Chris Lattner4302e8f2006-05-16 18:18:50 +00002574 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey48850c12006-11-16 22:43:37 +00002575 // entry to a function on PPC, the arguments start after the linkage area,
2576 // although the first ones are often in registers.
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00002577
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002578 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002579 unsigned nAltivecParamsAtEnd = 0;
Roman Divackyca103892012-09-24 20:47:19 +00002580 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt38b6cb52013-05-08 17:22:33 +00002581 unsigned CurArgIdx = 0;
2582 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002583 SDValue ArgVal;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002584 bool needsLoad = false;
Owen Anderson53aa7a92009-08-10 22:56:29 +00002585 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands13237ac2008-06-06 12:08:01 +00002586 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey152671f2006-11-29 13:37:09 +00002587 unsigned ArgSize = ObjSize;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002588 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt38b6cb52013-05-08 17:22:33 +00002589 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2590 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002591
Chris Lattner318f0d22006-05-16 18:51:52 +00002592 unsigned CurArgOffset = ArgOffset;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002593
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002594 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00002595 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2596 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002597 if (isVarArg || isPPC64) {
2598 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002599 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00002600 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002601 PtrByteSize);
2602 } else nAltivecParamsAtEnd++;
2603 } else
2604 // Calculate min reserved area.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002605 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00002606 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002607 PtrByteSize);
2608
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002609 // FIXME the codegen can be much improved in some cases.
2610 // We do not have to keep everything in memory.
Duncan Sandsd97eea32008-03-21 09:14:45 +00002611 if (Flags.isByVal()) {
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002612 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sandsd97eea32008-03-21 09:14:45 +00002613 ObjSize = Flags.getByValSize();
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002614 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002615 // Objects of size 1 and 2 are right justified, everything else is
2616 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen21a8f142008-03-08 01:41:42 +00002617 if (ObjSize==1 || ObjSize==2) {
2618 CurArgOffset = CurArgOffset + (4 - ObjSize);
2619 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002620 // The value of the object is its address.
Evan Cheng0664a672010-07-03 00:40:23 +00002621 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002622 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002623 InVals.push_back(FIN);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002624 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen21a8f142008-03-08 01:41:42 +00002625 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00002626 unsigned VReg;
2627 if (isPPC64)
2628 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2629 else
2630 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002631 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt57d6de52012-10-23 15:51:16 +00002632 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002633 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Roman Divackyca103892012-09-24 20:47:19 +00002634 MachinePointerInfo(FuncArg,
2635 CurArgOffset),
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002636 ObjType, false, false, 0);
Dale Johannesen21a8f142008-03-08 01:41:42 +00002637 MemOps.push_back(Store);
2638 ++GPR_idx;
Dale Johannesen21a8f142008-03-08 01:41:42 +00002639 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002640
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002641 ArgOffset += PtrByteSize;
Wesley Peck527da1b2010-11-23 03:31:01 +00002642
Dale Johannesen21a8f142008-03-08 01:41:42 +00002643 continue;
2644 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002645 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2646 // Store whatever pieces of the object are in registers
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002647 // to memory. ArgOffset will be the address of the beginning
2648 // of the object.
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002649 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00002650 unsigned VReg;
2651 if (isPPC64)
2652 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2653 else
2654 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Cheng0664a672010-07-03 00:40:23 +00002655 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002656 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002657 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002658 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Roman Divackyca103892012-09-24 20:47:19 +00002659 MachinePointerInfo(FuncArg, ArgOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002660 false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002661 MemOps.push_back(Store);
2662 ++GPR_idx;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002663 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002664 } else {
2665 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
2666 break;
2667 }
2668 }
2669 continue;
2670 }
2671
Owen Anderson9f944592009-08-11 20:47:22 +00002672 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002673 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson9f944592009-08-11 20:47:22 +00002674 case MVT::i32:
Bill Wendling968f32c2008-03-07 20:49:02 +00002675 if (!isPPC64) {
Bill Wendling968f32c2008-03-07 20:49:02 +00002676 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00002677 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00002678 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Bill Wendling968f32c2008-03-07 20:49:02 +00002679 ++GPR_idx;
2680 } else {
2681 needsLoad = true;
2682 ArgSize = PtrByteSize;
2683 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002684 // All int arguments reserve stack space in the Darwin ABI.
2685 ArgOffset += PtrByteSize;
Bill Wendling968f32c2008-03-07 20:49:02 +00002686 break;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002687 }
Bill Wendling968f32c2008-03-07 20:49:02 +00002688 // FALLTHROUGH
Owen Anderson9f944592009-08-11 20:47:22 +00002689 case MVT::i64: // PPC64
Chris Lattnerec78cad2006-06-26 22:48:35 +00002690 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00002691 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00002692 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling968f32c2008-03-07 20:49:02 +00002693
Bill Schmidt57d6de52012-10-23 15:51:16 +00002694 if (ObjectVT == MVT::i32)
Bill Wendling968f32c2008-03-07 20:49:02 +00002695 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson9f944592009-08-11 20:47:22 +00002696 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002697 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling968f32c2008-03-07 20:49:02 +00002698
Chris Lattnerec78cad2006-06-26 22:48:35 +00002699 ++GPR_idx;
2700 } else {
2701 needsLoad = true;
Evan Cheng0f0aee22008-07-24 08:17:07 +00002702 ArgSize = PtrByteSize;
Chris Lattnerec78cad2006-06-26 22:48:35 +00002703 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002704 // All int arguments reserve stack space in the Darwin ABI.
2705 ArgOffset += 8;
Chris Lattnerec78cad2006-06-26 22:48:35 +00002706 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002707
Owen Anderson9f944592009-08-11 20:47:22 +00002708 case MVT::f32:
2709 case MVT::f64:
Chris Lattner318f0d22006-05-16 18:51:52 +00002710 // Every 4 bytes of argument space consumes one of the GPRs available for
2711 // argument passing.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002712 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002713 ++GPR_idx;
Chris Lattner2cca3852006-11-18 01:57:19 +00002714 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002715 ++GPR_idx;
Chris Lattner318f0d22006-05-16 18:51:52 +00002716 }
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002717 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002718 unsigned VReg;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002719
Owen Anderson9f944592009-08-11 20:47:22 +00002720 if (ObjectVT == MVT::f32)
Devang Patelf3292b22011-02-21 23:21:26 +00002721 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002722 else
Devang Patelf3292b22011-02-21 23:21:26 +00002723 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002724
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002725 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002726 ++FPR_idx;
2727 } else {
2728 needsLoad = true;
2729 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002730
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002731 // All FP arguments reserve stack space in the Darwin ABI.
2732 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002733 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002734 case MVT::v4f32:
2735 case MVT::v4i32:
2736 case MVT::v8i16:
2737 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00002738 // Note that vector arguments in registers don't reserve stack space,
2739 // except in varargs functions.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002740 if (VR_idx != Num_VR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00002741 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002742 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesenb28456e2008-03-12 00:22:17 +00002743 if (isVarArg) {
2744 while ((ArgOffset % 16) != 0) {
2745 ArgOffset += PtrByteSize;
2746 if (GPR_idx != Num_GPR_Regs)
2747 GPR_idx++;
2748 }
2749 ArgOffset += 16;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002750 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesenb28456e2008-03-12 00:22:17 +00002751 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00002752 ++VR_idx;
2753 } else {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002754 if (!isVarArg && !isPPC64) {
2755 // Vectors go after all the nonvectors.
2756 CurArgOffset = VecArgOffset;
2757 VecArgOffset += 16;
2758 } else {
2759 // Vectors are aligned.
2760 ArgOffset = ((ArgOffset+15)/16)*16;
2761 CurArgOffset = ArgOffset;
2762 ArgOffset += 16;
Dale Johannesen0d982562008-03-12 00:49:20 +00002763 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00002764 needsLoad = true;
2765 }
2766 break;
2767 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002768
Chris Lattner4302e8f2006-05-16 18:18:50 +00002769 // We need to load the argument to a virtual register if we determined above
Chris Lattnerf6518cf2008-02-13 07:35:30 +00002770 // that we ran out of physical registers of the appropriate type.
Chris Lattner4302e8f2006-05-16 18:18:50 +00002771 if (needsLoad) {
Chris Lattnerf6518cf2008-02-13 07:35:30 +00002772 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002773 CurArgOffset + (ArgSize - ObjSize),
Evan Cheng0664a672010-07-03 00:40:23 +00002774 isImmutable);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002775 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002776 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002777 false, false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002778 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002779
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002780 InVals.push_back(ArgVal);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002781 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002782
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002783 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00002784 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002785 // taking the difference between two stack areas will result in an aligned
2786 // stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002787 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, isPPC64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002788
Chris Lattner4302e8f2006-05-16 18:18:50 +00002789 // If the function takes variable number of arguments, make a frame index for
2790 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner4302e8f2006-05-16 18:18:50 +00002791 if (isVarArg) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002792 int Depth = ArgOffset;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002793
Dan Gohman31ae5862010-04-17 14:41:14 +00002794 FuncInfo->setVarArgsFrameIndex(
2795 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002796 Depth, true));
Dan Gohman31ae5862010-04-17 14:41:14 +00002797 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002798
Chris Lattner4302e8f2006-05-16 18:18:50 +00002799 // If this function is vararg, store any remaining integer argument regs
2800 // to their spots on the stack so that they may be loaded by deferencing the
2801 // result of va_next.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002802 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattner2cca3852006-11-18 01:57:19 +00002803 unsigned VReg;
Wesley Peck527da1b2010-11-23 03:31:01 +00002804
Chris Lattner2cca3852006-11-18 01:57:19 +00002805 if (isPPC64)
Devang Patelf3292b22011-02-21 23:21:26 +00002806 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00002807 else
Devang Patelf3292b22011-02-21 23:21:26 +00002808 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00002809
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002810 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002811 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2812 MachinePointerInfo(), false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002813 MemOps.push_back(Store);
2814 // Increment the address by four for the next argument to store
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002815 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen679073b2009-02-04 02:34:38 +00002816 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002817 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00002818 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002819
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002820 if (!MemOps.empty())
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002821 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00002822 MVT::Other, &MemOps[0], MemOps.size());
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002823
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002824 return Chain;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002825}
2826
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002827/// CalculateParameterAndLinkageAreaSize - Get the size of the parameter plus
2828/// linkage area for the Darwin ABI, or the 64-bit SVR4 ABI.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002829static unsigned
2830CalculateParameterAndLinkageAreaSize(SelectionDAG &DAG,
2831 bool isPPC64,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002832 bool isVarArg,
2833 unsigned CC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002834 const SmallVectorImpl<ISD::OutputArg>
2835 &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002836 const SmallVectorImpl<SDValue> &OutVals,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002837 unsigned &nAltivecParamsAtEnd) {
2838 // Count how many bytes are to be pushed on the stack, including the linkage
2839 // area, and parameter passing area. We start with 24/48 bytes, which is
2840 // prereserved space for [SP][CR][LR][3 x unused].
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002841 unsigned NumBytes = PPCFrameLowering::getLinkageSize(isPPC64, true);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002842 unsigned NumOps = Outs.size();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002843 unsigned PtrByteSize = isPPC64 ? 8 : 4;
2844
2845 // Add up all the space actually used.
2846 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
2847 // they all go in registers, but we must reserve stack space for them for
2848 // possible use by the caller. In varargs or 64-bit calls, parameters are
2849 // assigned stack space in order, with padding so Altivec parameters are
2850 // 16-byte aligned.
2851 nAltivecParamsAtEnd = 0;
2852 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002853 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002854 EVT ArgVT = Outs[i].VT;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002855 // Varargs Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00002856 if (ArgVT==MVT::v4f32 || ArgVT==MVT::v4i32 ||
2857 ArgVT==MVT::v8i16 || ArgVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002858 if (!isVarArg && !isPPC64) {
2859 // Non-varargs Altivec parameters go after all the non-Altivec
2860 // parameters; handle those later so we know how much padding we need.
2861 nAltivecParamsAtEnd++;
2862 continue;
2863 }
2864 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
2865 NumBytes = ((NumBytes+15)/16)*16;
2866 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002867 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002868 }
2869
2870 // Allow for Altivec parameters at the end, if needed.
2871 if (nAltivecParamsAtEnd) {
2872 NumBytes = ((NumBytes+15)/16)*16;
2873 NumBytes += 16*nAltivecParamsAtEnd;
2874 }
2875
2876 // The prolog code of the callee may store up to 8 GPR argument registers to
2877 // the stack, allowing va_start to index over them in memory if its varargs.
2878 // Because we cannot tell if this is needed on the caller side, we have to
2879 // conservatively assume that it is needed. As such, make sure we have at
2880 // least enough stack space for the caller to store the 8 GPRs.
2881 NumBytes = std::max(NumBytes,
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002882 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002883
2884 // Tail call needs the stack to be aligned.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002885 if (CC == CallingConv::Fast && DAG.getTarget().Options.GuaranteedTailCallOpt){
2886 unsigned TargetAlign = DAG.getMachineFunction().getTarget().
2887 getFrameLowering()->getStackAlignment();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002888 unsigned AlignMask = TargetAlign-1;
2889 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2890 }
2891
2892 return NumBytes;
2893}
2894
2895/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00002896/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesen86dcae12009-11-24 01:09:07 +00002897static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002898 unsigned ParamSize) {
2899
Dale Johannesen86dcae12009-11-24 01:09:07 +00002900 if (!isTailCall) return 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002901
2902 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
2903 unsigned CallerMinReservedArea = FI->getMinReservedArea();
2904 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
2905 // Remember only if the new adjustement is bigger.
2906 if (SPDiff < FI->getTailCallSPDelta())
2907 FI->setTailCallSPDelta(SPDiff);
2908
2909 return SPDiff;
2910}
2911
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002912/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2913/// for tail call optimization. Targets which want to do tail call
2914/// optimization should implement this function.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002915bool
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002916PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002917 CallingConv::ID CalleeCC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002918 bool isVarArg,
2919 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002920 SelectionDAG& DAG) const {
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002921 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng25217ff2010-01-29 23:05:56 +00002922 return false;
2923
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002924 // Variable argument functions are not supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002925 if (isVarArg)
Dan Gohmaneffb8942008-09-12 16:56:44 +00002926 return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002927
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002928 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel68c5f472009-09-02 08:44:58 +00002929 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002930 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
2931 // Functions containing by val parameters are not supported.
2932 for (unsigned i = 0; i != Ins.size(); i++) {
2933 ISD::ArgFlagsTy Flags = Ins[i].Flags;
2934 if (Flags.isByVal()) return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002935 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002936
2937 // Non PIC/GOT tail calls are supported.
2938 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
2939 return true;
2940
2941 // At the moment we can only do local tail calls (in same module, hidden
2942 // or protected) if we are generating PIC.
2943 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2944 return G->getGlobal()->hasHiddenVisibility()
2945 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002946 }
2947
2948 return false;
2949}
2950
Chris Lattnereb755fc2006-05-17 19:00:46 +00002951/// isCallCompatibleAddress - Return the immediate to use if the specified
2952/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002953static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnereb755fc2006-05-17 19:00:46 +00002954 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
2955 if (!C) return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002956
Dan Gohmaneffb8942008-09-12 16:56:44 +00002957 int Addr = C->getZExtValue();
Chris Lattnereb755fc2006-05-17 19:00:46 +00002958 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith228e6d42012-08-24 23:29:28 +00002959 SignExtend32<26>(Addr) != Addr)
Chris Lattnereb755fc2006-05-17 19:00:46 +00002960 return 0; // Top 6 bits have to be sext of immediate.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002961
Dan Gohmaneffb8942008-09-12 16:56:44 +00002962 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greiff304a7a2008-08-28 21:40:38 +00002963 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnereb755fc2006-05-17 19:00:46 +00002964}
2965
Dan Gohmand78c4002008-05-13 00:00:25 +00002966namespace {
2967
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002968struct TailCallArgumentInfo {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002969 SDValue Arg;
2970 SDValue FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002971 int FrameIdx;
2972
2973 TailCallArgumentInfo() : FrameIdx(0) {}
2974};
2975
Dan Gohmand78c4002008-05-13 00:00:25 +00002976}
2977
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002978/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
2979static void
2980StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00002981 SDValue Chain,
Craig Topperb94011f2013-07-14 04:42:23 +00002982 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
2983 SmallVectorImpl<SDValue> &MemOpChains,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002984 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002985 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002986 SDValue Arg = TailCallArgs[i].Arg;
2987 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002988 int FI = TailCallArgs[i].FrameIdx;
2989 // Store relative to framepointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00002990 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Chris Lattner7727d052010-09-21 06:44:06 +00002991 MachinePointerInfo::getFixedStack(FI),
2992 false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002993 }
2994}
2995
2996/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
2997/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002998static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002999 MachineFunction &MF,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003000 SDValue Chain,
3001 SDValue OldRetAddr,
3002 SDValue OldFP,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003003 int SPDiff,
3004 bool isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003005 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003006 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003007 if (SPDiff) {
3008 // Calculate the new stack slot for the return address.
3009 int SlotSize = isPPC64 ? 8 : 4;
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003010 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003011 isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003012 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Cheng0664a672010-07-03 00:40:23 +00003013 NewRetAddrLoc, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003014 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003015 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen021052a2009-02-04 20:06:27 +00003016 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003017 MachinePointerInfo::getFixedStack(NewRetAddr),
David Greene87a5abe2010-02-15 16:56:53 +00003018 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003019
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003020 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3021 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003022 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003023 int NewFPLoc =
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003024 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
David Greene1fbe0542009-11-12 20:49:22 +00003025 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Cheng0664a672010-07-03 00:40:23 +00003026 true);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003027 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3028 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003029 MachinePointerInfo::getFixedStack(NewFPIdx),
David Greene87a5abe2010-02-15 16:56:53 +00003030 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003031 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003032 }
3033 return Chain;
3034}
3035
3036/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3037/// the position of the argument.
3038static void
3039CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003040 SDValue Arg, int SPDiff, unsigned ArgOffset,
Craig Topperb94011f2013-07-14 04:42:23 +00003041 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003042 int Offset = ArgOffset + SPDiff;
Duncan Sands13237ac2008-06-06 12:08:01 +00003043 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Cheng0664a672010-07-03 00:40:23 +00003044 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003045 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003046 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003047 TailCallArgumentInfo Info;
3048 Info.Arg = Arg;
3049 Info.FrameIdxOp = FIN;
3050 Info.FrameIdx = FI;
3051 TailCallArguments.push_back(Info);
3052}
3053
3054/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3055/// stack slot. Returns the chain as result and the loaded frame pointers in
3056/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003057SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen021052a2009-02-04 20:06:27 +00003058 int SPDiff,
3059 SDValue Chain,
3060 SDValue &LROpOut,
3061 SDValue &FPOpOut,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003062 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003063 SDLoc dl) const {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003064 if (SPDiff) {
3065 // Load the LR and FP stack slot for later adjusting.
Owen Anderson9f944592009-08-11 20:47:22 +00003066 EVT VT = PPCSubTarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003067 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003068 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003069 false, false, false, 0);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003070 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peck527da1b2010-11-23 03:31:01 +00003071
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003072 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3073 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003074 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003075 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003076 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003077 false, false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003078 Chain = SDValue(FPOpOut.getNode(), 1);
3079 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003080 }
3081 return Chain;
3082}
3083
Dale Johannesen85d41a12008-03-04 23:17:14 +00003084/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelcf0da6c2009-02-17 22:15:04 +00003085/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen85d41a12008-03-04 23:17:14 +00003086/// specified by the specific parameter attribute. The copy will be passed as
3087/// a byval function parameter.
3088/// Sometimes what we are copying is the end of a larger object, the part that
3089/// does not fit in registers.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003090static SDValue
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003091CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sandsd97eea32008-03-21 09:14:45 +00003092 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003093 SDLoc dl) {
Owen Anderson9f944592009-08-11 20:47:22 +00003094 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen85263882009-02-04 01:17:06 +00003095 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Chris Lattner2510de22010-09-21 05:40:29 +00003096 false, false, MachinePointerInfo(0),
3097 MachinePointerInfo(0));
Dale Johannesen85d41a12008-03-04 23:17:14 +00003098}
Chris Lattner43df5b32007-02-25 05:34:32 +00003099
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003100/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3101/// tail calls.
3102static void
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003103LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3104 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003105 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003106 bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3107 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003108 SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003109 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003110 if (!isTailCall) {
3111 if (isVector) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003112 SDValue StackPtr;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003113 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00003114 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003115 else
Owen Anderson9f944592009-08-11 20:47:22 +00003116 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00003117 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003118 DAG.getConstant(ArgOffset, PtrVT));
3119 }
Chris Lattner676c61d2010-09-21 18:41:36 +00003120 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3121 MachinePointerInfo(), false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003122 // Calculate and remember argument location.
3123 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3124 TailCallArguments);
3125}
3126
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003127static
3128void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003129 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003130 SDValue LROp, SDValue FPOp, bool isDarwinABI,
Craig Topperb94011f2013-07-14 04:42:23 +00003131 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003132 MachineFunction &MF = DAG.getMachineFunction();
3133
3134 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3135 // might overwrite each other in case of tail call optimization.
3136 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003137 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003138 InFlag = SDValue();
3139 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3140 MemOpChains2, dl);
3141 if (!MemOpChains2.empty())
Owen Anderson9f944592009-08-11 20:47:22 +00003142 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003143 &MemOpChains2[0], MemOpChains2.size());
3144
3145 // Store the return address to the appropriate stack slot.
3146 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3147 isPPC64, isDarwinABI, dl);
3148
3149 // Emit callseq_end just before tailcall node.
3150 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003151 DAG.getIntPtrConstant(0, true), InFlag, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003152 InFlag = Chain.getValue(1);
3153}
3154
3155static
3156unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003157 SDValue &Chain, SDLoc dl, int SPDiff, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003158 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
3159 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003160 const PPCSubtarget &PPCSubTarget) {
Wesley Peck527da1b2010-11-23 03:31:01 +00003161
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003162 bool isPPC64 = PPCSubTarget.isPPC64();
3163 bool isSVR4ABI = PPCSubTarget.isSVR4ABI();
3164
Owen Anderson53aa7a92009-08-10 22:56:29 +00003165 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00003166 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003167 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003168
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003169 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003170
Torok Edwin31e90d22010-08-04 20:47:44 +00003171 bool needIndirectCall = true;
3172 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003173 // If this is an absolute destination address, use the munged value.
3174 Callee = SDValue(Dest, 0);
Torok Edwin31e90d22010-08-04 20:47:44 +00003175 needIndirectCall = false;
3176 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003177
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003178 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3179 // XXX Work around for http://llvm.org/bugs/show_bug.cgi?id=5201
3180 // Use indirect calls for ALL functions calls in JIT mode, since the
3181 // far-call stubs may be outside relocation limits for a BL instruction.
3182 if (!DAG.getTarget().getSubtarget<PPCSubtarget>().isJITCodeModel()) {
3183 unsigned OpFlags = 0;
3184 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyaaba17e2011-07-24 08:22:56 +00003185 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbarcd01ed52011-04-20 00:14:25 +00003186 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003187 (G->getGlobal()->isDeclaration() ||
3188 G->getGlobal()->isWeakForLinker())) {
3189 // PC-relative references to external symbols should go through $stub,
3190 // unless we're building with the leopard linker or later, which
3191 // automatically synthesizes these stubs.
3192 OpFlags = PPCII::MO_DARWIN_STUB;
3193 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003194
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003195 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3196 // every direct call is) turn it into a TargetGlobalAddress /
3197 // TargetExternalSymbol node so that legalize doesn't hack it.
Torok Edwin31e90d22010-08-04 20:47:44 +00003198 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003199 Callee.getValueType(),
3200 0, OpFlags);
Torok Edwin31e90d22010-08-04 20:47:44 +00003201 needIndirectCall = false;
Wesley Peck527da1b2010-11-23 03:31:01 +00003202 }
Torok Edwin31e90d22010-08-04 20:47:44 +00003203 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003204
Torok Edwin31e90d22010-08-04 20:47:44 +00003205 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003206 unsigned char OpFlags = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00003207
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003208 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyaaba17e2011-07-24 08:22:56 +00003209 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbarcd01ed52011-04-20 00:14:25 +00003210 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003211 // PC-relative references to external symbols should go through $stub,
3212 // unless we're building with the leopard linker or later, which
3213 // automatically synthesizes these stubs.
3214 OpFlags = PPCII::MO_DARWIN_STUB;
3215 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003216
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003217 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3218 OpFlags);
3219 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00003220 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003221
Torok Edwin31e90d22010-08-04 20:47:44 +00003222 if (needIndirectCall) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003223 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
3224 // to do the call, we can't use PPCISD::CALL.
3225 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller79fef932009-12-18 13:00:15 +00003226
3227 if (isSVR4ABI && isPPC64) {
3228 // Function pointers in the 64-bit SVR4 ABI do not point to the function
3229 // entry point, but to the function descriptor (the function entry point
3230 // address is part of the function descriptor though).
3231 // The function descriptor is a three doubleword structure with the
3232 // following fields: function entry point, TOC base address and
3233 // environment pointer.
3234 // Thus for a call through a function pointer, the following actions need
3235 // to be performed:
3236 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt57d6de52012-10-23 15:51:16 +00003237 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller79fef932009-12-18 13:00:15 +00003238 // 2. Load the address of the function entry point from the function
3239 // descriptor.
3240 // 3. Load the TOC of the callee from the function descriptor into r2.
3241 // 4. Load the environment pointer from the function descriptor into
3242 // r11.
3243 // 5. Branch to the function entry point address.
3244 // 6. On return of the callee, the TOC of the caller needs to be
3245 // restored (this is done in FinishCall()).
3246 //
3247 // All those operations are flagged together to ensure that no other
3248 // operations can be scheduled in between. E.g. without flagging the
3249 // operations together, a TOC access in the caller could be scheduled
3250 // between the load of the callee TOC and the branch to the callee, which
3251 // results in the TOC access going through the TOC of the callee instead
3252 // of going through the TOC of the caller, which leads to incorrect code.
3253
3254 // Load the address of the function entry point from the function
3255 // descriptor.
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003256 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::Other, MVT::Glue);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003257 SDValue LoadFuncPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, MTCTROps,
3258 InFlag.getNode() ? 3 : 2);
3259 Chain = LoadFuncPtr.getValue(1);
3260 InFlag = LoadFuncPtr.getValue(2);
3261
3262 // Load environment pointer into r11.
3263 // Offset of the environment pointer within the function descriptor.
3264 SDValue PtrOff = DAG.getIntPtrConstant(16);
3265
3266 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
3267 SDValue LoadEnvPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, Chain, AddPtr,
3268 InFlag);
3269 Chain = LoadEnvPtr.getValue(1);
3270 InFlag = LoadEnvPtr.getValue(2);
3271
3272 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3273 InFlag);
3274 Chain = EnvVal.getValue(0);
3275 InFlag = EnvVal.getValue(1);
3276
3277 // Load TOC of the callee into r2. We are using a target-specific load
3278 // with r2 hard coded, because the result of a target-independent load
3279 // would never go directly into r2, since r2 is a reserved register (which
3280 // prevents the register allocator from allocating it), resulting in an
3281 // additional register being allocated and an unnecessary move instruction
3282 // being generated.
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003283 VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003284 SDValue LoadTOCPtr = DAG.getNode(PPCISD::LOAD_TOC, dl, VTs, Chain,
3285 Callee, InFlag);
3286 Chain = LoadTOCPtr.getValue(0);
3287 InFlag = LoadTOCPtr.getValue(1);
3288
3289 MTCTROps[0] = Chain;
3290 MTCTROps[1] = LoadFuncPtr;
3291 MTCTROps[2] = InFlag;
3292 }
3293
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003294 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys, MTCTROps,
3295 2 + (InFlag.getNode() != 0));
3296 InFlag = Chain.getValue(1);
3297
3298 NodeTys.clear();
Owen Anderson9f944592009-08-11 20:47:22 +00003299 NodeTys.push_back(MVT::Other);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003300 NodeTys.push_back(MVT::Glue);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003301 Ops.push_back(Chain);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003302 CallOpc = PPCISD::BCTRL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003303 Callee.setNode(0);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003304 // Add use of X11 (holding environment pointer)
3305 if (isSVR4ABI && isPPC64)
3306 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003307 // Add CTR register as callee so a bctr can be emitted later.
3308 if (isTailCall)
Roman Divackya4a59ae2011-06-03 15:47:49 +00003309 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003310 }
3311
3312 // If this is a direct call, pass the chain and the callee.
3313 if (Callee.getNode()) {
3314 Ops.push_back(Chain);
3315 Ops.push_back(Callee);
3316 }
3317 // If this is a tail call add stack pointer delta.
3318 if (isTailCall)
Owen Anderson9f944592009-08-11 20:47:22 +00003319 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003320
3321 // Add argument registers to the end of the list so that they are known live
3322 // into the call.
3323 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3324 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3325 RegsToPass[i].second.getValueType()));
3326
3327 return CallOpc;
3328}
3329
Roman Divacky76293062012-09-18 16:47:58 +00003330static
3331bool isLocalCall(const SDValue &Callee)
3332{
3333 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Roman Divacky09adf3d2012-09-18 18:27:49 +00003334 return !G->getGlobal()->isDeclaration() &&
3335 !G->getGlobal()->isWeakForLinker();
Roman Divacky76293062012-09-18 16:47:58 +00003336 return false;
3337}
3338
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003339SDValue
3340PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003341 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003342 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003343 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003344 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003345
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003346 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003347 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003348 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003349 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003350
3351 // Copy all of the result registers out of their specified physreg.
3352 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3353 CCValAssign &VA = RVLocs[i];
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003354 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00003355
3356 SDValue Val = DAG.getCopyFromReg(Chain, dl,
3357 VA.getLocReg(), VA.getLocVT(), InFlag);
3358 Chain = Val.getValue(1);
3359 InFlag = Val.getValue(2);
3360
3361 switch (VA.getLocInfo()) {
3362 default: llvm_unreachable("Unknown loc info!");
3363 case CCValAssign::Full: break;
3364 case CCValAssign::AExt:
3365 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3366 break;
3367 case CCValAssign::ZExt:
3368 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3369 DAG.getValueType(VA.getValVT()));
3370 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3371 break;
3372 case CCValAssign::SExt:
3373 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3374 DAG.getValueType(VA.getValVT()));
3375 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3376 break;
3377 }
3378
3379 InVals.push_back(Val);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003380 }
3381
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003382 return Chain;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003383}
3384
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003385SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00003386PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003387 bool isTailCall, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003388 SelectionDAG &DAG,
3389 SmallVector<std::pair<unsigned, SDValue>, 8>
3390 &RegsToPass,
3391 SDValue InFlag, SDValue Chain,
3392 SDValue &Callee,
3393 int SPDiff, unsigned NumBytes,
3394 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003395 SmallVectorImpl<SDValue> &InVals) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003396 std::vector<EVT> NodeTys;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003397 SmallVector<SDValue, 8> Ops;
3398 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, dl, SPDiff,
3399 isTailCall, RegsToPass, Ops, NodeTys,
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003400 PPCSubTarget);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003401
Hal Finkel5ab37802012-08-28 02:10:27 +00003402 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
3403 if (isVarArg && PPCSubTarget.isSVR4ABI() && !PPCSubTarget.isPPC64())
3404 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3405
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003406 // When performing tail call optimization the callee pops its arguments off
3407 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky8da87162013-02-21 20:05:00 +00003408 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003409 int BytesCalleePops =
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003410 (CallConv == CallingConv::Fast &&
3411 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003412
Roman Divackyef21be22012-03-06 16:41:49 +00003413 // Add a register mask operand representing the call-preserved registers.
3414 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
3415 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3416 assert(Mask && "Missing call preserved mask for calling convention");
3417 Ops.push_back(DAG.getRegisterMask(Mask));
3418
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003419 if (InFlag.getNode())
3420 Ops.push_back(InFlag);
3421
3422 // Emit tail call.
3423 if (isTailCall) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003424 assert(((Callee.getOpcode() == ISD::Register &&
3425 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3426 Callee.getOpcode() == ISD::TargetExternalSymbol ||
3427 Callee.getOpcode() == ISD::TargetGlobalAddress ||
3428 isa<ConstantSDNode>(Callee)) &&
3429 "Expecting an global address, external symbol, absolute value or register");
3430
Owen Anderson9f944592009-08-11 20:47:22 +00003431 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, &Ops[0], Ops.size());
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003432 }
3433
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003434 // Add a NOP immediately after the branch instruction when using the 64-bit
3435 // SVR4 ABI. At link time, if caller and callee are in a different module and
3436 // thus have a different TOC, the call will be replaced with a call to a stub
3437 // function which saves the current TOC, loads the TOC of the callee and
3438 // branches to the callee. The NOP will be replaced with a load instruction
3439 // which restores the TOC of the caller from the TOC save slot of the current
3440 // stack frame. If caller and callee belong to the same module (and have the
3441 // same TOC), the NOP will remain unchanged.
Hal Finkel51861b42012-03-31 14:45:15 +00003442
3443 bool needsTOCRestore = false;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003444 if (!isTailCall && PPCSubTarget.isSVR4ABI()&& PPCSubTarget.isPPC64()) {
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003445 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003446 // This is a call through a function pointer.
3447 // Restore the caller TOC from the save area into R2.
3448 // See PrepareCall() for more information about calls through function
3449 // pointers in the 64-bit SVR4 ABI.
3450 // We are using a target-specific load with r2 hard coded, because the
3451 // result of a target-independent load would never go directly into r2,
3452 // since r2 is a reserved register (which prevents the register allocator
3453 // from allocating it), resulting in an additional register being
3454 // allocated and an unnecessary move instruction being generated.
Hal Finkel51861b42012-03-31 14:45:15 +00003455 needsTOCRestore = true;
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003456 } else if ((CallOpc == PPCISD::CALL) && !isLocalCall(Callee)) {
Roman Divacky76293062012-09-18 16:47:58 +00003457 // Otherwise insert NOP for non-local calls.
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003458 CallOpc = PPCISD::CALL_NOP;
Tilmann Scheller79fef932009-12-18 13:00:15 +00003459 }
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003460 }
3461
Hal Finkel51861b42012-03-31 14:45:15 +00003462 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
3463 InFlag = Chain.getValue(1);
3464
3465 if (needsTOCRestore) {
3466 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3467 Chain = DAG.getNode(PPCISD::TOC_RESTORE, dl, VTs, Chain, InFlag);
3468 InFlag = Chain.getValue(1);
3469 }
3470
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003471 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3472 DAG.getIntPtrConstant(BytesCalleePops, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003473 InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003474 if (!Ins.empty())
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003475 InFlag = Chain.getValue(1);
3476
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003477 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3478 Ins, dl, DAG, InVals);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003479}
3480
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003481SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00003482PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003483 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00003484 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +00003485 SDLoc &dl = CLI.DL;
3486 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
3487 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
3488 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00003489 SDValue Chain = CLI.Chain;
3490 SDValue Callee = CLI.Callee;
3491 bool &isTailCall = CLI.IsTailCall;
3492 CallingConv::ID CallConv = CLI.CallConv;
3493 bool isVarArg = CLI.IsVarArg;
3494
Evan Cheng67a69dd2010-01-27 00:07:07 +00003495 if (isTailCall)
3496 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
3497 Ins, DAG);
3498
Bill Schmidt57d6de52012-10-23 15:51:16 +00003499 if (PPCSubTarget.isSVR4ABI()) {
3500 if (PPCSubTarget.isPPC64())
3501 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
3502 isTailCall, Outs, OutVals, Ins,
3503 dl, DAG, InVals);
3504 else
3505 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
3506 isTailCall, Outs, OutVals, Ins,
3507 dl, DAG, InVals);
3508 }
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003509
Bill Schmidt57d6de52012-10-23 15:51:16 +00003510 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
3511 isTailCall, Outs, OutVals, Ins,
3512 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003513}
3514
3515SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003516PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
3517 CallingConv::ID CallConv, bool isVarArg,
3518 bool isTailCall,
3519 const SmallVectorImpl<ISD::OutputArg> &Outs,
3520 const SmallVectorImpl<SDValue> &OutVals,
3521 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003522 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003523 SmallVectorImpl<SDValue> &InVals) const {
3524 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003525 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003526
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003527 assert((CallConv == CallingConv::C ||
3528 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003529
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003530 unsigned PtrByteSize = 4;
3531
3532 MachineFunction &MF = DAG.getMachineFunction();
3533
3534 // Mark this function as potentially containing a function that contains a
3535 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3536 // and restoring the callers stack pointer in this functions epilog. This is
3537 // done because by tail calling the called function might overwrite the value
3538 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003539 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3540 CallConv == CallingConv::Fast)
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003541 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peck527da1b2010-11-23 03:31:01 +00003542
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003543 // Count how many bytes are to be pushed on the stack, including the linkage
3544 // area, parameter list area and the part of the local variable space which
3545 // contains copies of aggregates which are passed by value.
3546
3547 // Assign locations to all of the outgoing arguments.
3548 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003549 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003550 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003551
3552 // Reserve space for the linkage area on the stack.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003553 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003554
3555 if (isVarArg) {
3556 // Handle fixed and variable vector arguments differently.
3557 // Fixed vector arguments go into registers as long as registers are
3558 // available. Variable vector arguments always go into memory.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003559 unsigned NumArgs = Outs.size();
Wesley Peck527da1b2010-11-23 03:31:01 +00003560
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003561 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00003562 MVT ArgVT = Outs[i].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003563 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003564 bool Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00003565
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003566 if (Outs[i].IsFixed) {
Bill Schmidtef17c142013-02-06 17:33:58 +00003567 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
3568 CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003569 } else {
Bill Schmidtef17c142013-02-06 17:33:58 +00003570 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
3571 ArgFlags, CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003572 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003573
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003574 if (Result) {
Torok Edwinfb8d6d52009-07-08 20:53:28 +00003575#ifndef NDEBUG
Chris Lattner13626022009-08-23 06:03:38 +00003576 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sandsf5dda012010-11-03 11:35:31 +00003577 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwinfb8d6d52009-07-08 20:53:28 +00003578#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +00003579 llvm_unreachable(0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003580 }
3581 }
3582 } else {
3583 // All arguments are treated the same.
Bill Schmidtef17c142013-02-06 17:33:58 +00003584 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003585 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003586
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003587 // Assign locations to all of the outgoing aggregate by value arguments.
3588 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003589 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003590 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003591
3592 // Reserve stack space for the allocations in CCInfo.
3593 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
3594
Bill Schmidtef17c142013-02-06 17:33:58 +00003595 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003596
3597 // Size of the linkage area, parameter list area and the part of the local
3598 // space variable where copies of aggregates which are passed by value are
3599 // stored.
3600 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00003601
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003602 // Calculate by how many bytes the stack has to be adjusted in case of tail
3603 // call optimization.
3604 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3605
3606 // Adjust the stack pointer for the new arguments...
3607 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00003608 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3609 dl);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003610 SDValue CallSeqStart = Chain;
3611
3612 // Load the return address and frame pointer so it can be moved somewhere else
3613 // later.
3614 SDValue LROp, FPOp;
3615 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
3616 dl);
3617
3618 // Set up a copy of the stack pointer for use loading and storing any
3619 // arguments that may not fit in the registers available for argument
3620 // passing.
Owen Anderson9f944592009-08-11 20:47:22 +00003621 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peck527da1b2010-11-23 03:31:01 +00003622
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003623 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3624 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3625 SmallVector<SDValue, 8> MemOpChains;
3626
Roman Divacky71038e72011-08-30 17:04:16 +00003627 bool seenFloatArg = false;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003628 // Walk the register/memloc assignments, inserting copies/loads.
3629 for (unsigned i = 0, j = 0, e = ArgLocs.size();
3630 i != e;
3631 ++i) {
3632 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00003633 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003634 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peck527da1b2010-11-23 03:31:01 +00003635
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003636 if (Flags.isByVal()) {
3637 // Argument is an aggregate which is passed by value, thus we need to
3638 // create a copy of it in the local variable space of the current stack
3639 // frame (which is the stack frame of the caller) and pass the address of
3640 // this copy to the callee.
3641 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
3642 CCValAssign &ByValVA = ByValArgLocs[j++];
3643 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peck527da1b2010-11-23 03:31:01 +00003644
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003645 // Memory reserved in the local variable space of the callers stack frame.
3646 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00003647
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003648 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3649 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Wesley Peck527da1b2010-11-23 03:31:01 +00003650
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003651 // Create a copy of the argument in the local area of the current
3652 // stack frame.
3653 SDValue MemcpyCall =
3654 CreateCopyOfByValArgument(Arg, PtrOff,
3655 CallSeqStart.getNode()->getOperand(0),
3656 Flags, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00003657
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003658 // This must go outside the CALLSEQ_START..END.
3659 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00003660 CallSeqStart.getNode()->getOperand(1),
3661 SDLoc(MemcpyCall));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003662 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3663 NewCallSeqStart.getNode());
3664 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peck527da1b2010-11-23 03:31:01 +00003665
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003666 // Pass the address of the aggregate copy on the stack either in a
3667 // physical register or in the parameter list area of the current stack
3668 // frame to the callee.
3669 Arg = PtrOff;
3670 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003671
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003672 if (VA.isRegLoc()) {
Roman Divacky71038e72011-08-30 17:04:16 +00003673 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003674 // Put argument in a physical register.
3675 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3676 } else {
3677 // Put argument in the parameter list area of the current stack frame.
3678 assert(VA.isMemLoc());
3679 unsigned LocMemOffset = VA.getLocMemOffset();
3680
3681 if (!isTailCall) {
3682 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3683 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
3684
3685 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner676c61d2010-09-21 18:41:36 +00003686 MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00003687 false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003688 } else {
3689 // Calculate and remember argument location.
3690 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
3691 TailCallArguments);
3692 }
3693 }
3694 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003695
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003696 if (!MemOpChains.empty())
Owen Anderson9f944592009-08-11 20:47:22 +00003697 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003698 &MemOpChains[0], MemOpChains.size());
Wesley Peck527da1b2010-11-23 03:31:01 +00003699
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003700 // Build a sequence of copy-to-reg nodes chained together with token chain
3701 // and flag operands which copy the outgoing args into the appropriate regs.
3702 SDValue InFlag;
3703 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
3704 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
3705 RegsToPass[i].second, InFlag);
3706 InFlag = Chain.getValue(1);
3707 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003708
Hal Finkel5ab37802012-08-28 02:10:27 +00003709 // Set CR bit 6 to true if this is a vararg call with floating args passed in
3710 // registers.
3711 if (isVarArg) {
NAKAMURA Takumiac490292012-08-30 15:52:29 +00003712 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3713 SDValue Ops[] = { Chain, InFlag };
3714
Hal Finkel5ab37802012-08-28 02:10:27 +00003715 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
NAKAMURA Takumiac490292012-08-30 15:52:29 +00003716 dl, VTs, Ops, InFlag.getNode() ? 2 : 1);
3717
Hal Finkel5ab37802012-08-28 02:10:27 +00003718 InFlag = Chain.getValue(1);
3719 }
3720
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003721 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003722 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
3723 false, TailCallArguments);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003724
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003725 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
3726 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
3727 Ins, InVals);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003728}
3729
Bill Schmidt57d6de52012-10-23 15:51:16 +00003730// Copy an argument into memory, being careful to do this outside the
3731// call sequence for the call to which the argument belongs.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003732SDValue
Bill Schmidt57d6de52012-10-23 15:51:16 +00003733PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
3734 SDValue CallSeqStart,
3735 ISD::ArgFlagsTy Flags,
3736 SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003737 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00003738 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
3739 CallSeqStart.getNode()->getOperand(0),
3740 Flags, DAG, dl);
3741 // The MEMCPY must go outside the CALLSEQ_START..END.
3742 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00003743 CallSeqStart.getNode()->getOperand(1),
3744 SDLoc(MemcpyCall));
Bill Schmidt57d6de52012-10-23 15:51:16 +00003745 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3746 NewCallSeqStart.getNode());
3747 return NewCallSeqStart;
3748}
3749
3750SDValue
3751PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003752 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003753 bool isTailCall,
3754 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00003755 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003756 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003757 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003758 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003759
Bill Schmidt57d6de52012-10-23 15:51:16 +00003760 unsigned NumOps = Outs.size();
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003761
Bill Schmidt57d6de52012-10-23 15:51:16 +00003762 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3763 unsigned PtrByteSize = 8;
3764
3765 MachineFunction &MF = DAG.getMachineFunction();
3766
3767 // Mark this function as potentially containing a function that contains a
3768 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3769 // and restoring the callers stack pointer in this functions epilog. This is
3770 // done because by tail calling the called function might overwrite the value
3771 // in this function's (MF) stack pointer stack slot 0(SP).
3772 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3773 CallConv == CallingConv::Fast)
3774 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
3775
3776 unsigned nAltivecParamsAtEnd = 0;
3777
3778 // Count how many bytes are to be pushed on the stack, including the linkage
3779 // area, and parameter passing area. We start with at least 48 bytes, which
3780 // is reserved space for [SP][CR][LR][3 x unused].
3781 // NOTE: For PPC64, nAltivecParamsAtEnd always remains zero as a result
3782 // of this call.
3783 unsigned NumBytes =
3784 CalculateParameterAndLinkageAreaSize(DAG, true, isVarArg, CallConv,
3785 Outs, OutVals, nAltivecParamsAtEnd);
3786
3787 // Calculate by how many bytes the stack has to be adjusted in case of tail
3788 // call optimization.
3789 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3790
3791 // To protect arguments on the stack from being clobbered in a tail call,
3792 // force all the loads to happen before doing any other lowering.
3793 if (isTailCall)
3794 Chain = DAG.getStackArgumentTokenFactor(Chain);
3795
3796 // Adjust the stack pointer for the new arguments...
3797 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00003798 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3799 dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00003800 SDValue CallSeqStart = Chain;
3801
3802 // Load the return address and frame pointer so it can be move somewhere else
3803 // later.
3804 SDValue LROp, FPOp;
3805 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
3806 dl);
3807
3808 // Set up a copy of the stack pointer for use loading and storing any
3809 // arguments that may not fit in the registers available for argument
3810 // passing.
3811 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
3812
3813 // Figure out which arguments are going to go in registers, and which in
3814 // memory. Also, if this is a vararg function, floating point operations
3815 // must be stored to our stack, and loaded into integer regs as well, if
3816 // any integer regs are available for argument passing.
3817 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
3818 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3819
3820 static const uint16_t GPR[] = {
3821 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3822 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3823 };
3824 static const uint16_t *FPR = GetFPR();
3825
3826 static const uint16_t VR[] = {
3827 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3828 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3829 };
3830 const unsigned NumGPRs = array_lengthof(GPR);
3831 const unsigned NumFPRs = 13;
3832 const unsigned NumVRs = array_lengthof(VR);
3833
3834 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3835 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3836
3837 SmallVector<SDValue, 8> MemOpChains;
3838 for (unsigned i = 0; i != NumOps; ++i) {
3839 SDValue Arg = OutVals[i];
3840 ISD::ArgFlagsTy Flags = Outs[i].Flags;
3841
3842 // PtrOff will be used to store the current argument to the stack if a
3843 // register cannot be found for it.
3844 SDValue PtrOff;
3845
3846 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
3847
3848 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
3849
3850 // Promote integers to 64-bit values.
3851 if (Arg.getValueType() == MVT::i32) {
3852 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
3853 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3854 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
3855 }
3856
3857 // FIXME memcpy is used way more than necessary. Correctness first.
3858 // Note: "by value" is code for passing a structure by value, not
3859 // basic types.
3860 if (Flags.isByVal()) {
3861 // Note: Size includes alignment padding, so
3862 // struct x { short a; char b; }
3863 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
3864 // These are the proper values we need for right-justifying the
3865 // aggregate in a parameter register.
3866 unsigned Size = Flags.getByValSize();
Bill Schmidt9953cf22012-10-31 01:15:05 +00003867
3868 // An empty aggregate parameter takes up no storage and no
3869 // registers.
3870 if (Size == 0)
3871 continue;
3872
Bill Schmidt57d6de52012-10-23 15:51:16 +00003873 // All aggregates smaller than 8 bytes must be passed right-justified.
3874 if (Size==1 || Size==2 || Size==4) {
3875 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
3876 if (GPR_idx != NumGPRs) {
3877 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
3878 MachinePointerInfo(), VT,
3879 false, false, 0);
3880 MemOpChains.push_back(Load.getValue(1));
3881 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3882
3883 ArgOffset += PtrByteSize;
3884 continue;
3885 }
3886 }
3887
3888 if (GPR_idx == NumGPRs && Size < 8) {
3889 SDValue Const = DAG.getConstant(PtrByteSize - Size,
3890 PtrOff.getValueType());
3891 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3892 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3893 CallSeqStart,
3894 Flags, DAG, dl);
3895 ArgOffset += PtrByteSize;
3896 continue;
3897 }
3898 // Copy entire object into memory. There are cases where gcc-generated
3899 // code assumes it is there, even if it could be put entirely into
3900 // registers. (This is not what the doc says.)
3901
3902 // FIXME: The above statement is likely due to a misunderstanding of the
3903 // documents. All arguments must be copied into the parameter area BY
3904 // THE CALLEE in the event that the callee takes the address of any
3905 // formal argument. That has not yet been implemented. However, it is
3906 // reasonable to use the stack area as a staging area for the register
3907 // load.
3908
3909 // Skip this for small aggregates, as we will use the same slot for a
3910 // right-justified copy, below.
3911 if (Size >= 8)
3912 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
3913 CallSeqStart,
3914 Flags, DAG, dl);
3915
3916 // When a register is available, pass a small aggregate right-justified.
3917 if (Size < 8 && GPR_idx != NumGPRs) {
3918 // The easiest way to get this right-justified in a register
3919 // is to copy the structure into the rightmost portion of a
3920 // local variable slot, then load the whole slot into the
3921 // register.
3922 // FIXME: The memcpy seems to produce pretty awful code for
3923 // small aggregates, particularly for packed ones.
Matt Arsenault758659232013-05-18 00:21:46 +00003924 // FIXME: It would be preferable to use the slot in the
Bill Schmidt57d6de52012-10-23 15:51:16 +00003925 // parameter save area instead of a new local variable.
3926 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
3927 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3928 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3929 CallSeqStart,
3930 Flags, DAG, dl);
3931
3932 // Load the slot into the register.
3933 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
3934 MachinePointerInfo(),
3935 false, false, false, 0);
3936 MemOpChains.push_back(Load.getValue(1));
3937 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3938
3939 // Done with this argument.
3940 ArgOffset += PtrByteSize;
3941 continue;
3942 }
3943
3944 // For aggregates larger than PtrByteSize, copy the pieces of the
3945 // object that fit into registers from the parameter save area.
3946 for (unsigned j=0; j<Size; j+=PtrByteSize) {
3947 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
3948 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
3949 if (GPR_idx != NumGPRs) {
3950 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
3951 MachinePointerInfo(),
3952 false, false, false, 0);
3953 MemOpChains.push_back(Load.getValue(1));
3954 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3955 ArgOffset += PtrByteSize;
3956 } else {
3957 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
3958 break;
3959 }
3960 }
3961 continue;
3962 }
3963
Craig Topper56710102013-08-15 02:33:50 +00003964 switch (Arg.getSimpleValueType().SimpleTy) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00003965 default: llvm_unreachable("Unexpected ValueType for argument!");
3966 case MVT::i32:
3967 case MVT::i64:
3968 if (GPR_idx != NumGPRs) {
3969 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
3970 } else {
3971 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3972 true, isTailCall, false, MemOpChains,
3973 TailCallArguments, dl);
3974 }
3975 ArgOffset += PtrByteSize;
3976 break;
3977 case MVT::f32:
3978 case MVT::f64:
3979 if (FPR_idx != NumFPRs) {
3980 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
3981
3982 if (isVarArg) {
Bill Schmidtbd4ac262012-10-29 21:18:16 +00003983 // A single float or an aggregate containing only a single float
3984 // must be passed right-justified in the stack doubleword, and
3985 // in the GPR, if one is available.
3986 SDValue StoreOff;
Craig Topper56710102013-08-15 02:33:50 +00003987 if (Arg.getSimpleValueType().SimpleTy == MVT::f32) {
Bill Schmidtbd4ac262012-10-29 21:18:16 +00003988 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
3989 StoreOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
3990 } else
3991 StoreOff = PtrOff;
3992
3993 SDValue Store = DAG.getStore(Chain, dl, Arg, StoreOff,
Bill Schmidt57d6de52012-10-23 15:51:16 +00003994 MachinePointerInfo(), false, false, 0);
3995 MemOpChains.push_back(Store);
3996
3997 // Float varargs are always shadowed in available integer registers
3998 if (GPR_idx != NumGPRs) {
3999 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4000 MachinePointerInfo(), false, false,
4001 false, 0);
4002 MemOpChains.push_back(Load.getValue(1));
4003 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4004 }
4005 } else if (GPR_idx != NumGPRs)
4006 // If we have any FPRs remaining, we may also have GPRs remaining.
4007 ++GPR_idx;
4008 } else {
4009 // Single-precision floating-point values are mapped to the
4010 // second (rightmost) word of the stack doubleword.
4011 if (Arg.getValueType() == MVT::f32) {
4012 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4013 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4014 }
4015
4016 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4017 true, isTailCall, false, MemOpChains,
4018 TailCallArguments, dl);
4019 }
4020 ArgOffset += 8;
4021 break;
4022 case MVT::v4f32:
4023 case MVT::v4i32:
4024 case MVT::v8i16:
4025 case MVT::v16i8:
4026 if (isVarArg) {
4027 // These go aligned on the stack, or in the corresponding R registers
4028 // when within range. The Darwin PPC ABI doc claims they also go in
4029 // V registers; in fact gcc does this only for arguments that are
4030 // prototyped, not for those that match the ... We do it for all
4031 // arguments, seems to work.
4032 while (ArgOffset % 16 !=0) {
4033 ArgOffset += PtrByteSize;
4034 if (GPR_idx != NumGPRs)
4035 GPR_idx++;
4036 }
4037 // We could elide this store in the case where the object fits
4038 // entirely in R registers. Maybe later.
4039 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
4040 DAG.getConstant(ArgOffset, PtrVT));
4041 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4042 MachinePointerInfo(), false, false, 0);
4043 MemOpChains.push_back(Store);
4044 if (VR_idx != NumVRs) {
4045 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
4046 MachinePointerInfo(),
4047 false, false, false, 0);
4048 MemOpChains.push_back(Load.getValue(1));
4049 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4050 }
4051 ArgOffset += 16;
4052 for (unsigned i=0; i<16; i+=PtrByteSize) {
4053 if (GPR_idx == NumGPRs)
4054 break;
4055 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4056 DAG.getConstant(i, PtrVT));
4057 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4058 false, false, false, 0);
4059 MemOpChains.push_back(Load.getValue(1));
4060 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4061 }
4062 break;
4063 }
4064
4065 // Non-varargs Altivec params generally go in registers, but have
4066 // stack space allocated at the end.
4067 if (VR_idx != NumVRs) {
4068 // Doesn't have GPR space allocated.
4069 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4070 } else {
4071 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4072 true, isTailCall, true, MemOpChains,
4073 TailCallArguments, dl);
4074 ArgOffset += 16;
4075 }
4076 break;
4077 }
4078 }
4079
4080 if (!MemOpChains.empty())
4081 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
4082 &MemOpChains[0], MemOpChains.size());
4083
4084 // Check if this is an indirect call (MTCTR/BCTRL).
4085 // See PrepareCall() for more information about calls through function
4086 // pointers in the 64-bit SVR4 ABI.
4087 if (!isTailCall &&
4088 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4089 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4090 !isBLACompatibleAddress(Callee, DAG)) {
4091 // Load r2 into a virtual register and store it to the TOC save area.
4092 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4093 // TOC save area offset.
4094 SDValue PtrOff = DAG.getIntPtrConstant(40);
4095 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4096 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr, MachinePointerInfo(),
4097 false, false, 0);
4098 // R12 must contain the address of an indirect callee. This does not
4099 // mean the MTCTR instruction must use R12; it's easier to model this
4100 // as an extra parameter, so do that.
4101 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
4102 }
4103
4104 // Build a sequence of copy-to-reg nodes chained together with token chain
4105 // and flag operands which copy the outgoing args into the appropriate regs.
4106 SDValue InFlag;
4107 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4108 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4109 RegsToPass[i].second, InFlag);
4110 InFlag = Chain.getValue(1);
4111 }
4112
4113 if (isTailCall)
4114 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4115 FPOp, true, TailCallArguments);
4116
4117 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4118 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4119 Ins, InVals);
4120}
4121
4122SDValue
4123PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4124 CallingConv::ID CallConv, bool isVarArg,
4125 bool isTailCall,
4126 const SmallVectorImpl<ISD::OutputArg> &Outs,
4127 const SmallVectorImpl<SDValue> &OutVals,
4128 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004129 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt57d6de52012-10-23 15:51:16 +00004130 SmallVectorImpl<SDValue> &InVals) const {
4131
4132 unsigned NumOps = Outs.size();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004133
Owen Anderson53aa7a92009-08-10 22:56:29 +00004134 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00004135 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004136 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004137
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004138 MachineFunction &MF = DAG.getMachineFunction();
4139
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004140 // Mark this function as potentially containing a function that contains a
4141 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4142 // and restoring the callers stack pointer in this functions epilog. This is
4143 // done because by tail calling the called function might overwrite the value
4144 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004145 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4146 CallConv == CallingConv::Fast)
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004147 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4148
4149 unsigned nAltivecParamsAtEnd = 0;
4150
Chris Lattneraa40ec12006-05-16 22:56:08 +00004151 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerec78cad2006-06-26 22:48:35 +00004152 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerb7552a82006-05-17 00:15:40 +00004153 // prereserved space for [SP][CR][LR][3 x unused].
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004154 unsigned NumBytes =
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004155 CalculateParameterAndLinkageAreaSize(DAG, isPPC64, isVarArg, CallConv,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004156 Outs, OutVals,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004157 nAltivecParamsAtEnd);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004158
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004159 // Calculate by how many bytes the stack has to be adjusted in case of tail
4160 // call optimization.
4161 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004162
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004163 // To protect arguments on the stack from being clobbered in a tail call,
4164 // force all the loads to happen before doing any other lowering.
4165 if (isTailCall)
4166 Chain = DAG.getStackArgumentTokenFactor(Chain);
4167
Chris Lattnerb7552a82006-05-17 00:15:40 +00004168 // Adjust the stack pointer for the new arguments...
4169 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004170 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4171 dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004172 SDValue CallSeqStart = Chain;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004173
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004174 // Load the return address and frame pointer so it can be move somewhere else
4175 // later.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004176 SDValue LROp, FPOp;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004177 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4178 dl);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004179
Chris Lattnerb7552a82006-05-17 00:15:40 +00004180 // Set up a copy of the stack pointer for use loading and storing any
4181 // arguments that may not fit in the registers available for argument
4182 // passing.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004183 SDValue StackPtr;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004184 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00004185 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004186 else
Owen Anderson9f944592009-08-11 20:47:22 +00004187 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004188
Chris Lattnerb7552a82006-05-17 00:15:40 +00004189 // Figure out which arguments are going to go in registers, and which in
4190 // memory. Also, if this is a vararg function, floating point operations
4191 // must be stored to our stack, and loaded into integer regs as well, if
4192 // any integer regs are available for argument passing.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00004193 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004194 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004195
Craig Topperca658c22012-03-11 07:16:55 +00004196 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004197 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4198 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4199 };
Craig Topperca658c22012-03-11 07:16:55 +00004200 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00004201 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4202 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4203 };
Craig Topperca658c22012-03-11 07:16:55 +00004204 static const uint16_t *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004205
Craig Topperca658c22012-03-11 07:16:55 +00004206 static const uint16_t VR[] = {
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004207 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4208 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4209 };
Owen Andersone2f23a32007-09-07 04:06:50 +00004210 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004211 const unsigned NumFPRs = 13;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00004212 const unsigned NumVRs = array_lengthof(VR);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004213
Craig Topperca658c22012-03-11 07:16:55 +00004214 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004215
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004216 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004217 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4218
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004219 SmallVector<SDValue, 8> MemOpChains;
Evan Chengc2cd4732006-05-25 00:57:32 +00004220 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004221 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004222 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004223
Chris Lattnerb7552a82006-05-17 00:15:40 +00004224 // PtrOff will be used to store the current argument to the stack if a
4225 // register cannot be found for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004226 SDValue PtrOff;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004227
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004228 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004229
Dale Johannesen679073b2009-02-04 02:34:38 +00004230 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004231
4232 // On PPC64, promote integers to 64-bit values.
Owen Anderson9f944592009-08-11 20:47:22 +00004233 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sandsd97eea32008-03-21 09:14:45 +00004234 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4235 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson9f944592009-08-11 20:47:22 +00004236 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004237 }
Dale Johannesen85d41a12008-03-04 23:17:14 +00004238
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004239 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004240 // Note: "by value" is code for passing a structure by value, not
4241 // basic types.
Duncan Sandsd97eea32008-03-21 09:14:45 +00004242 if (Flags.isByVal()) {
4243 unsigned Size = Flags.getByValSize();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004244 // Very small objects are passed right-justified. Everything else is
4245 // passed left-justified.
4246 if (Size==1 || Size==2) {
4247 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004248 if (GPR_idx != NumGPRs) {
Stuart Hastings81c43062011-02-16 16:23:55 +00004249 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d178ed2010-09-21 17:04:51 +00004250 MachinePointerInfo(), VT,
4251 false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004252 MemOpChains.push_back(Load.getValue(1));
4253 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004254
4255 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004256 } else {
Bill Schmidt48081ca2012-10-16 13:30:53 +00004257 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4258 PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004259 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004260 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4261 CallSeqStart,
4262 Flags, DAG, dl);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004263 ArgOffset += PtrByteSize;
4264 }
4265 continue;
4266 }
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00004267 // Copy entire object into memory. There are cases where gcc-generated
4268 // code assumes it is there, even if it could be put entirely into
4269 // registers. (This is not what the doc says.)
Bill Schmidt57d6de52012-10-23 15:51:16 +00004270 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4271 CallSeqStart,
4272 Flags, DAG, dl);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004273
4274 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
4275 // copy the pieces of the object that fit into registers from the
4276 // parameter save area.
Dale Johannesen85d41a12008-03-04 23:17:14 +00004277 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004278 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004279 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen85d41a12008-03-04 23:17:14 +00004280 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00004281 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4282 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004283 false, false, false, 0);
Dale Johannesen0d235052008-03-05 23:31:27 +00004284 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen85d41a12008-03-04 23:17:14 +00004285 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004286 ArgOffset += PtrByteSize;
Dale Johannesen85d41a12008-03-04 23:17:14 +00004287 } else {
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00004288 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004289 break;
Dale Johannesen85d41a12008-03-04 23:17:14 +00004290 }
4291 }
4292 continue;
4293 }
4294
Craig Topper56710102013-08-15 02:33:50 +00004295 switch (Arg.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00004296 default: llvm_unreachable("Unexpected ValueType for argument!");
Owen Anderson9f944592009-08-11 20:47:22 +00004297 case MVT::i32:
4298 case MVT::i64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004299 if (GPR_idx != NumGPRs) {
4300 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerb7552a82006-05-17 00:15:40 +00004301 } else {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004302 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4303 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004304 TailCallArguments, dl);
Chris Lattnerb7552a82006-05-17 00:15:40 +00004305 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004306 ArgOffset += PtrByteSize;
Chris Lattnerb7552a82006-05-17 00:15:40 +00004307 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004308 case MVT::f32:
4309 case MVT::f64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004310 if (FPR_idx != NumFPRs) {
4311 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4312
Chris Lattnerb7552a82006-05-17 00:15:40 +00004313 if (isVarArg) {
Chris Lattner676c61d2010-09-21 18:41:36 +00004314 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4315 MachinePointerInfo(), false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004316 MemOpChains.push_back(Store);
4317
Chris Lattnerb7552a82006-05-17 00:15:40 +00004318 // Float varargs are always shadowed in available integer registers
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004319 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00004320 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004321 MachinePointerInfo(), false, false,
4322 false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004323 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004324 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerb7552a82006-05-17 00:15:40 +00004325 }
Owen Anderson9f944592009-08-11 20:47:22 +00004326 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004327 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004328 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattner7727d052010-09-21 06:44:06 +00004329 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4330 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004331 false, false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004332 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004333 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattneraa40ec12006-05-16 22:56:08 +00004334 }
4335 } else {
Chris Lattnerb7552a82006-05-17 00:15:40 +00004336 // If we have any FPRs remaining, we may also have GPRs remaining.
4337 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
4338 // GPRs.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004339 if (GPR_idx != NumGPRs)
4340 ++GPR_idx;
Owen Anderson9f944592009-08-11 20:47:22 +00004341 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004342 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
4343 ++GPR_idx;
Chris Lattneraa40ec12006-05-16 22:56:08 +00004344 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004345 } else
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004346 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4347 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004348 TailCallArguments, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004349 if (isPPC64)
4350 ArgOffset += 8;
4351 else
Owen Anderson9f944592009-08-11 20:47:22 +00004352 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerb7552a82006-05-17 00:15:40 +00004353 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004354 case MVT::v4f32:
4355 case MVT::v4i32:
4356 case MVT::v8i16:
4357 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00004358 if (isVarArg) {
4359 // These go aligned on the stack, or in the corresponding R registers
Scott Michelcf0da6c2009-02-17 22:15:04 +00004360 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesenb28456e2008-03-12 00:22:17 +00004361 // V registers; in fact gcc does this only for arguments that are
4362 // prototyped, not for those that match the ... We do it for all
4363 // arguments, seems to work.
4364 while (ArgOffset % 16 !=0) {
4365 ArgOffset += PtrByteSize;
4366 if (GPR_idx != NumGPRs)
4367 GPR_idx++;
4368 }
4369 // We could elide this store in the case where the object fits
4370 // entirely in R registers. Maybe later.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004371 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesenb28456e2008-03-12 00:22:17 +00004372 DAG.getConstant(ArgOffset, PtrVT));
Chris Lattner676c61d2010-09-21 18:41:36 +00004373 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4374 MachinePointerInfo(), false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004375 MemOpChains.push_back(Store);
4376 if (VR_idx != NumVRs) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004377 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattner7727d052010-09-21 06:44:06 +00004378 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004379 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004380 MemOpChains.push_back(Load.getValue(1));
4381 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4382 }
4383 ArgOffset += 16;
4384 for (unsigned i=0; i<16; i+=PtrByteSize) {
4385 if (GPR_idx == NumGPRs)
4386 break;
Dale Johannesen679073b2009-02-04 02:34:38 +00004387 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesenb28456e2008-03-12 00:22:17 +00004388 DAG.getConstant(i, PtrVT));
Chris Lattner7727d052010-09-21 06:44:06 +00004389 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004390 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004391 MemOpChains.push_back(Load.getValue(1));
4392 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4393 }
4394 break;
4395 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004396
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004397 // Non-varargs Altivec params generally go in registers, but have
4398 // stack space allocated at the end.
4399 if (VR_idx != NumVRs) {
4400 // Doesn't have GPR space allocated.
4401 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4402 } else if (nAltivecParamsAtEnd==0) {
4403 // We are emitting Altivec params in order.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004404 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4405 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004406 TailCallArguments, dl);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004407 ArgOffset += 16;
Dale Johannesenb28456e2008-03-12 00:22:17 +00004408 }
Chris Lattnerb7552a82006-05-17 00:15:40 +00004409 break;
Chris Lattneraa40ec12006-05-16 22:56:08 +00004410 }
Chris Lattneraa40ec12006-05-16 22:56:08 +00004411 }
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004412 // If all Altivec parameters fit in registers, as they usually do,
4413 // they get stack space following the non-Altivec parameters. We
4414 // don't track this here because nobody below needs it.
4415 // If there are more Altivec parameters than fit in registers emit
4416 // the stores here.
4417 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
4418 unsigned j = 0;
4419 // Offset is aligned; skip 1st 12 params which go in V registers.
4420 ArgOffset = ((ArgOffset+15)/16)*16;
4421 ArgOffset += 12*16;
4422 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004423 SDValue Arg = OutVals[i];
4424 EVT ArgType = Outs[i].VT;
Owen Anderson9f944592009-08-11 20:47:22 +00004425 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
4426 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004427 if (++j > NumVRs) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004428 SDValue PtrOff;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004429 // We are emitting Altivec params in order.
4430 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4431 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004432 TailCallArguments, dl);
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004433 ArgOffset += 16;
4434 }
4435 }
4436 }
4437 }
4438
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004439 if (!MemOpChains.empty())
Owen Anderson9f944592009-08-11 20:47:22 +00004440 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnered728e82006-08-11 17:38:39 +00004441 &MemOpChains[0], MemOpChains.size());
Scott Michelcf0da6c2009-02-17 22:15:04 +00004442
Dale Johannesen90eab672010-03-09 20:15:42 +00004443 // On Darwin, R12 must contain the address of an indirect callee. This does
4444 // not mean the MTCTR instruction must use R12; it's easier to model this as
4445 // an extra parameter, so do that.
Wesley Peck527da1b2010-11-23 03:31:01 +00004446 if (!isTailCall &&
Dale Johannesen90eab672010-03-09 20:15:42 +00004447 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4448 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4449 !isBLACompatibleAddress(Callee, DAG))
4450 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
4451 PPC::R12), Callee));
4452
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004453 // Build a sequence of copy-to-reg nodes chained together with token chain
4454 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004455 SDValue InFlag;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004456 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00004457 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen679073b2009-02-04 02:34:38 +00004458 RegsToPass[i].second, InFlag);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004459 InFlag = Chain.getValue(1);
4460 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004461
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004462 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004463 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
4464 FPOp, true, TailCallArguments);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004465
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004466 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4467 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4468 Ins, InVals);
Chris Lattneraa40ec12006-05-16 22:56:08 +00004469}
4470
Hal Finkel450128a2011-10-14 19:51:36 +00004471bool
4472PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
4473 MachineFunction &MF, bool isVarArg,
4474 const SmallVectorImpl<ISD::OutputArg> &Outs,
4475 LLVMContext &Context) const {
4476 SmallVector<CCValAssign, 16> RVLocs;
4477 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
4478 RVLocs, Context);
4479 return CCInfo.CheckReturn(Outs, RetCC_PPC);
4480}
4481
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004482SDValue
4483PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004484 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004485 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004486 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004487 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004488
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004489 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00004490 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00004491 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004492 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004493
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004494 SDValue Flag;
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004495 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004496
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004497 // Copy the result values into the output registers.
4498 for (unsigned i = 0; i != RVLocs.size(); ++i) {
4499 CCValAssign &VA = RVLocs[i];
4500 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00004501
4502 SDValue Arg = OutVals[i];
4503
4504 switch (VA.getLocInfo()) {
4505 default: llvm_unreachable("Unknown loc info!");
4506 case CCValAssign::Full: break;
4507 case CCValAssign::AExt:
4508 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
4509 break;
4510 case CCValAssign::ZExt:
4511 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
4512 break;
4513 case CCValAssign::SExt:
4514 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
4515 break;
4516 }
4517
4518 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004519 Flag = Chain.getValue(1);
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004520 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004521 }
4522
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004523 RetOps[0] = Chain; // Update chain.
4524
4525 // Add the flag if we have it.
Gabor Greiff304a7a2008-08-28 21:40:38 +00004526 if (Flag.getNode())
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004527 RetOps.push_back(Flag);
4528
4529 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other,
4530 &RetOps[0], RetOps.size());
Chris Lattner4211ca92006-04-14 06:01:58 +00004531}
4532
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004533SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004534 const PPCSubtarget &Subtarget) const {
Jim Laskeye4f4d042006-12-04 22:04:42 +00004535 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004536 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004537
Jim Laskeye4f4d042006-12-04 22:04:42 +00004538 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00004539 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeye4f4d042006-12-04 22:04:42 +00004540
4541 // Construct the stack pointer operand.
Dale Johannesen86dcae12009-11-24 01:09:07 +00004542 bool isPPC64 = Subtarget.isPPC64();
4543 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004544 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeye4f4d042006-12-04 22:04:42 +00004545
4546 // Get the operands for the STACKRESTORE.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004547 SDValue Chain = Op.getOperand(0);
4548 SDValue SaveSP = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004549
Jim Laskeye4f4d042006-12-04 22:04:42 +00004550 // Load the old link SP.
Chris Lattner7727d052010-09-21 06:44:06 +00004551 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
4552 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004553 false, false, false, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004554
Jim Laskeye4f4d042006-12-04 22:04:42 +00004555 // Restore the stack pointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00004556 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004557
Jim Laskeye4f4d042006-12-04 22:04:42 +00004558 // Store the old link SP.
Chris Lattner676c61d2010-09-21 18:41:36 +00004559 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00004560 false, false, 0);
Jim Laskeye4f4d042006-12-04 22:04:42 +00004561}
4562
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004563
4564
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004565SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004566PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey48850c12006-11-16 22:43:37 +00004567 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesen86dcae12009-11-24 01:09:07 +00004568 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004569 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004570 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004571
4572 // Get current frame pointer save index. The users of this index will be
4573 // primarily DYNALLOC instructions.
4574 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4575 int RASI = FI->getReturnAddrSaveIndex();
4576
4577 // If the frame pointer save index hasn't been defined yet.
4578 if (!RASI) {
4579 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00004580 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004581 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00004582 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, true);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004583 // Save the result.
4584 FI->setReturnAddrSaveIndex(RASI);
4585 }
4586 return DAG.getFrameIndex(RASI, PtrVT);
4587}
4588
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004589SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004590PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
4591 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesen86dcae12009-11-24 01:09:07 +00004592 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004593 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004594 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00004595
4596 // Get current frame pointer save index. The users of this index will be
4597 // primarily DYNALLOC instructions.
4598 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4599 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004600
Jim Laskey48850c12006-11-16 22:43:37 +00004601 // If the frame pointer save index hasn't been defined yet.
4602 if (!FPSI) {
4603 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00004604 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004605 isDarwinABI);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004606
Jim Laskey48850c12006-11-16 22:43:37 +00004607 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00004608 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey48850c12006-11-16 22:43:37 +00004609 // Save the result.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004610 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey48850c12006-11-16 22:43:37 +00004611 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004612 return DAG.getFrameIndex(FPSI, PtrVT);
4613}
Jim Laskey48850c12006-11-16 22:43:37 +00004614
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004615SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004616 SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004617 const PPCSubtarget &Subtarget) const {
Jim Laskey48850c12006-11-16 22:43:37 +00004618 // Get the inputs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004619 SDValue Chain = Op.getOperand(0);
4620 SDValue Size = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004621 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004622
Jim Laskey48850c12006-11-16 22:43:37 +00004623 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00004624 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00004625 // Negate the size.
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004626 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey48850c12006-11-16 22:43:37 +00004627 DAG.getConstant(0, PtrVT), Size);
4628 // Construct a node for the frame pointer save index.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004629 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey48850c12006-11-16 22:43:37 +00004630 // Build a DYNALLOC node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004631 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson9f944592009-08-11 20:47:22 +00004632 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004633 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops, 3);
Jim Laskey48850c12006-11-16 22:43:37 +00004634}
4635
Hal Finkel756810f2013-03-21 21:37:52 +00004636SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
4637 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004638 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00004639 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
4640 DAG.getVTList(MVT::i32, MVT::Other),
4641 Op.getOperand(0), Op.getOperand(1));
4642}
4643
4644SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
4645 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004646 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00004647 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
4648 Op.getOperand(0), Op.getOperand(1));
4649}
4650
Chris Lattner4211ca92006-04-14 06:01:58 +00004651/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
4652/// possible.
Dan Gohman21cea8a2010-04-17 15:26:15 +00004653SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00004654 // Not FP? Not a fsel.
Duncan Sands13237ac2008-06-06 12:08:01 +00004655 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
4656 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedman5806e182009-05-28 04:31:08 +00004657 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004658
Hal Finkel81f87992013-04-07 22:11:09 +00004659 // We might be able to do better than this under some circumstances, but in
4660 // general, fsel-based lowering of select is a finite-math-only optimization.
4661 // For more information, see section F.3 of the 2.06 ISA specification.
4662 if (!DAG.getTarget().Options.NoInfsFPMath ||
4663 !DAG.getTarget().Options.NoNaNsFPMath)
4664 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004665
Hal Finkel81f87992013-04-07 22:11:09 +00004666 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004667
Owen Anderson53aa7a92009-08-10 22:56:29 +00004668 EVT ResVT = Op.getValueType();
4669 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004670 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
4671 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004672 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004673
Chris Lattner4211ca92006-04-14 06:01:58 +00004674 // If the RHS of the comparison is a 0.0, we don't need to do the
4675 // subtraction at all.
Hal Finkel81f87992013-04-07 22:11:09 +00004676 SDValue Sel1;
Chris Lattner4211ca92006-04-14 06:01:58 +00004677 if (isFloatingPointZero(RHS))
4678 switch (CC) {
4679 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00004680 case ISD::SETNE:
4681 std::swap(TV, FV);
4682 case ISD::SETEQ:
4683 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4684 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
4685 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
4686 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4687 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4688 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4689 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004690 case ISD::SETULT:
4691 case ISD::SETLT:
4692 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004693 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004694 case ISD::SETGE:
Owen Anderson9f944592009-08-11 20:47:22 +00004695 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4696 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004697 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004698 case ISD::SETUGT:
4699 case ISD::SETGT:
4700 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004701 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004702 case ISD::SETLE:
Owen Anderson9f944592009-08-11 20:47:22 +00004703 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4704 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004705 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson9f944592009-08-11 20:47:22 +00004706 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004707 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004708
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004709 SDValue Cmp;
Chris Lattner4211ca92006-04-14 06:01:58 +00004710 switch (CC) {
4711 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00004712 case ISD::SETNE:
4713 std::swap(TV, FV);
4714 case ISD::SETEQ:
4715 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
4716 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4717 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
4718 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
4719 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4720 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4721 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4722 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004723 case ISD::SETULT:
4724 case ISD::SETLT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004725 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004726 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4727 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004728 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004729 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004730 case ISD::SETGE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004731 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004732 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4733 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004734 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004735 case ISD::SETUGT:
4736 case ISD::SETGT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004737 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004738 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4739 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004740 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004741 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004742 case ISD::SETLE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004743 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004744 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4745 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004746 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004747 }
Eli Friedman5806e182009-05-28 04:31:08 +00004748 return Op;
Chris Lattner4211ca92006-04-14 06:01:58 +00004749}
4750
Chris Lattner57ee7c62007-11-28 18:44:47 +00004751// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen37bc85f2009-06-04 20:53:52 +00004752SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004753 SDLoc dl) const {
Duncan Sands13237ac2008-06-06 12:08:01 +00004754 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004755 SDValue Src = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00004756 if (Src.getValueType() == MVT::f32)
4757 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sands2a287912008-07-19 16:26:02 +00004758
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004759 SDValue Tmp;
Craig Topper56710102013-08-15 02:33:50 +00004760 switch (Op.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00004761 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson9f944592009-08-11 20:47:22 +00004762 case MVT::i32:
Dale Johannesen37bc85f2009-06-04 20:53:52 +00004763 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ :
Hal Finkelf6d45f22013-04-01 17:52:07 +00004764 (PPCSubTarget.hasFPCVT() ? PPCISD::FCTIWUZ :
4765 PPCISD::FCTIDZ),
Owen Anderson9f944592009-08-11 20:47:22 +00004766 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00004767 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004768 case MVT::i64:
Hal Finkel3f88d082013-04-01 18:42:58 +00004769 assert((Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT()) &&
4770 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkelf6d45f22013-04-01 17:52:07 +00004771 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
4772 PPCISD::FCTIDUZ,
4773 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00004774 break;
4775 }
Duncan Sands2a287912008-07-19 16:26:02 +00004776
Chris Lattner4211ca92006-04-14 06:01:58 +00004777 // Convert the FP value to an int value through memory.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004778 bool i32Stack = Op.getValueType() == MVT::i32 && PPCSubTarget.hasSTFIWX() &&
4779 (Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT());
4780 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
4781 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
4782 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
Duncan Sands2a287912008-07-19 16:26:02 +00004783
Chris Lattner06a49542007-10-15 20:14:52 +00004784 // Emit a store to the stack slot.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004785 SDValue Chain;
4786 if (i32Stack) {
4787 MachineFunction &MF = DAG.getMachineFunction();
4788 MachineMemOperand *MMO =
4789 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
4790 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
4791 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
4792 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
4793 MVT::i32, MMO);
4794 } else
4795 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
4796 MPI, false, false, 0);
Chris Lattner06a49542007-10-15 20:14:52 +00004797
4798 // Result is a load from the stack slot. If loading 4 bytes, make sure to
4799 // add in a bias.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004800 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen021052a2009-02-04 20:06:27 +00004801 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner06a49542007-10-15 20:14:52 +00004802 DAG.getConstant(4, FIPtr.getValueType()));
Hal Finkelf6d45f22013-04-01 17:52:07 +00004803 MPI = MachinePointerInfo();
4804 }
4805
4806 return DAG.getLoad(Op.getValueType(), dl, Chain, FIPtr, MPI,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004807 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00004808}
4809
Hal Finkelf6d45f22013-04-01 17:52:07 +00004810SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004811 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004812 SDLoc dl(Op);
Dan Gohmand6819da2008-03-11 01:59:03 +00004813 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson9f944592009-08-11 20:47:22 +00004814 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004815 return SDValue();
Dan Gohmand6819da2008-03-11 01:59:03 +00004816
Hal Finkelf6d45f22013-04-01 17:52:07 +00004817 assert((Op.getOpcode() == ISD::SINT_TO_FP || PPCSubTarget.hasFPCVT()) &&
4818 "UINT_TO_FP is supported only with FPCVT");
4819
4820 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel93d75ea2013-04-02 03:29:51 +00004821 // Otherwise, convert to double-precision and then round.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004822 unsigned FCFOp = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4823 (Op.getOpcode() == ISD::UINT_TO_FP ?
4824 PPCISD::FCFIDUS : PPCISD::FCFIDS) :
4825 (Op.getOpcode() == ISD::UINT_TO_FP ?
4826 PPCISD::FCFIDU : PPCISD::FCFID);
4827 MVT FCFTy = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4828 MVT::f32 : MVT::f64;
4829
Owen Anderson9f944592009-08-11 20:47:22 +00004830 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00004831 SDValue SINT = Op.getOperand(0);
4832 // When converting to single-precision, we actually need to convert
4833 // to double-precision first and then round to single-precision.
4834 // To avoid double-rounding effects during that operation, we have
4835 // to prepare the input operand. Bits that might be truncated when
4836 // converting to double-precision are replaced by a bit that won't
4837 // be lost at this stage, but is below the single-precision rounding
4838 // position.
4839 //
4840 // However, if -enable-unsafe-fp-math is in effect, accept double
4841 // rounding to avoid the extra overhead.
4842 if (Op.getValueType() == MVT::f32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00004843 !PPCSubTarget.hasFPCVT() &&
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00004844 !DAG.getTarget().Options.UnsafeFPMath) {
4845
4846 // Twiddle input to make sure the low 11 bits are zero. (If this
4847 // is the case, we are guaranteed the value will fit into the 53 bit
4848 // mantissa of an IEEE double-precision value without rounding.)
4849 // If any of those low 11 bits were not zero originally, make sure
4850 // bit 12 (value 2048) is set instead, so that the final rounding
4851 // to single-precision gets the correct result.
4852 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4853 SINT, DAG.getConstant(2047, MVT::i64));
4854 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
4855 Round, DAG.getConstant(2047, MVT::i64));
4856 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
4857 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4858 Round, DAG.getConstant(-2048, MVT::i64));
4859
4860 // However, we cannot use that value unconditionally: if the magnitude
4861 // of the input value is small, the bit-twiddling we did above might
4862 // end up visibly changing the output. Fortunately, in that case, we
4863 // don't need to twiddle bits since the original input will convert
4864 // exactly to double-precision floating-point already. Therefore,
4865 // construct a conditional to use the original value if the top 11
4866 // bits are all sign-bit copies, and use the rounded value computed
4867 // above otherwise.
4868 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
4869 SINT, DAG.getConstant(53, MVT::i32));
4870 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
4871 Cond, DAG.getConstant(1, MVT::i64));
4872 Cond = DAG.getSetCC(dl, MVT::i32,
4873 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
4874
4875 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
4876 }
Hal Finkelf6d45f22013-04-01 17:52:07 +00004877
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00004878 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
Hal Finkelf6d45f22013-04-01 17:52:07 +00004879 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
4880
4881 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Scott Michelcf0da6c2009-02-17 22:15:04 +00004882 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00004883 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00004884 return FP;
4885 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004886
Owen Anderson9f944592009-08-11 20:47:22 +00004887 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00004888 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner4211ca92006-04-14 06:01:58 +00004889 // Since we only generate this in 64-bit mode, we can take advantage of
4890 // 64-bit registers. In particular, sign extend the input value into the
4891 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
4892 // then lfd it and fcfid it.
Dan Gohman48b185d2009-09-25 20:36:54 +00004893 MachineFunction &MF = DAG.getMachineFunction();
4894 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004895 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004896
Hal Finkelbeb296b2013-03-31 10:12:51 +00004897 SDValue Ld;
Hal Finkelf6d45f22013-04-01 17:52:07 +00004898 if (PPCSubTarget.hasLFIWAX() || PPCSubTarget.hasFPCVT()) {
Hal Finkelbeb296b2013-03-31 10:12:51 +00004899 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
4900 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004901
Hal Finkelbeb296b2013-03-31 10:12:51 +00004902 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
4903 MachinePointerInfo::getFixedStack(FrameIdx),
4904 false, false, 0);
Hal Finkele53429a2013-03-31 01:58:02 +00004905
Hal Finkelbeb296b2013-03-31 10:12:51 +00004906 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
4907 "Expected an i32 store");
4908 MachineMemOperand *MMO =
4909 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
4910 MachineMemOperand::MOLoad, 4, 4);
4911 SDValue Ops[] = { Store, FIdx };
Hal Finkelf6d45f22013-04-01 17:52:07 +00004912 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
4913 PPCISD::LFIWZX : PPCISD::LFIWAX,
4914 dl, DAG.getVTList(MVT::f64, MVT::Other),
4915 Ops, 2, MVT::i32, MMO);
Hal Finkelbeb296b2013-03-31 10:12:51 +00004916 } else {
Hal Finkelf6d45f22013-04-01 17:52:07 +00004917 assert(PPCSubTarget.isPPC64() &&
4918 "i32->FP without LFIWAX supported only on PPC64");
4919
Hal Finkelbeb296b2013-03-31 10:12:51 +00004920 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
4921 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
4922
4923 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
4924 Op.getOperand(0));
4925
4926 // STD the extended value into the stack slot.
4927 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
4928 MachinePointerInfo::getFixedStack(FrameIdx),
4929 false, false, 0);
4930
4931 // Load the value as a double.
4932 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
4933 MachinePointerInfo::getFixedStack(FrameIdx),
4934 false, false, false, 0);
4935 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004936
Chris Lattner4211ca92006-04-14 06:01:58 +00004937 // FCFID it and return it.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004938 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
4939 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Owen Anderson9f944592009-08-11 20:47:22 +00004940 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00004941 return FP;
4942}
4943
Dan Gohman21cea8a2010-04-17 15:26:15 +00004944SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
4945 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004946 SDLoc dl(Op);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00004947 /*
4948 The rounding mode is in bits 30:31 of FPSR, and has the following
4949 settings:
4950 00 Round to nearest
4951 01 Round to 0
4952 10 Round to +inf
4953 11 Round to -inf
4954
4955 FLT_ROUNDS, on the other hand, expects the following:
4956 -1 Undefined
4957 0 Round to 0
4958 1 Round to nearest
4959 2 Round to +inf
4960 3 Round to -inf
4961
4962 To perform the conversion, we do:
4963 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
4964 */
4965
4966 MachineFunction &MF = DAG.getMachineFunction();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004967 EVT VT = Op.getValueType();
4968 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004969 SDValue MFFSreg, InFlag;
Dale Johannesen5c94cb32008-01-18 19:55:37 +00004970
4971 // Save FP Control Word to register
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00004972 EVT NodeTys[] = {
4973 MVT::f64, // return register
4974 MVT::Glue // unused in this context
4975 };
Dale Johannesen021052a2009-02-04 20:06:27 +00004976 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00004977
4978 // Save FP register to stack slot
David Greene1fbe0542009-11-12 20:49:22 +00004979 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004980 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00004981 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner676c61d2010-09-21 18:41:36 +00004982 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00004983
4984 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004985 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00004986 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattner7727d052010-09-21 06:44:06 +00004987 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004988 false, false, false, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00004989
4990 // Transform as necessary
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004991 SDValue CWD1 =
Owen Anderson9f944592009-08-11 20:47:22 +00004992 DAG.getNode(ISD::AND, dl, MVT::i32,
4993 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004994 SDValue CWD2 =
Owen Anderson9f944592009-08-11 20:47:22 +00004995 DAG.getNode(ISD::SRL, dl, MVT::i32,
4996 DAG.getNode(ISD::AND, dl, MVT::i32,
4997 DAG.getNode(ISD::XOR, dl, MVT::i32,
4998 CWD, DAG.getConstant(3, MVT::i32)),
4999 DAG.getConstant(3, MVT::i32)),
5000 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005001
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005002 SDValue RetVal =
Owen Anderson9f944592009-08-11 20:47:22 +00005003 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005004
Duncan Sands13237ac2008-06-06 12:08:01 +00005005 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen021052a2009-02-04 20:06:27 +00005006 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005007}
5008
Dan Gohman21cea8a2010-04-17 15:26:15 +00005009SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005010 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005011 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005012 SDLoc dl(Op);
Dan Gohman8d2ead22008-03-07 20:36:53 +00005013 assert(Op.getNumOperands() == 3 &&
5014 VT == Op.getOperand(1).getValueType() &&
5015 "Unexpected SHL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005016
Chris Lattner601b8652006-09-20 03:47:40 +00005017 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005018 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005019 SDValue Lo = Op.getOperand(0);
5020 SDValue Hi = Op.getOperand(1);
5021 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005022 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005023
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005024 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005025 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005026 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
5027 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
5028 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
5029 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005030 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005031 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
5032 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5033 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005034 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005035 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005036}
5037
Dan Gohman21cea8a2010-04-17 15:26:15 +00005038SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005039 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005040 SDLoc dl(Op);
Duncan Sands13237ac2008-06-06 12:08:01 +00005041 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00005042 assert(Op.getNumOperands() == 3 &&
5043 VT == Op.getOperand(1).getValueType() &&
5044 "Unexpected SRL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005045
Dan Gohman8d2ead22008-03-07 20:36:53 +00005046 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005047 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005048 SDValue Lo = Op.getOperand(0);
5049 SDValue Hi = Op.getOperand(1);
5050 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005051 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005052
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005053 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005054 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005055 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5056 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5057 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5058 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005059 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005060 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
5061 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5062 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005063 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005064 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005065}
5066
Dan Gohman21cea8a2010-04-17 15:26:15 +00005067SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005068 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005069 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005070 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00005071 assert(Op.getNumOperands() == 3 &&
5072 VT == Op.getOperand(1).getValueType() &&
5073 "Unexpected SRA!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005074
Dan Gohman8d2ead22008-03-07 20:36:53 +00005075 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005076 SDValue Lo = Op.getOperand(0);
5077 SDValue Hi = Op.getOperand(1);
5078 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005079 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005080
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005081 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005082 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005083 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5084 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5085 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5086 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005087 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005088 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
5089 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
5090 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands13105742008-10-30 19:28:32 +00005091 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005092 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005093 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005094}
5095
5096//===----------------------------------------------------------------------===//
5097// Vector related lowering.
5098//
5099
Chris Lattner2a099c02006-04-17 06:00:21 +00005100/// BuildSplatI - Build a canonical splati of Val with an element size of
5101/// SplatSize. Cast the result to VT.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005102static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005103 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner2a099c02006-04-17 06:00:21 +00005104 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005105
Owen Anderson53aa7a92009-08-10 22:56:29 +00005106 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson9f944592009-08-11 20:47:22 +00005107 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner2a099c02006-04-17 06:00:21 +00005108 };
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005109
Owen Anderson9f944592009-08-11 20:47:22 +00005110 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005111
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005112 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
5113 if (Val == -1)
5114 SplatSize = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005115
Owen Anderson53aa7a92009-08-10 22:56:29 +00005116 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005117
Chris Lattner2a099c02006-04-17 06:00:21 +00005118 // Build a canonical splat for this value.
Owen Anderson9f944592009-08-11 20:47:22 +00005119 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005120 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00005121 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Evan Chenga49de9d2009-02-25 22:49:59 +00005122 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT,
5123 &Ops[0], Ops.size());
Wesley Peck527da1b2010-11-23 03:31:01 +00005124 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00005125}
5126
Hal Finkelcf2e9082013-05-24 23:00:14 +00005127/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
5128/// specified intrinsic ID.
5129static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005130 SelectionDAG &DAG, SDLoc dl,
Hal Finkelcf2e9082013-05-24 23:00:14 +00005131 EVT DestVT = MVT::Other) {
5132 if (DestVT == MVT::Other) DestVT = Op.getValueType();
5133 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
5134 DAG.getConstant(IID, MVT::i32), Op);
5135}
5136
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005137/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner1b3806a2006-04-17 06:58:41 +00005138/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005139static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005140 SelectionDAG &DAG, SDLoc dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005141 EVT DestVT = MVT::Other) {
5142 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005143 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005144 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005145}
5146
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005147/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
5148/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005149static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005150 SDValue Op2, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005151 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson9f944592009-08-11 20:47:22 +00005152 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005153 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005154 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005155}
5156
5157
Chris Lattner264c9082006-04-17 17:55:10 +00005158/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
5159/// amount. The result has the specified value type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005160static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005161 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattner264c9082006-04-17 17:55:10 +00005162 // Force LHS/RHS to be the right type.
Wesley Peck527da1b2010-11-23 03:31:01 +00005163 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
5164 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005165
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005166 int Ops[16];
Chris Lattner264c9082006-04-17 17:55:10 +00005167 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005168 Ops[i] = i + Amt;
Owen Anderson9f944592009-08-11 20:47:22 +00005169 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00005170 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner264c9082006-04-17 17:55:10 +00005171}
5172
Chris Lattner19e90552006-04-14 05:19:18 +00005173// If this is a case we can't handle, return null and let the default
5174// expansion code take care of it. If we CAN select this case, and if it
5175// selects to a single instruction, return Op. Otherwise, if we can codegen
5176// this case more efficiently than a constant pool load, lower it to the
5177// sequence of ops that should be used.
Dan Gohman21cea8a2010-04-17 15:26:15 +00005178SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
5179 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005180 SDLoc dl(Op);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00005181 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
5182 assert(BVN != 0 && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Michelbb878282009-02-25 03:12:50 +00005183
Bob Wilson85cefe82009-03-02 23:24:16 +00005184 // Check if this is a splat of a constant value.
5185 APInt APSplatBits, APSplatUndef;
5186 unsigned SplatBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00005187 bool HasAnyUndefs;
Bob Wilson530e0382009-03-03 19:26:27 +00005188 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00005189 HasAnyUndefs, 0, true) || SplatBitSize > 32)
Bob Wilson530e0382009-03-03 19:26:27 +00005190 return SDValue();
Evan Chenga49de9d2009-02-25 22:49:59 +00005191
Bob Wilson530e0382009-03-03 19:26:27 +00005192 unsigned SplatBits = APSplatBits.getZExtValue();
5193 unsigned SplatUndef = APSplatUndef.getZExtValue();
5194 unsigned SplatSize = SplatBitSize / 8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005195
Bob Wilson530e0382009-03-03 19:26:27 +00005196 // First, handle single instruction cases.
5197
5198 // All zeros?
5199 if (SplatBits == 0) {
5200 // Canonicalize all zero vectors to be v4i32.
Owen Anderson9f944592009-08-11 20:47:22 +00005201 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
5202 SDValue Z = DAG.getConstant(0, MVT::i32);
5203 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Wesley Peck527da1b2010-11-23 03:31:01 +00005204 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattner19e90552006-04-14 05:19:18 +00005205 }
Bob Wilson530e0382009-03-03 19:26:27 +00005206 return Op;
5207 }
Chris Lattnerfa5aa392006-04-16 01:01:29 +00005208
Bob Wilson530e0382009-03-03 19:26:27 +00005209 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
5210 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
5211 (32-SplatBitSize));
5212 if (SextVal >= -16 && SextVal <= 15)
5213 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005214
5215
Bob Wilson530e0382009-03-03 19:26:27 +00005216 // Two instruction sequences.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005217
Bob Wilson530e0382009-03-03 19:26:27 +00005218 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtc6cbecc2013-02-20 20:41:42 +00005219 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
5220 // If this value is in the range [17,31] and is odd, use:
5221 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
5222 // If this value is in the range [-31,-17] and is odd, use:
5223 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
5224 // Note the last two are three-instruction sequences.
5225 if (SextVal >= -32 && SextVal <= 31) {
5226 // To avoid having these optimizations undone by constant folding,
5227 // we convert to a pseudo that will be expanded later into one of
5228 // the above forms.
5229 SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
Bill Schmidt51e79512013-02-20 15:50:31 +00005230 EVT VT = Op.getValueType();
5231 int Size = VT == MVT::v16i8 ? 1 : (VT == MVT::v8i16 ? 2 : 4);
5232 SDValue EltSize = DAG.getConstant(Size, MVT::i32);
5233 return DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
Bob Wilson530e0382009-03-03 19:26:27 +00005234 }
5235
5236 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
5237 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
5238 // for fneg/fabs.
5239 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
5240 // Make -1 and vspltisw -1:
Owen Anderson9f944592009-08-11 20:47:22 +00005241 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005242
5243 // Make the VSLW intrinsic, computing 0x8000_0000.
5244 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
5245 OnesV, DAG, dl);
5246
5247 // xor by OnesV to invert it.
Owen Anderson9f944592009-08-11 20:47:22 +00005248 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peck527da1b2010-11-23 03:31:01 +00005249 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00005250 }
5251
5252 // Check to see if this is a wide variety of vsplti*, binop self cases.
5253 static const signed char SplatCsts[] = {
5254 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
5255 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
5256 };
5257
5258 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
5259 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
5260 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
5261 int i = SplatCsts[idx];
5262
5263 // Figure out what shift amount will be used by altivec if shifted by i in
5264 // this splat size.
5265 unsigned TypeShiftAmt = i & (SplatBitSize-1);
5266
5267 // vsplti + shl self.
Richard Smith228e6d42012-08-24 23:29:28 +00005268 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005269 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005270 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5271 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
5272 Intrinsic::ppc_altivec_vslw
5273 };
5274 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005275 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00005276 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005277
Bob Wilson530e0382009-03-03 19:26:27 +00005278 // vsplti + srl self.
5279 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005280 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005281 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5282 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
5283 Intrinsic::ppc_altivec_vsrw
5284 };
5285 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005286 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005287 }
5288
Bob Wilson530e0382009-03-03 19:26:27 +00005289 // vsplti + sra self.
5290 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005291 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005292 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5293 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
5294 Intrinsic::ppc_altivec_vsraw
5295 };
5296 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005297 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005298 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005299
Bob Wilson530e0382009-03-03 19:26:27 +00005300 // vsplti + rol self.
5301 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
5302 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005303 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005304 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5305 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
5306 Intrinsic::ppc_altivec_vrlw
5307 };
5308 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005309 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00005310 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005311
Bob Wilson530e0382009-03-03 19:26:27 +00005312 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith228e6d42012-08-24 23:29:28 +00005313 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005314 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005315 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnere54133c2006-04-17 18:09:22 +00005316 }
Bob Wilson530e0382009-03-03 19:26:27 +00005317 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith228e6d42012-08-24 23:29:28 +00005318 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005319 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005320 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattner19e90552006-04-14 05:19:18 +00005321 }
Bob Wilson530e0382009-03-03 19:26:27 +00005322 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith228e6d42012-08-24 23:29:28 +00005323 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005324 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005325 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
5326 }
5327 }
5328
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005329 return SDValue();
Chris Lattner19e90552006-04-14 05:19:18 +00005330}
5331
Chris Lattner071ad012006-04-17 05:28:54 +00005332/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5333/// the specified operations to build the shuffle.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005334static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005335 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005336 SDLoc dl) {
Chris Lattner071ad012006-04-17 05:28:54 +00005337 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling95e1af22008-09-17 00:30:57 +00005338 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner071ad012006-04-17 05:28:54 +00005339 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005340
Chris Lattner071ad012006-04-17 05:28:54 +00005341 enum {
Chris Lattnerd2ca9ab2006-05-16 04:20:24 +00005342 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
Chris Lattner071ad012006-04-17 05:28:54 +00005343 OP_VMRGHW,
5344 OP_VMRGLW,
5345 OP_VSPLTISW0,
5346 OP_VSPLTISW1,
5347 OP_VSPLTISW2,
5348 OP_VSPLTISW3,
5349 OP_VSLDOI4,
5350 OP_VSLDOI8,
Chris Lattneraa2372562006-05-24 17:04:05 +00005351 OP_VSLDOI12
Chris Lattner071ad012006-04-17 05:28:54 +00005352 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00005353
Chris Lattner071ad012006-04-17 05:28:54 +00005354 if (OpNum == OP_COPY) {
5355 if (LHSID == (1*9+2)*9+3) return LHS;
5356 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5357 return RHS;
5358 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005359
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005360 SDValue OpLHS, OpRHS;
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005361 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5362 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005363
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005364 int ShufIdxs[16];
Chris Lattner071ad012006-04-17 05:28:54 +00005365 switch (OpNum) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005366 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner071ad012006-04-17 05:28:54 +00005367 case OP_VMRGHW:
5368 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
5369 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
5370 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
5371 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
5372 break;
5373 case OP_VMRGLW:
5374 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
5375 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
5376 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
5377 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
5378 break;
5379 case OP_VSPLTISW0:
5380 for (unsigned i = 0; i != 16; ++i)
5381 ShufIdxs[i] = (i&3)+0;
5382 break;
5383 case OP_VSPLTISW1:
5384 for (unsigned i = 0; i != 16; ++i)
5385 ShufIdxs[i] = (i&3)+4;
5386 break;
5387 case OP_VSPLTISW2:
5388 for (unsigned i = 0; i != 16; ++i)
5389 ShufIdxs[i] = (i&3)+8;
5390 break;
5391 case OP_VSPLTISW3:
5392 for (unsigned i = 0; i != 16; ++i)
5393 ShufIdxs[i] = (i&3)+12;
5394 break;
5395 case OP_VSLDOI4:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005396 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005397 case OP_VSLDOI8:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005398 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005399 case OP_VSLDOI12:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005400 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005401 }
Owen Anderson53aa7a92009-08-10 22:56:29 +00005402 EVT VT = OpLHS.getValueType();
Wesley Peck527da1b2010-11-23 03:31:01 +00005403 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
5404 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005405 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peck527da1b2010-11-23 03:31:01 +00005406 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner071ad012006-04-17 05:28:54 +00005407}
5408
Chris Lattner19e90552006-04-14 05:19:18 +00005409/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
5410/// is a shuffle we can handle in a single instruction, return it. Otherwise,
5411/// return the code it can be lowered into. Worst case, it can always be
5412/// lowered into a vperm.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005413SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005414 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005415 SDLoc dl(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005416 SDValue V1 = Op.getOperand(0);
5417 SDValue V2 = Op.getOperand(1);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005418 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005419 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005420
Chris Lattner19e90552006-04-14 05:19:18 +00005421 // Cases that are handled by instructions that take permute immediates
5422 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
5423 // selected by the instruction selector.
5424 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005425 if (PPC::isSplatShuffleMask(SVOp, 1) ||
5426 PPC::isSplatShuffleMask(SVOp, 2) ||
5427 PPC::isSplatShuffleMask(SVOp, 4) ||
5428 PPC::isVPKUWUMShuffleMask(SVOp, true) ||
5429 PPC::isVPKUHUMShuffleMask(SVOp, true) ||
5430 PPC::isVSLDOIShuffleMask(SVOp, true) != -1 ||
5431 PPC::isVMRGLShuffleMask(SVOp, 1, true) ||
5432 PPC::isVMRGLShuffleMask(SVOp, 2, true) ||
5433 PPC::isVMRGLShuffleMask(SVOp, 4, true) ||
5434 PPC::isVMRGHShuffleMask(SVOp, 1, true) ||
5435 PPC::isVMRGHShuffleMask(SVOp, 2, true) ||
5436 PPC::isVMRGHShuffleMask(SVOp, 4, true)) {
Chris Lattner19e90552006-04-14 05:19:18 +00005437 return Op;
5438 }
5439 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005440
Chris Lattner19e90552006-04-14 05:19:18 +00005441 // Altivec has a variety of "shuffle immediates" that take two vector inputs
5442 // and produce a fixed permutation. If any of these match, do not lower to
5443 // VPERM.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005444 if (PPC::isVPKUWUMShuffleMask(SVOp, false) ||
5445 PPC::isVPKUHUMShuffleMask(SVOp, false) ||
5446 PPC::isVSLDOIShuffleMask(SVOp, false) != -1 ||
5447 PPC::isVMRGLShuffleMask(SVOp, 1, false) ||
5448 PPC::isVMRGLShuffleMask(SVOp, 2, false) ||
5449 PPC::isVMRGLShuffleMask(SVOp, 4, false) ||
5450 PPC::isVMRGHShuffleMask(SVOp, 1, false) ||
5451 PPC::isVMRGHShuffleMask(SVOp, 2, false) ||
5452 PPC::isVMRGHShuffleMask(SVOp, 4, false))
Chris Lattner19e90552006-04-14 05:19:18 +00005453 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005454
Chris Lattner071ad012006-04-17 05:28:54 +00005455 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
5456 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramer339ced42012-01-15 13:16:05 +00005457 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peck527da1b2010-11-23 03:31:01 +00005458
Chris Lattner071ad012006-04-17 05:28:54 +00005459 unsigned PFIndexes[4];
5460 bool isFourElementShuffle = true;
5461 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
5462 unsigned EltNo = 8; // Start out undef.
5463 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005464 if (PermMask[i*4+j] < 0)
Chris Lattner071ad012006-04-17 05:28:54 +00005465 continue; // Undef, ignore it.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005466
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005467 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner071ad012006-04-17 05:28:54 +00005468 if ((ByteSource & 3) != j) {
5469 isFourElementShuffle = false;
5470 break;
5471 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005472
Chris Lattner071ad012006-04-17 05:28:54 +00005473 if (EltNo == 8) {
5474 EltNo = ByteSource/4;
5475 } else if (EltNo != ByteSource/4) {
5476 isFourElementShuffle = false;
5477 break;
5478 }
5479 }
5480 PFIndexes[i] = EltNo;
5481 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005482
5483 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner071ad012006-04-17 05:28:54 +00005484 // perfect shuffle vector to determine if it is cost effective to do this as
5485 // discrete instructions, or whether we should use a vperm.
5486 if (isFourElementShuffle) {
5487 // Compute the index in the perfect shuffle table.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005488 unsigned PFTableIndex =
Chris Lattner071ad012006-04-17 05:28:54 +00005489 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005490
Chris Lattner071ad012006-04-17 05:28:54 +00005491 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5492 unsigned Cost = (PFEntry >> 30);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005493
Chris Lattner071ad012006-04-17 05:28:54 +00005494 // Determining when to avoid vperm is tricky. Many things affect the cost
5495 // of vperm, particularly how many times the perm mask needs to be computed.
5496 // For example, if the perm mask can be hoisted out of a loop or is already
5497 // used (perhaps because there are multiple permutes with the same shuffle
5498 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
5499 // the loop requires an extra register.
5500 //
5501 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelcf0da6c2009-02-17 22:15:04 +00005502 // generated in 3 or fewer operations. When we have loop information
Chris Lattner071ad012006-04-17 05:28:54 +00005503 // available, if this block is within a loop, we should avoid using vperm
5504 // for 3-operation perms and use a constant pool load instead.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005505 if (Cost < 3)
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005506 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005507 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005508
Chris Lattner19e90552006-04-14 05:19:18 +00005509 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
5510 // vector that will get spilled to the constant pool.
5511 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005512
Chris Lattner19e90552006-04-14 05:19:18 +00005513 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
5514 // that it is in input element units, not in bytes. Convert now.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005515 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005516 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005517
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005518 SmallVector<SDValue, 16> ResultMask;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005519 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
5520 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005521
Chris Lattner19e90552006-04-14 05:19:18 +00005522 for (unsigned j = 0; j != BytesPerElement; ++j)
5523 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
Owen Anderson9f944592009-08-11 20:47:22 +00005524 MVT::i32));
Chris Lattner19e90552006-04-14 05:19:18 +00005525 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005526
Owen Anderson9f944592009-08-11 20:47:22 +00005527 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Evan Chenga49de9d2009-02-25 22:49:59 +00005528 &ResultMask[0], ResultMask.size());
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005529 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), V1, V2, VPermMask);
Chris Lattner19e90552006-04-14 05:19:18 +00005530}
5531
Chris Lattner9754d142006-04-18 17:59:36 +00005532/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
5533/// altivec comparison. If it is, return true and fill in Opc/isDot with
5534/// information about the intrinsic.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005535static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner9754d142006-04-18 17:59:36 +00005536 bool &isDot) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00005537 unsigned IntrinsicID =
5538 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00005539 CompareOpc = -1;
5540 isDot = false;
5541 switch (IntrinsicID) {
5542 default: return false;
5543 // Comparison predicates.
Chris Lattner4211ca92006-04-14 06:01:58 +00005544 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
5545 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
5546 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
5547 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
5548 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
5549 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
5550 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
5551 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
5552 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
5553 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
5554 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
5555 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
5556 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005557
Chris Lattner4211ca92006-04-14 06:01:58 +00005558 // Normal Comparisons.
5559 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
5560 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
5561 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
5562 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
5563 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
5564 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
5565 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
5566 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
5567 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
5568 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
5569 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
5570 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
5571 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
5572 }
Chris Lattner9754d142006-04-18 17:59:36 +00005573 return true;
5574}
5575
5576/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
5577/// lower, do it, otherwise return null.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005578SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005579 SelectionDAG &DAG) const {
Chris Lattner9754d142006-04-18 17:59:36 +00005580 // If this is a lowered altivec predicate compare, CompareOpc is set to the
5581 // opcode number of the comparison.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005582 SDLoc dl(Op);
Chris Lattner9754d142006-04-18 17:59:36 +00005583 int CompareOpc;
5584 bool isDot;
5585 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005586 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005587
Chris Lattner9754d142006-04-18 17:59:36 +00005588 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner4211ca92006-04-14 06:01:58 +00005589 if (!isDot) {
Dale Johannesenf80493b2009-02-05 22:07:54 +00005590 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner9fa851b2010-03-14 22:44:11 +00005591 Op.getOperand(1), Op.getOperand(2),
5592 DAG.getConstant(CompareOpc, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00005593 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner4211ca92006-04-14 06:01:58 +00005594 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005595
Chris Lattner4211ca92006-04-14 06:01:58 +00005596 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005597 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00005598 Op.getOperand(2), // LHS
5599 Op.getOperand(3), // RHS
Owen Anderson9f944592009-08-11 20:47:22 +00005600 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00005601 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005602 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesenf80493b2009-02-05 22:07:54 +00005603 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005604
Chris Lattner4211ca92006-04-14 06:01:58 +00005605 // Now that we have the comparison, emit a copy from the CR to a GPR.
5606 // This is flagged to the above dot comparison.
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00005607 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
Owen Anderson9f944592009-08-11 20:47:22 +00005608 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelcf0da6c2009-02-17 22:15:04 +00005609 CompNode.getValue(1));
5610
Chris Lattner4211ca92006-04-14 06:01:58 +00005611 // Unpack the result based on how the target uses it.
5612 unsigned BitNo; // Bit # of CR6.
5613 bool InvertBit; // Invert result?
Dan Gohmaneffb8942008-09-12 16:56:44 +00005614 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner4211ca92006-04-14 06:01:58 +00005615 default: // Can't happen, don't crash on invalid number though.
5616 case 0: // Return the value of the EQ bit of CR6.
5617 BitNo = 0; InvertBit = false;
5618 break;
5619 case 1: // Return the inverted value of the EQ bit of CR6.
5620 BitNo = 0; InvertBit = true;
5621 break;
5622 case 2: // Return the value of the LT bit of CR6.
5623 BitNo = 2; InvertBit = false;
5624 break;
5625 case 3: // Return the inverted value of the LT bit of CR6.
5626 BitNo = 2; InvertBit = true;
5627 break;
5628 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005629
Chris Lattner4211ca92006-04-14 06:01:58 +00005630 // Shift the bit into the low position.
Owen Anderson9f944592009-08-11 20:47:22 +00005631 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
5632 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00005633 // Isolate the bit.
Owen Anderson9f944592009-08-11 20:47:22 +00005634 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
5635 DAG.getConstant(1, MVT::i32));
Scott Michelcf0da6c2009-02-17 22:15:04 +00005636
Chris Lattner4211ca92006-04-14 06:01:58 +00005637 // If we are supposed to, toggle the bit.
5638 if (InvertBit)
Owen Anderson9f944592009-08-11 20:47:22 +00005639 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
5640 DAG.getConstant(1, MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00005641 return Flags;
5642}
5643
Scott Michelcf0da6c2009-02-17 22:15:04 +00005644SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005645 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005646 SDLoc dl(Op);
Chris Lattner4211ca92006-04-14 06:01:58 +00005647 // Create a stack slot that is 16-byte aligned.
5648 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00005649 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Dale Johannesen81bfca72010-05-03 22:59:34 +00005650 EVT PtrVT = getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005651 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005652
Chris Lattner4211ca92006-04-14 06:01:58 +00005653 // Store the input value into Value#0 of the stack slot.
Dale Johannesen021052a2009-02-04 20:06:27 +00005654 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00005655 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00005656 false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00005657 // Load it out.
Chris Lattner7727d052010-09-21 06:44:06 +00005658 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005659 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00005660}
5661
Dan Gohman21cea8a2010-04-17 15:26:15 +00005662SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005663 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00005664 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005665 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005666
Owen Anderson9f944592009-08-11 20:47:22 +00005667 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
5668 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005669
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005670 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005671 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005672
Chris Lattner7e4398742006-04-18 03:43:48 +00005673 // Shrinkify inputs to v8i16.
Wesley Peck527da1b2010-11-23 03:31:01 +00005674 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
5675 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
5676 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005677
Chris Lattner7e4398742006-04-18 03:43:48 +00005678 // Low parts multiplied together, generating 32-bit results (we ignore the
5679 // top parts).
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005680 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson9f944592009-08-11 20:47:22 +00005681 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005682
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005683 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson9f944592009-08-11 20:47:22 +00005684 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner7e4398742006-04-18 03:43:48 +00005685 // Shift the high parts up 16 bits.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005686 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005687 Neg16, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00005688 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
5689 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005690 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005691
Owen Anderson9f944592009-08-11 20:47:22 +00005692 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner7e4398742006-04-18 03:43:48 +00005693
Chris Lattner96d50482006-04-18 04:28:57 +00005694 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005695 LHS, RHS, Zero, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00005696 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005697 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005698
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005699 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005700 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson9f944592009-08-11 20:47:22 +00005701 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00005702 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005703
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005704 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005705 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson9f944592009-08-11 20:47:22 +00005706 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00005707 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005708
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005709 // Merge the results together.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005710 int Ops[16];
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005711 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005712 Ops[i*2 ] = 2*i+1;
5713 Ops[i*2+1] = 2*i+1+16;
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005714 }
Owen Anderson9f944592009-08-11 20:47:22 +00005715 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner7e4398742006-04-18 03:43:48 +00005716 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005717 llvm_unreachable("Unknown mul to lower!");
Chris Lattner7e4398742006-04-18 03:43:48 +00005718 }
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005719}
5720
Chris Lattnerf3d06c62005-08-26 00:52:45 +00005721/// LowerOperation - Provide custom lowering hooks for some operations.
5722///
Dan Gohman21cea8a2010-04-17 15:26:15 +00005723SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerf3d06c62005-08-26 00:52:45 +00005724 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005725 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner4211ca92006-04-14 06:01:58 +00005726 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00005727 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00005728 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackye3f15c982012-06-04 17:36:38 +00005729 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00005730 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00005731 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sandsa0984362011-09-06 13:37:06 +00005732 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
5733 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005734 case ISD::VASTART:
Dan Gohman31ae5862010-04-17 14:41:14 +00005735 return LowerVASTART(Op, DAG, PPCSubTarget);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005736
5737 case ISD::VAARG:
Dan Gohman31ae5862010-04-17 14:41:14 +00005738 return LowerVAARG(Op, DAG, PPCSubTarget);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00005739
Roman Divackyc3825df2013-07-25 21:36:47 +00005740 case ISD::VACOPY:
5741 return LowerVACOPY(Op, DAG, PPCSubTarget);
5742
Jim Laskeye4f4d042006-12-04 22:04:42 +00005743 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, PPCSubTarget);
Chris Lattner43df5b32007-02-25 05:34:32 +00005744 case ISD::DYNAMIC_STACKALLOC:
5745 return LowerDYNAMIC_STACKALLOC(Op, DAG, PPCSubTarget);
Evan Cheng51096af2008-04-19 01:30:48 +00005746
Hal Finkel756810f2013-03-21 21:37:52 +00005747 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
5748 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
5749
Chris Lattner4211ca92006-04-14 06:01:58 +00005750 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen37bc85f2009-06-04 20:53:52 +00005751 case ISD::FP_TO_UINT:
5752 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005753 SDLoc(Op));
Hal Finkelf6d45f22013-04-01 17:52:07 +00005754 case ISD::UINT_TO_FP:
5755 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman9ba4d762008-01-31 00:41:03 +00005756 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00005757
Chris Lattner4211ca92006-04-14 06:01:58 +00005758 // Lower 64-bit shifts.
Chris Lattner601b8652006-09-20 03:47:40 +00005759 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
5760 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
5761 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00005762
Chris Lattner4211ca92006-04-14 06:01:58 +00005763 // Vector-related lowering.
5764 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
5765 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
5766 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
5767 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005768 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005769
Hal Finkel25c19922013-05-15 21:37:41 +00005770 // For counter-based loop handling.
5771 case ISD::INTRINSIC_W_CHAIN: return SDValue();
5772
Chris Lattnerf6a81562007-12-08 06:59:59 +00005773 // Frame & Return address.
5774 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00005775 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnere675a082005-08-31 20:23:54 +00005776 }
Chris Lattnerf3d06c62005-08-26 00:52:45 +00005777}
5778
Duncan Sands6ed40142008-12-01 11:39:25 +00005779void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
5780 SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005781 SelectionDAG &DAG) const {
Roman Divacky4394e682011-06-28 15:30:42 +00005782 const TargetMachine &TM = getTargetMachine();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005783 SDLoc dl(N);
Chris Lattner57ee7c62007-11-28 18:44:47 +00005784 switch (N->getOpcode()) {
Duncan Sands4068a7f2008-10-28 15:00:32 +00005785 default:
Craig Toppere55c5562012-02-07 02:50:20 +00005786 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkel25c19922013-05-15 21:37:41 +00005787 case ISD::INTRINSIC_W_CHAIN: {
5788 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
5789 Intrinsic::ppc_is_decremented_ctr_nonzero)
5790 break;
5791
5792 assert(N->getValueType(0) == MVT::i1 &&
5793 "Unexpected result type for CTR decrement intrinsic");
Matt Arsenault758659232013-05-18 00:21:46 +00005794 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
Hal Finkel25c19922013-05-15 21:37:41 +00005795 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
5796 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
5797 N->getOperand(1));
5798
5799 Results.push_back(NewInt);
5800 Results.push_back(NewInt.getValue(1));
5801 break;
5802 }
Roman Divacky4394e682011-06-28 15:30:42 +00005803 case ISD::VAARG: {
5804 if (!TM.getSubtarget<PPCSubtarget>().isSVR4ABI()
5805 || TM.getSubtarget<PPCSubtarget>().isPPC64())
5806 return;
5807
5808 EVT VT = N->getValueType(0);
5809
5810 if (VT == MVT::i64) {
5811 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, PPCSubTarget);
5812
5813 Results.push_back(NewNode);
5814 Results.push_back(NewNode.getValue(1));
5815 }
5816 return;
5817 }
Duncan Sands6ed40142008-12-01 11:39:25 +00005818 case ISD::FP_ROUND_INREG: {
Owen Anderson9f944592009-08-11 20:47:22 +00005819 assert(N->getValueType(0) == MVT::ppcf128);
5820 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005821 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005822 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00005823 DAG.getIntPtrConstant(0));
Dale Johannesenf80493b2009-02-05 22:07:54 +00005824 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005825 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00005826 DAG.getIntPtrConstant(1));
5827
Ulrich Weigand874fc622013-03-26 10:56:22 +00005828 // Add the two halves of the long double in round-to-zero mode.
5829 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands6ed40142008-12-01 11:39:25 +00005830
5831 // We know the low half is about to be thrown away, so just use something
5832 // convenient.
Owen Anderson9f944592009-08-11 20:47:22 +00005833 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesenf80493b2009-02-05 22:07:54 +00005834 FPreg, FPreg));
Duncan Sands6ed40142008-12-01 11:39:25 +00005835 return;
Duncan Sands2a287912008-07-19 16:26:02 +00005836 }
Duncan Sands6ed40142008-12-01 11:39:25 +00005837 case ISD::FP_TO_SINT:
Bill Schmidt41221692013-07-09 18:50:20 +00005838 // LowerFP_TO_INT() can only handle f32 and f64.
5839 if (N->getOperand(0).getValueType() == MVT::ppcf128)
5840 return;
Dale Johannesen37bc85f2009-06-04 20:53:52 +00005841 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands6ed40142008-12-01 11:39:25 +00005842 return;
Chris Lattner57ee7c62007-11-28 18:44:47 +00005843 }
5844}
5845
5846
Chris Lattner4211ca92006-04-14 06:01:58 +00005847//===----------------------------------------------------------------------===//
5848// Other Lowering Code
5849//===----------------------------------------------------------------------===//
5850
Chris Lattner9b577f12005-08-26 21:23:58 +00005851MachineBasicBlock *
Dale Johannesend4eb0522008-08-25 22:34:37 +00005852PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman747e55b2009-02-07 16:15:20 +00005853 bool is64bit, unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005854 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesend4eb0522008-08-25 22:34:37 +00005855 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5856
5857 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5858 MachineFunction *F = BB->getParent();
5859 MachineFunction::iterator It = BB;
5860 ++It;
5861
5862 unsigned dest = MI->getOperand(0).getReg();
5863 unsigned ptrA = MI->getOperand(1).getReg();
5864 unsigned ptrB = MI->getOperand(2).getReg();
5865 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00005866 DebugLoc dl = MI->getDebugLoc();
Dale Johannesend4eb0522008-08-25 22:34:37 +00005867
5868 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5869 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5870 F->insert(It, loopMBB);
5871 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00005872 exitMBB->splice(exitMBB->begin(), BB,
5873 llvm::next(MachineBasicBlock::iterator(MI)),
5874 BB->end());
5875 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00005876
5877 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005878 unsigned TmpReg = (!BinOpcode) ? incr :
5879 RegInfo.createVirtualRegister(
Dale Johannesenbc698292008-09-02 20:30:23 +00005880 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5881 (const TargetRegisterClass *) &PPC::GPRCRegClass);
Dale Johannesend4eb0522008-08-25 22:34:37 +00005882
5883 // thisMBB:
5884 // ...
5885 // fallthrough --> loopMBB
5886 BB->addSuccessor(loopMBB);
5887
5888 // loopMBB:
5889 // l[wd]arx dest, ptr
5890 // add r0, dest, incr
5891 // st[wd]cx. r0, ptr
5892 // bne- loopMBB
5893 // fallthrough --> exitMBB
5894 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00005895 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesend4eb0522008-08-25 22:34:37 +00005896 .addReg(ptrA).addReg(ptrB);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005897 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00005898 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
5899 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesend4eb0522008-08-25 22:34:37 +00005900 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00005901 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00005902 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00005903 BB->addSuccessor(loopMBB);
5904 BB->addSuccessor(exitMBB);
5905
5906 // exitMBB:
5907 // ...
5908 BB = exitMBB;
5909 return BB;
5910}
5911
5912MachineBasicBlock *
Scott Michelcf0da6c2009-02-17 22:15:04 +00005913PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesena32affb2008-08-28 17:53:09 +00005914 MachineBasicBlock *BB,
5915 bool is8bit, // operation
Dan Gohman747e55b2009-02-07 16:15:20 +00005916 unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005917 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesena32affb2008-08-28 17:53:09 +00005918 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5919 // In 64 bit mode we have to use 64 bits for addresses, even though the
5920 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
5921 // registers without caring whether they're 32 or 64, but here we're
5922 // doing actual arithmetic on the addresses.
5923 bool is64bit = PPCSubTarget.isPPC64();
Hal Finkelf70c41e2013-03-21 23:45:03 +00005924 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesena32affb2008-08-28 17:53:09 +00005925
5926 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5927 MachineFunction *F = BB->getParent();
5928 MachineFunction::iterator It = BB;
5929 ++It;
5930
5931 unsigned dest = MI->getOperand(0).getReg();
5932 unsigned ptrA = MI->getOperand(1).getReg();
5933 unsigned ptrB = MI->getOperand(2).getReg();
5934 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00005935 DebugLoc dl = MI->getDebugLoc();
Dale Johannesena32affb2008-08-28 17:53:09 +00005936
5937 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5938 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5939 F->insert(It, loopMBB);
5940 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00005941 exitMBB->splice(exitMBB->begin(), BB,
5942 llvm::next(MachineBasicBlock::iterator(MI)),
5943 BB->end());
5944 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesena32affb2008-08-28 17:53:09 +00005945
5946 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005947 const TargetRegisterClass *RC =
Dale Johannesenbc698292008-09-02 20:30:23 +00005948 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5949 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesena32affb2008-08-28 17:53:09 +00005950 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
5951 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
5952 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
5953 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
5954 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
5955 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
5956 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
5957 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
5958 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
5959 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005960 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00005961 unsigned Ptr1Reg;
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005962 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00005963
5964 // thisMBB:
5965 // ...
5966 // fallthrough --> loopMBB
5967 BB->addSuccessor(loopMBB);
5968
5969 // The 4-byte load must be aligned, while a char or short may be
5970 // anywhere in the word. Hence all this nasty bookkeeping code.
5971 // add ptr1, ptrA, ptrB [copy if ptrA==0]
5972 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00005973 // xori shift, shift1, 24 [16]
Dale Johannesena32affb2008-08-28 17:53:09 +00005974 // rlwinm ptr, ptr1, 0, 0, 29
5975 // slw incr2, incr, shift
5976 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
5977 // slw mask, mask2, shift
5978 // loopMBB:
Dale Johannesen340d2642008-08-30 00:08:53 +00005979 // lwarx tmpDest, ptr
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005980 // add tmp, tmpDest, incr2
5981 // andc tmp2, tmpDest, mask
Dale Johannesena32affb2008-08-28 17:53:09 +00005982 // and tmp3, tmp, mask
5983 // or tmp4, tmp3, tmp2
Dale Johannesen340d2642008-08-30 00:08:53 +00005984 // stwcx. tmp4, ptr
Dale Johannesena32affb2008-08-28 17:53:09 +00005985 // bne- loopMBB
5986 // fallthrough --> exitMBB
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005987 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00005988 if (ptrA != ZeroReg) {
Dale Johannesena32affb2008-08-28 17:53:09 +00005989 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00005990 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00005991 .addReg(ptrA).addReg(ptrB);
5992 } else {
5993 Ptr1Reg = ptrB;
5994 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00005995 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00005996 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00005997 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00005998 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
5999 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006000 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006001 .addReg(Ptr1Reg).addImm(0).addImm(61);
6002 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00006003 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006004 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006005 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006006 .addReg(incr).addReg(ShiftReg);
6007 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006008 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesena32affb2008-08-28 17:53:09 +00006009 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00006010 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6011 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesena32affb2008-08-28 17:53:09 +00006012 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006013 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006014 .addReg(Mask2Reg).addReg(ShiftReg);
6015
6016 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006017 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006018 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006019 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006020 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006021 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006022 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006023 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006024 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006025 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006026 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006027 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidt3581cd42013-04-02 18:37:08 +00006028 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006029 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006030 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00006031 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesena32affb2008-08-28 17:53:09 +00006032 BB->addSuccessor(loopMBB);
6033 BB->addSuccessor(exitMBB);
6034
6035 // exitMBB:
6036 // ...
6037 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00006038 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
6039 .addReg(ShiftReg);
Dale Johannesena32affb2008-08-28 17:53:09 +00006040 return BB;
6041}
6042
Hal Finkel756810f2013-03-21 21:37:52 +00006043llvm::MachineBasicBlock*
6044PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
6045 MachineBasicBlock *MBB) const {
6046 DebugLoc DL = MI->getDebugLoc();
6047 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6048
6049 MachineFunction *MF = MBB->getParent();
6050 MachineRegisterInfo &MRI = MF->getRegInfo();
6051
6052 const BasicBlock *BB = MBB->getBasicBlock();
6053 MachineFunction::iterator I = MBB;
6054 ++I;
6055
6056 // Memory Reference
6057 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6058 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6059
6060 unsigned DstReg = MI->getOperand(0).getReg();
6061 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
6062 assert(RC->hasType(MVT::i32) && "Invalid destination!");
6063 unsigned mainDstReg = MRI.createVirtualRegister(RC);
6064 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
6065
6066 MVT PVT = getPointerTy();
6067 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6068 "Invalid Pointer Size!");
6069 // For v = setjmp(buf), we generate
6070 //
6071 // thisMBB:
6072 // SjLjSetup mainMBB
6073 // bl mainMBB
6074 // v_restore = 1
6075 // b sinkMBB
6076 //
6077 // mainMBB:
6078 // buf[LabelOffset] = LR
6079 // v_main = 0
6080 //
6081 // sinkMBB:
6082 // v = phi(main, restore)
6083 //
6084
6085 MachineBasicBlock *thisMBB = MBB;
6086 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
6087 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
6088 MF->insert(I, mainMBB);
6089 MF->insert(I, sinkMBB);
6090
6091 MachineInstrBuilder MIB;
6092
6093 // Transfer the remainder of BB and its successor edges to sinkMBB.
6094 sinkMBB->splice(sinkMBB->begin(), MBB,
6095 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
6096 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
6097
6098 // Note that the structure of the jmp_buf used here is not compatible
6099 // with that used by libc, and is not designed to be. Specifically, it
6100 // stores only those 'reserved' registers that LLVM does not otherwise
6101 // understand how to spill. Also, by convention, by the time this
6102 // intrinsic is called, Clang has already stored the frame address in the
6103 // first slot of the buffer and stack address in the third. Following the
6104 // X86 target code, we'll store the jump address in the second slot. We also
6105 // need to save the TOC pointer (R2) to handle jumps between shared
6106 // libraries, and that will be stored in the fourth slot. The thread
6107 // identifier (R13) is not affected.
6108
6109 // thisMBB:
6110 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6111 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00006112 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00006113
6114 // Prepare IP either in reg.
6115 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
6116 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
6117 unsigned BufReg = MI->getOperand(1).getReg();
6118
6119 if (PPCSubTarget.isPPC64() && PPCSubTarget.isSVR4ABI()) {
6120 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
6121 .addReg(PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006122 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006123 .addReg(BufReg);
Hal Finkel756810f2013-03-21 21:37:52 +00006124 MIB.setMemRefs(MMOBegin, MMOEnd);
6125 }
6126
Hal Finkelf05d6c72013-07-17 23:50:51 +00006127 // Naked functions never have a base pointer, and so we use r1. For all
6128 // other functions, this decision must be delayed until during PEI.
6129 unsigned BaseReg;
6130 if (MF->getFunction()->getAttributes().hasAttribute(
6131 AttributeSet::FunctionIndex, Attribute::Naked))
6132 BaseReg = PPCSubTarget.isPPC64() ? PPC::X1 : PPC::R1;
6133 else
6134 BaseReg = PPCSubTarget.isPPC64() ? PPC::BP8 : PPC::BP;
6135
6136 MIB = BuildMI(*thisMBB, MI, DL,
6137 TII->get(PPCSubTarget.isPPC64() ? PPC::STD : PPC::STW))
6138 .addReg(BaseReg)
6139 .addImm(BPOffset)
6140 .addReg(BufReg);
6141 MIB.setMemRefs(MMOBegin, MMOEnd);
6142
Hal Finkel756810f2013-03-21 21:37:52 +00006143 // Setup
Hal Finkele5680b32013-04-04 22:55:54 +00006144 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Bill Wendling5e7656b2013-06-07 07:55:53 +00006145 const PPCRegisterInfo *TRI =
6146 static_cast<const PPCRegisterInfo*>(getTargetMachine().getRegisterInfo());
6147 MIB.addRegMask(TRI->getNoPreservedMask());
Hal Finkel756810f2013-03-21 21:37:52 +00006148
6149 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
6150
6151 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
6152 .addMBB(mainMBB);
6153 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
6154
6155 thisMBB->addSuccessor(mainMBB, /* weight */ 0);
6156 thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
6157
6158 // mainMBB:
6159 // mainDstReg = 0
6160 MIB = BuildMI(mainMBB, DL,
6161 TII->get(PPCSubTarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
6162
6163 // Store IP
6164 if (PPCSubTarget.isPPC64()) {
6165 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
6166 .addReg(LabelReg)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006167 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006168 .addReg(BufReg);
6169 } else {
6170 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
6171 .addReg(LabelReg)
6172 .addImm(LabelOffset)
6173 .addReg(BufReg);
6174 }
6175
6176 MIB.setMemRefs(MMOBegin, MMOEnd);
6177
6178 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
6179 mainMBB->addSuccessor(sinkMBB);
6180
6181 // sinkMBB:
6182 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
6183 TII->get(PPC::PHI), DstReg)
6184 .addReg(mainDstReg).addMBB(mainMBB)
6185 .addReg(restoreDstReg).addMBB(thisMBB);
6186
6187 MI->eraseFromParent();
6188 return sinkMBB;
6189}
6190
6191MachineBasicBlock *
6192PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
6193 MachineBasicBlock *MBB) const {
6194 DebugLoc DL = MI->getDebugLoc();
6195 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6196
6197 MachineFunction *MF = MBB->getParent();
6198 MachineRegisterInfo &MRI = MF->getRegInfo();
6199
6200 // Memory Reference
6201 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6202 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6203
6204 MVT PVT = getPointerTy();
6205 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6206 "Invalid Pointer Size!");
6207
6208 const TargetRegisterClass *RC =
6209 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
6210 unsigned Tmp = MRI.createVirtualRegister(RC);
6211 // Since FP is only updated here but NOT referenced, it's treated as GPR.
6212 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
6213 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
Hal Finkelf05d6c72013-07-17 23:50:51 +00006214 unsigned BP = (PVT == MVT::i64) ? PPC::X30 : PPC::R30;
Hal Finkel756810f2013-03-21 21:37:52 +00006215
6216 MachineInstrBuilder MIB;
6217
6218 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6219 const int64_t SPOffset = 2 * PVT.getStoreSize();
6220 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00006221 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00006222
6223 unsigned BufReg = MI->getOperand(0).getReg();
6224
6225 // Reload FP (the jumped-to function may not have had a
6226 // frame pointer, and if so, then its r31 will be restored
6227 // as necessary).
6228 if (PVT == MVT::i64) {
6229 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
6230 .addImm(0)
6231 .addReg(BufReg);
6232 } else {
6233 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
6234 .addImm(0)
6235 .addReg(BufReg);
6236 }
6237 MIB.setMemRefs(MMOBegin, MMOEnd);
6238
6239 // Reload IP
6240 if (PVT == MVT::i64) {
6241 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006242 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006243 .addReg(BufReg);
6244 } else {
6245 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
6246 .addImm(LabelOffset)
6247 .addReg(BufReg);
6248 }
6249 MIB.setMemRefs(MMOBegin, MMOEnd);
6250
6251 // Reload SP
6252 if (PVT == MVT::i64) {
6253 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006254 .addImm(SPOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006255 .addReg(BufReg);
6256 } else {
6257 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
6258 .addImm(SPOffset)
6259 .addReg(BufReg);
6260 }
6261 MIB.setMemRefs(MMOBegin, MMOEnd);
6262
Hal Finkelf05d6c72013-07-17 23:50:51 +00006263 // Reload BP
6264 if (PVT == MVT::i64) {
6265 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
6266 .addImm(BPOffset)
6267 .addReg(BufReg);
6268 } else {
6269 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
6270 .addImm(BPOffset)
6271 .addReg(BufReg);
6272 }
6273 MIB.setMemRefs(MMOBegin, MMOEnd);
Hal Finkel756810f2013-03-21 21:37:52 +00006274
6275 // Reload TOC
6276 if (PVT == MVT::i64 && PPCSubTarget.isSVR4ABI()) {
6277 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006278 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006279 .addReg(BufReg);
6280
6281 MIB.setMemRefs(MMOBegin, MMOEnd);
6282 }
6283
6284 // Jump
6285 BuildMI(*MBB, MI, DL,
6286 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
6287 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
6288
6289 MI->eraseFromParent();
6290 return MBB;
6291}
6292
Dale Johannesena32affb2008-08-28 17:53:09 +00006293MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00006294PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00006295 MachineBasicBlock *BB) const {
Hal Finkel756810f2013-03-21 21:37:52 +00006296 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
6297 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
6298 return emitEHSjLjSetJmp(MI, BB);
6299 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
6300 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
6301 return emitEHSjLjLongJmp(MI, BB);
6302 }
6303
Evan Cheng20350c42006-11-27 23:37:22 +00006304 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng32e376f2008-07-12 02:23:19 +00006305
6306 // To "insert" these instructions we actually have to insert their
6307 // control-flow patterns.
Chris Lattner9b577f12005-08-26 21:23:58 +00006308 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman3b460302008-07-07 23:14:23 +00006309 MachineFunction::iterator It = BB;
Chris Lattner9b577f12005-08-26 21:23:58 +00006310 ++It;
Evan Cheng32e376f2008-07-12 02:23:19 +00006311
Dan Gohman3b460302008-07-07 23:14:23 +00006312 MachineFunction *F = BB->getParent();
Evan Cheng32e376f2008-07-12 02:23:19 +00006313
Hal Finkel460e94d2012-06-22 23:10:08 +00006314 if (PPCSubTarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6315 MI->getOpcode() == PPC::SELECT_CC_I8)) {
Hal Finkeled6a2852013-04-05 23:29:01 +00006316 SmallVector<MachineOperand, 2> Cond;
6317 Cond.push_back(MI->getOperand(4));
6318 Cond.push_back(MI->getOperand(1));
6319
Hal Finkel460e94d2012-06-22 23:10:08 +00006320 DebugLoc dl = MI->getDebugLoc();
Bill Wendling5e7656b2013-06-07 07:55:53 +00006321 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6322 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
6323 Cond, MI->getOperand(2).getReg(),
6324 MI->getOperand(3).getReg());
Hal Finkel460e94d2012-06-22 23:10:08 +00006325 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6326 MI->getOpcode() == PPC::SELECT_CC_I8 ||
6327 MI->getOpcode() == PPC::SELECT_CC_F4 ||
6328 MI->getOpcode() == PPC::SELECT_CC_F8 ||
6329 MI->getOpcode() == PPC::SELECT_CC_VRRC) {
6330
Evan Cheng32e376f2008-07-12 02:23:19 +00006331
6332 // The incoming instruction knows the destination vreg to set, the
6333 // condition code register to branch on, the true/false values to
6334 // select between, and a branch opcode to use.
6335
6336 // thisMBB:
6337 // ...
6338 // TrueVal = ...
6339 // cmpTY ccX, r1, r2
6340 // bCC copy1MBB
6341 // fallthrough --> copy0MBB
6342 MachineBasicBlock *thisMBB = BB;
6343 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
6344 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
6345 unsigned SelectPred = MI->getOperand(4).getImm();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006346 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00006347 F->insert(It, copy0MBB);
6348 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006349
6350 // Transfer the remainder of BB and its successor edges to sinkMBB.
6351 sinkMBB->splice(sinkMBB->begin(), BB,
6352 llvm::next(MachineBasicBlock::iterator(MI)),
6353 BB->end());
6354 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
6355
Evan Cheng32e376f2008-07-12 02:23:19 +00006356 // Next, add the true and fallthrough blocks as its successors.
6357 BB->addSuccessor(copy0MBB);
6358 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006359
Dan Gohman34396292010-07-06 20:24:04 +00006360 BuildMI(BB, dl, TII->get(PPC::BCC))
6361 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
6362
Evan Cheng32e376f2008-07-12 02:23:19 +00006363 // copy0MBB:
6364 // %FalseValue = ...
6365 // # fallthrough to sinkMBB
6366 BB = copy0MBB;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006367
Evan Cheng32e376f2008-07-12 02:23:19 +00006368 // Update machine-CFG edges
6369 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006370
Evan Cheng32e376f2008-07-12 02:23:19 +00006371 // sinkMBB:
6372 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
6373 // ...
6374 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00006375 BuildMI(*BB, BB->begin(), dl,
6376 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng32e376f2008-07-12 02:23:19 +00006377 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
6378 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
6379 }
Dale Johannesena32affb2008-08-28 17:53:09 +00006380 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
6381 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
6382 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
6383 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006384 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
6385 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
6386 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
6387 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006388
6389 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
6390 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
6391 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
6392 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006393 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
6394 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
6395 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
6396 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006397
6398 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
6399 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
6400 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
6401 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006402 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
6403 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
6404 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
6405 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006406
6407 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
6408 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
6409 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
6410 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006411 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
6412 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
6413 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
6414 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006415
6416 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006417 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ANDC);
Dale Johannesena32affb2008-08-28 17:53:09 +00006418 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006419 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006420 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006421 BB = EmitAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006422 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006423 BB = EmitAtomicBinary(MI, BB, true, PPC::ANDC8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006424
6425 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
6426 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
6427 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
6428 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006429 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
6430 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
6431 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
6432 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006433
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006434 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
6435 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
6436 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
6437 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
6438 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
6439 BB = EmitAtomicBinary(MI, BB, false, 0);
6440 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
6441 BB = EmitAtomicBinary(MI, BB, true, 0);
6442
Evan Cheng32e376f2008-07-12 02:23:19 +00006443 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
6444 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
6445 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
6446
6447 unsigned dest = MI->getOperand(0).getReg();
6448 unsigned ptrA = MI->getOperand(1).getReg();
6449 unsigned ptrB = MI->getOperand(2).getReg();
6450 unsigned oldval = MI->getOperand(3).getReg();
6451 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006452 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00006453
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006454 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6455 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6456 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006457 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006458 F->insert(It, loop1MBB);
6459 F->insert(It, loop2MBB);
6460 F->insert(It, midMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006461 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006462 exitMBB->splice(exitMBB->begin(), BB,
6463 llvm::next(MachineBasicBlock::iterator(MI)),
6464 BB->end());
6465 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006466
6467 // thisMBB:
6468 // ...
6469 // fallthrough --> loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006470 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006471
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006472 // loop1MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00006473 // l[wd]arx dest, ptr
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006474 // cmp[wd] dest, oldval
6475 // bne- midMBB
6476 // loop2MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00006477 // st[wd]cx. newval, ptr
6478 // bne- loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006479 // b exitBB
6480 // midMBB:
6481 // st[wd]cx. dest, ptr
6482 // exitBB:
6483 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006484 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng32e376f2008-07-12 02:23:19 +00006485 .addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006486 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng32e376f2008-07-12 02:23:19 +00006487 .addReg(oldval).addReg(dest);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006488 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006489 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6490 BB->addSuccessor(loop2MBB);
6491 BB->addSuccessor(midMBB);
6492
6493 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006494 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng32e376f2008-07-12 02:23:19 +00006495 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006496 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006497 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006498 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006499 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006500 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006501
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006502 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006503 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006504 .addReg(dest).addReg(ptrA).addReg(ptrB);
6505 BB->addSuccessor(exitMBB);
6506
Evan Cheng32e376f2008-07-12 02:23:19 +00006507 // exitMBB:
6508 // ...
6509 BB = exitMBB;
Dale Johannesen340d2642008-08-30 00:08:53 +00006510 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
6511 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
6512 // We must use 64-bit registers for addresses when targeting 64-bit,
6513 // since we're actually doing arithmetic on them. Other registers
6514 // can be 32-bit.
6515 bool is64bit = PPCSubTarget.isPPC64();
6516 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
6517
6518 unsigned dest = MI->getOperand(0).getReg();
6519 unsigned ptrA = MI->getOperand(1).getReg();
6520 unsigned ptrB = MI->getOperand(2).getReg();
6521 unsigned oldval = MI->getOperand(3).getReg();
6522 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006523 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen340d2642008-08-30 00:08:53 +00006524
6525 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6526 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6527 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
6528 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6529 F->insert(It, loop1MBB);
6530 F->insert(It, loop2MBB);
6531 F->insert(It, midMBB);
6532 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006533 exitMBB->splice(exitMBB->begin(), BB,
6534 llvm::next(MachineBasicBlock::iterator(MI)),
6535 BB->end());
6536 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen340d2642008-08-30 00:08:53 +00006537
6538 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006539 const TargetRegisterClass *RC =
Dale Johannesenbc698292008-09-02 20:30:23 +00006540 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
6541 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesen340d2642008-08-30 00:08:53 +00006542 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
6543 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
6544 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
6545 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
6546 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
6547 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
6548 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
6549 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
6550 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
6551 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
6552 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
6553 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
6554 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
6555 unsigned Ptr1Reg;
6556 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkelf70c41e2013-03-21 23:45:03 +00006557 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen340d2642008-08-30 00:08:53 +00006558 // thisMBB:
6559 // ...
6560 // fallthrough --> loopMBB
6561 BB->addSuccessor(loop1MBB);
6562
6563 // The 4-byte load must be aligned, while a char or short may be
6564 // anywhere in the word. Hence all this nasty bookkeeping code.
6565 // add ptr1, ptrA, ptrB [copy if ptrA==0]
6566 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00006567 // xori shift, shift1, 24 [16]
Dale Johannesen340d2642008-08-30 00:08:53 +00006568 // rlwinm ptr, ptr1, 0, 0, 29
6569 // slw newval2, newval, shift
6570 // slw oldval2, oldval,shift
6571 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
6572 // slw mask, mask2, shift
6573 // and newval3, newval2, mask
6574 // and oldval3, oldval2, mask
6575 // loop1MBB:
6576 // lwarx tmpDest, ptr
6577 // and tmp, tmpDest, mask
6578 // cmpw tmp, oldval3
6579 // bne- midMBB
6580 // loop2MBB:
6581 // andc tmp2, tmpDest, mask
6582 // or tmp4, tmp2, newval3
6583 // stwcx. tmp4, ptr
6584 // bne- loop1MBB
6585 // b exitBB
6586 // midMBB:
6587 // stwcx. tmpDest, ptr
6588 // exitBB:
6589 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006590 if (ptrA != ZeroReg) {
Dale Johannesen340d2642008-08-30 00:08:53 +00006591 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006592 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006593 .addReg(ptrA).addReg(ptrB);
6594 } else {
6595 Ptr1Reg = ptrB;
6596 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006597 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006598 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006599 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006600 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
6601 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006602 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006603 .addReg(Ptr1Reg).addImm(0).addImm(61);
6604 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00006605 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006606 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006607 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006608 .addReg(newval).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006609 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006610 .addReg(oldval).addReg(ShiftReg);
6611 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006612 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen340d2642008-08-30 00:08:53 +00006613 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00006614 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6615 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
6616 .addReg(Mask3Reg).addImm(65535);
Dale Johannesen340d2642008-08-30 00:08:53 +00006617 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006618 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006619 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006620 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006621 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006622 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006623 .addReg(OldVal2Reg).addReg(MaskReg);
6624
6625 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006626 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006627 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006628 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
6629 .addReg(TmpDestReg).addReg(MaskReg);
6630 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesen340d2642008-08-30 00:08:53 +00006631 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006632 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00006633 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6634 BB->addSuccessor(loop2MBB);
6635 BB->addSuccessor(midMBB);
6636
6637 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006638 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
6639 .addReg(TmpDestReg).addReg(MaskReg);
6640 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
6641 .addReg(Tmp2Reg).addReg(NewVal3Reg);
6642 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006643 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006644 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00006645 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006646 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen340d2642008-08-30 00:08:53 +00006647 BB->addSuccessor(loop1MBB);
6648 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006649
Dale Johannesen340d2642008-08-30 00:08:53 +00006650 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006651 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006652 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00006653 BB->addSuccessor(exitMBB);
6654
6655 // exitMBB:
6656 // ...
6657 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00006658 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
6659 .addReg(ShiftReg);
Ulrich Weigand874fc622013-03-26 10:56:22 +00006660 } else if (MI->getOpcode() == PPC::FADDrtz) {
6661 // This pseudo performs an FADD with rounding mode temporarily forced
6662 // to round-to-zero. We emit this via custom inserter since the FPSCR
6663 // is not modeled at the SelectionDAG level.
6664 unsigned Dest = MI->getOperand(0).getReg();
6665 unsigned Src1 = MI->getOperand(1).getReg();
6666 unsigned Src2 = MI->getOperand(2).getReg();
6667 DebugLoc dl = MI->getDebugLoc();
6668
6669 MachineRegisterInfo &RegInfo = F->getRegInfo();
6670 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
6671
6672 // Save FPSCR value.
6673 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
6674
6675 // Set rounding mode to round-to-zero.
6676 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
6677 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
6678
6679 // Perform addition.
6680 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
6681
6682 // Restore FPSCR value.
6683 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSF)).addImm(1).addReg(MFFSReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00006684 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006685 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng32e376f2008-07-12 02:23:19 +00006686 }
Chris Lattner9b577f12005-08-26 21:23:58 +00006687
Dan Gohman34396292010-07-06 20:24:04 +00006688 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner9b577f12005-08-26 21:23:58 +00006689 return BB;
6690}
6691
Chris Lattner4211ca92006-04-14 06:01:58 +00006692//===----------------------------------------------------------------------===//
6693// Target Optimization Hooks
6694//===----------------------------------------------------------------------===//
6695
Hal Finkelb0c810f2013-04-03 17:44:56 +00006696SDValue PPCTargetLowering::DAGCombineFastRecip(SDValue Op,
6697 DAGCombinerInfo &DCI) const {
Hal Finkel2e103312013-04-03 04:01:11 +00006698 if (DCI.isAfterLegalizeVectorOps())
6699 return SDValue();
6700
Hal Finkelb0c810f2013-04-03 17:44:56 +00006701 EVT VT = Op.getValueType();
6702
6703 if ((VT == MVT::f32 && PPCSubTarget.hasFRES()) ||
6704 (VT == MVT::f64 && PPCSubTarget.hasFRE()) ||
6705 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel2e103312013-04-03 04:01:11 +00006706
6707 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6708 // For the reciprocal, we need to find the zero of the function:
6709 // F(X) = A X - 1 [which has a zero at X = 1/A]
6710 // =>
6711 // X_{i+1} = X_i (2 - A X_i) = X_i + X_i (1 - A X_i) [this second form
6712 // does not require additional intermediate precision]
6713
6714 // Convergence is quadratic, so we essentially double the number of digits
6715 // correct after every iteration. The minimum architected relative
6716 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6717 // 23 digits and double has 52 digits.
6718 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00006719 if (VT.getScalarType() == MVT::f64)
Hal Finkel2e103312013-04-03 04:01:11 +00006720 ++Iterations;
6721
6722 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006723 SDLoc dl(Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006724
6725 SDValue FPOne =
Hal Finkelb0c810f2013-04-03 17:44:56 +00006726 DAG.getConstantFP(1.0, VT.getScalarType());
6727 if (VT.isVector()) {
6728 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel2e103312013-04-03 04:01:11 +00006729 "Unknown vector type");
Hal Finkelb0c810f2013-04-03 17:44:56 +00006730 FPOne = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
Hal Finkel2e103312013-04-03 04:01:11 +00006731 FPOne, FPOne, FPOne, FPOne);
6732 }
6733
Hal Finkelb0c810f2013-04-03 17:44:56 +00006734 SDValue Est = DAG.getNode(PPCISD::FRE, dl, VT, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006735 DCI.AddToWorklist(Est.getNode());
6736
6737 // Newton iterations: Est = Est + Est (1 - Arg * Est)
6738 for (int i = 0; i < Iterations; ++i) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00006739 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Op, Est);
Hal Finkel2e103312013-04-03 04:01:11 +00006740 DCI.AddToWorklist(NewEst.getNode());
6741
Hal Finkelb0c810f2013-04-03 17:44:56 +00006742 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPOne, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006743 DCI.AddToWorklist(NewEst.getNode());
6744
Hal Finkelb0c810f2013-04-03 17:44:56 +00006745 NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006746 DCI.AddToWorklist(NewEst.getNode());
6747
Hal Finkelb0c810f2013-04-03 17:44:56 +00006748 Est = DAG.getNode(ISD::FADD, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006749 DCI.AddToWorklist(Est.getNode());
6750 }
6751
6752 return Est;
6753 }
6754
6755 return SDValue();
6756}
6757
Hal Finkelb0c810f2013-04-03 17:44:56 +00006758SDValue PPCTargetLowering::DAGCombineFastRecipFSQRT(SDValue Op,
Hal Finkel2e103312013-04-03 04:01:11 +00006759 DAGCombinerInfo &DCI) const {
6760 if (DCI.isAfterLegalizeVectorOps())
6761 return SDValue();
6762
Hal Finkelb0c810f2013-04-03 17:44:56 +00006763 EVT VT = Op.getValueType();
6764
6765 if ((VT == MVT::f32 && PPCSubTarget.hasFRSQRTES()) ||
6766 (VT == MVT::f64 && PPCSubTarget.hasFRSQRTE()) ||
6767 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel2e103312013-04-03 04:01:11 +00006768
6769 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6770 // For the reciprocal sqrt, we need to find the zero of the function:
6771 // F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)]
6772 // =>
6773 // X_{i+1} = X_i (1.5 - A X_i^2 / 2)
6774 // As a result, we precompute A/2 prior to the iteration loop.
6775
6776 // Convergence is quadratic, so we essentially double the number of digits
6777 // correct after every iteration. The minimum architected relative
6778 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6779 // 23 digits and double has 52 digits.
6780 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00006781 if (VT.getScalarType() == MVT::f64)
Hal Finkel2e103312013-04-03 04:01:11 +00006782 ++Iterations;
6783
6784 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006785 SDLoc dl(Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006786
Hal Finkelb0c810f2013-04-03 17:44:56 +00006787 SDValue FPThreeHalves =
6788 DAG.getConstantFP(1.5, VT.getScalarType());
6789 if (VT.isVector()) {
6790 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel2e103312013-04-03 04:01:11 +00006791 "Unknown vector type");
Hal Finkelb0c810f2013-04-03 17:44:56 +00006792 FPThreeHalves = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
6793 FPThreeHalves, FPThreeHalves,
6794 FPThreeHalves, FPThreeHalves);
Hal Finkel2e103312013-04-03 04:01:11 +00006795 }
6796
Hal Finkelb0c810f2013-04-03 17:44:56 +00006797 SDValue Est = DAG.getNode(PPCISD::FRSQRTE, dl, VT, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006798 DCI.AddToWorklist(Est.getNode());
6799
6800 // We now need 0.5*Arg which we can write as (1.5*Arg - Arg) so that
6801 // this entire sequence requires only one FP constant.
Hal Finkelb0c810f2013-04-03 17:44:56 +00006802 SDValue HalfArg = DAG.getNode(ISD::FMUL, dl, VT, FPThreeHalves, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006803 DCI.AddToWorklist(HalfArg.getNode());
6804
Hal Finkelb0c810f2013-04-03 17:44:56 +00006805 HalfArg = DAG.getNode(ISD::FSUB, dl, VT, HalfArg, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006806 DCI.AddToWorklist(HalfArg.getNode());
6807
6808 // Newton iterations: Est = Est * (1.5 - HalfArg * Est * Est)
6809 for (int i = 0; i < Iterations; ++i) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00006810 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, Est);
Hal Finkel2e103312013-04-03 04:01:11 +00006811 DCI.AddToWorklist(NewEst.getNode());
6812
Hal Finkelb0c810f2013-04-03 17:44:56 +00006813 NewEst = DAG.getNode(ISD::FMUL, dl, VT, HalfArg, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006814 DCI.AddToWorklist(NewEst.getNode());
6815
Hal Finkelb0c810f2013-04-03 17:44:56 +00006816 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPThreeHalves, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006817 DCI.AddToWorklist(NewEst.getNode());
6818
Hal Finkelb0c810f2013-04-03 17:44:56 +00006819 Est = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006820 DCI.AddToWorklist(Est.getNode());
6821 }
6822
6823 return Est;
6824 }
6825
6826 return SDValue();
6827}
6828
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00006829// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
6830// not enforce equality of the chain operands.
6831static bool isConsecutiveLS(LSBaseSDNode *LS, LSBaseSDNode *Base,
6832 unsigned Bytes, int Dist,
6833 SelectionDAG &DAG) {
6834 EVT VT = LS->getMemoryVT();
6835 if (VT.getSizeInBits() / 8 != Bytes)
6836 return false;
6837
6838 SDValue Loc = LS->getBasePtr();
6839 SDValue BaseLoc = Base->getBasePtr();
6840 if (Loc.getOpcode() == ISD::FrameIndex) {
6841 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6842 return false;
6843 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6844 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6845 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6846 int FS = MFI->getObjectSize(FI);
6847 int BFS = MFI->getObjectSize(BFI);
6848 if (FS != BFS || FS != (int)Bytes) return false;
6849 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6850 }
6851
6852 // Handle X+C
6853 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6854 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6855 return true;
6856
6857 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6858 const GlobalValue *GV1 = NULL;
6859 const GlobalValue *GV2 = NULL;
6860 int64_t Offset1 = 0;
6861 int64_t Offset2 = 0;
6862 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6863 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
6864 if (isGA1 && isGA2 && GV1 == GV2)
6865 return Offset1 == (Offset2 + Dist*Bytes);
6866 return false;
6867}
6868
Hal Finkel7d8a6912013-05-26 18:08:30 +00006869// Return true is there is a nearyby consecutive load to the one provided
6870// (regardless of alignment). We search up and down the chain, looking though
6871// token factors and other loads (but nothing else). As a result, a true
6872// results indicates that it is safe to create a new consecutive load adjacent
6873// to the load provided.
6874static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
6875 SDValue Chain = LD->getChain();
6876 EVT VT = LD->getMemoryVT();
6877
6878 SmallSet<SDNode *, 16> LoadRoots;
6879 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
6880 SmallSet<SDNode *, 16> Visited;
6881
6882 // First, search up the chain, branching to follow all token-factor operands.
6883 // If we find a consecutive load, then we're done, otherwise, record all
6884 // nodes just above the top-level loads and token factors.
6885 while (!Queue.empty()) {
6886 SDNode *ChainNext = Queue.pop_back_val();
6887 if (!Visited.insert(ChainNext))
6888 continue;
6889
6890 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(ChainNext)) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00006891 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00006892 return true;
6893
6894 if (!Visited.count(ChainLD->getChain().getNode()))
6895 Queue.push_back(ChainLD->getChain().getNode());
6896 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
6897 for (SDNode::op_iterator O = ChainNext->op_begin(),
6898 OE = ChainNext->op_end(); O != OE; ++O)
6899 if (!Visited.count(O->getNode()))
6900 Queue.push_back(O->getNode());
6901 } else
6902 LoadRoots.insert(ChainNext);
6903 }
6904
6905 // Second, search down the chain, starting from the top-level nodes recorded
6906 // in the first phase. These top-level nodes are the nodes just above all
6907 // loads and token factors. Starting with their uses, recursively look though
6908 // all loads (just the chain uses) and token factors to find a consecutive
6909 // load.
6910 Visited.clear();
6911 Queue.clear();
6912
6913 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
6914 IE = LoadRoots.end(); I != IE; ++I) {
6915 Queue.push_back(*I);
6916
6917 while (!Queue.empty()) {
6918 SDNode *LoadRoot = Queue.pop_back_val();
6919 if (!Visited.insert(LoadRoot))
6920 continue;
6921
6922 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(LoadRoot))
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00006923 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00006924 return true;
6925
6926 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
6927 UE = LoadRoot->use_end(); UI != UE; ++UI)
6928 if (((isa<LoadSDNode>(*UI) &&
6929 cast<LoadSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
6930 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
6931 Queue.push_back(*UI);
6932 }
6933 }
6934
6935 return false;
6936}
6937
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006938SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
6939 DAGCombinerInfo &DCI) const {
Dan Gohman57c732b2010-04-21 01:34:56 +00006940 const TargetMachine &TM = getTargetMachine();
Chris Lattnerf4184352006-03-01 04:57:39 +00006941 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006942 SDLoc dl(N);
Chris Lattnerf4184352006-03-01 04:57:39 +00006943 switch (N->getOpcode()) {
6944 default: break;
Chris Lattner3c48ea52006-09-19 05:22:59 +00006945 case PPCISD::SHL:
6946 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00006947 if (C->isNullValue()) // 0 << V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00006948 return N->getOperand(0);
6949 }
6950 break;
6951 case PPCISD::SRL:
6952 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00006953 if (C->isNullValue()) // 0 >>u V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00006954 return N->getOperand(0);
6955 }
6956 break;
6957 case PPCISD::SRA:
6958 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00006959 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00006960 C->isAllOnesValue()) // -1 >>s V -> -1.
6961 return N->getOperand(0);
6962 }
6963 break;
Hal Finkel2e103312013-04-03 04:01:11 +00006964 case ISD::FDIV: {
6965 assert(TM.Options.UnsafeFPMath &&
6966 "Reciprocal estimates require UnsafeFPMath");
Scott Michelcf0da6c2009-02-17 22:15:04 +00006967
Hal Finkel2e103312013-04-03 04:01:11 +00006968 if (N->getOperand(1).getOpcode() == ISD::FSQRT) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00006969 SDValue RV =
6970 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0), DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00006971 if (RV.getNode() != 0) {
6972 DCI.AddToWorklist(RV.getNode());
6973 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6974 N->getOperand(0), RV);
6975 }
Hal Finkelf96c18e2013-04-04 22:44:12 +00006976 } else if (N->getOperand(1).getOpcode() == ISD::FP_EXTEND &&
6977 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
6978 SDValue RV =
6979 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
6980 DCI);
6981 if (RV.getNode() != 0) {
6982 DCI.AddToWorklist(RV.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00006983 RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N->getOperand(1)),
Hal Finkelf96c18e2013-04-04 22:44:12 +00006984 N->getValueType(0), RV);
6985 DCI.AddToWorklist(RV.getNode());
6986 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6987 N->getOperand(0), RV);
6988 }
6989 } else if (N->getOperand(1).getOpcode() == ISD::FP_ROUND &&
6990 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
6991 SDValue RV =
6992 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
6993 DCI);
6994 if (RV.getNode() != 0) {
6995 DCI.AddToWorklist(RV.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00006996 RV = DAG.getNode(ISD::FP_ROUND, SDLoc(N->getOperand(1)),
Hal Finkelf96c18e2013-04-04 22:44:12 +00006997 N->getValueType(0), RV,
6998 N->getOperand(1).getOperand(1));
6999 DCI.AddToWorklist(RV.getNode());
7000 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7001 N->getOperand(0), RV);
7002 }
Hal Finkel2e103312013-04-03 04:01:11 +00007003 }
7004
Hal Finkelb0c810f2013-04-03 17:44:56 +00007005 SDValue RV = DAGCombineFastRecip(N->getOperand(1), DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00007006 if (RV.getNode() != 0) {
7007 DCI.AddToWorklist(RV.getNode());
7008 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7009 N->getOperand(0), RV);
7010 }
7011
7012 }
7013 break;
7014 case ISD::FSQRT: {
7015 assert(TM.Options.UnsafeFPMath &&
7016 "Reciprocal estimates require UnsafeFPMath");
7017
7018 // Compute this as 1/(1/sqrt(X)), which is the reciprocal of the
7019 // reciprocal sqrt.
Hal Finkelb0c810f2013-04-03 17:44:56 +00007020 SDValue RV = DAGCombineFastRecipFSQRT(N->getOperand(0), DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00007021 if (RV.getNode() != 0) {
7022 DCI.AddToWorklist(RV.getNode());
Hal Finkelb0c810f2013-04-03 17:44:56 +00007023 RV = DAGCombineFastRecip(RV, DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00007024 if (RV.getNode() != 0)
7025 return RV;
7026 }
7027
7028 }
7029 break;
Chris Lattnerf4184352006-03-01 04:57:39 +00007030 case ISD::SINT_TO_FP:
Chris Lattnera35f3062006-06-16 17:34:12 +00007031 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattner4a66d692006-03-22 05:30:33 +00007032 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
7033 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
7034 // We allow the src/dst to be either f32/f64, but the intermediate
7035 // type must be i64.
Owen Anderson9f944592009-08-11 20:47:22 +00007036 if (N->getOperand(0).getValueType() == MVT::i64 &&
7037 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007038 SDValue Val = N->getOperand(0).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00007039 if (Val.getValueType() == MVT::f32) {
7040 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007041 DCI.AddToWorklist(Val.getNode());
Chris Lattner4a66d692006-03-22 05:30:33 +00007042 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007043
Owen Anderson9f944592009-08-11 20:47:22 +00007044 Val = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007045 DCI.AddToWorklist(Val.getNode());
Owen Anderson9f944592009-08-11 20:47:22 +00007046 Val = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007047 DCI.AddToWorklist(Val.getNode());
Owen Anderson9f944592009-08-11 20:47:22 +00007048 if (N->getValueType(0) == MVT::f32) {
7049 Val = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Val,
Chris Lattner72733e52008-01-17 07:00:52 +00007050 DAG.getIntPtrConstant(0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00007051 DCI.AddToWorklist(Val.getNode());
Chris Lattner4a66d692006-03-22 05:30:33 +00007052 }
7053 return Val;
Owen Anderson9f944592009-08-11 20:47:22 +00007054 } else if (N->getOperand(0).getValueType() == MVT::i32) {
Chris Lattner4a66d692006-03-22 05:30:33 +00007055 // If the intermediate type is i32, we can avoid the load/store here
7056 // too.
Chris Lattnerf4184352006-03-01 04:57:39 +00007057 }
Chris Lattnerf4184352006-03-01 04:57:39 +00007058 }
7059 }
7060 break;
Chris Lattner27f53452006-03-01 05:50:56 +00007061 case ISD::STORE:
7062 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
7063 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnerf5b46f72008-01-18 16:54:56 +00007064 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner27f53452006-03-01 05:50:56 +00007065 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson9f944592009-08-11 20:47:22 +00007066 N->getOperand(1).getValueType() == MVT::i32 &&
7067 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007068 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00007069 if (Val.getValueType() == MVT::f32) {
7070 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007071 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00007072 }
Owen Anderson9f944592009-08-11 20:47:22 +00007073 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007074 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00007075
Hal Finkel60c75102013-04-01 15:37:53 +00007076 SDValue Ops[] = {
7077 N->getOperand(0), Val, N->getOperand(2),
7078 DAG.getValueType(N->getOperand(1).getValueType())
7079 };
7080
7081 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
7082 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
7083 cast<StoreSDNode>(N)->getMemoryVT(),
7084 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greiff304a7a2008-08-28 21:40:38 +00007085 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00007086 return Val;
7087 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007088
Chris Lattnera7976d32006-07-10 20:56:58 +00007089 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman28328db2009-09-25 00:57:30 +00007090 if (cast<StoreSDNode>(N)->isUnindexed() &&
7091 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00007092 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson9f944592009-08-11 20:47:22 +00007093 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkel31d29562013-03-28 19:25:55 +00007094 N->getOperand(1).getValueType() == MVT::i16 ||
7095 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel22e41c42013-03-28 20:23:46 +00007096 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00007097 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007098 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnera7976d32006-07-10 20:56:58 +00007099 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson9f944592009-08-11 20:47:22 +00007100 if (BSwapOp.getValueType() == MVT::i16)
7101 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnera7976d32006-07-10 20:56:58 +00007102
Dan Gohman48b185d2009-09-25 20:36:54 +00007103 SDValue Ops[] = {
7104 N->getOperand(0), BSwapOp, N->getOperand(2),
7105 DAG.getValueType(N->getOperand(1).getValueType())
7106 };
7107 return
7108 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
7109 Ops, array_lengthof(Ops),
7110 cast<StoreSDNode>(N)->getMemoryVT(),
7111 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00007112 }
7113 break;
Hal Finkelcf2e9082013-05-24 23:00:14 +00007114 case ISD::LOAD: {
7115 LoadSDNode *LD = cast<LoadSDNode>(N);
7116 EVT VT = LD->getValueType(0);
7117 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
7118 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
7119 if (ISD::isNON_EXTLoad(N) && VT.isVector() &&
7120 TM.getSubtarget<PPCSubtarget>().hasAltivec() &&
7121 DCI.getDAGCombineLevel() == AfterLegalizeTypes &&
7122 LD->getAlignment() < ABIAlignment) {
7123 // This is a type-legal unaligned Altivec load.
7124 SDValue Chain = LD->getChain();
7125 SDValue Ptr = LD->getBasePtr();
7126
7127 // This implements the loading of unaligned vectors as described in
7128 // the venerable Apple Velocity Engine overview. Specifically:
7129 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
7130 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
7131 //
7132 // The general idea is to expand a sequence of one or more unaligned
7133 // loads into a alignment-based permutation-control instruction (lvsl),
7134 // a series of regular vector loads (which always truncate their
7135 // input address to an aligned address), and a series of permutations.
7136 // The results of these permutations are the requested loaded values.
7137 // The trick is that the last "extra" load is not taken from the address
7138 // you might suspect (sizeof(vector) bytes after the last requested
7139 // load), but rather sizeof(vector) - 1 bytes after the last
7140 // requested vector. The point of this is to avoid a page fault if the
7141 // base address happend to be aligned. This works because if the base
7142 // address is aligned, then adding less than a full vector length will
7143 // cause the last vector in the sequence to be (re)loaded. Otherwise,
7144 // the next vector will be fetched as you might suspect was necessary.
7145
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00007146 // We might be able to reuse the permutation generation from
Hal Finkelcf2e9082013-05-24 23:00:14 +00007147 // a different base address offset from this one by an aligned amount.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00007148 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
7149 // optimization later.
Hal Finkelcf2e9082013-05-24 23:00:14 +00007150 SDValue PermCntl = BuildIntrinsicOp(Intrinsic::ppc_altivec_lvsl, Ptr,
7151 DAG, dl, MVT::v16i8);
7152
7153 // Refine the alignment of the original load (a "new" load created here
7154 // which was identical to the first except for the alignment would be
7155 // merged with the existing node regardless).
7156 MachineFunction &MF = DAG.getMachineFunction();
7157 MachineMemOperand *MMO =
7158 MF.getMachineMemOperand(LD->getPointerInfo(),
7159 LD->getMemOperand()->getFlags(),
7160 LD->getMemoryVT().getStoreSize(),
7161 ABIAlignment);
7162 LD->refineAlignment(MMO);
7163 SDValue BaseLoad = SDValue(LD, 0);
7164
7165 // Note that the value of IncOffset (which is provided to the next
7166 // load's pointer info offset value, and thus used to calculate the
7167 // alignment), and the value of IncValue (which is actually used to
7168 // increment the pointer value) are different! This is because we
7169 // require the next load to appear to be aligned, even though it
7170 // is actually offset from the base pointer by a lesser amount.
7171 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel7d8a6912013-05-26 18:08:30 +00007172 int IncValue = IncOffset;
7173
7174 // Walk (both up and down) the chain looking for another load at the real
7175 // (aligned) offset (the alignment of the other load does not matter in
7176 // this case). If found, then do not use the offset reduction trick, as
7177 // that will prevent the loads from being later combined (as they would
7178 // otherwise be duplicates).
7179 if (!findConsecutiveLoad(LD, DAG))
7180 --IncValue;
7181
Hal Finkelcf2e9082013-05-24 23:00:14 +00007182 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
7183 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
7184
Hal Finkelcf2e9082013-05-24 23:00:14 +00007185 SDValue ExtraLoad =
7186 DAG.getLoad(VT, dl, Chain, Ptr,
7187 LD->getPointerInfo().getWithOffset(IncOffset),
7188 LD->isVolatile(), LD->isNonTemporal(),
7189 LD->isInvariant(), ABIAlignment);
7190
7191 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
7192 BaseLoad.getValue(1), ExtraLoad.getValue(1));
7193
7194 if (BaseLoad.getValueType() != MVT::v4i32)
7195 BaseLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, BaseLoad);
7196
7197 if (ExtraLoad.getValueType() != MVT::v4i32)
7198 ExtraLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, ExtraLoad);
7199
7200 SDValue Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
7201 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
7202
7203 if (VT != MVT::v4i32)
7204 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
7205
7206 // Now we need to be really careful about how we update the users of the
7207 // original load. We cannot just call DCI.CombineTo (or
7208 // DAG.ReplaceAllUsesWith for that matter), because the load still has
7209 // uses created here (the permutation for example) that need to stay.
7210 SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
7211 while (UI != UE) {
7212 SDUse &Use = UI.getUse();
7213 SDNode *User = *UI;
7214 // Note: BaseLoad is checked here because it might not be N, but a
7215 // bitcast of N.
7216 if (User == Perm.getNode() || User == BaseLoad.getNode() ||
7217 User == TF.getNode() || Use.getResNo() > 1) {
7218 ++UI;
7219 continue;
7220 }
7221
7222 SDValue To = Use.getResNo() ? TF : Perm;
7223 ++UI;
7224
7225 SmallVector<SDValue, 8> Ops;
7226 for (SDNode::op_iterator O = User->op_begin(),
7227 OE = User->op_end(); O != OE; ++O) {
7228 if (*O == Use)
7229 Ops.push_back(To);
7230 else
7231 Ops.push_back(*O);
7232 }
7233
7234 DAG.UpdateNodeOperands(User, Ops.data(), Ops.size());
7235 }
7236
7237 return SDValue(N, 0);
7238 }
7239 }
7240 break;
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00007241 case ISD::INTRINSIC_WO_CHAIN:
7242 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() ==
7243 Intrinsic::ppc_altivec_lvsl &&
7244 N->getOperand(1)->getOpcode() == ISD::ADD) {
7245 SDValue Add = N->getOperand(1);
7246
7247 if (DAG.MaskedValueIsZero(Add->getOperand(1),
7248 APInt::getAllOnesValue(4 /* 16 byte alignment */).zext(
7249 Add.getValueType().getScalarType().getSizeInBits()))) {
7250 SDNode *BasePtr = Add->getOperand(0).getNode();
7251 for (SDNode::use_iterator UI = BasePtr->use_begin(),
7252 UE = BasePtr->use_end(); UI != UE; ++UI) {
7253 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7254 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
7255 Intrinsic::ppc_altivec_lvsl) {
7256 // We've found another LVSL, and this address if an aligned
7257 // multiple of that one. The results will be the same, so use the
7258 // one we've just found instead.
7259
7260 return SDValue(*UI, 0);
7261 }
7262 }
7263 }
7264 }
Chris Lattnera7976d32006-07-10 20:56:58 +00007265 case ISD::BSWAP:
7266 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greiff304a7a2008-08-28 21:40:38 +00007267 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnera7976d32006-07-10 20:56:58 +00007268 N->getOperand(0).hasOneUse() &&
Hal Finkel31d29562013-03-28 19:25:55 +00007269 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
7270 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel22e41c42013-03-28 20:23:46 +00007271 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00007272 N->getValueType(0) == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007273 SDValue Load = N->getOperand(0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00007274 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnera7976d32006-07-10 20:56:58 +00007275 // Create the byte-swapping load.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007276 SDValue Ops[] = {
Evan Chenge71fe34d2006-10-09 20:57:25 +00007277 LD->getChain(), // Chain
7278 LD->getBasePtr(), // Ptr
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007279 DAG.getValueType(N->getValueType(0)) // VT
7280 };
Dan Gohman48b185d2009-09-25 20:36:54 +00007281 SDValue BSLoad =
7282 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkel31d29562013-03-28 19:25:55 +00007283 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
7284 MVT::i64 : MVT::i32, MVT::Other),
Hal Finkel93492fa2013-03-28 19:43:12 +00007285 Ops, 3, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00007286
Scott Michelcf0da6c2009-02-17 22:15:04 +00007287 // If this is an i16 load, insert the truncate.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007288 SDValue ResVal = BSLoad;
Owen Anderson9f944592009-08-11 20:47:22 +00007289 if (N->getValueType(0) == MVT::i16)
7290 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007291
Chris Lattnera7976d32006-07-10 20:56:58 +00007292 // First, combine the bswap away. This makes the value produced by the
7293 // load dead.
7294 DCI.CombineTo(N, ResVal);
7295
7296 // Next, combine the load away, we give it a bogus result value but a real
7297 // chain result. The result value is dead because the bswap is dead.
Gabor Greiff304a7a2008-08-28 21:40:38 +00007298 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00007299
Chris Lattnera7976d32006-07-10 20:56:58 +00007300 // Return N so it doesn't get rechecked!
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007301 return SDValue(N, 0);
Chris Lattnera7976d32006-07-10 20:56:58 +00007302 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007303
Chris Lattner27f53452006-03-01 05:50:56 +00007304 break;
Chris Lattnerd4058a52006-03-31 06:02:07 +00007305 case PPCISD::VCMP: {
7306 // If a VCMPo node already exists with exactly the same operands as this
7307 // node, use its result instead of this node (VCMPo computes both a CR6 and
7308 // a normal output).
7309 //
7310 if (!N->getOperand(0).hasOneUse() &&
7311 !N->getOperand(1).hasOneUse() &&
7312 !N->getOperand(2).hasOneUse()) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00007313
Chris Lattnerd4058a52006-03-31 06:02:07 +00007314 // Scan all of the users of the LHS, looking for VCMPo's that match.
7315 SDNode *VCMPoNode = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007316
Gabor Greiff304a7a2008-08-28 21:40:38 +00007317 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattnerd4058a52006-03-31 06:02:07 +00007318 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
7319 UI != E; ++UI)
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007320 if (UI->getOpcode() == PPCISD::VCMPo &&
7321 UI->getOperand(1) == N->getOperand(1) &&
7322 UI->getOperand(2) == N->getOperand(2) &&
7323 UI->getOperand(0) == N->getOperand(0)) {
7324 VCMPoNode = *UI;
Chris Lattnerd4058a52006-03-31 06:02:07 +00007325 break;
7326 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007327
Chris Lattner518834c2006-04-18 18:28:22 +00007328 // If there is no VCMPo node, or if the flag value has a single use, don't
7329 // transform this.
7330 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
7331 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007332
7333 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner518834c2006-04-18 18:28:22 +00007334 // chain, this transformation is more complex. Note that multiple things
7335 // could use the value result, which we should ignore.
7336 SDNode *FlagUser = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007337 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Chris Lattner518834c2006-04-18 18:28:22 +00007338 FlagUser == 0; ++UI) {
7339 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007340 SDNode *User = *UI;
Chris Lattner518834c2006-04-18 18:28:22 +00007341 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007342 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner518834c2006-04-18 18:28:22 +00007343 FlagUser = User;
7344 break;
7345 }
7346 }
7347 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007348
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00007349 // If the user is a MFOCRF instruction, we know this is safe.
7350 // Otherwise we give up for right now.
7351 if (FlagUser->getOpcode() == PPCISD::MFOCRF)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007352 return SDValue(VCMPoNode, 0);
Chris Lattnerd4058a52006-03-31 06:02:07 +00007353 }
7354 break;
7355 }
Chris Lattner9754d142006-04-18 17:59:36 +00007356 case ISD::BR_CC: {
7357 // If this is a branch on an altivec predicate comparison, lower this so
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00007358 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This
Chris Lattner9754d142006-04-18 17:59:36 +00007359 // lowering is done pre-legalize, because the legalizer lowers the predicate
7360 // compare down to code that is difficult to reassemble.
7361 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007362 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkel25c19922013-05-15 21:37:41 +00007363
7364 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
7365 // value. If so, pass-through the AND to get to the intrinsic.
7366 if (LHS.getOpcode() == ISD::AND &&
7367 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7368 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
7369 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7370 isa<ConstantSDNode>(LHS.getOperand(1)) &&
7371 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
7372 isZero())
7373 LHS = LHS.getOperand(0);
7374
7375 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7376 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
7377 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7378 isa<ConstantSDNode>(RHS)) {
7379 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
7380 "Counter decrement comparison is not EQ or NE");
7381
7382 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
7383 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
7384 (CC == ISD::SETNE && !Val);
7385
7386 // We now need to make the intrinsic dead (it cannot be instruction
7387 // selected).
7388 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
7389 assert(LHS.getNode()->hasOneUse() &&
7390 "Counter decrement has more than one use");
7391
7392 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
7393 N->getOperand(0), N->getOperand(4));
7394 }
7395
Chris Lattner9754d142006-04-18 17:59:36 +00007396 int CompareOpc;
7397 bool isDot;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007398
Chris Lattner9754d142006-04-18 17:59:36 +00007399 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7400 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
7401 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
7402 assert(isDot && "Can't compare against a vector result!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00007403
Chris Lattner9754d142006-04-18 17:59:36 +00007404 // If this is a comparison against something other than 0/1, then we know
7405 // that the condition is never/always true.
Dan Gohmaneffb8942008-09-12 16:56:44 +00007406 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00007407 if (Val != 0 && Val != 1) {
7408 if (CC == ISD::SETEQ) // Cond never true, remove branch.
7409 return N->getOperand(0);
7410 // Always !=, turn it into an unconditional branch.
Owen Anderson9f944592009-08-11 20:47:22 +00007411 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner9754d142006-04-18 17:59:36 +00007412 N->getOperand(0), N->getOperand(4));
7413 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007414
Chris Lattner9754d142006-04-18 17:59:36 +00007415 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007416
Chris Lattner9754d142006-04-18 17:59:36 +00007417 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007418 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007419 LHS.getOperand(2), // LHS of compare
7420 LHS.getOperand(3), // RHS of compare
Owen Anderson9f944592009-08-11 20:47:22 +00007421 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007422 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00007423 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesenf80493b2009-02-05 22:07:54 +00007424 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007425
Chris Lattner9754d142006-04-18 17:59:36 +00007426 // Unpack the result based on how the target uses it.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007427 PPC::Predicate CompOpc;
Dan Gohmaneffb8942008-09-12 16:56:44 +00007428 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner9754d142006-04-18 17:59:36 +00007429 default: // Can't happen, don't crash on invalid number though.
7430 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007431 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner9754d142006-04-18 17:59:36 +00007432 break;
7433 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007434 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner9754d142006-04-18 17:59:36 +00007435 break;
7436 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007437 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner9754d142006-04-18 17:59:36 +00007438 break;
7439 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007440 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner9754d142006-04-18 17:59:36 +00007441 break;
7442 }
7443
Owen Anderson9f944592009-08-11 20:47:22 +00007444 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
7445 DAG.getConstant(CompOpc, MVT::i32),
7446 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner9754d142006-04-18 17:59:36 +00007447 N->getOperand(4), CompNode.getValue(1));
7448 }
7449 break;
7450 }
Chris Lattnerf4184352006-03-01 04:57:39 +00007451 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007452
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007453 return SDValue();
Chris Lattnerf4184352006-03-01 04:57:39 +00007454}
7455
Chris Lattner4211ca92006-04-14 06:01:58 +00007456//===----------------------------------------------------------------------===//
7457// Inline Assembly Support
7458//===----------------------------------------------------------------------===//
7459
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007460void PPCTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Scott Michelcf0da6c2009-02-17 22:15:04 +00007461 APInt &KnownZero,
Dan Gohmanf990faf2008-02-13 00:35:47 +00007462 APInt &KnownOne,
Dan Gohman309d3d52007-06-22 14:59:07 +00007463 const SelectionDAG &DAG,
Chris Lattnerc5287c02006-04-02 06:26:07 +00007464 unsigned Depth) const {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00007465 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerc5287c02006-04-02 06:26:07 +00007466 switch (Op.getOpcode()) {
7467 default: break;
Chris Lattnera7976d32006-07-10 20:56:58 +00007468 case PPCISD::LBRX: {
7469 // lhbrx is known to have the top bits cleared out.
Dan Gohmana5fc0352009-09-27 23:17:47 +00007470 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnera7976d32006-07-10 20:56:58 +00007471 KnownZero = 0xFFFF0000;
7472 break;
7473 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00007474 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmaneffb8942008-09-12 16:56:44 +00007475 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerc5287c02006-04-02 06:26:07 +00007476 default: break;
7477 case Intrinsic::ppc_altivec_vcmpbfp_p:
7478 case Intrinsic::ppc_altivec_vcmpeqfp_p:
7479 case Intrinsic::ppc_altivec_vcmpequb_p:
7480 case Intrinsic::ppc_altivec_vcmpequh_p:
7481 case Intrinsic::ppc_altivec_vcmpequw_p:
7482 case Intrinsic::ppc_altivec_vcmpgefp_p:
7483 case Intrinsic::ppc_altivec_vcmpgtfp_p:
7484 case Intrinsic::ppc_altivec_vcmpgtsb_p:
7485 case Intrinsic::ppc_altivec_vcmpgtsh_p:
7486 case Intrinsic::ppc_altivec_vcmpgtsw_p:
7487 case Intrinsic::ppc_altivec_vcmpgtub_p:
7488 case Intrinsic::ppc_altivec_vcmpgtuh_p:
7489 case Intrinsic::ppc_altivec_vcmpgtuw_p:
7490 KnownZero = ~1U; // All bits but the low one are known to be zero.
7491 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007492 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00007493 }
7494 }
7495}
7496
7497
Chris Lattnerd6855142007-03-25 02:14:49 +00007498/// getConstraintType - Given a constraint, return the type of
Chris Lattner203b2f12006-02-07 20:16:30 +00007499/// constraint it is for this target.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007500PPCTargetLowering::ConstraintType
Chris Lattnerd6855142007-03-25 02:14:49 +00007501PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
7502 if (Constraint.size() == 1) {
7503 switch (Constraint[0]) {
7504 default: break;
7505 case 'b':
7506 case 'r':
7507 case 'f':
7508 case 'v':
7509 case 'y':
7510 return C_RegisterClass;
Hal Finkel4f24c622012-11-05 18:18:42 +00007511 case 'Z':
7512 // FIXME: While Z does indicate a memory constraint, it specifically
7513 // indicates an r+r address (used in conjunction with the 'y' modifier
7514 // in the replacement string). Currently, we're forcing the base
7515 // register to be r0 in the asm printer (which is interpreted as zero)
7516 // and forming the complete address in the second register. This is
7517 // suboptimal.
7518 return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +00007519 }
7520 }
7521 return TargetLowering::getConstraintType(Constraint);
Chris Lattner203b2f12006-02-07 20:16:30 +00007522}
7523
John Thompsone8360b72010-10-29 17:29:13 +00007524/// Examine constraint type and operand type and determine a weight value.
7525/// This object must already have been set up with the operand type
7526/// and the current alternative constraint selected.
7527TargetLowering::ConstraintWeight
7528PPCTargetLowering::getSingleConstraintMatchWeight(
7529 AsmOperandInfo &info, const char *constraint) const {
7530 ConstraintWeight weight = CW_Invalid;
7531 Value *CallOperandVal = info.CallOperandVal;
7532 // If we don't have a value, we can't do a match,
7533 // but allow it at the lowest weight.
7534 if (CallOperandVal == NULL)
7535 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +00007536 Type *type = CallOperandVal->getType();
John Thompsone8360b72010-10-29 17:29:13 +00007537 // Look at the constraint type.
7538 switch (*constraint) {
7539 default:
7540 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
7541 break;
7542 case 'b':
7543 if (type->isIntegerTy())
7544 weight = CW_Register;
7545 break;
7546 case 'f':
7547 if (type->isFloatTy())
7548 weight = CW_Register;
7549 break;
7550 case 'd':
7551 if (type->isDoubleTy())
7552 weight = CW_Register;
7553 break;
7554 case 'v':
7555 if (type->isVectorTy())
7556 weight = CW_Register;
7557 break;
7558 case 'y':
7559 weight = CW_Register;
7560 break;
Hal Finkel4f24c622012-11-05 18:18:42 +00007561 case 'Z':
7562 weight = CW_Memory;
7563 break;
John Thompsone8360b72010-10-29 17:29:13 +00007564 }
7565 return weight;
7566}
7567
Scott Michelcf0da6c2009-02-17 22:15:04 +00007568std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner584a11a2006-11-02 01:44:04 +00007569PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier295bd432013-06-22 18:37:38 +00007570 MVT VT) const {
Chris Lattner01513612006-01-31 19:20:21 +00007571 if (Constraint.size() == 1) {
Chris Lattner584a11a2006-11-02 01:44:04 +00007572 // GCC RS6000 Constraint Letters
7573 switch (Constraint[0]) {
7574 case 'b': // R1-R31
Hal Finkel638a9fa2013-03-19 18:51:05 +00007575 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
7576 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
7577 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007578 case 'r': // R0-R31
Owen Anderson9f944592009-08-11 20:47:22 +00007579 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
Craig Topperabadc662012-04-20 06:31:50 +00007580 return std::make_pair(0U, &PPC::G8RCRegClass);
7581 return std::make_pair(0U, &PPC::GPRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007582 case 'f':
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00007583 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperabadc662012-04-20 06:31:50 +00007584 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00007585 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperabadc662012-04-20 06:31:50 +00007586 return std::make_pair(0U, &PPC::F8RCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007587 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007588 case 'v':
Craig Topperabadc662012-04-20 06:31:50 +00007589 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007590 case 'y': // crrc
Craig Topperabadc662012-04-20 06:31:50 +00007591 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00007592 }
7593 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007594
Hal Finkelb176acb2013-08-03 12:25:10 +00007595 std::pair<unsigned, const TargetRegisterClass*> R =
7596 TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
7597
7598 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
7599 // (which we call X[0-9]+). If a 64-bit value has been requested, and a
7600 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
7601 // register.
7602 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
7603 // the AsmName field from *RegisterInfo.td, then this would not be necessary.
7604 if (R.first && VT == MVT::i64 && PPCSubTarget.isPPC64() &&
7605 PPC::GPRCRegClass.contains(R.first)) {
7606 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
7607 return std::make_pair(TRI->getMatchingSuperReg(R.first,
Hal Finkelb3ca00d2013-08-14 20:05:04 +00007608 PPC::sub_32, &PPC::G8RCRegClass),
Hal Finkelb176acb2013-08-03 12:25:10 +00007609 &PPC::G8RCRegClass);
7610 }
7611
7612 return R;
Chris Lattner01513612006-01-31 19:20:21 +00007613}
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007614
Chris Lattner584a11a2006-11-02 01:44:04 +00007615
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007616/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesence97d552010-06-25 21:55:36 +00007617/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher0713a9d2011-06-08 23:55:35 +00007618void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +00007619 std::string &Constraint,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007620 std::vector<SDValue>&Ops,
Chris Lattner724539c2008-04-26 23:02:14 +00007621 SelectionDAG &DAG) const {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007622 SDValue Result(0,0);
Eric Christopher0713a9d2011-06-08 23:55:35 +00007623
Eric Christopherde9399b2011-06-02 23:16:42 +00007624 // Only support length 1 constraints.
7625 if (Constraint.length() > 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +00007626
Eric Christopherde9399b2011-06-02 23:16:42 +00007627 char Letter = Constraint[0];
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007628 switch (Letter) {
7629 default: break;
7630 case 'I':
7631 case 'J':
7632 case 'K':
7633 case 'L':
7634 case 'M':
7635 case 'N':
7636 case 'O':
7637 case 'P': {
Chris Lattner0b7472d2007-05-15 01:31:05 +00007638 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007639 if (!CST) return; // Must be an immediate to match.
Dan Gohmaneffb8942008-09-12 16:56:44 +00007640 unsigned Value = CST->getZExtValue();
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007641 switch (Letter) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00007642 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007643 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007644 if ((short)Value == (int)Value)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007645 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007646 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007647 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
7648 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007649 if ((short)Value == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007650 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007651 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007652 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007653 if ((Value >> 16) == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007654 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007655 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007656 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007657 if (Value > 31)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007658 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007659 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007660 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007661 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007662 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007663 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007664 case 'O': // "O" is the constant zero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007665 if (Value == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007666 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007667 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007668 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007669 if ((short)-Value == (int)-Value)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007670 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007671 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007672 }
7673 break;
7674 }
7675 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007676
Gabor Greiff304a7a2008-08-28 21:40:38 +00007677 if (Result.getNode()) {
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007678 Ops.push_back(Result);
7679 return;
7680 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007681
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007682 // Handle standard constraint letters.
Eric Christopherde9399b2011-06-02 23:16:42 +00007683 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007684}
Evan Cheng2dd2c652006-03-13 23:20:37 +00007685
Chris Lattner1eb94d92007-03-30 23:15:24 +00007686// isLegalAddressingMode - Return true if the addressing mode represented
7687// by AM is legal for this target, for a load/store of the specified type.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007688bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattner229907c2011-07-18 04:54:35 +00007689 Type *Ty) const {
Chris Lattner1eb94d92007-03-30 23:15:24 +00007690 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelcf0da6c2009-02-17 22:15:04 +00007691
Chris Lattner1eb94d92007-03-30 23:15:24 +00007692 // PPC allows a sign-extended 16-bit immediate field.
7693 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
7694 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007695
Chris Lattner1eb94d92007-03-30 23:15:24 +00007696 // No global is ever allowed as a base.
7697 if (AM.BaseGV)
7698 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007699
7700 // PPC only support r+r,
Chris Lattner1eb94d92007-03-30 23:15:24 +00007701 switch (AM.Scale) {
7702 case 0: // "r+i" or just "i", depending on HasBaseReg.
7703 break;
7704 case 1:
7705 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
7706 return false;
7707 // Otherwise we have r+r or r+i.
7708 break;
7709 case 2:
7710 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
7711 return false;
7712 // Allow 2*r as r+r.
7713 break;
Chris Lattner19ccd622007-04-09 22:10:05 +00007714 default:
7715 // No other scales are supported.
7716 return false;
Chris Lattner1eb94d92007-03-30 23:15:24 +00007717 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007718
Chris Lattner1eb94d92007-03-30 23:15:24 +00007719 return true;
7720}
7721
Dan Gohman21cea8a2010-04-17 15:26:15 +00007722SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
7723 SelectionDAG &DAG) const {
Evan Cheng168ced92010-05-22 01:47:14 +00007724 MachineFunction &MF = DAG.getMachineFunction();
7725 MachineFrameInfo *MFI = MF.getFrameInfo();
7726 MFI->setReturnAddressIsTaken(true);
7727
Andrew Trickef9de2a2013-05-25 02:42:55 +00007728 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007729 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattnerf6a81562007-12-08 06:59:59 +00007730
Dale Johannesen81bfca72010-05-03 22:59:34 +00007731 // Make sure the function does not optimize away the store of the RA to
7732 // the stack.
Chris Lattnerf6a81562007-12-08 06:59:59 +00007733 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen81bfca72010-05-03 22:59:34 +00007734 FuncInfo->setLRStoreRequired();
7735 bool isPPC64 = PPCSubTarget.isPPC64();
7736 bool isDarwinABI = PPCSubTarget.isDarwinABI();
7737
7738 if (Depth > 0) {
7739 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7740 SDValue Offset =
Wesley Peck527da1b2010-11-23 03:31:01 +00007741
Anton Korobeynikov2f931282011-01-10 12:39:04 +00007742 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI),
Dale Johannesen81bfca72010-05-03 22:59:34 +00007743 isPPC64? MVT::i64 : MVT::i32);
7744 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
7745 DAG.getNode(ISD::ADD, dl, getPointerTy(),
7746 FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +00007747 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007748 }
Chris Lattnerf6a81562007-12-08 06:59:59 +00007749
Chris Lattnerf6a81562007-12-08 06:59:59 +00007750 // Just load the return address off the stack.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007751 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007752 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00007753 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Chris Lattnerf6a81562007-12-08 06:59:59 +00007754}
7755
Dan Gohman21cea8a2010-04-17 15:26:15 +00007756SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
7757 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007758 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007759 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00007760
Owen Anderson53aa7a92009-08-10 22:56:29 +00007761 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00007762 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007763
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00007764 MachineFunction &MF = DAG.getMachineFunction();
7765 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen81bfca72010-05-03 22:59:34 +00007766 MFI->setFrameAddressIsTaken(true);
Hal Finkelaa03c032013-03-21 19:03:19 +00007767
7768 // Naked functions never have a frame pointer, and so we use r1. For all
7769 // other functions, this decision must be delayed until during PEI.
7770 unsigned FrameReg;
7771 if (MF.getFunction()->getAttributes().hasAttribute(
7772 AttributeSet::FunctionIndex, Attribute::Naked))
7773 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
7774 else
7775 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
7776
Dale Johannesen81bfca72010-05-03 22:59:34 +00007777 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
7778 PtrVT);
7779 while (Depth--)
7780 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00007781 FrameAddr, MachinePointerInfo(), false, false,
7782 false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007783 return FrameAddr;
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00007784}
Dan Gohmanc14e5222008-10-21 03:41:46 +00007785
7786bool
7787PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
7788 // The PowerPC target isn't yet aware of offsets.
7789 return false;
7790}
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007791
Evan Chengd9929f02010-04-01 20:10:42 +00007792/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng61399372010-04-02 19:36:14 +00007793/// and store operations as a result of memset, memcpy, and memmove
7794/// lowering. If DstAlign is zero that means it's safe to destination
7795/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
7796/// means there isn't a need to check it against alignment requirement,
Evan Cheng962711e2012-12-12 02:34:41 +00007797/// probably because the source does not need to be loaded. If 'IsMemset' is
7798/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
7799/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
7800/// source is constant so it does not need to be loaded.
Dan Gohman148c69a2010-04-16 20:11:05 +00007801/// It returns EVT::Other if the type should be determined using generic
7802/// target-independent logic.
Evan Cheng43cd9e32010-04-01 06:04:33 +00007803EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
7804 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00007805 bool IsMemset, bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00007806 bool MemcpyStrSrc,
Dan Gohman148c69a2010-04-16 20:11:05 +00007807 MachineFunction &MF) const {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007808 if (this->PPCSubTarget.isPPC64()) {
Owen Anderson9f944592009-08-11 20:47:22 +00007809 return MVT::i64;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007810 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00007811 return MVT::i32;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007812 }
7813}
Hal Finkel88ed4e32012-04-01 19:23:08 +00007814
Hal Finkel8d7fbc92013-03-15 15:27:13 +00007815bool PPCTargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
7816 bool *Fast) const {
7817 if (DisablePPCUnaligned)
7818 return false;
7819
7820 // PowerPC supports unaligned memory access for simple non-vector types.
7821 // Although accessing unaligned addresses is not as efficient as accessing
7822 // aligned addresses, it is generally more efficient than manual expansion,
7823 // and generally only traps for software emulation when crossing page
7824 // boundaries.
7825
7826 if (!VT.isSimple())
7827 return false;
7828
7829 if (VT.getSimpleVT().isVector())
7830 return false;
7831
7832 if (VT == MVT::ppcf128)
7833 return false;
7834
7835 if (Fast)
7836 *Fast = true;
7837
7838 return true;
7839}
7840
Stephen Lin73de7bf2013-07-09 18:16:56 +00007841bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
7842 VT = VT.getScalarType();
7843
Hal Finkel0a479ae2012-06-22 00:49:52 +00007844 if (!VT.isSimple())
7845 return false;
7846
7847 switch (VT.getSimpleVT().SimpleTy) {
7848 case MVT::f32:
7849 case MVT::f64:
Hal Finkel0a479ae2012-06-22 00:49:52 +00007850 return true;
7851 default:
7852 break;
7853 }
7854
7855 return false;
7856}
7857
Hal Finkel88ed4e32012-04-01 19:23:08 +00007858Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Hal Finkel21442b22013-09-11 23:05:25 +00007859 if (DisableILPPref || PPCSubTarget.enableMachineScheduler())
Hal Finkel4e9f1a82012-06-10 19:32:29 +00007860 return TargetLowering::getSchedulingPreference(N);
Hal Finkel88ed4e32012-04-01 19:23:08 +00007861
Hal Finkel4e9f1a82012-06-10 19:32:29 +00007862 return Sched::ILP;
Hal Finkel88ed4e32012-04-01 19:23:08 +00007863}
7864
Bill Schmidt0cf702f2013-07-30 00:50:39 +00007865// Create a fast isel object.
7866FastISel *
7867PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
7868 const TargetLibraryInfo *LibInfo) const {
7869 return PPC::createFastISel(FuncInfo, LibInfo);
7870}