blob: 15545993a68376a5c383f1c79ece6e666e91f1fb [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"
Hal Finkel934361a2015-01-14 01:07:51 +000016#include "PPCCallingConv.h"
Jim Laskey48850c12006-11-16 22:43:37 +000017#include "PPCMachineFunctionInfo.h"
Bill Wendlingdd3fe942010-03-12 02:00:43 +000018#include "PPCPerfectShuffle.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000019#include "PPCTargetMachine.h"
Bill Schmidt22d40dc2013-05-13 19:34:37 +000020#include "PPCTargetObjectFile.h"
Owen Andersone2f23a32007-09-07 04:06:50 +000021#include "llvm/ADT/STLExtras.h"
Hal Finkel0d8db462014-05-11 19:29:11 +000022#include "llvm/ADT/StringSwitch.h"
Eric Christopher89958332014-05-31 00:07:32 +000023#include "llvm/ADT/Triple.h"
Chris Lattner4f2e4e02007-03-06 00:59:59 +000024#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000025#include "llvm/CodeGen/MachineFrameInfo.h"
26#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner9b577f12005-08-26 21:23:58 +000027#include "llvm/CodeGen/MachineInstrBuilder.h"
Hal Finkel57725662015-01-03 17:58:24 +000028#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000030#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000031#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/CallingConv.h"
33#include "llvm/IR/Constants.h"
34#include "llvm/IR/DerivedTypes.h"
35#include "llvm/IR/Function.h"
36#include "llvm/IR/Intrinsics.h"
Chris Lattnerce645542006-11-10 02:08:47 +000037#include "llvm/Support/CommandLine.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000038#include "llvm/Support/ErrorHandling.h"
Craig Topperb25fda92012-03-17 18:46:09 +000039#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000040#include "llvm/Support/raw_ostream.h"
Craig Topperb25fda92012-03-17 18:46:09 +000041#include "llvm/Target/TargetOptions.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000042using namespace llvm;
43
Joerg Sonnenbergereb8655a2014-08-08 16:46:10 +000044// FIXME: Remove this once soft-float is supported.
45static cl::opt<bool> DisablePPCFloatInVariadic("disable-ppc-float-in-variadic",
46cl::desc("disable saving float registers for va_start on PPC"), cl::Hidden);
47
Hal Finkel595817e2012-06-04 02:21:00 +000048static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
49cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
Chris Lattnerce645542006-11-10 02:08:47 +000050
Hal Finkel4e9f1a82012-06-10 19:32:29 +000051static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
52cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
53
Hal Finkel8d7fbc92013-03-15 15:27:13 +000054static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
55cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
56
Hal Finkel940ab932014-02-28 00:27:01 +000057// FIXME: Remove this once the bug has been fixed!
58extern cl::opt<bool> ANDIGlueBug;
59
Eric Christophercccae792015-01-30 22:02:31 +000060PPCTargetLowering::PPCTargetLowering(const PPCTargetMachine &TM,
61 const PPCSubtarget &STI)
62 : TargetLowering(TM), Subtarget(STI) {
Chris Lattnera028e7a2005-09-27 22:18:25 +000063 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikov3b7c2572006-12-10 23:12:42 +000064 setUseUnderscoreSetJmp(true);
65 setUseUnderscoreLongJmp(true);
Scott Michelcf0da6c2009-02-17 22:15:04 +000066
Chris Lattnerd10babf2010-10-10 18:34:00 +000067 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
68 // arguments are at least 4/8 bytes aligned.
Eric Christopherb1aaebe2014-06-12 22:38:18 +000069 bool isPPC64 = Subtarget.isPPC64();
Evan Cheng39e90022012-07-02 22:39:56 +000070 setMinStackArgumentAlignment(isPPC64 ? 8:4);
Wesley Peck527da1b2010-11-23 03:31:01 +000071
Chris Lattnerf22556d2005-08-16 17:14:42 +000072 // Set up the register classes.
Craig Topperabadc662012-04-20 06:31:50 +000073 addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
74 addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
75 addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +000076
Evan Cheng5d9fd972006-10-04 00:56:09 +000077 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +000078 for (MVT VT : MVT::integer_valuetypes()) {
79 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
80 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand);
81 }
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
Eric Christopherb1aaebe2014-06-12 22:38:18 +000097 if (Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +000098 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
99
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000100 if (isPPC64 || Subtarget.hasFPCVT()) {
Hal Finkel6a56b212014-03-05 22:14:00 +0000101 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
102 AddPromotedToType (ISD::SINT_TO_FP, MVT::i1,
103 isPPC64 ? MVT::i64 : MVT::i32);
104 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
105 AddPromotedToType (ISD::UINT_TO_FP, MVT::i1,
106 isPPC64 ? MVT::i64 : MVT::i32);
107 } else {
108 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom);
109 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom);
110 }
Hal Finkel940ab932014-02-28 00:27:01 +0000111
112 // PowerPC does not support direct load / store of condition registers
113 setOperationAction(ISD::LOAD, MVT::i1, Custom);
114 setOperationAction(ISD::STORE, MVT::i1, Custom);
115
116 // FIXME: Remove this once the ANDI glue bug is fixed:
117 if (ANDIGlueBug)
118 setOperationAction(ISD::TRUNCATE, MVT::i1, Custom);
119
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000120 for (MVT VT : MVT::integer_valuetypes()) {
121 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
122 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote);
123 setTruncStoreAction(VT, MVT::i1, Expand);
124 }
Hal Finkel940ab932014-02-28 00:27:01 +0000125
126 addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass);
127 }
128
Dale Johannesen666323e2007-10-10 01:01:31 +0000129 // This is used in the ppcf128->int sequence. Note it has different semantics
130 // from FP_ROUND: that rounds to nearest, this rounds to zero.
Owen Anderson9f944592009-08-11 20:47:22 +0000131 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesenf864ac92007-10-06 01:24:11 +0000132
Roman Divacky1faf5b02012-08-16 18:19:29 +0000133 // We do not currently implement these libm ops for PowerPC.
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000134 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
135 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand);
136 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
137 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand);
138 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
Bill Schmidt92e26642013-04-03 13:05:44 +0000139 setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000140
Chris Lattnerf22556d2005-08-16 17:14:42 +0000141 // PowerPC has no SREM/UREM instructions
Owen Anderson9f944592009-08-11 20:47:22 +0000142 setOperationAction(ISD::SREM, MVT::i32, Expand);
143 setOperationAction(ISD::UREM, MVT::i32, Expand);
144 setOperationAction(ISD::SREM, MVT::i64, Expand);
145 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman71f0d7d2007-10-08 17:28:24 +0000146
147 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson9f944592009-08-11 20:47:22 +0000148 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
149 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
150 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
151 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
152 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
153 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
154 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
155 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000156
Dan Gohman482732a2007-10-11 23:21:31 +0000157 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson9f944592009-08-11 20:47:22 +0000158 setOperationAction(ISD::FSIN , MVT::f64, Expand);
159 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000160 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000161 setOperationAction(ISD::FREM , MVT::f64, Expand);
162 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000163 setOperationAction(ISD::FMA , MVT::f64, Legal);
Owen Anderson9f944592009-08-11 20:47:22 +0000164 setOperationAction(ISD::FSIN , MVT::f32, Expand);
165 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000166 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000167 setOperationAction(ISD::FREM , MVT::f32, Expand);
168 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000169 setOperationAction(ISD::FMA , MVT::f32, Legal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +0000170
Owen Anderson9f944592009-08-11 20:47:22 +0000171 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000172
Chris Lattnerf22556d2005-08-16 17:14:42 +0000173 // If we're enabling GP optimizations, use hardware square root
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000174 if (!Subtarget.hasFSQRT() &&
Eric Christophercccae792015-01-30 22:02:31 +0000175 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTE() &&
176 Subtarget.hasFRE()))
Owen Anderson9f944592009-08-11 20:47:22 +0000177 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Hal Finkel2e103312013-04-03 04:01:11 +0000178
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000179 if (!Subtarget.hasFSQRT() &&
Eric Christophercccae792015-01-30 22:02:31 +0000180 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTES() &&
181 Subtarget.hasFRES()))
Owen Anderson9f944592009-08-11 20:47:22 +0000182 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000183
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000184 if (Subtarget.hasFCPSGN()) {
Hal Finkeldbc78e12013-08-19 05:01:02 +0000185 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
186 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
187 } else {
188 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
189 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
190 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000191
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000192 if (Subtarget.hasFPRND()) {
Hal Finkelc20a08d2013-03-29 08:57:48 +0000193 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
194 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
195 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000196 setOperationAction(ISD::FROUND, MVT::f64, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000197
198 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
199 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
200 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000201 setOperationAction(ISD::FROUND, MVT::f32, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000202 }
203
Nate Begeman2fba8a32006-01-14 03:14:10 +0000204 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson9f944592009-08-11 20:47:22 +0000205 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000206 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000207 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
208 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000209 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000210 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000211 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
212 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000213
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000214 if (Subtarget.hasPOPCNTD()) {
Hal Finkel290376d2013-04-01 15:58:15 +0000215 setOperationAction(ISD::CTPOP, MVT::i32 , Legal);
Hal Finkela4d07482013-03-28 13:29:47 +0000216 setOperationAction(ISD::CTPOP, MVT::i64 , Legal);
217 } else {
218 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
219 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
220 }
221
Nate Begeman1b8121b2006-01-11 21:21:00 +0000222 // PowerPC does not have ROTR
Owen Anderson9f944592009-08-11 20:47:22 +0000223 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
224 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000225
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000226 if (!Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000227 // PowerPC does not have Select
228 setOperationAction(ISD::SELECT, MVT::i32, Expand);
229 setOperationAction(ISD::SELECT, MVT::i64, Expand);
230 setOperationAction(ISD::SELECT, MVT::f32, Expand);
231 setOperationAction(ISD::SELECT, MVT::f64, Expand);
232 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000233
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000234 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson9f944592009-08-11 20:47:22 +0000235 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
236 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begemana162f202006-01-31 08:17:29 +0000237
Nate Begeman7e7f4392006-02-01 07:19:44 +0000238 // PowerPC wants to optimize integer setcc a bit
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000239 if (!Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000240 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000241
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000242 // PowerPC does not have BRCOND which requires SetCC
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000243 if (!Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000244 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Cheng0d41d192006-10-30 08:02:39 +0000245
Owen Anderson9f944592009-08-11 20:47:22 +0000246 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000247
Chris Lattnerda2e04c2005-08-31 21:09:52 +0000248 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson9f944592009-08-11 20:47:22 +0000249 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000250
Jim Laskey6267b2c2005-08-17 00:40:22 +0000251 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson9f944592009-08-11 20:47:22 +0000252 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
253 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskey6267b2c2005-08-17 00:40:22 +0000254
Wesley Peck527da1b2010-11-23 03:31:01 +0000255 setOperationAction(ISD::BITCAST, MVT::f32, Expand);
256 setOperationAction(ISD::BITCAST, MVT::i32, Expand);
257 setOperationAction(ISD::BITCAST, MVT::i64, Expand);
258 setOperationAction(ISD::BITCAST, MVT::f64, Expand);
Chris Lattnerc46fc242005-12-23 05:13:35 +0000259
Chris Lattner84b49d52006-04-28 21:56:10 +0000260 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson9f944592009-08-11 20:47:22 +0000261 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskeye0008e22007-02-22 14:56:36 +0000262
Hal Finkel1996f3d2013-03-27 19:10:42 +0000263 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Hal Finkel756810f2013-03-21 21:37:52 +0000264 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
265 // support continuation, user-level threading, and etc.. As a result, no
266 // other SjLj exception interfaces are implemented and please don't build
267 // your own exception handling based on them.
268 // LLVM/Clang supports zero-cost DWARF exception handling.
269 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
270 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000271
272 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman4e56db62005-12-10 02:36:00 +0000273 // appropriate instructions to materialize the address.
Owen Anderson9f944592009-08-11 20:47:22 +0000274 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
275 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000276 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000277 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
278 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
279 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
280 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000281 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000282 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
283 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000284
Nate Begemanf69d13b2008-08-11 17:36:31 +0000285 // TRAP is legal.
Owen Anderson9f944592009-08-11 20:47:22 +0000286 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling95e1af22008-09-17 00:30:57 +0000287
288 // TRAMPOLINE is custom lowered.
Duncan Sandsa0984362011-09-06 13:37:06 +0000289 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
290 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Bill Wendling95e1af22008-09-17 00:30:57 +0000291
Nate Begemane74795c2006-01-25 18:21:52 +0000292 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson9f944592009-08-11 20:47:22 +0000293 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000294
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000295 if (Subtarget.isSVR4ABI()) {
Evan Cheng39e90022012-07-02 22:39:56 +0000296 if (isPPC64) {
Hal Finkele44eb282012-03-24 03:53:55 +0000297 // VAARG always uses double-word chunks, so promote anything smaller.
298 setOperationAction(ISD::VAARG, MVT::i1, Promote);
299 AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
300 setOperationAction(ISD::VAARG, MVT::i8, Promote);
301 AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
302 setOperationAction(ISD::VAARG, MVT::i16, Promote);
303 AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
304 setOperationAction(ISD::VAARG, MVT::i32, Promote);
305 AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
306 setOperationAction(ISD::VAARG, MVT::Other, Expand);
307 } else {
308 // VAARG is custom lowered with the 32-bit SVR4 ABI.
309 setOperationAction(ISD::VAARG, MVT::Other, Custom);
310 setOperationAction(ISD::VAARG, MVT::i64, Custom);
311 }
Roman Divacky4394e682011-06-28 15:30:42 +0000312 } else
Owen Anderson9f944592009-08-11 20:47:22 +0000313 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000314
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000315 if (Subtarget.isSVR4ABI() && !isPPC64)
Roman Divackyc3825df2013-07-25 21:36:47 +0000316 // VACOPY is custom lowered with the 32-bit SVR4 ABI.
317 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
318 else
319 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
320
Chris Lattner5bd514d2006-01-15 09:02:48 +0000321 // Use the default implementation.
Owen Anderson9f944592009-08-11 20:47:22 +0000322 setOperationAction(ISD::VAEND , MVT::Other, Expand);
323 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
324 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
325 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
326 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Chris Lattnerab4df8342006-10-18 01:18:48 +0000327
Chris Lattner6961fc72006-03-26 10:06:40 +0000328 // We want to custom lower some of our intrinsics.
Owen Anderson9f944592009-08-11 20:47:22 +0000329 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000330
Hal Finkel25c19922013-05-15 21:37:41 +0000331 // To handle counter-based loop conditions.
332 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
333
Dale Johannesen160be0f2008-11-07 22:54:33 +0000334 // Comparisons that require checking two conditions.
Owen Anderson9f944592009-08-11 20:47:22 +0000335 setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
336 setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
337 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
338 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
339 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
340 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
341 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
342 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
343 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
344 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
345 setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
346 setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000347
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000348 if (Subtarget.has64BitSupport()) {
Nate Begeman0b71e002005-10-18 00:28:58 +0000349 // They also have instructions for converting between i64 and fp.
Owen Anderson9f944592009-08-11 20:47:22 +0000350 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
351 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
352 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
353 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Dale Johannesen37bc85f2009-06-04 20:53:52 +0000354 // This is just the low 32 bits of a (signed) fp->i64 conversion.
355 // We cannot do this with Promote because i64 is not a legal type.
Owen Anderson9f944592009-08-11 20:47:22 +0000356 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000357
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000358 if (Subtarget.hasLFIWAX() || Subtarget.isPPC64())
Hal Finkele53429a2013-03-31 01:58:02 +0000359 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begeman762bf802005-10-25 23:48:36 +0000360 } else {
Chris Lattner595088a2005-11-17 07:30:41 +0000361 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson9f944592009-08-11 20:47:22 +0000362 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begemane74dfbb2005-10-18 00:56:42 +0000363 }
364
Hal Finkelf6d45f22013-04-01 17:52:07 +0000365 // With the instructions enabled under FPCVT, we can do everything.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000366 if (Subtarget.hasFPCVT()) {
367 if (Subtarget.has64BitSupport()) {
Hal Finkelf6d45f22013-04-01 17:52:07 +0000368 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
369 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
370 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
371 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
372 }
373
374 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
375 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
376 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
377 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
378 }
379
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000380 if (Subtarget.use64BitRegs()) {
Chris Lattnerb1935762007-10-19 04:08:28 +0000381 // 64-bit PowerPC implementations can support i64 types directly
Craig Topperabadc662012-04-20 06:31:50 +0000382 addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
Nate Begeman0b71e002005-10-18 00:28:58 +0000383 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson9f944592009-08-11 20:47:22 +0000384 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman8d2ead22008-03-07 20:36:53 +0000385 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000386 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
387 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
388 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman0b71e002005-10-18 00:28:58 +0000389 } else {
Chris Lattnerb1935762007-10-19 04:08:28 +0000390 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000391 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
392 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
393 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000394 }
Evan Cheng19264272006-03-01 01:11:20 +0000395
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000396 if (Subtarget.hasAltivec()) {
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000397 // First set operation action for all vector types to expand. Then we
398 // will selectively turn on ones that can be effectively codegen'd.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000399 for (MVT VT : MVT::vector_valuetypes()) {
Chris Lattner06a21ba2006-04-16 01:37:57 +0000400 // add/sub are legal for all supported vector VT's.
Duncan Sands13237ac2008-06-06 12:08:01 +0000401 setOperationAction(ISD::ADD , VT, Legal);
402 setOperationAction(ISD::SUB , VT, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000403
Chris Lattner95c7adc2006-04-04 17:25:31 +0000404 // We promote all shuffles to v16i8.
Duncan Sands13237ac2008-06-06 12:08:01 +0000405 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000406 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattner06a21ba2006-04-16 01:37:57 +0000407
408 // We promote all non-typed operations to v4i32.
Duncan Sands13237ac2008-06-06 12:08:01 +0000409 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000410 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000411 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000412 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000413 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000414 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000415 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000416 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000417 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000418 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000419 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000420 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000421
Chris Lattner06a21ba2006-04-16 01:37:57 +0000422 // No other operations are legal.
Duncan Sands13237ac2008-06-06 12:08:01 +0000423 setOperationAction(ISD::MUL , VT, Expand);
424 setOperationAction(ISD::SDIV, VT, Expand);
425 setOperationAction(ISD::SREM, VT, Expand);
426 setOperationAction(ISD::UDIV, VT, Expand);
427 setOperationAction(ISD::UREM, VT, Expand);
428 setOperationAction(ISD::FDIV, VT, Expand);
Hal Finkele3930222013-07-08 17:30:25 +0000429 setOperationAction(ISD::FREM, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000430 setOperationAction(ISD::FNEG, VT, Expand);
Craig Topperc8a2adf2012-11-15 08:02:19 +0000431 setOperationAction(ISD::FSQRT, VT, Expand);
432 setOperationAction(ISD::FLOG, VT, Expand);
433 setOperationAction(ISD::FLOG10, VT, Expand);
434 setOperationAction(ISD::FLOG2, VT, Expand);
435 setOperationAction(ISD::FEXP, VT, Expand);
436 setOperationAction(ISD::FEXP2, VT, Expand);
437 setOperationAction(ISD::FSIN, VT, Expand);
438 setOperationAction(ISD::FCOS, VT, Expand);
439 setOperationAction(ISD::FABS, VT, Expand);
440 setOperationAction(ISD::FPOWI, VT, Expand);
Craig Topperc4343f22012-11-14 08:11:25 +0000441 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper61d04572012-11-15 06:51:10 +0000442 setOperationAction(ISD::FCEIL, VT, Expand);
443 setOperationAction(ISD::FTRUNC, VT, Expand);
444 setOperationAction(ISD::FRINT, VT, Expand);
445 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000446 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
447 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
448 setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
Ulrich Weigand51eccec2014-08-04 13:27:12 +0000449 setOperationAction(ISD::MULHU, VT, Expand);
450 setOperationAction(ISD::MULHS, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000451 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
452 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
453 setOperationAction(ISD::UDIVREM, VT, Expand);
454 setOperationAction(ISD::SDIVREM, VT, Expand);
455 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
456 setOperationAction(ISD::FPOW, VT, Expand);
Benjamin Kramerf3ad2352014-05-19 13:12:38 +0000457 setOperationAction(ISD::BSWAP, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000458 setOperationAction(ISD::CTPOP, VT, Expand);
459 setOperationAction(ISD::CTLZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000460 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000461 setOperationAction(ISD::CTTZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000462 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
Benjamin Kramerc5071462012-12-19 15:49:14 +0000463 setOperationAction(ISD::VSELECT, VT, Expand);
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000464 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
465
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000466 for (MVT InnerVT : MVT::vector_valuetypes()) {
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000467 setTruncStoreAction(VT, InnerVT, Expand);
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000468 setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
469 setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
470 setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
471 }
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000472 }
473
Chris Lattner95c7adc2006-04-04 17:25:31 +0000474 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
475 // with merges, splats, etc.
Owen Anderson9f944592009-08-11 20:47:22 +0000476 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner95c7adc2006-04-04 17:25:31 +0000477
Owen Anderson9f944592009-08-11 20:47:22 +0000478 setOperationAction(ISD::AND , MVT::v4i32, Legal);
479 setOperationAction(ISD::OR , MVT::v4i32, Legal);
480 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
481 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
Hal Finkel940ab932014-02-28 00:27:01 +0000482 setOperationAction(ISD::SELECT, MVT::v4i32,
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000483 Subtarget.useCRBits() ? Legal : Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000484 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
Adhemerval Zanella5c6e0842012-10-08 17:27:24 +0000485 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
486 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
487 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
488 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
Adhemerval Zanellabdface52012-11-15 20:56:03 +0000489 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
490 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
491 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
492 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000493
Craig Topperabadc662012-04-20 06:31:50 +0000494 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
495 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
496 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
497 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000498
Owen Anderson9f944592009-08-11 20:47:22 +0000499 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000500 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
Hal Finkel2e103312013-04-03 04:01:11 +0000501
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000502 if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) {
Hal Finkel2e103312013-04-03 04:01:11 +0000503 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
504 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
505 }
506
Owen Anderson9f944592009-08-11 20:47:22 +0000507 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
508 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
509 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnera8713b12006-03-20 01:53:53 +0000510
Owen Anderson9f944592009-08-11 20:47:22 +0000511 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
512 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000513
Owen Anderson9f944592009-08-11 20:47:22 +0000514 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
515 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
516 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
517 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Adhemerval Zanella56775e02012-10-30 13:50:19 +0000518
519 // Altivec does not contain unordered floating-point compare instructions
520 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
521 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
Hal Finkel21ada792013-07-08 20:00:03 +0000522 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand);
523 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
Hal Finkel27774d92014-03-13 07:58:58 +0000524
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000525 if (Subtarget.hasVSX()) {
Hal Finkel27774d92014-03-13 07:58:58 +0000526 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal);
Hal Finkel82569b62014-03-27 22:22:48 +0000527 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
Hal Finkel27774d92014-03-13 07:58:58 +0000528
529 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
530 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
531 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
532 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
533 setOperationAction(ISD::FROUND, MVT::v2f64, Legal);
534
535 setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
536
537 setOperationAction(ISD::MUL, MVT::v2f64, Legal);
538 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
539
540 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
541 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
542
Hal Finkel732f0f72014-03-26 12:49:28 +0000543 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
544 setOperationAction(ISD::VSELECT, MVT::v8i16, Legal);
545 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
546 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
547 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
548
Hal Finkel27774d92014-03-13 07:58:58 +0000549 // Share the Altivec comparison restrictions.
550 setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand);
551 setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand);
Hal Finkel27774d92014-03-13 07:58:58 +0000552 setCondCodeAction(ISD::SETO, MVT::v2f64, Expand);
553 setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand);
554
Hal Finkel9281c9a2014-03-26 18:26:30 +0000555 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
556 setOperationAction(ISD::STORE, MVT::v2f64, Legal);
557
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000558 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal);
559
Hal Finkel19be5062014-03-29 05:29:01 +0000560 addRegisterClass(MVT::f64, &PPC::VSFRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +0000561
562 addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass);
563 addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass);
Hal Finkela6c8b512014-03-26 16:12:58 +0000564
565 // VSX v2i64 only supports non-arithmetic operations.
566 setOperationAction(ISD::ADD, MVT::v2i64, Expand);
567 setOperationAction(ISD::SUB, MVT::v2i64, Expand);
568
Hal Finkelad801b72014-03-27 21:26:33 +0000569 setOperationAction(ISD::SHL, MVT::v2i64, Expand);
570 setOperationAction(ISD::SRA, MVT::v2i64, Expand);
571 setOperationAction(ISD::SRL, MVT::v2i64, Expand);
572
Hal Finkel777c9dd2014-03-29 16:04:40 +0000573 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
574
Hal Finkel9281c9a2014-03-26 18:26:30 +0000575 setOperationAction(ISD::LOAD, MVT::v2i64, Promote);
576 AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64);
577 setOperationAction(ISD::STORE, MVT::v2i64, Promote);
578 AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64);
579
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000580 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal);
581
Hal Finkel7279f4b2014-03-26 19:13:54 +0000582 setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal);
583 setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal);
584 setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal);
585 setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal);
586
Hal Finkel5c0d1452014-03-30 13:22:59 +0000587 // Vector operation legalization checks the result type of
588 // SIGN_EXTEND_INREG, overall legalization checks the inner type.
589 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal);
590 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal);
591 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
592 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
593
Hal Finkela6c8b512014-03-26 16:12:58 +0000594 addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +0000595 }
Nate Begeman3e7db9c2005-11-29 08:17:20 +0000596 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000597
Hal Finkel01fa7702014-12-03 00:19:17 +0000598 if (Subtarget.has64BitSupport())
Hal Finkel322e41a2012-04-01 20:08:17 +0000599 setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
Hal Finkel01fa7702014-12-03 00:19:17 +0000600
601 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, isPPC64 ? Legal : Custom);
Hal Finkel322e41a2012-04-01 20:08:17 +0000602
Robin Morissete1ca44b2014-10-02 22:27:07 +0000603 if (!isPPC64) {
604 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
605 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
606 }
Eli Friedman7dfa7912011-08-29 18:23:02 +0000607
Duncan Sands8d6e2e12008-11-23 15:47:28 +0000608 setBooleanContents(ZeroOrOneBooleanContent);
Bill Schmidta76bf5a2013-04-23 18:49:44 +0000609 // Altivec instructions set fields to all zeros or all ones.
610 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000611
Joerg Sonnenbergerb5459e62014-07-24 22:20:10 +0000612 if (!isPPC64) {
613 // These libcalls are not available in 32-bit.
614 setLibcallName(RTLIB::SHL_I128, nullptr);
615 setLibcallName(RTLIB::SRL_I128, nullptr);
616 setLibcallName(RTLIB::SRA_I128, nullptr);
617 }
618
Evan Cheng39e90022012-07-02 22:39:56 +0000619 if (isPPC64) {
Chris Lattner454436d2006-10-18 01:20:43 +0000620 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000621 setExceptionPointerRegister(PPC::X3);
622 setExceptionSelectorRegister(PPC::X4);
623 } else {
Chris Lattner454436d2006-10-18 01:20:43 +0000624 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000625 setExceptionPointerRegister(PPC::R3);
626 setExceptionSelectorRegister(PPC::R4);
627 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000628
Chris Lattnerf4184352006-03-01 04:57:39 +0000629 // We have target-specific dag combine patterns for the following nodes:
630 setTargetDAGCombine(ISD::SINT_TO_FP);
Hal Finkel5efb9182015-01-06 06:01:57 +0000631 if (Subtarget.hasFPCVT())
632 setTargetDAGCombine(ISD::UINT_TO_FP);
Hal Finkelcf2e9082013-05-24 23:00:14 +0000633 setTargetDAGCombine(ISD::LOAD);
Chris Lattner27f53452006-03-01 05:50:56 +0000634 setTargetDAGCombine(ISD::STORE);
Chris Lattner9754d142006-04-18 17:59:36 +0000635 setTargetDAGCombine(ISD::BR_CC);
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000636 if (Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000637 setTargetDAGCombine(ISD::BRCOND);
Chris Lattnera7976d32006-07-10 20:56:58 +0000638 setTargetDAGCombine(ISD::BSWAP);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +0000639 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
Bill Schmidtfae5d712014-12-09 16:35:51 +0000640 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
641 setTargetDAGCombine(ISD::INTRINSIC_VOID);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000642
Hal Finkel46043ed2014-03-01 21:36:57 +0000643 setTargetDAGCombine(ISD::SIGN_EXTEND);
644 setTargetDAGCombine(ISD::ZERO_EXTEND);
645 setTargetDAGCombine(ISD::ANY_EXTEND);
646
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000647 if (Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000648 setTargetDAGCombine(ISD::TRUNCATE);
649 setTargetDAGCombine(ISD::SETCC);
650 setTargetDAGCombine(ISD::SELECT_CC);
651 }
652
Hal Finkel2e103312013-04-03 04:01:11 +0000653 // Use reciprocal estimates.
654 if (TM.Options.UnsafeFPMath) {
655 setTargetDAGCombine(ISD::FDIV);
656 setTargetDAGCombine(ISD::FSQRT);
657 }
658
Dale Johannesen10432e52007-10-19 00:59:18 +0000659 // Darwin long double math library functions have $LDBL128 appended.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000660 if (Subtarget.isDarwin()) {
Duncan Sands53c954f2008-01-10 10:28:30 +0000661 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000662 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
663 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands53c954f2008-01-10 10:28:30 +0000664 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
665 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesenda2d8062008-09-04 00:47:13 +0000666 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
667 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
668 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
669 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
670 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000671 }
672
Hal Finkel940ab932014-02-28 00:27:01 +0000673 // With 32 condition bits, we don't need to sink (and duplicate) compares
674 // aggressively in CodeGenPrep.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000675 if (Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000676 setHasMultipleConditionRegisters();
677
Hal Finkel65298572011-10-17 18:53:03 +0000678 setMinFunctionAlignment(2);
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000679 if (Subtarget.isDarwin())
Hal Finkel65298572011-10-17 18:53:03 +0000680 setPrefFunctionAlignment(4);
Eli Friedman2518f832011-05-06 20:34:06 +0000681
Hal Finkeld73bfba2015-01-03 14:58:25 +0000682 switch (Subtarget.getDarwinDirective()) {
683 default: break;
684 case PPC::DIR_970:
685 case PPC::DIR_A2:
686 case PPC::DIR_E500mc:
687 case PPC::DIR_E5500:
688 case PPC::DIR_PWR4:
689 case PPC::DIR_PWR5:
690 case PPC::DIR_PWR5X:
691 case PPC::DIR_PWR6:
692 case PPC::DIR_PWR6X:
693 case PPC::DIR_PWR7:
694 case PPC::DIR_PWR8:
695 setPrefFunctionAlignment(4);
696 setPrefLoopAlignment(4);
697 break;
698 }
699
Eli Friedman30a49e92011-08-03 21:06:02 +0000700 setInsertFencesForAtomic(true);
701
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000702 if (Subtarget.enableMachineScheduler())
Hal Finkel21442b22013-09-11 23:05:25 +0000703 setSchedulingPreference(Sched::Source);
704 else
705 setSchedulingPreference(Sched::Hybrid);
Hal Finkel6f0ae782011-11-22 16:21:04 +0000706
Chris Lattnerf22556d2005-08-16 17:14:42 +0000707 computeRegisterProperties();
Hal Finkel742b5352012-08-28 16:12:39 +0000708
Hal Finkeld73bfba2015-01-03 14:58:25 +0000709 // The Freescale cores do better with aggressive inlining of memcpy and
710 // friends. GCC uses same threshold of 128 bytes (= 32 word stores).
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000711 if (Subtarget.getDarwinDirective() == PPC::DIR_E500mc ||
712 Subtarget.getDarwinDirective() == PPC::DIR_E5500) {
Jim Grosbach341ad3e2013-02-20 21:13:59 +0000713 MaxStoresPerMemset = 32;
714 MaxStoresPerMemsetOptSize = 16;
715 MaxStoresPerMemcpy = 32;
716 MaxStoresPerMemcpyOptSize = 8;
717 MaxStoresPerMemmove = 32;
718 MaxStoresPerMemmoveOptSize = 8;
Hal Finkel742b5352012-08-28 16:12:39 +0000719 }
Chris Lattnerf22556d2005-08-16 17:14:42 +0000720}
721
Hal Finkel262a2242013-09-12 23:20:06 +0000722/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
723/// the desired ByVal argument alignment.
724static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign,
725 unsigned MaxMaxAlign) {
726 if (MaxAlign == MaxMaxAlign)
727 return;
728 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
729 if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256)
730 MaxAlign = 32;
731 else if (VTy->getBitWidth() >= 128 && MaxAlign < 16)
732 MaxAlign = 16;
733 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
734 unsigned EltAlign = 0;
735 getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign);
736 if (EltAlign > MaxAlign)
737 MaxAlign = EltAlign;
738 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
739 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
740 unsigned EltAlign = 0;
741 getMaxByValAlign(STy->getElementType(i), EltAlign, MaxMaxAlign);
742 if (EltAlign > MaxAlign)
743 MaxAlign = EltAlign;
744 if (MaxAlign == MaxMaxAlign)
745 break;
746 }
747 }
748}
749
Dale Johannesencbde4c22008-02-28 22:31:51 +0000750/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
751/// function arguments in the caller parameter area.
Chris Lattner229907c2011-07-18 04:54:35 +0000752unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
Dale Johannesencbde4c22008-02-28 22:31:51 +0000753 // Darwin passes everything on 4 byte boundary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000754 if (Subtarget.isDarwin())
Dale Johannesencbde4c22008-02-28 22:31:51 +0000755 return 4;
Roman Divackyb9663cc2012-04-02 15:49:30 +0000756
757 // 16byte and wider vectors are passed on 16byte boundary.
Roman Divackyb9663cc2012-04-02 15:49:30 +0000758 // The rest is 8 on PPC64 and 4 on PPC32 boundary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000759 unsigned Align = Subtarget.isPPC64() ? 8 : 4;
760 if (Subtarget.hasAltivec() || Subtarget.hasQPX())
761 getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16);
Hal Finkel262a2242013-09-12 23:20:06 +0000762 return Align;
Dale Johannesencbde4c22008-02-28 22:31:51 +0000763}
764
Chris Lattner347ed8a2006-01-09 23:52:17 +0000765const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
766 switch (Opcode) {
Craig Topper062a2ba2014-04-25 05:30:21 +0000767 default: return nullptr;
Evan Cheng32e376f2008-07-12 02:23:19 +0000768 case PPCISD::FSEL: return "PPCISD::FSEL";
769 case PPCISD::FCFID: return "PPCISD::FCFID";
Hal Finkel3fe09ea2015-01-06 07:02:15 +0000770 case PPCISD::FCFIDU: return "PPCISD::FCFIDU";
771 case PPCISD::FCFIDS: return "PPCISD::FCFIDS";
772 case PPCISD::FCFIDUS: return "PPCISD::FCFIDUS";
Evan Cheng32e376f2008-07-12 02:23:19 +0000773 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
774 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Hal Finkel3fe09ea2015-01-06 07:02:15 +0000775 case PPCISD::FCTIDUZ: return "PPCISD::FCTIDUZ";
776 case PPCISD::FCTIWUZ: return "PPCISD::FCTIWUZ";
Hal Finkel2e103312013-04-03 04:01:11 +0000777 case PPCISD::FRE: return "PPCISD::FRE";
778 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE";
Evan Cheng32e376f2008-07-12 02:23:19 +0000779 case PPCISD::STFIWX: return "PPCISD::STFIWX";
780 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
781 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
782 case PPCISD::VPERM: return "PPCISD::VPERM";
Hal Finkel4edc66b2015-01-03 01:16:37 +0000783 case PPCISD::CMPB: return "PPCISD::CMPB";
Evan Cheng32e376f2008-07-12 02:23:19 +0000784 case PPCISD::Hi: return "PPCISD::Hi";
785 case PPCISD::Lo: return "PPCISD::Lo";
Tilmann Schellerd1aaa322009-08-15 11:54:46 +0000786 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY";
Evan Cheng32e376f2008-07-12 02:23:19 +0000787 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
788 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
789 case PPCISD::SRL: return "PPCISD::SRL";
790 case PPCISD::SRA: return "PPCISD::SRA";
791 case PPCISD::SHL: return "PPCISD::SHL";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000792 case PPCISD::CALL: return "PPCISD::CALL";
793 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP";
Evan Cheng32e376f2008-07-12 02:23:19 +0000794 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000795 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Hal Finkelfc096c92014-12-23 22:29:40 +0000796 case PPCISD::BCTRL_LOAD_TOC: return "PPCISD::BCTRL_LOAD_TOC";
Evan Cheng32e376f2008-07-12 02:23:19 +0000797 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkelbbdee932014-12-02 22:01:00 +0000798 case PPCISD::READ_TIME_BASE: return "PPCISD::READ_TIME_BASE";
Hal Finkel756810f2013-03-21 21:37:52 +0000799 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
800 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Ulrich Weigandd5ebc622013-07-03 17:05:42 +0000801 case PPCISD::MFOCRF: return "PPCISD::MFOCRF";
Evan Cheng32e376f2008-07-12 02:23:19 +0000802 case PPCISD::VCMP: return "PPCISD::VCMP";
803 case PPCISD::VCMPo: return "PPCISD::VCMPo";
804 case PPCISD::LBRX: return "PPCISD::LBRX";
805 case PPCISD::STBRX: return "PPCISD::STBRX";
Hal Finkel3fe09ea2015-01-06 07:02:15 +0000806 case PPCISD::LFIWAX: return "PPCISD::LFIWAX";
807 case PPCISD::LFIWZX: return "PPCISD::LFIWZX";
Evan Cheng32e376f2008-07-12 02:23:19 +0000808 case PPCISD::LARX: return "PPCISD::LARX";
809 case PPCISD::STCX: return "PPCISD::STCX";
810 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkel25c19922013-05-15 21:37:41 +0000811 case PPCISD::BDNZ: return "PPCISD::BDNZ";
812 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000813 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng32e376f2008-07-12 02:23:19 +0000814 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000815 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel5ab37802012-08-28 02:10:27 +0000816 case PPCISD::CR6SET: return "PPCISD::CR6SET";
817 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Bill Schmidt34627e32012-11-27 17:35:46 +0000818 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA";
819 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L";
820 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L";
Roman Divacky32143e22013-12-20 18:08:54 +0000821 case PPCISD::PPC32_GOT: return "PPCISD::PPC32_GOT";
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +0000822 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
823 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtca4a0c92012-12-04 16:18:08 +0000824 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidtc56f1d32012-12-11 20:30:11 +0000825 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
826 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
Bill Schmidt685aa8b2015-02-03 16:16:01 +0000827 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR";
Bill Schmidt24b8dd62012-12-12 19:29:35 +0000828 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
829 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
Bill Schmidt685aa8b2015-02-03 16:16:01 +0000830 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR";
Bill Schmidt24b8dd62012-12-12 19:29:35 +0000831 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
832 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L";
Bill Schmidt51e79512013-02-20 15:50:31 +0000833 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT";
Bill Schmidta87a7e22013-05-14 19:35:45 +0000834 case PPCISD::SC: return "PPCISD::SC";
Chris Lattner347ed8a2006-01-09 23:52:17 +0000835 }
836}
837
Matt Arsenault758659232013-05-18 00:21:46 +0000838EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000839 if (!VT.isVector())
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000840 return Subtarget.useCRBits() ? MVT::i1 : MVT::i32;
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000841 return VT.changeVectorElementTypeToInteger();
Scott Michela6729e82008-03-10 15:42:14 +0000842}
843
Hal Finkel62ac7362014-09-19 11:42:56 +0000844bool PPCTargetLowering::enableAggressiveFMAFusion(EVT VT) const {
845 assert(VT.isFloatingPoint() && "Non-floating-point FMA?");
846 return true;
847}
848
Chris Lattner4211ca92006-04-14 06:01:58 +0000849//===----------------------------------------------------------------------===//
850// Node matching predicates, for use by the tblgen matching code.
851//===----------------------------------------------------------------------===//
852
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000853/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000854static bool isFloatingPointZero(SDValue Op) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000855 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000856 return CFP->getValueAPF().isZero();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000857 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000858 // Maybe this has already been legalized into the constant pool?
859 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000860 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000861 return CFP->getValueAPF().isZero();
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000862 }
863 return false;
864}
865
Chris Lattnere8b83b42006-04-06 17:23:16 +0000866/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
867/// true if Op is undef or if it matches the specified value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000868static bool isConstantOrUndef(int Op, int Val) {
869 return Op < 0 || Op == Val;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000870}
871
872/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
873/// VPKUHUM instruction.
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000874/// The ShuffleKind distinguishes between big-endian operations with
875/// two different inputs (0), either-endian operations with two identical
876/// inputs (1), and little-endian operantion with two different inputs (2).
877/// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
878bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
Bill Schmidtf910a062014-06-10 14:35:01 +0000879 SelectionDAG &DAG) {
Eric Christopher8b770652015-01-26 19:03:15 +0000880 bool IsLE = DAG.getTarget().getDataLayout()->isLittleEndian();
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000881 if (ShuffleKind == 0) {
Eric Christopherd9134482014-08-04 21:25:23 +0000882 if (IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000883 return false;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000884 for (unsigned i = 0; i != 16; ++i)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000885 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000886 return false;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000887 } else if (ShuffleKind == 2) {
Eric Christopherd9134482014-08-04 21:25:23 +0000888 if (!IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000889 return false;
890 for (unsigned i = 0; i != 16; ++i)
891 if (!isConstantOrUndef(N->getMaskElt(i), i*2))
892 return false;
893 } else if (ShuffleKind == 1) {
Eric Christopherd9134482014-08-04 21:25:23 +0000894 unsigned j = IsLE ? 0 : 1;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000895 for (unsigned i = 0; i != 8; ++i)
Bill Schmidtf910a062014-06-10 14:35:01 +0000896 if (!isConstantOrUndef(N->getMaskElt(i), i*2+j) ||
897 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000898 return false;
899 }
Chris Lattner1d338192006-04-06 18:26:28 +0000900 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000901}
902
903/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
904/// VPKUWUM instruction.
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000905/// The ShuffleKind distinguishes between big-endian operations with
906/// two different inputs (0), either-endian operations with two identical
907/// inputs (1), and little-endian operantion with two different inputs (2).
908/// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
909bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
Bill Schmidtf910a062014-06-10 14:35:01 +0000910 SelectionDAG &DAG) {
Eric Christopher8b770652015-01-26 19:03:15 +0000911 bool IsLE = DAG.getTarget().getDataLayout()->isLittleEndian();
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000912 if (ShuffleKind == 0) {
Eric Christopherd9134482014-08-04 21:25:23 +0000913 if (IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000914 return false;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000915 for (unsigned i = 0; i != 16; i += 2)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000916 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
917 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000918 return false;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000919 } else if (ShuffleKind == 2) {
Eric Christopherd9134482014-08-04 21:25:23 +0000920 if (!IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000921 return false;
922 for (unsigned i = 0; i != 16; i += 2)
923 if (!isConstantOrUndef(N->getMaskElt(i ), i*2) ||
924 !isConstantOrUndef(N->getMaskElt(i+1), i*2+1))
925 return false;
926 } else if (ShuffleKind == 1) {
Eric Christopherd9134482014-08-04 21:25:23 +0000927 unsigned j = IsLE ? 0 : 2;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000928 for (unsigned i = 0; i != 8; i += 2)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000929 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+j) ||
930 !isConstantOrUndef(N->getMaskElt(i+1), i*2+j+1) ||
931 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j) ||
932 !isConstantOrUndef(N->getMaskElt(i+9), i*2+j+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000933 return false;
934 }
Chris Lattner1d338192006-04-06 18:26:28 +0000935 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000936}
937
Chris Lattnerf38e0332006-04-06 22:02:42 +0000938/// isVMerge - Common function, used to match vmrg* shuffles.
939///
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000940static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnerf38e0332006-04-06 22:02:42 +0000941 unsigned LHSStart, unsigned RHSStart) {
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000942 if (N->getValueType(0) != MVT::v16i8)
943 return false;
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000944 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
945 "Unsupported merge size!");
Scott Michelcf0da6c2009-02-17 22:15:04 +0000946
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000947 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
948 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000949 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000950 LHSStart+j+i*UnitSize) ||
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000951 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000952 RHSStart+j+i*UnitSize))
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000953 return false;
954 }
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000955 return true;
Chris Lattnerf38e0332006-04-06 22:02:42 +0000956}
957
958/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
Bill Schmidtf910a062014-06-10 14:35:01 +0000959/// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes).
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000960/// The ShuffleKind distinguishes between big-endian merges with two
961/// different inputs (0), either-endian merges with two identical inputs (1),
962/// and little-endian merges with two different inputs (2). For the latter,
963/// the input operands are swapped (see PPCInstrAltivec.td).
Wesley Peck527da1b2010-11-23 03:31:01 +0000964bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000965 unsigned ShuffleKind, SelectionDAG &DAG) {
Eric Christopher8b770652015-01-26 19:03:15 +0000966 if (DAG.getTarget().getDataLayout()->isLittleEndian()) {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000967 if (ShuffleKind == 1) // unary
968 return isVMerge(N, UnitSize, 0, 0);
969 else if (ShuffleKind == 2) // swapped
Bill Schmidtf910a062014-06-10 14:35:01 +0000970 return isVMerge(N, UnitSize, 0, 16);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000971 else
972 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +0000973 } else {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000974 if (ShuffleKind == 1) // unary
975 return isVMerge(N, UnitSize, 8, 8);
976 else if (ShuffleKind == 0) // normal
Bill Schmidtf910a062014-06-10 14:35:01 +0000977 return isVMerge(N, UnitSize, 8, 24);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000978 else
979 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +0000980 }
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000981}
982
983/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
Bill Schmidtf910a062014-06-10 14:35:01 +0000984/// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes).
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000985/// The ShuffleKind distinguishes between big-endian merges with two
986/// different inputs (0), either-endian merges with two identical inputs (1),
987/// and little-endian merges with two different inputs (2). For the latter,
988/// the input operands are swapped (see PPCInstrAltivec.td).
Wesley Peck527da1b2010-11-23 03:31:01 +0000989bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000990 unsigned ShuffleKind, SelectionDAG &DAG) {
Eric Christopher8b770652015-01-26 19:03:15 +0000991 if (DAG.getTarget().getDataLayout()->isLittleEndian()) {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000992 if (ShuffleKind == 1) // unary
993 return isVMerge(N, UnitSize, 8, 8);
994 else if (ShuffleKind == 2) // swapped
Bill Schmidtf910a062014-06-10 14:35:01 +0000995 return isVMerge(N, UnitSize, 8, 24);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000996 else
997 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +0000998 } else {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000999 if (ShuffleKind == 1) // unary
1000 return isVMerge(N, UnitSize, 0, 0);
1001 else if (ShuffleKind == 0) // normal
Bill Schmidtf910a062014-06-10 14:35:01 +00001002 return isVMerge(N, UnitSize, 0, 16);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001003 else
1004 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +00001005 }
Chris Lattnerd1dcb522006-04-06 21:11:54 +00001006}
1007
1008
Chris Lattner1d338192006-04-06 18:26:28 +00001009/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
1010/// amount, otherwise return -1.
Bill Schmidt42a69362014-08-05 20:47:25 +00001011/// The ShuffleKind distinguishes between big-endian operations with two
1012/// different inputs (0), either-endian operations with two identical inputs
1013/// (1), and little-endian operations with two different inputs (2). For the
1014/// latter, the input operands are swapped (see PPCInstrAltivec.td).
1015int PPC::isVSLDOIShuffleMask(SDNode *N, unsigned ShuffleKind,
1016 SelectionDAG &DAG) {
Hal Finkeldf3e34d2014-03-26 22:58:37 +00001017 if (N->getValueType(0) != MVT::v16i8)
Hal Finkela775e512014-04-08 19:00:27 +00001018 return -1;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001019
1020 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Wesley Peck527da1b2010-11-23 03:31:01 +00001021
Chris Lattner1d338192006-04-06 18:26:28 +00001022 // Find the first non-undef value in the shuffle mask.
1023 unsigned i;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001024 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattner1d338192006-04-06 18:26:28 +00001025 /*search*/;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001026
Chris Lattner1d338192006-04-06 18:26:28 +00001027 if (i == 16) return -1; // all undef.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001028
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001029 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattner1d338192006-04-06 18:26:28 +00001030 // numbered from this value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001031 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattner1d338192006-04-06 18:26:28 +00001032 if (ShiftAmt < i) return -1;
Chris Lattnere8b83b42006-04-06 17:23:16 +00001033
Bill Schmidtf04e9982014-08-04 23:21:01 +00001034 ShiftAmt -= i;
Eric Christopher8b770652015-01-26 19:03:15 +00001035 bool isLE = DAG.getTarget().getDataLayout()->isLittleEndian();
Bill Schmidtf910a062014-06-10 14:35:01 +00001036
Bill Schmidt42a69362014-08-05 20:47:25 +00001037 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) {
Bill Schmidtf04e9982014-08-04 23:21:01 +00001038 // Check the rest of the elements to see if they are consecutive.
1039 for (++i; i != 16; ++i)
1040 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1041 return -1;
Bill Schmidt42a69362014-08-05 20:47:25 +00001042 } else if (ShuffleKind == 1) {
Bill Schmidtf04e9982014-08-04 23:21:01 +00001043 // Check the rest of the elements to see if they are consecutive.
1044 for (++i; i != 16; ++i)
1045 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
1046 return -1;
Bill Schmidt42a69362014-08-05 20:47:25 +00001047 } else
1048 return -1;
1049
1050 if (ShuffleKind == 2 && isLE)
1051 ShiftAmt = 16 - ShiftAmt;
Bill Schmidtf04e9982014-08-04 23:21:01 +00001052
Chris Lattner1d338192006-04-06 18:26:28 +00001053 return ShiftAmt;
1054}
Chris Lattnerffc47562006-03-20 06:33:01 +00001055
1056/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
1057/// specifies a splat of a single element that is suitable for input to
1058/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001059bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson9f944592009-08-11 20:47:22 +00001060 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner95c7adc2006-04-04 17:25:31 +00001061 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001062
Chris Lattnera8fbb6d2006-03-20 06:37:44 +00001063 // This is a splat operation if each element of the permute is the same, and
1064 // if the value doesn't reference the second vector.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001065 unsigned ElementBase = N->getMaskElt(0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001066
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001067 // FIXME: Handle UNDEF elements too!
1068 if (ElementBase >= 16)
Chris Lattner95c7adc2006-04-04 17:25:31 +00001069 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001070
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001071 // Check that the indices are consecutive, in the case of a multi-byte element
1072 // splatted with a v16i8 mask.
1073 for (unsigned i = 1; i != EltSize; ++i)
1074 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner95c7adc2006-04-04 17:25:31 +00001075 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001076
Chris Lattner95c7adc2006-04-04 17:25:31 +00001077 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001078 if (N->getMaskElt(i) < 0) continue;
Chris Lattner95c7adc2006-04-04 17:25:31 +00001079 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001080 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner95c7adc2006-04-04 17:25:31 +00001081 return false;
Chris Lattnera8fbb6d2006-03-20 06:37:44 +00001082 }
Chris Lattner95c7adc2006-04-04 17:25:31 +00001083 return true;
Chris Lattnerffc47562006-03-20 06:33:01 +00001084}
1085
Evan Cheng581d2792007-07-30 07:51:22 +00001086/// isAllNegativeZeroVector - Returns true if all elements of build_vector
1087/// are -0.0.
1088bool PPC::isAllNegativeZeroVector(SDNode *N) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001089 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
1090
1091 APInt APVal, APUndef;
1092 unsigned BitSize;
1093 bool HasAnyUndefs;
Wesley Peck527da1b2010-11-23 03:31:01 +00001094
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00001095 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001096 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001097 return CFP->getValueAPF().isNegZero();
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001098
Evan Cheng581d2792007-07-30 07:51:22 +00001099 return false;
1100}
1101
Chris Lattnerffc47562006-03-20 06:33:01 +00001102/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
1103/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Bill Schmidtf910a062014-06-10 14:35:01 +00001104unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize,
1105 SelectionDAG &DAG) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001106 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1107 assert(isSplatShuffleMask(SVOp, EltSize));
Eric Christopher8b770652015-01-26 19:03:15 +00001108 if (DAG.getTarget().getDataLayout()->isLittleEndian())
Bill Schmidtf910a062014-06-10 14:35:01 +00001109 return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize);
1110 else
1111 return SVOp->getMaskElt(0) / EltSize;
Chris Lattnerffc47562006-03-20 06:33:01 +00001112}
1113
Chris Lattner74cf9ff2006-04-12 17:37:20 +00001114/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattnerd71a1f92006-04-08 06:46:53 +00001115/// by using a vspltis[bhw] instruction of the specified element size, return
1116/// the constant being splatted. The ByteSize field indicates the number of
1117/// bytes of each element [124] -> [bhw].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001118SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001119 SDValue OpVal(nullptr, 0);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001120
1121 // If ByteSize of the splat is bigger than the element size of the
1122 // build_vector, then we have a case where we are checking for a splat where
1123 // multiple elements of the buildvector are folded together into a single
1124 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
1125 unsigned EltSize = 16/N->getNumOperands();
1126 if (EltSize < ByteSize) {
1127 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001128 SDValue UniquedVals[4];
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001129 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelcf0da6c2009-02-17 22:15:04 +00001130
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001131 // See if all of the elements in the buildvector agree across.
1132 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1133 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1134 // If the element isn't a constant, bail fully out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001135 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001136
Scott Michelcf0da6c2009-02-17 22:15:04 +00001137
Craig Topper062a2ba2014-04-25 05:30:21 +00001138 if (!UniquedVals[i&(Multiple-1)].getNode())
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001139 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
1140 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001141 return SDValue(); // no match.
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001142 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001143
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001144 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
1145 // either constant or undef values that are identical for each chunk. See
1146 // if these chunks can form into a larger vspltis*.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001147
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001148 // Check to see if all of the leading entries are either 0 or -1. If
1149 // neither, then this won't fit into the immediate field.
1150 bool LeadingZero = true;
1151 bool LeadingOnes = true;
1152 for (unsigned i = 0; i != Multiple-1; ++i) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001153 if (!UniquedVals[i].getNode()) continue; // Must have been undefs.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001154
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001155 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
1156 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
1157 }
1158 // Finally, check the least significant entry.
1159 if (LeadingZero) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001160 if (!UniquedVals[Multiple-1].getNode())
Owen Anderson9f944592009-08-11 20:47:22 +00001161 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
Dan Gohmaneffb8942008-09-12 16:56:44 +00001162 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001163 if (Val < 16)
Owen Anderson9f944592009-08-11 20:47:22 +00001164 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001165 }
1166 if (LeadingOnes) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001167 if (!UniquedVals[Multiple-1].getNode())
Owen Anderson9f944592009-08-11 20:47:22 +00001168 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
Dan Gohman6e054832008-09-26 21:54:37 +00001169 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001170 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Owen Anderson9f944592009-08-11 20:47:22 +00001171 return DAG.getTargetConstant(Val, MVT::i32);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001172 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001173
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001174 return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001175 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001176
Chris Lattner2771e2c2006-03-25 06:12:06 +00001177 // Check to see if this buildvec has a single non-undef value in its elements.
1178 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1179 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Craig Topper062a2ba2014-04-25 05:30:21 +00001180 if (!OpVal.getNode())
Chris Lattner2771e2c2006-03-25 06:12:06 +00001181 OpVal = N->getOperand(i);
1182 else if (OpVal != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001183 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001184 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001185
Craig Topper062a2ba2014-04-25 05:30:21 +00001186 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001187
Eli Friedman9c6ab1a2009-05-24 02:03:36 +00001188 unsigned ValSizeInBytes = EltSize;
Nate Begeman1b392872006-03-28 04:15:58 +00001189 uint64_t Value = 0;
Chris Lattner2771e2c2006-03-25 06:12:06 +00001190 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001191 Value = CN->getZExtValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001192 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson9f944592009-08-11 20:47:22 +00001193 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001194 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner2771e2c2006-03-25 06:12:06 +00001195 }
1196
1197 // If the splat value is larger than the element value, then we can never do
1198 // this splat. The only case that we could fit the replicated bits into our
1199 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001200 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001201
Chris Lattner2771e2c2006-03-25 06:12:06 +00001202 // If the element value is larger than the splat value, cut it in half and
1203 // check to see if the two halves are equal. Continue doing this until we
1204 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
1205 while (ValSizeInBytes > ByteSize) {
1206 ValSizeInBytes >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001207
Chris Lattner2771e2c2006-03-25 06:12:06 +00001208 // If the top half equals the bottom half, we're still ok.
Chris Lattner39cc7172006-04-05 17:39:25 +00001209 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
1210 (Value & ((1 << (8*ValSizeInBytes))-1)))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001211 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001212 }
1213
1214 // Properly sign extend the value.
Richard Smith228e6d42012-08-24 23:29:28 +00001215 int MaskVal = SignExtend32(Value, ByteSize * 8);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001216
Evan Chengb1ddc982006-03-26 09:52:32 +00001217 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001218 if (MaskVal == 0) return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001219
Chris Lattnerd71a1f92006-04-08 06:46:53 +00001220 // Finally, if this value fits in a 5 bit sext field, return it
Richard Smith228e6d42012-08-24 23:29:28 +00001221 if (SignExtend32<5>(MaskVal) == MaskVal)
Owen Anderson9f944592009-08-11 20:47:22 +00001222 return DAG.getTargetConstant(MaskVal, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001223 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001224}
1225
Chris Lattner4211ca92006-04-14 06:01:58 +00001226//===----------------------------------------------------------------------===//
Chris Lattnera801fced2006-11-08 02:15:41 +00001227// Addressing Mode Selection
1228//===----------------------------------------------------------------------===//
1229
1230/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
1231/// or 64-bit immediate, and if the value can be accurately represented as a
1232/// sign extension from a 16-bit value. If so, this returns true and the
1233/// immediate.
1234static bool isIntS16Immediate(SDNode *N, short &Imm) {
Adam Nemet571eb5f2014-05-20 17:20:34 +00001235 if (!isa<ConstantSDNode>(N))
Chris Lattnera801fced2006-11-08 02:15:41 +00001236 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001237
Dan Gohmaneffb8942008-09-12 16:56:44 +00001238 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson9f944592009-08-11 20:47:22 +00001239 if (N->getValueType(0) == MVT::i32)
Dan Gohmaneffb8942008-09-12 16:56:44 +00001240 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001241 else
Dan Gohmaneffb8942008-09-12 16:56:44 +00001242 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001243}
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001244static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001245 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnera801fced2006-11-08 02:15:41 +00001246}
1247
1248
1249/// SelectAddressRegReg - Given the specified addressed, check to see if it
1250/// can be represented as an indexed [r+r] operation. Returns false if it
1251/// can be more efficiently represented with [r+imm].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001252bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1253 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001254 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001255 short imm = 0;
1256 if (N.getOpcode() == ISD::ADD) {
1257 if (isIntS16Immediate(N.getOperand(1), imm))
1258 return false; // r+i
1259 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1260 return false; // r+i
Scott Michelcf0da6c2009-02-17 22:15:04 +00001261
Chris Lattnera801fced2006-11-08 02:15:41 +00001262 Base = N.getOperand(0);
1263 Index = N.getOperand(1);
1264 return true;
1265 } else if (N.getOpcode() == ISD::OR) {
1266 if (isIntS16Immediate(N.getOperand(1), imm))
1267 return false; // r+i can fold it if we can.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001268
Chris Lattnera801fced2006-11-08 02:15:41 +00001269 // If this is an or of disjoint bitfields, we can codegen this as an add
1270 // (for better address arithmetic) if the LHS and RHS of the OR are provably
1271 // disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001272 APInt LHSKnownZero, LHSKnownOne;
1273 APInt RHSKnownZero, RHSKnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001274 DAG.computeKnownBits(N.getOperand(0),
1275 LHSKnownZero, LHSKnownOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001276
Dan Gohmanf19609a2008-02-27 01:23:58 +00001277 if (LHSKnownZero.getBoolValue()) {
Jay Foada0653a32014-05-14 21:14:37 +00001278 DAG.computeKnownBits(N.getOperand(1),
1279 RHSKnownZero, RHSKnownOne);
Chris Lattnera801fced2006-11-08 02:15:41 +00001280 // If all of the bits are known zero on the LHS or RHS, the add won't
1281 // carry.
Dan Gohman26854f22008-02-27 21:12:32 +00001282 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001283 Base = N.getOperand(0);
1284 Index = N.getOperand(1);
1285 return true;
1286 }
1287 }
1288 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001289
Chris Lattnera801fced2006-11-08 02:15:41 +00001290 return false;
1291}
1292
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001293// If we happen to be doing an i64 load or store into a stack slot that has
1294// less than a 4-byte alignment, then the frame-index elimination may need to
1295// use an indexed load or store instruction (because the offset may not be a
1296// multiple of 4). The extra register needed to hold the offset comes from the
1297// register scavenger, and it is possible that the scavenger will need to use
1298// an emergency spill slot. As a result, we need to make sure that a spill slot
1299// is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1300// stack slot.
1301static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1302 // FIXME: This does not handle the LWA case.
1303 if (VT != MVT::i64)
1304 return;
1305
Hal Finkel7ab3db52013-07-10 15:29:01 +00001306 // NOTE: We'll exclude negative FIs here, which come from argument
1307 // lowering, because there are no known test cases triggering this problem
1308 // using packed structures (or similar). We can remove this exclusion if
1309 // we find such a test case. The reason why this is so test-case driven is
1310 // because this entire 'fixup' is only to prevent crashes (from the
1311 // register scavenger) on not-really-valid inputs. For example, if we have:
1312 // %a = alloca i1
1313 // %b = bitcast i1* %a to i64*
1314 // store i64* a, i64 b
1315 // then the store should really be marked as 'align 1', but is not. If it
1316 // were marked as 'align 1' then the indexed form would have been
1317 // instruction-selected initially, and the problem this 'fixup' is preventing
1318 // won't happen regardless.
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001319 if (FrameIdx < 0)
1320 return;
1321
1322 MachineFunction &MF = DAG.getMachineFunction();
1323 MachineFrameInfo *MFI = MF.getFrameInfo();
1324
1325 unsigned Align = MFI->getObjectAlignment(FrameIdx);
1326 if (Align >= 4)
1327 return;
1328
1329 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1330 FuncInfo->setHasNonRISpills();
1331}
1332
Chris Lattnera801fced2006-11-08 02:15:41 +00001333/// Returns true if the address N can be represented by a base register plus
1334/// a signed 16-bit displacement [r+imm], and if it is not better
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001335/// represented as reg+reg. If Aligned is true, only accept displacements
1336/// suitable for STD and friends, i.e. multiples of 4.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001337bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman02b93132009-01-15 16:29:45 +00001338 SDValue &Base,
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001339 SelectionDAG &DAG,
1340 bool Aligned) const {
Dale Johannesenab8e4422009-02-06 19:16:40 +00001341 // FIXME dl should come from parent load or store, not from address
Andrew Trickef9de2a2013-05-25 02:42:55 +00001342 SDLoc dl(N);
Chris Lattnera801fced2006-11-08 02:15:41 +00001343 // If this can be more profitably realized as r+r, fail.
1344 if (SelectAddressRegReg(N, Disp, Base, DAG))
1345 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001346
Chris Lattnera801fced2006-11-08 02:15:41 +00001347 if (N.getOpcode() == ISD::ADD) {
1348 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001349 if (isIntS16Immediate(N.getOperand(1), imm) &&
1350 (!Aligned || (imm & 3) == 0)) {
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001351 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001352 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1353 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001354 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001355 } else {
1356 Base = N.getOperand(0);
1357 }
1358 return true; // [r+i]
1359 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1360 // Match LOAD (ADD (X, Lo(G))).
Gabor Greifc8a9abe2012-04-20 11:41:38 +00001361 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnera801fced2006-11-08 02:15:41 +00001362 && "Cannot handle constant offsets yet!");
1363 Disp = N.getOperand(1).getOperand(0); // The global address.
1364 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
Roman Divackye3f15c982012-06-04 17:36:38 +00001365 Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
Chris Lattnera801fced2006-11-08 02:15:41 +00001366 Disp.getOpcode() == ISD::TargetConstantPool ||
1367 Disp.getOpcode() == ISD::TargetJumpTable);
1368 Base = N.getOperand(0);
1369 return true; // [&g+r]
1370 }
1371 } else if (N.getOpcode() == ISD::OR) {
1372 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001373 if (isIntS16Immediate(N.getOperand(1), imm) &&
1374 (!Aligned || (imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001375 // If this is an or of disjoint bitfields, we can codegen this as an add
1376 // (for better address arithmetic) if the LHS and RHS of the OR are
1377 // provably disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001378 APInt LHSKnownZero, LHSKnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001379 DAG.computeKnownBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
Bill Wendling63061832008-03-24 23:16:37 +00001380
Dan Gohmanf19609a2008-02-27 01:23:58 +00001381 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001382 // If all of the bits are known zero on the LHS or RHS, the add won't
1383 // carry.
Ulrich Weigand55a96652014-07-20 22:26:40 +00001384 if (FrameIndexSDNode *FI =
1385 dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1386 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1387 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1388 } else {
1389 Base = N.getOperand(0);
1390 }
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001391 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001392 return true;
1393 }
1394 }
1395 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1396 // Loading from a constant address.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001397
Chris Lattnera801fced2006-11-08 02:15:41 +00001398 // If this address fits entirely in a 16-bit sext immediate field, codegen
1399 // this as "d, 0"
1400 short Imm;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001401 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001402 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001403 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
Hal Finkelf70c41e2013-03-21 23:45:03 +00001404 CN->getValueType(0));
Chris Lattnera801fced2006-11-08 02:15:41 +00001405 return true;
1406 }
Chris Lattner4a9c0bb2007-02-17 06:44:03 +00001407
1408 // Handle 32-bit sext immediates with LIS + addr mode.
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001409 if ((CN->getValueType(0) == MVT::i32 ||
1410 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1411 (!Aligned || (CN->getZExtValue() & 3) == 0)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001412 int Addr = (int)CN->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001413
Chris Lattnera801fced2006-11-08 02:15:41 +00001414 // Otherwise, break this down into an LIS + disp.
Owen Anderson9f944592009-08-11 20:47:22 +00001415 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001416
Owen Anderson9f944592009-08-11 20:47:22 +00001417 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
1418 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dan Gohman32f71d72009-09-25 18:54:59 +00001419 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnera801fced2006-11-08 02:15:41 +00001420 return true;
1421 }
1422 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001423
Chris Lattnera801fced2006-11-08 02:15:41 +00001424 Disp = DAG.getTargetConstant(0, getPointerTy());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001425 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001426 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001427 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1428 } else
Chris Lattnera801fced2006-11-08 02:15:41 +00001429 Base = N;
1430 return true; // [r+0]
1431}
1432
1433/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1434/// represented as an indexed [r+r] operation.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001435bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1436 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001437 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001438 // Check to see if we can easily represent this as an [r+r] address. This
1439 // will fail if it thinks that the address is more profitably represented as
1440 // reg+imm, e.g. where imm = 0.
1441 if (SelectAddressRegReg(N, Base, Index, DAG))
1442 return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001443
Chris Lattnera801fced2006-11-08 02:15:41 +00001444 // If the operand is an addition, always emit this as [r+r], since this is
1445 // better (for code size, and execution, as the memop does the add for free)
1446 // than emitting an explicit add.
1447 if (N.getOpcode() == ISD::ADD) {
1448 Base = N.getOperand(0);
1449 Index = N.getOperand(1);
1450 return true;
1451 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001452
Chris Lattnera801fced2006-11-08 02:15:41 +00001453 // Otherwise, do it the hard way, using R0 as the base register.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001454 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
Hal Finkelf70c41e2013-03-21 23:45:03 +00001455 N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001456 Index = N;
1457 return true;
1458}
1459
Chris Lattnera801fced2006-11-08 02:15:41 +00001460/// getPreIndexedAddressParts - returns true by value, base pointer and
1461/// offset pointer and addressing mode by reference if the node's address
1462/// can be legally represented as pre-indexed load / store address.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001463bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1464 SDValue &Offset,
Evan Chengb1500072006-11-09 17:55:04 +00001465 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +00001466 SelectionDAG &DAG) const {
Hal Finkel595817e2012-06-04 02:21:00 +00001467 if (DisablePPCPreinc) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001468
Ulrich Weigande90b0222013-03-22 14:58:48 +00001469 bool isLoad = true;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001470 SDValue Ptr;
Owen Anderson53aa7a92009-08-10 22:56:29 +00001471 EVT VT;
Hal Finkelb09680b2013-03-18 23:00:58 +00001472 unsigned Alignment;
Chris Lattnera801fced2006-11-08 02:15:41 +00001473 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1474 Ptr = LD->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001475 VT = LD->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001476 Alignment = LD->getAlignment();
Chris Lattnera801fced2006-11-08 02:15:41 +00001477 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner68371252006-11-14 01:38:31 +00001478 Ptr = ST->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001479 VT = ST->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001480 Alignment = ST->getAlignment();
Ulrich Weigande90b0222013-03-22 14:58:48 +00001481 isLoad = false;
Chris Lattnera801fced2006-11-08 02:15:41 +00001482 } else
1483 return false;
1484
Chris Lattner68371252006-11-14 01:38:31 +00001485 // PowerPC doesn't have preinc load/store instructions for vectors.
Duncan Sands13237ac2008-06-06 12:08:01 +00001486 if (VT.isVector())
Chris Lattner68371252006-11-14 01:38:31 +00001487 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001488
Ulrich Weigande90b0222013-03-22 14:58:48 +00001489 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1490
1491 // Common code will reject creating a pre-inc form if the base pointer
1492 // is a frame index, or if N is a store and the base pointer is either
1493 // the same as or a predecessor of the value being stored. Check for
1494 // those situations here, and try with swapped Base/Offset instead.
1495 bool Swap = false;
1496
1497 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1498 Swap = true;
1499 else if (!isLoad) {
1500 SDValue Val = cast<StoreSDNode>(N)->getValue();
1501 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1502 Swap = true;
1503 }
1504
1505 if (Swap)
1506 std::swap(Base, Offset);
1507
Hal Finkelca542be2012-06-20 15:43:03 +00001508 AM = ISD::PRE_INC;
1509 return true;
Hal Finkel1cc27e42012-06-19 02:34:32 +00001510 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001511
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001512 // LDU/STU can only handle immediates that are a multiple of 4.
Owen Anderson9f944592009-08-11 20:47:22 +00001513 if (VT != MVT::i64) {
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001514 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
Chris Lattner474b5b72006-11-15 19:55:13 +00001515 return false;
1516 } else {
Hal Finkelb09680b2013-03-18 23:00:58 +00001517 // LDU/STU need an address with at least 4-byte alignment.
1518 if (Alignment < 4)
1519 return false;
1520
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001521 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
Chris Lattner474b5b72006-11-15 19:55:13 +00001522 return false;
1523 }
Chris Lattnerb314b152006-11-11 00:08:42 +00001524
Chris Lattnerb314b152006-11-11 00:08:42 +00001525 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner474b5b72006-11-15 19:55:13 +00001526 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1527 // sext i32 to i64 when addr mode is r+i.
Owen Anderson9f944592009-08-11 20:47:22 +00001528 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerb314b152006-11-11 00:08:42 +00001529 LD->getExtensionType() == ISD::SEXTLOAD &&
1530 isa<ConstantSDNode>(Offset))
1531 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001532 }
1533
Chris Lattnerce645542006-11-10 02:08:47 +00001534 AM = ISD::PRE_INC;
1535 return true;
Chris Lattnera801fced2006-11-08 02:15:41 +00001536}
1537
1538//===----------------------------------------------------------------------===//
Chris Lattner4211ca92006-04-14 06:01:58 +00001539// LowerOperation implementation
1540//===----------------------------------------------------------------------===//
1541
Chris Lattneredb9d842010-11-15 02:46:57 +00001542/// GetLabelAccessInfo - Return true if we should reference labels using a
1543/// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
Eric Christophercccae792015-01-30 22:02:31 +00001544static bool GetLabelAccessInfo(const TargetMachine &TM,
1545 const PPCSubtarget &Subtarget,
1546 unsigned &HiOpFlags, unsigned &LoOpFlags,
Craig Topper062a2ba2014-04-25 05:30:21 +00001547 const GlobalValue *GV = nullptr) {
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001548 HiOpFlags = PPCII::MO_HA;
1549 LoOpFlags = PPCII::MO_LO;
Wesley Peck527da1b2010-11-23 03:31:01 +00001550
Hal Finkel3ee2af72014-07-18 23:29:49 +00001551 // Don't use the pic base if not in PIC relocation model.
1552 bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
1553
Chris Lattnerdd6df842010-11-15 03:13:19 +00001554 if (isPIC) {
1555 HiOpFlags |= PPCII::MO_PIC_FLAG;
1556 LoOpFlags |= PPCII::MO_PIC_FLAG;
1557 }
1558
1559 // If this is a reference to a global value that requires a non-lazy-ptr, make
1560 // sure that instruction lowering adds it.
Eric Christophercccae792015-01-30 22:02:31 +00001561 if (GV && Subtarget.hasLazyResolverStub(GV, TM)) {
Chris Lattnerdd6df842010-11-15 03:13:19 +00001562 HiOpFlags |= PPCII::MO_NLP_FLAG;
1563 LoOpFlags |= PPCII::MO_NLP_FLAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00001564
Chris Lattnerdd6df842010-11-15 03:13:19 +00001565 if (GV->hasHiddenVisibility()) {
1566 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1567 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1568 }
1569 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001570
Chris Lattneredb9d842010-11-15 02:46:57 +00001571 return isPIC;
1572}
1573
1574static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1575 SelectionDAG &DAG) {
1576 EVT PtrVT = HiPart.getValueType();
1577 SDValue Zero = DAG.getConstant(0, PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001578 SDLoc DL(HiPart);
Chris Lattneredb9d842010-11-15 02:46:57 +00001579
1580 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1581 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
Wesley Peck527da1b2010-11-23 03:31:01 +00001582
Chris Lattneredb9d842010-11-15 02:46:57 +00001583 // With PIC, the first instruction is actually "GR+hi(&G)".
1584 if (isPIC)
1585 Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1586 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
Wesley Peck527da1b2010-11-23 03:31:01 +00001587
Chris Lattneredb9d842010-11-15 02:46:57 +00001588 // Generate non-pic code that has direct accesses to the constant pool.
1589 // The address of the global is just (hi(&g)+lo(&g)).
1590 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1591}
1592
Hal Finkele6698d52015-02-01 15:03:28 +00001593static void setUsesTOCBasePtr(MachineFunction &MF) {
1594 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1595 FuncInfo->setUsesTOCBasePtr();
1596}
1597
1598static void setUsesTOCBasePtr(SelectionDAG &DAG) {
1599 setUsesTOCBasePtr(DAG.getMachineFunction());
1600}
1601
Scott Michelcf0da6c2009-02-17 22:15:04 +00001602SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001603 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001604 EVT PtrVT = Op.getValueType();
Chris Lattner4211ca92006-04-14 06:01:58 +00001605 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001606 const Constant *C = CP->getConstVal();
Chris Lattner4211ca92006-04-14 06:01:58 +00001607
Roman Divackyace47072012-08-24 16:26:02 +00001608 // 64-bit SVR4 ABI code is always position-independent.
1609 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001610 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00001611 setUsesTOCBasePtr(DAG);
Roman Divackyace47072012-08-24 16:26:02 +00001612 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001613 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001614 DAG.getRegister(PPC::X2, MVT::i64));
1615 }
1616
Chris Lattneredb9d842010-11-15 02:46:57 +00001617 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001618 bool isPIC =
1619 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00001620
1621 if (isPIC && Subtarget.isSVR4ABI()) {
1622 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(),
1623 PPCII::MO_PIC_FLAG);
1624 SDLoc DL(CP);
1625 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1626 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1627 }
1628
Chris Lattneredb9d842010-11-15 02:46:57 +00001629 SDValue CPIHi =
1630 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1631 SDValue CPILo =
1632 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1633 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00001634}
1635
Dan Gohman21cea8a2010-04-17 15:26:15 +00001636SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001637 EVT PtrVT = Op.getValueType();
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001638 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peck527da1b2010-11-23 03:31:01 +00001639
Roman Divackyace47072012-08-24 16:26:02 +00001640 // 64-bit SVR4 ABI code is always position-independent.
1641 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001642 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00001643 setUsesTOCBasePtr(DAG);
Roman Divackyace47072012-08-24 16:26:02 +00001644 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001645 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001646 DAG.getRegister(PPC::X2, MVT::i64));
1647 }
1648
Chris Lattneredb9d842010-11-15 02:46:57 +00001649 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001650 bool isPIC =
1651 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00001652
1653 if (isPIC && Subtarget.isSVR4ABI()) {
1654 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
1655 PPCII::MO_PIC_FLAG);
1656 SDLoc DL(GA);
1657 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), PtrVT, GA,
1658 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1659 }
1660
Chris Lattneredb9d842010-11-15 02:46:57 +00001661 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1662 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1663 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio09d73c02007-07-11 17:19:51 +00001664}
1665
Dan Gohman21cea8a2010-04-17 15:26:15 +00001666SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1667 SelectionDAG &DAG) const {
Bob Wilsonf84f7102009-11-04 21:31:18 +00001668 EVT PtrVT = Op.getValueType();
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00001669 BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op);
1670 const BlockAddress *BA = BASDN->getBlockAddress();
Bob Wilsonf84f7102009-11-04 21:31:18 +00001671
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00001672 // 64-bit SVR4 ABI code is always position-independent.
1673 // The actual BlockAddress is stored in the TOC.
1674 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00001675 setUsesTOCBasePtr(DAG);
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00001676 SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset());
1677 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(BASDN), MVT::i64, GA,
1678 DAG.getRegister(PPC::X2, MVT::i64));
1679 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001680
Chris Lattneredb9d842010-11-15 02:46:57 +00001681 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001682 bool isPIC =
1683 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Michael Liaoabb87d42012-09-12 21:43:09 +00001684 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1685 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattneredb9d842010-11-15 02:46:57 +00001686 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1687}
1688
Roman Divackye3f15c982012-06-04 17:36:38 +00001689SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1690 SelectionDAG &DAG) const {
1691
Bill Schmidtbdae03f2013-09-17 20:22:05 +00001692 // FIXME: TLS addresses currently use medium model code sequences,
1693 // which is the most useful form. Eventually support for small and
1694 // large models could be added if users need it, at the cost of
1695 // additional complexity.
Roman Divackye3f15c982012-06-04 17:36:38 +00001696 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001697 SDLoc dl(GA);
Roman Divackye3f15c982012-06-04 17:36:38 +00001698 const GlobalValue *GV = GA->getGlobal();
1699 EVT PtrVT = getPointerTy();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001700 bool is64bit = Subtarget.isPPC64();
Justin Hibbitsa88b6052014-11-12 15:16:30 +00001701 const Module *M = DAG.getMachineFunction().getFunction()->getParent();
1702 PICLevel::Level picLevel = M->getPICLevel();
Roman Divackye3f15c982012-06-04 17:36:38 +00001703
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001704 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackye3f15c982012-06-04 17:36:38 +00001705
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001706 if (Model == TLSModel::LocalExec) {
1707 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001708 PPCII::MO_TPREL_HA);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001709 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001710 PPCII::MO_TPREL_LO);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001711 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1712 is64bit ? MVT::i64 : MVT::i32);
1713 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1714 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1715 }
Roman Divackye3f15c982012-06-04 17:36:38 +00001716
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001717 if (Model == TLSModel::InitialExec) {
Bill Schmidt732eb912012-12-13 18:45:54 +00001718 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001719 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1720 PPCII::MO_TLS);
Roman Divacky32143e22013-12-20 18:08:54 +00001721 SDValue GOTPtr;
1722 if (is64bit) {
Hal Finkele6698d52015-02-01 15:03:28 +00001723 setUsesTOCBasePtr(DAG);
Roman Divacky32143e22013-12-20 18:08:54 +00001724 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1725 GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1726 PtrVT, GOTReg, TGA);
1727 } else
1728 GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +00001729 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
Roman Divacky32143e22013-12-20 18:08:54 +00001730 PtrVT, TGA, GOTPtr);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001731 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001732 }
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001733
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001734 if (Model == TLSModel::GeneralDynamic) {
Bill Schmidt685aa8b2015-02-03 16:16:01 +00001735 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001736 SDValue GOTPtr;
1737 if (is64bit) {
Hal Finkele6698d52015-02-01 15:03:28 +00001738 setUsesTOCBasePtr(DAG);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001739 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1740 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1741 GOTReg, TGA);
1742 } else {
Justin Hibbitsa88b6052014-11-12 15:16:30 +00001743 if (picLevel == PICLevel::Small)
1744 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
1745 else
1746 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001747 }
Bill Schmidt685aa8b2015-02-03 16:16:01 +00001748 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl,
1749 PtrVT, GOTPtr, TGA);
1750 return DAG.getNode(PPCISD::GET_TLS_ADDR, dl, PtrVT, GOTEntry, TGA);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001751 }
1752
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001753 if (Model == TLSModel::LocalDynamic) {
Bill Schmidt685aa8b2015-02-03 16:16:01 +00001754 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001755 SDValue GOTPtr;
1756 if (is64bit) {
Hal Finkele6698d52015-02-01 15:03:28 +00001757 setUsesTOCBasePtr(DAG);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001758 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1759 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1760 GOTReg, TGA);
1761 } else {
Justin Hibbitsa88b6052014-11-12 15:16:30 +00001762 if (picLevel == PICLevel::Small)
1763 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
1764 else
1765 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001766 }
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001767 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT,
Hal Finkel7c8ae532014-07-25 17:47:22 +00001768 GOTPtr, TGA);
Bill Schmidt685aa8b2015-02-03 16:16:01 +00001769 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLSLD_ADDR, dl,
1770 PtrVT, GOTEntry, TGA);
1771 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl,
1772 PtrVT, TLSAddr, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001773 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1774 }
1775
1776 llvm_unreachable("Unknown TLS model!");
Roman Divackye3f15c982012-06-04 17:36:38 +00001777}
1778
Chris Lattneredb9d842010-11-15 02:46:57 +00001779SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1780 SelectionDAG &DAG) const {
1781 EVT PtrVT = Op.getValueType();
1782 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001783 SDLoc DL(GSDN);
Chris Lattneredb9d842010-11-15 02:46:57 +00001784 const GlobalValue *GV = GSDN->getGlobal();
1785
Chris Lattneredb9d842010-11-15 02:46:57 +00001786 // 64-bit SVR4 ABI code is always position-independent.
1787 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001788 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00001789 setUsesTOCBasePtr(DAG);
Chris Lattneredb9d842010-11-15 02:46:57 +00001790 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1791 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1792 DAG.getRegister(PPC::X2, MVT::i64));
1793 }
1794
Chris Lattnerdd6df842010-11-15 03:13:19 +00001795 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001796 bool isPIC =
1797 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag, GV);
Chris Lattneredb9d842010-11-15 02:46:57 +00001798
Hal Finkel3ee2af72014-07-18 23:29:49 +00001799 if (isPIC && Subtarget.isSVR4ABI()) {
1800 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT,
1801 GSDN->getOffset(),
1802 PPCII::MO_PIC_FLAG);
1803 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1804 DAG.getNode(PPCISD::GlobalBaseReg, DL, MVT::i32));
1805 }
1806
Chris Lattnerdd6df842010-11-15 03:13:19 +00001807 SDValue GAHi =
1808 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1809 SDValue GALo =
1810 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peck527da1b2010-11-23 03:31:01 +00001811
Chris Lattnerdd6df842010-11-15 03:13:19 +00001812 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00001813
Chris Lattnerdd6df842010-11-15 03:13:19 +00001814 // If the global reference is actually to a non-lazy-pointer, we have to do an
1815 // extra load to get the address of the global.
1816 if (MOHiFlag & PPCII::MO_NLP_FLAG)
1817 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001818 false, false, false, 0);
Chris Lattnerdd6df842010-11-15 03:13:19 +00001819 return Ptr;
Chris Lattner4211ca92006-04-14 06:01:58 +00001820}
1821
Dan Gohman21cea8a2010-04-17 15:26:15 +00001822SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00001823 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001824 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001825
Hal Finkel777c9dd2014-03-29 16:04:40 +00001826 if (Op.getValueType() == MVT::v2i64) {
1827 // When the operands themselves are v2i64 values, we need to do something
1828 // special because VSX has no underlying comparison operations for these.
1829 if (Op.getOperand(0).getValueType() == MVT::v2i64) {
1830 // Equality can be handled by casting to the legal type for Altivec
1831 // comparisons, everything else needs to be expanded.
1832 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
1833 return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
1834 DAG.getSetCC(dl, MVT::v4i32,
1835 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)),
1836 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)),
1837 CC));
1838 }
1839
1840 return SDValue();
1841 }
1842
1843 // We handle most of these in the usual way.
1844 return Op;
1845 }
1846
Chris Lattner4211ca92006-04-14 06:01:58 +00001847 // If we're comparing for equality to zero, expose the fact that this is
1848 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1849 // fold the new nodes.
1850 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1851 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001852 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001853 SDValue Zext = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00001854 if (VT.bitsLT(MVT::i32)) {
1855 VT = MVT::i32;
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001856 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001857 }
Duncan Sands13237ac2008-06-06 12:08:01 +00001858 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001859 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1860 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson9f944592009-08-11 20:47:22 +00001861 DAG.getConstant(Log2b, MVT::i32));
1862 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner4211ca92006-04-14 06:01:58 +00001863 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001864 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner4211ca92006-04-14 06:01:58 +00001865 // optimized. FIXME: revisit this when we can custom lower all setcc
1866 // optimizations.
1867 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001868 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001869 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001870
Chris Lattner4211ca92006-04-14 06:01:58 +00001871 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattner97ff46b2006-11-14 05:28:08 +00001872 // by xor'ing the rhs with the lhs, which is faster than setting a
1873 // condition register, reading it back out, and masking the correct bit. The
1874 // normal approach here uses sub to do this instead of xor. Using xor exposes
1875 // the result to other bit-twiddling opportunities.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001876 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00001877 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001878 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001879 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner4211ca92006-04-14 06:01:58 +00001880 Op.getOperand(1));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001881 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner4211ca92006-04-14 06:01:58 +00001882 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001883 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001884}
1885
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001886SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001887 const PPCSubtarget &Subtarget) const {
Roman Divacky4394e682011-06-28 15:30:42 +00001888 SDNode *Node = Op.getNode();
1889 EVT VT = Node->getValueType(0);
1890 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1891 SDValue InChain = Node->getOperand(0);
1892 SDValue VAListPtr = Node->getOperand(1);
1893 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001894 SDLoc dl(Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001895
Roman Divacky4394e682011-06-28 15:30:42 +00001896 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1897
1898 // gpr_index
1899 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1900 VAListPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001901 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001902 InChain = GprIndex.getValue(1);
1903
1904 if (VT == MVT::i64) {
1905 // Check if GprIndex is even
1906 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1907 DAG.getConstant(1, MVT::i32));
1908 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1909 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1910 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1911 DAG.getConstant(1, MVT::i32));
1912 // Align GprIndex to be even if it isn't
1913 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1914 GprIndex);
1915 }
1916
1917 // fpr index is 1 byte after gpr
1918 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1919 DAG.getConstant(1, MVT::i32));
1920
1921 // fpr
1922 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1923 FprPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001924 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001925 InChain = FprIndex.getValue(1);
1926
1927 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1928 DAG.getConstant(8, MVT::i32));
1929
1930 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1931 DAG.getConstant(4, MVT::i32));
1932
1933 // areas
1934 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001935 MachinePointerInfo(), false, false,
1936 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001937 InChain = OverflowArea.getValue(1);
1938
1939 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001940 MachinePointerInfo(), false, false,
1941 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001942 InChain = RegSaveArea.getValue(1);
1943
1944 // select overflow_area if index > 8
1945 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1946 DAG.getConstant(8, MVT::i32), ISD::SETLT);
1947
Roman Divacky4394e682011-06-28 15:30:42 +00001948 // adjustment constant gpr_index * 4/8
1949 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1950 VT.isInteger() ? GprIndex : FprIndex,
1951 DAG.getConstant(VT.isInteger() ? 4 : 8,
1952 MVT::i32));
1953
1954 // OurReg = RegSaveArea + RegConstant
1955 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1956 RegConstant);
1957
1958 // Floating types are 32 bytes into RegSaveArea
1959 if (VT.isFloatingPoint())
1960 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1961 DAG.getConstant(32, MVT::i32));
1962
1963 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1964 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1965 VT.isInteger() ? GprIndex : FprIndex,
1966 DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1967 MVT::i32));
1968
1969 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1970 VT.isInteger() ? VAListPtr : FprPtr,
1971 MachinePointerInfo(SV),
1972 MVT::i8, false, false, 0);
1973
1974 // determine if we should load from reg_save_area or overflow_area
1975 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1976
1977 // increase overflow_area by 4/8 if gpr/fpr > 8
1978 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1979 DAG.getConstant(VT.isInteger() ? 4 : 8,
1980 MVT::i32));
1981
1982 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1983 OverflowAreaPlusN);
1984
1985 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
1986 OverflowAreaPtr,
1987 MachinePointerInfo(),
1988 MVT::i32, false, false, 0);
1989
NAKAMURA Takumi8ad54e02012-08-30 15:52:23 +00001990 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001991 false, false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001992}
1993
Roman Divackyc3825df2013-07-25 21:36:47 +00001994SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
1995 const PPCSubtarget &Subtarget) const {
1996 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
1997
1998 // We have to copy the entire va_list struct:
1999 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
2000 return DAG.getMemcpy(Op.getOperand(0), Op,
2001 Op.getOperand(1), Op.getOperand(2),
2002 DAG.getConstant(12, MVT::i32), 8, false, true,
2003 MachinePointerInfo(), MachinePointerInfo());
2004}
2005
Duncan Sandsa0984362011-09-06 13:37:06 +00002006SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
2007 SelectionDAG &DAG) const {
2008 return Op.getOperand(0);
2009}
2010
2011SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
2012 SelectionDAG &DAG) const {
Bill Wendling95e1af22008-09-17 00:30:57 +00002013 SDValue Chain = Op.getOperand(0);
2014 SDValue Trmp = Op.getOperand(1); // trampoline
2015 SDValue FPtr = Op.getOperand(2); // nested function
2016 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickef9de2a2013-05-25 02:42:55 +00002017 SDLoc dl(Op);
Bill Wendling95e1af22008-09-17 00:30:57 +00002018
Owen Anderson53aa7a92009-08-10 22:56:29 +00002019 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00002020 bool isPPC64 = (PtrVT == MVT::i64);
Chris Lattner229907c2011-07-18 04:54:35 +00002021 Type *IntPtrTy =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00002022 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
Chandler Carruth7ec50852012-11-01 08:07:29 +00002023 *DAG.getContext());
Bill Wendling95e1af22008-09-17 00:30:57 +00002024
Scott Michelcf0da6c2009-02-17 22:15:04 +00002025 TargetLowering::ArgListTy Args;
Bill Wendling95e1af22008-09-17 00:30:57 +00002026 TargetLowering::ArgListEntry Entry;
2027
2028 Entry.Ty = IntPtrTy;
2029 Entry.Node = Trmp; Args.push_back(Entry);
2030
2031 // TrampSize == (isPPC64 ? 48 : 40);
2032 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson9f944592009-08-11 20:47:22 +00002033 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling95e1af22008-09-17 00:30:57 +00002034 Args.push_back(Entry);
2035
2036 Entry.Node = FPtr; Args.push_back(Entry);
2037 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002038
Bill Wendling95e1af22008-09-17 00:30:57 +00002039 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002040 TargetLowering::CallLoweringInfo CLI(DAG);
2041 CLI.setDebugLoc(dl).setChain(Chain)
2042 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002043 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
2044 std::move(Args), 0);
Bill Wendling95e1af22008-09-17 00:30:57 +00002045
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002046 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Duncan Sandsa0984362011-09-06 13:37:06 +00002047 return CallResult.second;
Bill Wendling95e1af22008-09-17 00:30:57 +00002048}
2049
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002050SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002051 const PPCSubtarget &Subtarget) const {
Dan Gohman31ae5862010-04-17 14:41:14 +00002052 MachineFunction &MF = DAG.getMachineFunction();
2053 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2054
Andrew Trickef9de2a2013-05-25 02:42:55 +00002055 SDLoc dl(Op);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002056
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002057 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002058 // vastart just stores the address of the VarArgsFrameIndex slot into the
2059 // memory location argument.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002060 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman31ae5862010-04-17 14:41:14 +00002061 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002062 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner676c61d2010-09-21 18:41:36 +00002063 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2064 MachinePointerInfo(SV),
David Greene87a5abe2010-02-15 16:56:53 +00002065 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002066 }
2067
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002068 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002069 // We suppose the given va_list is already allocated.
2070 //
2071 // typedef struct {
2072 // char gpr; /* index into the array of 8 GPRs
2073 // * stored in the register save area
2074 // * gpr=0 corresponds to r3,
2075 // * gpr=1 to r4, etc.
2076 // */
2077 // char fpr; /* index into the array of 8 FPRs
2078 // * stored in the register save area
2079 // * fpr=0 corresponds to f1,
2080 // * fpr=1 to f2, etc.
2081 // */
2082 // char *overflow_arg_area;
2083 // /* location on stack that holds
2084 // * the next overflow argument
2085 // */
2086 // char *reg_save_area;
2087 // /* where r3:r10 and f1:f8 (if saved)
2088 // * are stored
2089 // */
2090 // } va_list[1];
2091
2092
Dan Gohman31ae5862010-04-17 14:41:14 +00002093 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
2094 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002095
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002096
Owen Anderson53aa7a92009-08-10 22:56:29 +00002097 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002098
Dan Gohman31ae5862010-04-17 14:41:14 +00002099 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
2100 PtrVT);
2101 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
2102 PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002103
Duncan Sands13237ac2008-06-06 12:08:01 +00002104 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002105 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002106
Duncan Sands13237ac2008-06-06 12:08:01 +00002107 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002108 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002109
2110 uint64_t FPROffset = 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002111 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002112
Dan Gohman2d489b52008-02-06 22:27:42 +00002113 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002114
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002115 // Store first byte : number of int regs
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002116 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattner6963c1f2010-09-21 17:42:31 +00002117 Op.getOperand(1),
2118 MachinePointerInfo(SV),
2119 MVT::i8, false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002120 uint64_t nextOffset = FPROffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002121 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002122 ConstFPROffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002123
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002124 // Store second byte : number of float regs
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002125 SDValue secondStore =
Chris Lattner6963c1f2010-09-21 17:42:31 +00002126 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
2127 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene87a5abe2010-02-15 16:56:53 +00002128 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002129 nextOffset += StackOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002130 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002131
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002132 // Store second word : arguments given on stack
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002133 SDValue thirdStore =
Chris Lattner676c61d2010-09-21 18:41:36 +00002134 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
2135 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002136 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002137 nextOffset += FrameOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002138 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002139
2140 // Store third word : arguments given in registers
Chris Lattner676c61d2010-09-21 18:41:36 +00002141 return DAG.getStore(thirdStore, dl, FR, nextPtr,
2142 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002143 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002144
Chris Lattner4211ca92006-04-14 06:01:58 +00002145}
2146
Chris Lattner4f2e4e02007-03-06 00:59:59 +00002147#include "PPCGenCallingConv.inc"
2148
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002149// Function whose sole purpose is to kill compiler warnings
2150// stemming from unused functions included from PPCGenCallingConv.inc.
2151CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
Bill Schmidt8470b0f2013-08-30 22:18:55 +00002152 return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002153}
2154
Bill Schmidt230b4512013-06-12 16:39:22 +00002155bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
2156 CCValAssign::LocInfo &LocInfo,
2157 ISD::ArgFlagsTy &ArgFlags,
2158 CCState &State) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002159 return true;
2160}
2161
Bill Schmidt230b4512013-06-12 16:39:22 +00002162bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
2163 MVT &LocVT,
2164 CCValAssign::LocInfo &LocInfo,
2165 ISD::ArgFlagsTy &ArgFlags,
2166 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002167 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002168 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2169 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2170 };
2171 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002172
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002173 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2174
2175 // Skip one register if the first unallocated register has an even register
2176 // number and there are still argument registers available which have not been
2177 // allocated yet. RegNum is actually an index into ArgRegs, which means we
2178 // need to skip a register if RegNum is odd.
2179 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
2180 State.AllocateReg(ArgRegs[RegNum]);
2181 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002182
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002183 // Always return false here, as this function only makes sure that the first
2184 // unallocated register has an odd register number and does not actually
2185 // allocate a register for the current argument.
2186 return false;
2187}
2188
Bill Schmidt230b4512013-06-12 16:39:22 +00002189bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
2190 MVT &LocVT,
2191 CCValAssign::LocInfo &LocInfo,
2192 ISD::ArgFlagsTy &ArgFlags,
2193 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002194 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002195 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2196 PPC::F8
2197 };
2198
2199 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002200
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002201 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2202
2203 // If there is only one Floating-point register left we need to put both f64
2204 // values of a split ppc_fp128 value on the stack.
2205 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
2206 State.AllocateReg(ArgRegs[RegNum]);
2207 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002208
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002209 // Always return false here, as this function only makes sure that the two f64
2210 // values a ppc_fp128 value is split into are both passed in registers or both
2211 // passed on the stack and does not actually allocate a register for the
2212 // current argument.
2213 return false;
2214}
2215
Chris Lattner43df5b32007-02-25 05:34:32 +00002216/// GetFPR - Get the set of FP registers that should be allocated for arguments,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002217/// on Darwin.
Craig Topper840beec2014-04-04 05:16:06 +00002218static const MCPhysReg *GetFPR() {
2219 static const MCPhysReg FPR[] = {
Chris Lattner43df5b32007-02-25 05:34:32 +00002220 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002221 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
Chris Lattner43df5b32007-02-25 05:34:32 +00002222 };
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002223
Chris Lattner43df5b32007-02-25 05:34:32 +00002224 return FPR;
2225}
2226
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002227/// CalculateStackSlotSize - Calculates the size reserved for this argument on
2228/// the stack.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002229static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002230 unsigned PtrByteSize) {
Hal Finkel940ab932014-02-28 00:27:01 +00002231 unsigned ArgSize = ArgVT.getStoreSize();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002232 if (Flags.isByVal())
2233 ArgSize = Flags.getByValSize();
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002234
2235 // Round up to multiples of the pointer size, except for array members,
2236 // which are always packed.
2237 if (!Flags.isInConsecutiveRegs())
2238 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002239
2240 return ArgSize;
2241}
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002242
2243/// CalculateStackSlotAlignment - Calculates the alignment of this argument
2244/// on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002245static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT,
2246 ISD::ArgFlagsTy Flags,
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002247 unsigned PtrByteSize) {
2248 unsigned Align = PtrByteSize;
2249
2250 // Altivec parameters are padded to a 16 byte boundary.
2251 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2252 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2253 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2254 Align = 16;
2255
2256 // ByVal parameters are aligned as requested.
2257 if (Flags.isByVal()) {
2258 unsigned BVAlign = Flags.getByValAlign();
2259 if (BVAlign > PtrByteSize) {
2260 if (BVAlign % PtrByteSize != 0)
2261 llvm_unreachable(
2262 "ByVal alignment is not a multiple of the pointer size");
2263
2264 Align = BVAlign;
2265 }
2266 }
2267
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002268 // Array members are always packed to their original alignment.
2269 if (Flags.isInConsecutiveRegs()) {
2270 // If the array member was split into multiple registers, the first
2271 // needs to be aligned to the size of the full type. (Except for
2272 // ppcf128, which is only aligned as its f64 components.)
2273 if (Flags.isSplit() && OrigVT != MVT::ppcf128)
2274 Align = OrigVT.getStoreSize();
2275 else
2276 Align = ArgVT.getStoreSize();
2277 }
2278
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002279 return Align;
2280}
2281
Ulrich Weigand8658f172014-07-20 23:43:15 +00002282/// CalculateStackSlotUsed - Return whether this argument will use its
2283/// stack slot (instead of being passed in registers). ArgOffset,
2284/// AvailableFPRs, and AvailableVRs must hold the current argument
2285/// position, and will be updated to account for this argument.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002286static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT,
2287 ISD::ArgFlagsTy Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00002288 unsigned PtrByteSize,
2289 unsigned LinkageSize,
2290 unsigned ParamAreaSize,
2291 unsigned &ArgOffset,
2292 unsigned &AvailableFPRs,
2293 unsigned &AvailableVRs) {
2294 bool UseMemory = false;
2295
2296 // Respect alignment of argument on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002297 unsigned Align =
2298 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigand8658f172014-07-20 23:43:15 +00002299 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2300 // If there's no space left in the argument save area, we must
2301 // use memory (this check also catches zero-sized arguments).
2302 if (ArgOffset >= LinkageSize + ParamAreaSize)
2303 UseMemory = true;
2304
2305 // Allocate argument on the stack.
2306 ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002307 if (Flags.isInConsecutiveRegsLast())
2308 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand8658f172014-07-20 23:43:15 +00002309 // If we overran the argument save area, we must use memory
2310 // (this check catches arguments passed partially in memory)
2311 if (ArgOffset > LinkageSize + ParamAreaSize)
2312 UseMemory = true;
2313
2314 // However, if the argument is actually passed in an FPR or a VR,
2315 // we don't use memory after all.
2316 if (!Flags.isByVal()) {
2317 if (ArgVT == MVT::f32 || ArgVT == MVT::f64)
2318 if (AvailableFPRs > 0) {
2319 --AvailableFPRs;
2320 return false;
2321 }
2322 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2323 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2324 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2325 if (AvailableVRs > 0) {
2326 --AvailableVRs;
2327 return false;
2328 }
2329 }
2330
2331 return UseMemory;
2332}
2333
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002334/// EnsureStackAlignment - Round stack frame size up from NumBytes to
2335/// ensure minimum alignment required for target.
Eric Christophercccae792015-01-30 22:02:31 +00002336static unsigned EnsureStackAlignment(const PPCFrameLowering *Lowering,
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002337 unsigned NumBytes) {
Eric Christophercccae792015-01-30 22:02:31 +00002338 unsigned TargetAlign = Lowering->getStackAlignment();
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002339 unsigned AlignMask = TargetAlign - 1;
2340 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2341 return NumBytes;
2342}
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002343
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002344SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002345PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002346 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002347 const SmallVectorImpl<ISD::InputArg>
2348 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002349 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002350 SmallVectorImpl<SDValue> &InVals)
2351 const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002352 if (Subtarget.isSVR4ABI()) {
2353 if (Subtarget.isPPC64())
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002354 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
2355 dl, DAG, InVals);
2356 else
2357 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
2358 dl, DAG, InVals);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002359 } else {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002360 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
2361 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002362 }
2363}
2364
2365SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002366PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002367 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002368 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002369 const SmallVectorImpl<ISD::InputArg>
2370 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002371 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002372 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002373
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002374 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002375 // +-----------------------------------+
2376 // +--> | Back chain |
2377 // | +-----------------------------------+
2378 // | | Floating-point register save area |
2379 // | +-----------------------------------+
2380 // | | General register save area |
2381 // | +-----------------------------------+
2382 // | | CR save word |
2383 // | +-----------------------------------+
2384 // | | VRSAVE save word |
2385 // | +-----------------------------------+
2386 // | | Alignment padding |
2387 // | +-----------------------------------+
2388 // | | Vector register save area |
2389 // | +-----------------------------------+
2390 // | | Local variable space |
2391 // | +-----------------------------------+
2392 // | | Parameter list area |
2393 // | +-----------------------------------+
2394 // | | LR save word |
2395 // | +-----------------------------------+
2396 // SP--> +--- | Back chain |
2397 // +-----------------------------------+
2398 //
2399 // Specifications:
2400 // System V Application Binary Interface PowerPC Processor Supplement
2401 // AltiVec Technology Programming Interface Manual
Wesley Peck527da1b2010-11-23 03:31:01 +00002402
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002403 MachineFunction &MF = DAG.getMachineFunction();
2404 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002405 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002406
Owen Anderson53aa7a92009-08-10 22:56:29 +00002407 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002408 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002409 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2410 (CallConv == CallingConv::Fast));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002411 unsigned PtrByteSize = 4;
2412
2413 // Assign locations to all of the incoming arguments.
2414 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002415 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2416 *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002417
2418 // Reserve space for the linkage area on the stack.
Ulrich Weigand8658f172014-07-20 23:43:15 +00002419 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(false, false, false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002420 CCInfo.AllocateStack(LinkageSize, PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002421
Bill Schmidtef17c142013-02-06 17:33:58 +00002422 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peck527da1b2010-11-23 03:31:01 +00002423
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002424 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2425 CCValAssign &VA = ArgLocs[i];
Wesley Peck527da1b2010-11-23 03:31:01 +00002426
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002427 // Arguments stored in registers.
2428 if (VA.isRegLoc()) {
Craig Topper760b1342012-02-22 05:59:10 +00002429 const TargetRegisterClass *RC;
Owen Anderson53aa7a92009-08-10 22:56:29 +00002430 EVT ValVT = VA.getValVT();
Wesley Peck527da1b2010-11-23 03:31:01 +00002431
Owen Anderson9f944592009-08-11 20:47:22 +00002432 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002433 default:
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002434 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Hal Finkel940ab932014-02-28 00:27:01 +00002435 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00002436 case MVT::i32:
Craig Topperabadc662012-04-20 06:31:50 +00002437 RC = &PPC::GPRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002438 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002439 case MVT::f32:
Craig Topperabadc662012-04-20 06:31:50 +00002440 RC = &PPC::F4RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002441 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002442 case MVT::f64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002443 if (Subtarget.hasVSX())
Hal Finkel19be5062014-03-29 05:29:01 +00002444 RC = &PPC::VSFRCRegClass;
2445 else
2446 RC = &PPC::F8RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002447 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002448 case MVT::v16i8:
2449 case MVT::v8i16:
2450 case MVT::v4i32:
2451 case MVT::v4f32:
Hal Finkel7811c612014-03-28 19:58:11 +00002452 RC = &PPC::VRRCRegClass;
2453 break;
Hal Finkel27774d92014-03-13 07:58:58 +00002454 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00002455 case MVT::v2i64:
Hal Finkel7811c612014-03-28 19:58:11 +00002456 RC = &PPC::VSHRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002457 break;
2458 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002459
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002460 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00002461 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Hal Finkel940ab932014-02-28 00:27:01 +00002462 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg,
2463 ValVT == MVT::i1 ? MVT::i32 : ValVT);
2464
2465 if (ValVT == MVT::i1)
2466 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002467
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002468 InVals.push_back(ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002469 } else {
2470 // Argument stored in memory.
2471 assert(VA.isMemLoc());
2472
Hal Finkel940ab932014-02-28 00:27:01 +00002473 unsigned ArgSize = VA.getLocVT().getStoreSize();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002474 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Cheng0664a672010-07-03 00:40:23 +00002475 isImmutable);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002476
2477 // Create load nodes to retrieve arguments from the stack.
2478 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002479 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2480 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002481 false, false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002482 }
2483 }
2484
2485 // Assign locations to all of the incoming aggregate by value arguments.
2486 // Aggregates passed by value are stored in the local variable space of the
2487 // caller's stack frame, right above the parameter list area.
2488 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002489 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Eric Christopherb5217502014-08-06 18:45:26 +00002490 ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002491
2492 // Reserve stack space for the allocations in CCInfo.
2493 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2494
Bill Schmidtef17c142013-02-06 17:33:58 +00002495 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002496
2497 // Area that is at least reserved in the caller of this function.
2498 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002499 MinReservedArea = std::max(MinReservedArea, LinkageSize);
Wesley Peck527da1b2010-11-23 03:31:01 +00002500
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002501 // Set the size that is at least reserved in caller of this function. Tail
2502 // call optimized function's reserved stack space needs to be aligned so that
2503 // taking the difference between two stack areas will result in an aligned
2504 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00002505 MinReservedArea =
2506 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002507 FuncInfo->setMinReservedArea(MinReservedArea);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002508
2509 SmallVector<SDValue, 8> MemOps;
Wesley Peck527da1b2010-11-23 03:31:01 +00002510
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002511 // If the function takes variable number of arguments, make a frame index for
2512 // the start of the first vararg value... for expansion of llvm.va_start.
2513 if (isVarArg) {
Craig Topper840beec2014-04-04 05:16:06 +00002514 static const MCPhysReg GPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002515 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2516 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2517 };
2518 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2519
Craig Topper840beec2014-04-04 05:16:06 +00002520 static const MCPhysReg FPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002521 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2522 PPC::F8
2523 };
Joerg Sonnenbergereb8655a2014-08-08 16:46:10 +00002524 unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2525 if (DisablePPCFloatInVariadic)
2526 NumFPArgRegs = 0;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002527
Dan Gohman31ae5862010-04-17 14:41:14 +00002528 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2529 NumGPArgRegs));
2530 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2531 NumFPArgRegs));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002532
2533 // Make room for NumGPArgRegs and NumFPArgRegs.
2534 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Craig Topper7ff15922014-09-10 04:51:36 +00002535 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002536
Dan Gohman31ae5862010-04-17 14:41:14 +00002537 FuncInfo->setVarArgsStackOffset(
2538 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002539 CCInfo.getNextStackOffset(), true));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002540
Dan Gohman31ae5862010-04-17 14:41:14 +00002541 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2542 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002543
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002544 // The fixed integer arguments of a variadic function are stored to the
2545 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2546 // the result of va_next.
2547 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2548 // Get an existing live-in vreg, or add a new one.
2549 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2550 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002551 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002552
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002553 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002554 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2555 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002556 MemOps.push_back(Store);
2557 // Increment the address by four for the next argument to store
2558 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2559 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2560 }
2561
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002562 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2563 // is set.
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002564 // The double arguments are stored to the VarArgsFrameIndex
2565 // on the stack.
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002566 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2567 // Get an existing live-in vreg, or add a new one.
2568 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2569 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002570 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002571
Owen Anderson9f944592009-08-11 20:47:22 +00002572 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner676c61d2010-09-21 18:41:36 +00002573 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2574 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002575 MemOps.push_back(Store);
2576 // Increment the address by eight for the next argument to store
Craig Topper7ff15922014-09-10 04:51:36 +00002577 SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002578 PtrVT);
2579 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2580 }
2581 }
2582
2583 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00002584 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002585
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002586 return Chain;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002587}
2588
Bill Schmidt57d6de52012-10-23 15:51:16 +00002589// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2590// value to MVT::i64 and then truncate to the correct register size.
2591SDValue
2592PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2593 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002594 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00002595 if (Flags.isSExt())
2596 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2597 DAG.getValueType(ObjectVT));
2598 else if (Flags.isZExt())
2599 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2600 DAG.getValueType(ObjectVT));
Matt Arsenault758659232013-05-18 00:21:46 +00002601
Hal Finkel940ab932014-02-28 00:27:01 +00002602 return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal);
Bill Schmidt57d6de52012-10-23 15:51:16 +00002603}
2604
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002605SDValue
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002606PPCTargetLowering::LowerFormalArguments_64SVR4(
2607 SDValue Chain,
2608 CallingConv::ID CallConv, bool isVarArg,
2609 const SmallVectorImpl<ISD::InputArg>
2610 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002611 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002612 SmallVectorImpl<SDValue> &InVals) const {
2613 // TODO: add description of PPC stack frame format, or at least some docs.
2614 //
Ulrich Weigand8658f172014-07-20 23:43:15 +00002615 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00002616 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002617 MachineFunction &MF = DAG.getMachineFunction();
2618 MachineFrameInfo *MFI = MF.getFrameInfo();
2619 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2620
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002621 assert(!(CallConv == CallingConv::Fast && isVarArg) &&
2622 "fastcc not supported on varargs functions");
2623
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002624 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2625 // Potential tail calls could cause overwriting of argument stack slots.
2626 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2627 (CallConv == CallingConv::Fast));
2628 unsigned PtrByteSize = 8;
2629
Ulrich Weigand8658f172014-07-20 23:43:15 +00002630 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false,
2631 isELFv2ABI);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002632
Craig Topper840beec2014-04-04 05:16:06 +00002633 static const MCPhysReg GPR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002634 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2635 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2636 };
2637
Craig Topper840beec2014-04-04 05:16:06 +00002638 static const MCPhysReg *FPR = GetFPR();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002639
Craig Topper840beec2014-04-04 05:16:06 +00002640 static const MCPhysReg VR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002641 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2642 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2643 };
Craig Topper840beec2014-04-04 05:16:06 +00002644 static const MCPhysReg VSRH[] = {
Hal Finkel7811c612014-03-28 19:58:11 +00002645 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
2646 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
2647 };
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002648
2649 const unsigned Num_GPR_Regs = array_lengthof(GPR);
2650 const unsigned Num_FPR_Regs = 13;
2651 const unsigned Num_VR_Regs = array_lengthof(VR);
2652
Ulrich Weigand8658f172014-07-20 23:43:15 +00002653 // Do a first pass over the arguments to determine whether the ABI
2654 // guarantees that our caller has allocated the parameter save area
2655 // on its stack frame. In the ELFv1 ABI, this is always the case;
2656 // in the ELFv2 ABI, it is true if this is a vararg function or if
2657 // any parameter is located in a stack slot.
2658
2659 bool HasParameterArea = !isELFv2ABI || isVarArg;
2660 unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize;
2661 unsigned NumBytes = LinkageSize;
2662 unsigned AvailableFPRs = Num_FPR_Regs;
2663 unsigned AvailableVRs = Num_VR_Regs;
2664 for (unsigned i = 0, e = Ins.size(); i != e; ++i)
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002665 if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00002666 PtrByteSize, LinkageSize, ParamAreaSize,
2667 NumBytes, AvailableFPRs, AvailableVRs))
2668 HasParameterArea = true;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002669
2670 // Add DAG nodes to load the arguments or copy them out of registers. On
2671 // entry to a function on PPC, the arguments start after the linkage area,
2672 // although the first ones are often in registers.
2673
Ulrich Weigand8658f172014-07-20 23:43:15 +00002674 unsigned ArgOffset = LinkageSize;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002675 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002676 SmallVector<SDValue, 8> MemOps;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002677 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt6631e942013-02-20 17:31:41 +00002678 unsigned CurArgIdx = 0;
2679 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002680 SDValue ArgVal;
2681 bool needsLoad = false;
2682 EVT ObjectVT = Ins[ArgNo].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002683 EVT OrigVT = Ins[ArgNo].ArgVT;
Hal Finkel940ab932014-02-28 00:27:01 +00002684 unsigned ObjSize = ObjectVT.getStoreSize();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002685 unsigned ArgSize = ObjSize;
2686 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt6631e942013-02-20 17:31:41 +00002687 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2688 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002689
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002690 // We re-align the argument offset for each argument, except when using the
2691 // fast calling convention, when we need to make sure we do that only when
2692 // we'll actually use a stack slot.
2693 unsigned CurArgOffset, Align;
2694 auto ComputeArgOffset = [&]() {
2695 /* Respect alignment of argument on the stack. */
2696 Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize);
2697 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2698 CurArgOffset = ArgOffset;
2699 };
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002700
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002701 if (CallConv != CallingConv::Fast) {
2702 ComputeArgOffset();
2703
2704 /* Compute GPR index associated with argument offset. */
2705 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2706 GPR_idx = std::min(GPR_idx, Num_GPR_Regs);
2707 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002708
2709 // FIXME the codegen can be much improved in some cases.
2710 // We do not have to keep everything in memory.
2711 if (Flags.isByVal()) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002712 if (CallConv == CallingConv::Fast)
2713 ComputeArgOffset();
2714
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002715 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2716 ObjSize = Flags.getByValSize();
2717 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt9953cf22012-10-31 01:15:05 +00002718 // Empty aggregate parameters do not take up registers. Examples:
2719 // struct { } a;
2720 // union { } b;
2721 // int c[0];
2722 // etc. However, we have to provide a place-holder in InVals, so
2723 // pretend we have an 8-byte item at the current address for that
2724 // purpose.
2725 if (!ObjSize) {
2726 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2727 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2728 InVals.push_back(FIN);
2729 continue;
2730 }
Hal Finkel262a2242013-09-12 23:20:06 +00002731
Ulrich Weigand24195972014-07-20 22:36:52 +00002732 // Create a stack object covering all stack doublewords occupied
Ulrich Weigand8658f172014-07-20 23:43:15 +00002733 // by the argument. If the argument is (fully or partially) on
2734 // the stack, or if the argument is fully in registers but the
2735 // caller has allocated the parameter save anyway, we can refer
2736 // directly to the caller's stack frame. Otherwise, create a
2737 // local copy in our own frame.
2738 int FI;
2739 if (HasParameterArea ||
2740 ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize)
Hal Finkel41a55ad2014-08-16 00:17:05 +00002741 FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false, true);
Ulrich Weigand8658f172014-07-20 23:43:15 +00002742 else
2743 FI = MFI->CreateStackObject(ArgSize, Align, false);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002744 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002745
Ulrich Weigand24195972014-07-20 22:36:52 +00002746 // Handle aggregates smaller than 8 bytes.
2747 if (ObjSize < PtrByteSize) {
2748 // The value of the object is its address, which differs from the
2749 // address of the enclosing doubleword on big-endian systems.
2750 SDValue Arg = FIN;
2751 if (!isLittleEndian) {
2752 SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, PtrVT);
2753 Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff);
2754 }
2755 InVals.push_back(Arg);
2756
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002757 if (GPR_idx != Num_GPR_Regs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002758 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002759 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002760 SDValue Store;
2761
2762 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2763 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2764 (ObjSize == 2 ? MVT::i16 : MVT::i32));
Ulrich Weigand24195972014-07-20 22:36:52 +00002765 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002766 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002767 ObjType, false, false, 0);
2768 } else {
2769 // For sizes that don't fit a truncating store (3, 5, 6, 7),
2770 // store the whole register as-is to the parameter save area
Ulrich Weigand24195972014-07-20 22:36:52 +00002771 // slot.
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002772 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002773 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002774 false, false, 0);
2775 }
2776
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002777 MemOps.push_back(Store);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002778 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002779 // Whether we copied from a register or not, advance the offset
2780 // into the parameter save area by a full doubleword.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002781 ArgOffset += PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002782 continue;
2783 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002784
Ulrich Weigand24195972014-07-20 22:36:52 +00002785 // The value of the object is its address, which is the address of
2786 // its first stack doubleword.
2787 InVals.push_back(FIN);
2788
2789 // Store whatever pieces of the object are in registers to memory.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002790 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
Ulrich Weigand24195972014-07-20 22:36:52 +00002791 if (GPR_idx == Num_GPR_Regs)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002792 break;
Ulrich Weigand24195972014-07-20 22:36:52 +00002793
2794 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2795 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2796 SDValue Addr = FIN;
2797 if (j) {
2798 SDValue Off = DAG.getConstant(j, PtrVT);
2799 Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002800 }
Ulrich Weigand24195972014-07-20 22:36:52 +00002801 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, Addr,
2802 MachinePointerInfo(FuncArg, j),
2803 false, false, 0);
2804 MemOps.push_back(Store);
2805 ++GPR_idx;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002806 }
Ulrich Weigand24195972014-07-20 22:36:52 +00002807 ArgOffset += ArgSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002808 continue;
2809 }
2810
2811 switch (ObjectVT.getSimpleVT().SimpleTy) {
2812 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel940ab932014-02-28 00:27:01 +00002813 case MVT::i1:
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002814 case MVT::i32:
2815 case MVT::i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002816 // These can be scalar arguments or elements of an integer array type
2817 // passed directly. Clang may use those instead of "byval" aggregate
2818 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002819 if (GPR_idx != Num_GPR_Regs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002820 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002821 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2822
Hal Finkel940ab932014-02-28 00:27:01 +00002823 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002824 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2825 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002826 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002827 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002828 if (CallConv == CallingConv::Fast)
2829 ComputeArgOffset();
2830
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002831 needsLoad = true;
2832 ArgSize = PtrByteSize;
2833 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002834 if (CallConv != CallingConv::Fast || needsLoad)
2835 ArgOffset += 8;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002836 break;
2837
2838 case MVT::f32:
2839 case MVT::f64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002840 // These can be scalar arguments or elements of a float array type
2841 // passed directly. The latter are used to implement ELFv2 homogenous
2842 // float aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002843 if (FPR_idx != Num_FPR_Regs) {
2844 unsigned VReg;
2845
2846 if (ObjectVT == MVT::f32)
2847 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2848 else
Eric Christophercccae792015-01-30 22:02:31 +00002849 VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX()
2850 ? &PPC::VSFRCRegClass
2851 : &PPC::F8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002852
2853 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2854 ++FPR_idx;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002855 } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) {
Hal Finkel8ea446b2015-01-18 14:31:10 +00002856 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
2857 // once we support fp <-> gpr moves.
2858
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002859 // This can only ever happen in the presence of f32 array types,
2860 // since otherwise we never run out of FPRs before running out
2861 // of GPRs.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002862 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002863 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2864
2865 if (ObjectVT == MVT::f32) {
2866 if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0))
2867 ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal,
2868 DAG.getConstant(32, MVT::i32));
2869 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2870 }
2871
2872 ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002873 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002874 if (CallConv == CallingConv::Fast)
2875 ComputeArgOffset();
2876
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002877 needsLoad = true;
2878 }
2879
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002880 // When passing an array of floats, the array occupies consecutive
2881 // space in the argument area; only round up to the next doubleword
2882 // at the end of the array. Otherwise, each float takes 8 bytes.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002883 if (CallConv != CallingConv::Fast || needsLoad) {
2884 ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize;
2885 ArgOffset += ArgSize;
2886 if (Flags.isInConsecutiveRegsLast())
2887 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2888 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002889 break;
2890 case MVT::v4f32:
2891 case MVT::v4i32:
2892 case MVT::v8i16:
2893 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00002894 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00002895 case MVT::v2i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002896 // These can be scalar arguments or elements of a vector array type
2897 // passed directly. The latter are used to implement ELFv2 homogenous
2898 // vector aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002899 if (VR_idx != Num_VR_Regs) {
Hal Finkel7811c612014-03-28 19:58:11 +00002900 unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ?
2901 MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) :
2902 MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002903 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002904 ++VR_idx;
2905 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002906 if (CallConv == CallingConv::Fast)
2907 ComputeArgOffset();
2908
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002909 needsLoad = true;
2910 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002911 if (CallConv != CallingConv::Fast || needsLoad)
2912 ArgOffset += 16;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002913 break;
2914 }
2915
2916 // We need to load the argument to a virtual register if we determined
2917 // above that we ran out of physical registers of the appropriate type.
2918 if (needsLoad) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00002919 if (ObjSize < ArgSize && !isLittleEndian)
2920 CurArgOffset += ArgSize - ObjSize;
2921 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002922 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2923 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2924 false, false, false, 0);
2925 }
2926
2927 InVals.push_back(ArgVal);
2928 }
2929
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002930 // Area that is at least reserved in the caller of this function.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002931 unsigned MinReservedArea;
Ulrich Weigand8658f172014-07-20 23:43:15 +00002932 if (HasParameterArea)
2933 MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize);
2934 else
2935 MinReservedArea = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002936
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002937 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00002938 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002939 // taking the difference between two stack areas will result in an aligned
2940 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00002941 MinReservedArea =
2942 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002943 FuncInfo->setMinReservedArea(MinReservedArea);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002944
2945 // If the function takes variable number of arguments, make a frame index for
2946 // the start of the first vararg value... for expansion of llvm.va_start.
2947 if (isVarArg) {
2948 int Depth = ArgOffset;
2949
2950 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt57d6de52012-10-23 15:51:16 +00002951 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002952 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2953
2954 // If this function is vararg, store any remaining integer argument regs
2955 // to their spots on the stack so that they may be loaded by deferencing the
2956 // result of va_next.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002957 for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2958 GPR_idx < Num_GPR_Regs; ++GPR_idx) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002959 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2960 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2961 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2962 MachinePointerInfo(), false, false, 0);
2963 MemOps.push_back(Store);
2964 // Increment the address by four for the next argument to store
Bill Schmidt57d6de52012-10-23 15:51:16 +00002965 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002966 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2967 }
2968 }
2969
2970 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00002971 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002972
2973 return Chain;
2974}
2975
2976SDValue
2977PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002978 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002979 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002980 const SmallVectorImpl<ISD::InputArg>
2981 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002982 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002983 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002984 // TODO: add description of PPC stack frame format, or at least some docs.
2985 //
2986 MachineFunction &MF = DAG.getMachineFunction();
2987 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002988 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002989
Owen Anderson53aa7a92009-08-10 22:56:29 +00002990 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00002991 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002992 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002993 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2994 (CallConv == CallingConv::Fast));
Jim Laskeyf4e2e002006-11-28 14:53:52 +00002995 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey48850c12006-11-16 22:43:37 +00002996
Ulrich Weigand8658f172014-07-20 23:43:15 +00002997 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true,
2998 false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002999 unsigned ArgOffset = LinkageSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003000 // Area that is at least reserved in caller of this function.
3001 unsigned MinReservedArea = ArgOffset;
3002
Craig Topper840beec2014-04-04 05:16:06 +00003003 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003004 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
3005 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
3006 };
Craig Topper840beec2014-04-04 05:16:06 +00003007 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00003008 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3009 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3010 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00003011
Craig Topper840beec2014-04-04 05:16:06 +00003012 static const MCPhysReg *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003013
Craig Topper840beec2014-04-04 05:16:06 +00003014 static const MCPhysReg VR[] = {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003015 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3016 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3017 };
Chris Lattnerec78cad2006-06-26 22:48:35 +00003018
Owen Andersone2f23a32007-09-07 04:06:50 +00003019 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003020 const unsigned Num_FPR_Regs = 13;
Owen Andersone2f23a32007-09-07 04:06:50 +00003021 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey48850c12006-11-16 22:43:37 +00003022
3023 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003024
Craig Topper840beec2014-04-04 05:16:06 +00003025 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003026
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003027 // In 32-bit non-varargs functions, the stack space for vectors is after the
3028 // stack space for non-vectors. We do not use this space unless we have
3029 // too many vectors to fit in registers, something that only occurs in
Scott Michelcf0da6c2009-02-17 22:15:04 +00003030 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003031 // that out...for the pathological case, compute VecArgOffset as the
3032 // start of the vector parameter area. Computing VecArgOffset is the
3033 // entire point of the following loop.
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003034 unsigned VecArgOffset = ArgOffset;
3035 if (!isVarArg && !isPPC64) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003036 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003037 ++ArgNo) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003038 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003039 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003040
Duncan Sandsd97eea32008-03-21 09:14:45 +00003041 if (Flags.isByVal()) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003042 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer084b9f42012-01-20 14:42:32 +00003043 unsigned ObjSize = Flags.getByValSize();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003044 unsigned ArgSize =
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003045 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3046 VecArgOffset += ArgSize;
3047 continue;
3048 }
3049
Owen Anderson9f944592009-08-11 20:47:22 +00003050 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003051 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003052 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003053 case MVT::i32:
3054 case MVT::f32:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003055 VecArgOffset += 4;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003056 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003057 case MVT::i64: // PPC64
3058 case MVT::f64:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003059 // FIXME: We are guaranteed to be !isPPC64 at this point.
3060 // Does MVT::i64 apply?
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003061 VecArgOffset += 8;
3062 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003063 case MVT::v4f32:
3064 case MVT::v4i32:
3065 case MVT::v8i16:
3066 case MVT::v16i8:
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003067 // Nothing to do, we're only looking at Nonvector args here.
3068 break;
3069 }
3070 }
3071 }
3072 // We've found where the vector parameter area in memory is. Skip the
3073 // first 12 parameters; these don't use that memory.
3074 VecArgOffset = ((VecArgOffset+15)/16)*16;
3075 VecArgOffset += 12*16;
3076
Chris Lattner4302e8f2006-05-16 18:18:50 +00003077 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey48850c12006-11-16 22:43:37 +00003078 // entry to a function on PPC, the arguments start after the linkage area,
3079 // although the first ones are often in registers.
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00003080
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003081 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003082 unsigned nAltivecParamsAtEnd = 0;
Roman Divackyca103892012-09-24 20:47:19 +00003083 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt38b6cb52013-05-08 17:22:33 +00003084 unsigned CurArgIdx = 0;
3085 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003086 SDValue ArgVal;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003087 bool needsLoad = false;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003088 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands13237ac2008-06-06 12:08:01 +00003089 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey152671f2006-11-29 13:37:09 +00003090 unsigned ArgSize = ObjSize;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003091 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt38b6cb52013-05-08 17:22:33 +00003092 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
3093 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003094
Chris Lattner318f0d22006-05-16 18:51:52 +00003095 unsigned CurArgOffset = ArgOffset;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003096
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003097 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00003098 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
3099 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003100 if (isVarArg || isPPC64) {
3101 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003102 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003103 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003104 PtrByteSize);
3105 } else nAltivecParamsAtEnd++;
3106 } else
3107 // Calculate min reserved area.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003108 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003109 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003110 PtrByteSize);
3111
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003112 // FIXME the codegen can be much improved in some cases.
3113 // We do not have to keep everything in memory.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003114 if (Flags.isByVal()) {
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003115 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003116 ObjSize = Flags.getByValSize();
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003117 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003118 // Objects of size 1 and 2 are right justified, everything else is
3119 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen21a8f142008-03-08 01:41:42 +00003120 if (ObjSize==1 || ObjSize==2) {
3121 CurArgOffset = CurArgOffset + (4 - ObjSize);
3122 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003123 // The value of the object is its address.
Hal Finkel41a55ad2014-08-16 00:17:05 +00003124 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, false, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003125 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003126 InVals.push_back(FIN);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003127 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen21a8f142008-03-08 01:41:42 +00003128 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003129 unsigned VReg;
3130 if (isPPC64)
3131 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3132 else
3133 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003134 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt57d6de52012-10-23 15:51:16 +00003135 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003136 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00003137 MachinePointerInfo(FuncArg),
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003138 ObjType, false, false, 0);
Dale Johannesen21a8f142008-03-08 01:41:42 +00003139 MemOps.push_back(Store);
3140 ++GPR_idx;
Dale Johannesen21a8f142008-03-08 01:41:42 +00003141 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003142
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003143 ArgOffset += PtrByteSize;
Wesley Peck527da1b2010-11-23 03:31:01 +00003144
Dale Johannesen21a8f142008-03-08 01:41:42 +00003145 continue;
3146 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003147 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3148 // Store whatever pieces of the object are in registers
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003149 // to memory. ArgOffset will be the address of the beginning
3150 // of the object.
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003151 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003152 unsigned VReg;
3153 if (isPPC64)
3154 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3155 else
3156 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Cheng0664a672010-07-03 00:40:23 +00003157 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003158 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003159 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003160 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00003161 MachinePointerInfo(FuncArg, j),
David Greene87a5abe2010-02-15 16:56:53 +00003162 false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003163 MemOps.push_back(Store);
3164 ++GPR_idx;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003165 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003166 } else {
3167 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
3168 break;
3169 }
3170 }
3171 continue;
3172 }
3173
Owen Anderson9f944592009-08-11 20:47:22 +00003174 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003175 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003176 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003177 case MVT::i32:
Bill Wendling968f32c2008-03-07 20:49:02 +00003178 if (!isPPC64) {
Bill Wendling968f32c2008-03-07 20:49:02 +00003179 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003180 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003181 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Hal Finkel7f908e82014-03-06 00:45:19 +00003182
3183 if (ObjectVT == MVT::i1)
3184 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal);
3185
Bill Wendling968f32c2008-03-07 20:49:02 +00003186 ++GPR_idx;
3187 } else {
3188 needsLoad = true;
3189 ArgSize = PtrByteSize;
3190 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003191 // All int arguments reserve stack space in the Darwin ABI.
3192 ArgOffset += PtrByteSize;
Bill Wendling968f32c2008-03-07 20:49:02 +00003193 break;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003194 }
Bill Wendling968f32c2008-03-07 20:49:02 +00003195 // FALLTHROUGH
Owen Anderson9f944592009-08-11 20:47:22 +00003196 case MVT::i64: // PPC64
Chris Lattnerec78cad2006-06-26 22:48:35 +00003197 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003198 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003199 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling968f32c2008-03-07 20:49:02 +00003200
Hal Finkel940ab932014-02-28 00:27:01 +00003201 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Wendling968f32c2008-03-07 20:49:02 +00003202 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson9f944592009-08-11 20:47:22 +00003203 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00003204 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling968f32c2008-03-07 20:49:02 +00003205
Chris Lattnerec78cad2006-06-26 22:48:35 +00003206 ++GPR_idx;
3207 } else {
3208 needsLoad = true;
Evan Cheng0f0aee22008-07-24 08:17:07 +00003209 ArgSize = PtrByteSize;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003210 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003211 // All int arguments reserve stack space in the Darwin ABI.
3212 ArgOffset += 8;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003213 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003214
Owen Anderson9f944592009-08-11 20:47:22 +00003215 case MVT::f32:
3216 case MVT::f64:
Chris Lattner318f0d22006-05-16 18:51:52 +00003217 // Every 4 bytes of argument space consumes one of the GPRs available for
3218 // argument passing.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003219 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003220 ++GPR_idx;
Chris Lattner2cca3852006-11-18 01:57:19 +00003221 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003222 ++GPR_idx;
Chris Lattner318f0d22006-05-16 18:51:52 +00003223 }
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003224 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003225 unsigned VReg;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003226
Owen Anderson9f944592009-08-11 20:47:22 +00003227 if (ObjectVT == MVT::f32)
Devang Patelf3292b22011-02-21 23:21:26 +00003228 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003229 else
Devang Patelf3292b22011-02-21 23:21:26 +00003230 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003231
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003232 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003233 ++FPR_idx;
3234 } else {
3235 needsLoad = true;
3236 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003237
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003238 // All FP arguments reserve stack space in the Darwin ABI.
3239 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003240 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003241 case MVT::v4f32:
3242 case MVT::v4i32:
3243 case MVT::v8i16:
3244 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00003245 // Note that vector arguments in registers don't reserve stack space,
3246 // except in varargs functions.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003247 if (VR_idx != Num_VR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003248 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003249 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesenb28456e2008-03-12 00:22:17 +00003250 if (isVarArg) {
3251 while ((ArgOffset % 16) != 0) {
3252 ArgOffset += PtrByteSize;
3253 if (GPR_idx != Num_GPR_Regs)
3254 GPR_idx++;
3255 }
3256 ArgOffset += 16;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003257 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesenb28456e2008-03-12 00:22:17 +00003258 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003259 ++VR_idx;
3260 } else {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003261 if (!isVarArg && !isPPC64) {
3262 // Vectors go after all the nonvectors.
3263 CurArgOffset = VecArgOffset;
3264 VecArgOffset += 16;
3265 } else {
3266 // Vectors are aligned.
3267 ArgOffset = ((ArgOffset+15)/16)*16;
3268 CurArgOffset = ArgOffset;
3269 ArgOffset += 16;
Dale Johannesen0d982562008-03-12 00:49:20 +00003270 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003271 needsLoad = true;
3272 }
3273 break;
3274 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003275
Chris Lattner4302e8f2006-05-16 18:18:50 +00003276 // We need to load the argument to a virtual register if we determined above
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003277 // that we ran out of physical registers of the appropriate type.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003278 if (needsLoad) {
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003279 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003280 CurArgOffset + (ArgSize - ObjSize),
Evan Cheng0664a672010-07-03 00:40:23 +00003281 isImmutable);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003282 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00003283 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003284 false, false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003285 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003286
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003287 InVals.push_back(ArgVal);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003288 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003289
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003290 // Allow for Altivec parameters at the end, if needed.
3291 if (nAltivecParamsAtEnd) {
3292 MinReservedArea = ((MinReservedArea+15)/16)*16;
3293 MinReservedArea += 16*nAltivecParamsAtEnd;
3294 }
3295
3296 // Area that is at least reserved in the caller of this function.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00003297 MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003298
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003299 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00003300 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003301 // taking the difference between two stack areas will result in an aligned
3302 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00003303 MinReservedArea =
3304 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003305 FuncInfo->setMinReservedArea(MinReservedArea);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003306
Chris Lattner4302e8f2006-05-16 18:18:50 +00003307 // If the function takes variable number of arguments, make a frame index for
3308 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003309 if (isVarArg) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003310 int Depth = ArgOffset;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003311
Dan Gohman31ae5862010-04-17 14:41:14 +00003312 FuncInfo->setVarArgsFrameIndex(
3313 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00003314 Depth, true));
Dan Gohman31ae5862010-04-17 14:41:14 +00003315 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003316
Chris Lattner4302e8f2006-05-16 18:18:50 +00003317 // If this function is vararg, store any remaining integer argument regs
3318 // to their spots on the stack so that they may be loaded by deferencing the
3319 // result of va_next.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003320 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattner2cca3852006-11-18 01:57:19 +00003321 unsigned VReg;
Wesley Peck527da1b2010-11-23 03:31:01 +00003322
Chris Lattner2cca3852006-11-18 01:57:19 +00003323 if (isPPC64)
Devang Patelf3292b22011-02-21 23:21:26 +00003324 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003325 else
Devang Patelf3292b22011-02-21 23:21:26 +00003326 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003327
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003328 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00003329 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3330 MachinePointerInfo(), false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003331 MemOps.push_back(Store);
3332 // Increment the address by four for the next argument to store
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003333 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen679073b2009-02-04 02:34:38 +00003334 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003335 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003336 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003337
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003338 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003339 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003340
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003341 return Chain;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003342}
3343
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003344/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003345/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesen86dcae12009-11-24 01:09:07 +00003346static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003347 unsigned ParamSize) {
3348
Dale Johannesen86dcae12009-11-24 01:09:07 +00003349 if (!isTailCall) return 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003350
3351 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
3352 unsigned CallerMinReservedArea = FI->getMinReservedArea();
3353 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
3354 // Remember only if the new adjustement is bigger.
3355 if (SPDiff < FI->getTailCallSPDelta())
3356 FI->setTailCallSPDelta(SPDiff);
3357
3358 return SPDiff;
3359}
3360
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003361/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3362/// for tail call optimization. Targets which want to do tail call
3363/// optimization should implement this function.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003364bool
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003365PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003366 CallingConv::ID CalleeCC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003367 bool isVarArg,
3368 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003369 SelectionDAG& DAG) const {
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003370 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng25217ff2010-01-29 23:05:56 +00003371 return false;
3372
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003373 // Variable argument functions are not supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003374 if (isVarArg)
Dan Gohmaneffb8942008-09-12 16:56:44 +00003375 return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003376
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003377 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel68c5f472009-09-02 08:44:58 +00003378 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003379 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
3380 // Functions containing by val parameters are not supported.
3381 for (unsigned i = 0; i != Ins.size(); i++) {
3382 ISD::ArgFlagsTy Flags = Ins[i].Flags;
3383 if (Flags.isByVal()) return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003384 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003385
Alp Tokerf907b892013-12-05 05:44:44 +00003386 // Non-PIC/GOT tail calls are supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003387 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
3388 return true;
3389
3390 // At the moment we can only do local tail calls (in same module, hidden
3391 // or protected) if we are generating PIC.
3392 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3393 return G->getGlobal()->hasHiddenVisibility()
3394 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003395 }
3396
3397 return false;
3398}
3399
Chris Lattnereb755fc2006-05-17 19:00:46 +00003400/// isCallCompatibleAddress - Return the immediate to use if the specified
3401/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003402static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnereb755fc2006-05-17 19:00:46 +00003403 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
Craig Topper062a2ba2014-04-25 05:30:21 +00003404 if (!C) return nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003405
Dan Gohmaneffb8942008-09-12 16:56:44 +00003406 int Addr = C->getZExtValue();
Chris Lattnereb755fc2006-05-17 19:00:46 +00003407 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith228e6d42012-08-24 23:29:28 +00003408 SignExtend32<26>(Addr) != Addr)
Craig Topper062a2ba2014-04-25 05:30:21 +00003409 return nullptr; // Top 6 bits have to be sext of immediate.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003410
Dan Gohmaneffb8942008-09-12 16:56:44 +00003411 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greiff304a7a2008-08-28 21:40:38 +00003412 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnereb755fc2006-05-17 19:00:46 +00003413}
3414
Dan Gohmand78c4002008-05-13 00:00:25 +00003415namespace {
3416
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003417struct TailCallArgumentInfo {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003418 SDValue Arg;
3419 SDValue FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003420 int FrameIdx;
3421
3422 TailCallArgumentInfo() : FrameIdx(0) {}
3423};
3424
Dan Gohmand78c4002008-05-13 00:00:25 +00003425}
3426
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003427/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
3428static void
3429StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00003430 SDValue Chain,
Craig Topperb94011f2013-07-14 04:42:23 +00003431 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
3432 SmallVectorImpl<SDValue> &MemOpChains,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003433 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003434 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003435 SDValue Arg = TailCallArgs[i].Arg;
3436 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003437 int FI = TailCallArgs[i].FrameIdx;
3438 // Store relative to framepointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00003439 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Chris Lattner7727d052010-09-21 06:44:06 +00003440 MachinePointerInfo::getFixedStack(FI),
3441 false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003442 }
3443}
3444
3445/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
3446/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003447static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003448 MachineFunction &MF,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003449 SDValue Chain,
3450 SDValue OldRetAddr,
3451 SDValue OldFP,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003452 int SPDiff,
3453 bool isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003454 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003455 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003456 if (SPDiff) {
3457 // Calculate the new stack slot for the return address.
3458 int SlotSize = isPPC64 ? 8 : 4;
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003459 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003460 isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003461 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Cheng0664a672010-07-03 00:40:23 +00003462 NewRetAddrLoc, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003463 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003464 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen021052a2009-02-04 20:06:27 +00003465 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003466 MachinePointerInfo::getFixedStack(NewRetAddr),
David Greene87a5abe2010-02-15 16:56:53 +00003467 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003468
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003469 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3470 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003471 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003472 int NewFPLoc =
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003473 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
David Greene1fbe0542009-11-12 20:49:22 +00003474 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Cheng0664a672010-07-03 00:40:23 +00003475 true);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003476 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3477 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003478 MachinePointerInfo::getFixedStack(NewFPIdx),
David Greene87a5abe2010-02-15 16:56:53 +00003479 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003480 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003481 }
3482 return Chain;
3483}
3484
3485/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3486/// the position of the argument.
3487static void
3488CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003489 SDValue Arg, int SPDiff, unsigned ArgOffset,
Craig Topperb94011f2013-07-14 04:42:23 +00003490 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003491 int Offset = ArgOffset + SPDiff;
Duncan Sands13237ac2008-06-06 12:08:01 +00003492 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Cheng0664a672010-07-03 00:40:23 +00003493 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003494 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003495 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003496 TailCallArgumentInfo Info;
3497 Info.Arg = Arg;
3498 Info.FrameIdxOp = FIN;
3499 Info.FrameIdx = FI;
3500 TailCallArguments.push_back(Info);
3501}
3502
3503/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3504/// stack slot. Returns the chain as result and the loaded frame pointers in
3505/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003506SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen021052a2009-02-04 20:06:27 +00003507 int SPDiff,
3508 SDValue Chain,
3509 SDValue &LROpOut,
3510 SDValue &FPOpOut,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003511 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003512 SDLoc dl) const {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003513 if (SPDiff) {
3514 // Load the LR and FP stack slot for later adjusting.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003515 EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003516 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003517 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003518 false, false, false, 0);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003519 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peck527da1b2010-11-23 03:31:01 +00003520
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003521 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3522 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003523 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003524 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003525 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003526 false, false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003527 Chain = SDValue(FPOpOut.getNode(), 1);
3528 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003529 }
3530 return Chain;
3531}
3532
Dale Johannesen85d41a12008-03-04 23:17:14 +00003533/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelcf0da6c2009-02-17 22:15:04 +00003534/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen85d41a12008-03-04 23:17:14 +00003535/// specified by the specific parameter attribute. The copy will be passed as
3536/// a byval function parameter.
3537/// Sometimes what we are copying is the end of a larger object, the part that
3538/// does not fit in registers.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003539static SDValue
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003540CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sandsd97eea32008-03-21 09:14:45 +00003541 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003542 SDLoc dl) {
Owen Anderson9f944592009-08-11 20:47:22 +00003543 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen85263882009-02-04 01:17:06 +00003544 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Nick Lewyckyaad475b2014-04-15 07:22:52 +00003545 false, false, MachinePointerInfo(),
3546 MachinePointerInfo());
Dale Johannesen85d41a12008-03-04 23:17:14 +00003547}
Chris Lattner43df5b32007-02-25 05:34:32 +00003548
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003549/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3550/// tail calls.
3551static void
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003552LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3553 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003554 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003555 bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3556 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003557 SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003558 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003559 if (!isTailCall) {
3560 if (isVector) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003561 SDValue StackPtr;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003562 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00003563 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003564 else
Owen Anderson9f944592009-08-11 20:47:22 +00003565 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00003566 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003567 DAG.getConstant(ArgOffset, PtrVT));
3568 }
Chris Lattner676c61d2010-09-21 18:41:36 +00003569 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3570 MachinePointerInfo(), false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003571 // Calculate and remember argument location.
3572 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3573 TailCallArguments);
3574}
3575
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003576static
3577void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003578 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003579 SDValue LROp, SDValue FPOp, bool isDarwinABI,
Craig Topperb94011f2013-07-14 04:42:23 +00003580 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003581 MachineFunction &MF = DAG.getMachineFunction();
3582
3583 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3584 // might overwrite each other in case of tail call optimization.
3585 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003586 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003587 InFlag = SDValue();
3588 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3589 MemOpChains2, dl);
3590 if (!MemOpChains2.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003591 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003592
3593 // Store the return address to the appropriate stack slot.
3594 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3595 isPPC64, isDarwinABI, dl);
3596
3597 // Emit callseq_end just before tailcall node.
3598 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003599 DAG.getIntPtrConstant(0, true), InFlag, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003600 InFlag = Chain.getValue(1);
3601}
3602
Hal Finkel87deb0b2015-01-12 04:34:47 +00003603// Is this global address that of a function that can be called by name? (as
3604// opposed to something that must hold a descriptor for an indirect call).
3605static bool isFunctionGlobalAddress(SDValue Callee) {
3606 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3607 if (Callee.getOpcode() == ISD::GlobalTLSAddress ||
3608 Callee.getOpcode() == ISD::TargetGlobalTLSAddress)
3609 return false;
3610
3611 return G->getGlobal()->getType()->getElementType()->isFunctionTy();
3612 }
3613
3614 return false;
3615}
3616
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003617static
3618unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003619 SDValue &Chain, SDValue CallSeqStart, SDLoc dl, int SPDiff,
3620 bool isTailCall, bool IsPatchPoint,
Craig Topperb94011f2013-07-14 04:42:23 +00003621 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
3622 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003623 ImmutableCallSite *CS, const PPCSubtarget &Subtarget) {
Wesley Peck527da1b2010-11-23 03:31:01 +00003624
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003625 bool isPPC64 = Subtarget.isPPC64();
3626 bool isSVR4ABI = Subtarget.isSVR4ABI();
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003627 bool isELFv2ABI = Subtarget.isELFv2ABI();
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003628
Owen Anderson53aa7a92009-08-10 22:56:29 +00003629 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00003630 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003631 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003632
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003633 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003634
Torok Edwin31e90d22010-08-04 20:47:44 +00003635 bool needIndirectCall = true;
Ulrich Weigand9aa09ef2014-06-18 16:14:04 +00003636 if (!isSVR4ABI || !isPPC64)
3637 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
3638 // If this is an absolute destination address, use the munged value.
3639 Callee = SDValue(Dest, 0);
3640 needIndirectCall = false;
3641 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003642
Hal Finkel87deb0b2015-01-12 04:34:47 +00003643 if (isFunctionGlobalAddress(Callee)) {
3644 GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee);
3645 // A call to a TLS address is actually an indirect call to a
3646 // thread-specific pointer.
Eric Christopher79cc1e32014-09-02 22:28:02 +00003647 unsigned OpFlags = 0;
3648 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
3649 (Subtarget.getTargetTriple().isMacOSX() &&
3650 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
3651 (G->getGlobal()->isDeclaration() ||
3652 G->getGlobal()->isWeakForLinker())) ||
3653 (Subtarget.isTargetELF() && !isPPC64 &&
3654 !G->getGlobal()->hasLocalLinkage() &&
3655 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3656 // PC-relative references to external symbols should go through $stub,
3657 // unless we're building with the leopard linker or later, which
3658 // automatically synthesizes these stubs.
3659 OpFlags = PPCII::MO_PLT_OR_STUB;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +00003660 }
Eric Christopher79cc1e32014-09-02 22:28:02 +00003661
3662 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3663 // every direct call is) turn it into a TargetGlobalAddress /
3664 // TargetExternalSymbol node so that legalize doesn't hack it.
3665 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
3666 Callee.getValueType(), 0, OpFlags);
3667 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00003668 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003669
Torok Edwin31e90d22010-08-04 20:47:44 +00003670 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003671 unsigned char OpFlags = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00003672
Hal Finkel3ee2af72014-07-18 23:29:49 +00003673 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
3674 (Subtarget.getTargetTriple().isMacOSX() &&
3675 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) ||
3676 (Subtarget.isTargetELF() && !isPPC64 &&
Justin Hibbits17744c12015-01-10 07:50:31 +00003677 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003678 // PC-relative references to external symbols should go through $stub,
3679 // unless we're building with the leopard linker or later, which
3680 // automatically synthesizes these stubs.
Hal Finkel3ee2af72014-07-18 23:29:49 +00003681 OpFlags = PPCII::MO_PLT_OR_STUB;
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003682 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003683
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003684 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3685 OpFlags);
3686 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00003687 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003688
Hal Finkel934361a2015-01-14 01:07:51 +00003689 if (IsPatchPoint) {
3690 // We'll form an invalid direct call when lowering a patchpoint; the full
3691 // sequence for an indirect call is complicated, and many of the
3692 // instructions introduced might have side effects (and, thus, can't be
3693 // removed later). The call itself will be removed as soon as the
3694 // argument/return lowering is complete, so the fact that it has the wrong
3695 // kind of operands should not really matter.
3696 needIndirectCall = false;
3697 }
3698
Torok Edwin31e90d22010-08-04 20:47:44 +00003699 if (needIndirectCall) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003700 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
3701 // to do the call, we can't use PPCISD::CALL.
3702 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller79fef932009-12-18 13:00:15 +00003703
Hal Finkel63fb9282015-01-13 18:25:05 +00003704 if (isSVR4ABI && isPPC64 && !isELFv2ABI) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003705 // Function pointers in the 64-bit SVR4 ABI do not point to the function
3706 // entry point, but to the function descriptor (the function entry point
3707 // address is part of the function descriptor though).
3708 // The function descriptor is a three doubleword structure with the
3709 // following fields: function entry point, TOC base address and
3710 // environment pointer.
3711 // Thus for a call through a function pointer, the following actions need
3712 // to be performed:
3713 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt57d6de52012-10-23 15:51:16 +00003714 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller79fef932009-12-18 13:00:15 +00003715 // 2. Load the address of the function entry point from the function
3716 // descriptor.
3717 // 3. Load the TOC of the callee from the function descriptor into r2.
3718 // 4. Load the environment pointer from the function descriptor into
3719 // r11.
3720 // 5. Branch to the function entry point address.
3721 // 6. On return of the callee, the TOC of the caller needs to be
3722 // restored (this is done in FinishCall()).
3723 //
Hal Finkele2ab0f12015-01-15 21:17:34 +00003724 // The loads are scheduled at the beginning of the call sequence, and the
3725 // register copies are flagged together to ensure that no other
Tilmann Scheller79fef932009-12-18 13:00:15 +00003726 // operations can be scheduled in between. E.g. without flagging the
Hal Finkele2ab0f12015-01-15 21:17:34 +00003727 // copies together, a TOC access in the caller could be scheduled between
3728 // the assignment of the callee TOC and the branch to the callee, which
Tilmann Scheller79fef932009-12-18 13:00:15 +00003729 // results in the TOC access going through the TOC of the callee instead
3730 // of going through the TOC of the caller, which leads to incorrect code.
3731
3732 // Load the address of the function entry point from the function
3733 // descriptor.
Hal Finkele2ab0f12015-01-15 21:17:34 +00003734 SDValue LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-1);
3735 if (LDChain.getValueType() == MVT::Glue)
3736 LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-2);
3737
3738 bool LoadsInv = Subtarget.hasInvariantFunctionDescriptors();
3739
3740 MachinePointerInfo MPI(CS ? CS->getCalledValue() : nullptr);
3741 SDValue LoadFuncPtr = DAG.getLoad(MVT::i64, dl, LDChain, Callee, MPI,
3742 false, false, LoadsInv, 8);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003743
3744 // Load environment pointer into r11.
Tilmann Scheller79fef932009-12-18 13:00:15 +00003745 SDValue PtrOff = DAG.getIntPtrConstant(16);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003746 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
Hal Finkele2ab0f12015-01-15 21:17:34 +00003747 SDValue LoadEnvPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddPtr,
3748 MPI.getWithOffset(16), false, false,
3749 LoadsInv, 8);
3750
3751 SDValue TOCOff = DAG.getIntPtrConstant(8);
3752 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff);
3753 SDValue TOCPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddTOC,
3754 MPI.getWithOffset(8), false, false,
3755 LoadsInv, 8);
3756
Hal Finkele6698d52015-02-01 15:03:28 +00003757 setUsesTOCBasePtr(DAG);
Hal Finkele2ab0f12015-01-15 21:17:34 +00003758 SDValue TOCVal = DAG.getCopyToReg(Chain, dl, PPC::X2, TOCPtr,
3759 InFlag);
3760 Chain = TOCVal.getValue(0);
3761 InFlag = TOCVal.getValue(1);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003762
3763 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3764 InFlag);
Hal Finkele2ab0f12015-01-15 21:17:34 +00003765
Tilmann Scheller79fef932009-12-18 13:00:15 +00003766 Chain = EnvVal.getValue(0);
3767 InFlag = EnvVal.getValue(1);
3768
Tilmann Scheller79fef932009-12-18 13:00:15 +00003769 MTCTROps[0] = Chain;
3770 MTCTROps[1] = LoadFuncPtr;
3771 MTCTROps[2] = InFlag;
3772 }
3773
Hal Finkel63fb9282015-01-13 18:25:05 +00003774 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys,
3775 makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
3776 InFlag = Chain.getValue(1);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003777
3778 NodeTys.clear();
Owen Anderson9f944592009-08-11 20:47:22 +00003779 NodeTys.push_back(MVT::Other);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003780 NodeTys.push_back(MVT::Glue);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003781 Ops.push_back(Chain);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003782 CallOpc = PPCISD::BCTRL;
Craig Topper062a2ba2014-04-25 05:30:21 +00003783 Callee.setNode(nullptr);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003784 // Add use of X11 (holding environment pointer)
Hal Finkel63fb9282015-01-13 18:25:05 +00003785 if (isSVR4ABI && isPPC64 && !isELFv2ABI)
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003786 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003787 // Add CTR register as callee so a bctr can be emitted later.
3788 if (isTailCall)
Roman Divackya4a59ae2011-06-03 15:47:49 +00003789 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003790 }
3791
3792 // If this is a direct call, pass the chain and the callee.
3793 if (Callee.getNode()) {
3794 Ops.push_back(Chain);
3795 Ops.push_back(Callee);
3796 }
3797 // If this is a tail call add stack pointer delta.
3798 if (isTailCall)
Owen Anderson9f944592009-08-11 20:47:22 +00003799 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003800
3801 // Add argument registers to the end of the list so that they are known live
3802 // into the call.
3803 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3804 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3805 RegsToPass[i].second.getValueType()));
3806
Hal Finkelaf519932015-01-19 07:20:27 +00003807 // All calls, in both the ELF V1 and V2 ABIs, need the TOC register live
3808 // into the call.
Hal Finkele6698d52015-02-01 15:03:28 +00003809 if (isSVR4ABI && isPPC64 && !IsPatchPoint) {
3810 setUsesTOCBasePtr(DAG);
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003811 Ops.push_back(DAG.getRegister(PPC::X2, PtrVT));
Hal Finkele6698d52015-02-01 15:03:28 +00003812 }
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003813
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003814 return CallOpc;
3815}
3816
Roman Divacky76293062012-09-18 16:47:58 +00003817static
3818bool isLocalCall(const SDValue &Callee)
3819{
3820 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Roman Divacky09adf3d2012-09-18 18:27:49 +00003821 return !G->getGlobal()->isDeclaration() &&
3822 !G->getGlobal()->isWeakForLinker();
Roman Divacky76293062012-09-18 16:47:58 +00003823 return false;
3824}
3825
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003826SDValue
3827PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003828 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003829 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003830 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003831 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003832
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003833 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00003834 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
3835 *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003836 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003837
3838 // Copy all of the result registers out of their specified physreg.
3839 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3840 CCValAssign &VA = RVLocs[i];
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003841 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00003842
3843 SDValue Val = DAG.getCopyFromReg(Chain, dl,
3844 VA.getLocReg(), VA.getLocVT(), InFlag);
3845 Chain = Val.getValue(1);
3846 InFlag = Val.getValue(2);
3847
3848 switch (VA.getLocInfo()) {
3849 default: llvm_unreachable("Unknown loc info!");
3850 case CCValAssign::Full: break;
3851 case CCValAssign::AExt:
3852 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3853 break;
3854 case CCValAssign::ZExt:
3855 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3856 DAG.getValueType(VA.getValVT()));
3857 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3858 break;
3859 case CCValAssign::SExt:
3860 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3861 DAG.getValueType(VA.getValVT()));
3862 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3863 break;
3864 }
3865
3866 InVals.push_back(Val);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003867 }
3868
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003869 return Chain;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003870}
3871
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003872SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00003873PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Hal Finkel934361a2015-01-14 01:07:51 +00003874 bool isTailCall, bool isVarArg, bool IsPatchPoint,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003875 SelectionDAG &DAG,
3876 SmallVector<std::pair<unsigned, SDValue>, 8>
3877 &RegsToPass,
3878 SDValue InFlag, SDValue Chain,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003879 SDValue CallSeqStart, SDValue &Callee,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003880 int SPDiff, unsigned NumBytes,
3881 const SmallVectorImpl<ISD::InputArg> &Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003882 SmallVectorImpl<SDValue> &InVals,
3883 ImmutableCallSite *CS) const {
Ulrich Weigand8658f172014-07-20 23:43:15 +00003884
3885 bool isELFv2ABI = Subtarget.isELFv2ABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003886 std::vector<EVT> NodeTys;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003887 SmallVector<SDValue, 8> Ops;
Hal Finkele2ab0f12015-01-15 21:17:34 +00003888 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, CallSeqStart, dl,
3889 SPDiff, isTailCall, IsPatchPoint, RegsToPass,
3890 Ops, NodeTys, CS, Subtarget);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003891
Hal Finkel5ab37802012-08-28 02:10:27 +00003892 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003893 if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64())
Hal Finkel5ab37802012-08-28 02:10:27 +00003894 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3895
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003896 // When performing tail call optimization the callee pops its arguments off
3897 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky8da87162013-02-21 20:05:00 +00003898 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003899 int BytesCalleePops =
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003900 (CallConv == CallingConv::Fast &&
3901 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003902
Roman Divackyef21be22012-03-06 16:41:49 +00003903 // Add a register mask operand representing the call-preserved registers.
Eric Christophercccae792015-01-30 22:02:31 +00003904 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
Roman Divackyef21be22012-03-06 16:41:49 +00003905 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3906 assert(Mask && "Missing call preserved mask for calling convention");
3907 Ops.push_back(DAG.getRegisterMask(Mask));
3908
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003909 if (InFlag.getNode())
3910 Ops.push_back(InFlag);
3911
3912 // Emit tail call.
3913 if (isTailCall) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003914 assert(((Callee.getOpcode() == ISD::Register &&
3915 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3916 Callee.getOpcode() == ISD::TargetExternalSymbol ||
3917 Callee.getOpcode() == ISD::TargetGlobalAddress ||
3918 isa<ConstantSDNode>(Callee)) &&
3919 "Expecting an global address, external symbol, absolute value or register");
3920
Craig Topper48d114b2014-04-26 18:35:24 +00003921 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003922 }
3923
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003924 // Add a NOP immediately after the branch instruction when using the 64-bit
3925 // SVR4 ABI. At link time, if caller and callee are in a different module and
3926 // thus have a different TOC, the call will be replaced with a call to a stub
3927 // function which saves the current TOC, loads the TOC of the callee and
3928 // branches to the callee. The NOP will be replaced with a load instruction
3929 // which restores the TOC of the caller from the TOC save slot of the current
3930 // stack frame. If caller and callee belong to the same module (and have the
3931 // same TOC), the NOP will remain unchanged.
Hal Finkel51861b42012-03-31 14:45:15 +00003932
Hal Finkel934361a2015-01-14 01:07:51 +00003933 if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64() &&
3934 !IsPatchPoint) {
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003935 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003936 // This is a call through a function pointer.
3937 // Restore the caller TOC from the save area into R2.
3938 // See PrepareCall() for more information about calls through function
3939 // pointers in the 64-bit SVR4 ABI.
3940 // We are using a target-specific load with r2 hard coded, because the
3941 // result of a target-independent load would never go directly into r2,
3942 // since r2 is a reserved register (which prevents the register allocator
3943 // from allocating it), resulting in an additional register being
3944 // allocated and an unnecessary move instruction being generated.
Hal Finkelfc096c92014-12-23 22:29:40 +00003945 CallOpc = PPCISD::BCTRL_LOAD_TOC;
3946
3947 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3948 SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT);
3949 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI);
3950 SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset);
3951 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff);
3952
3953 // The address needs to go after the chain input but before the flag (or
3954 // any other variadic arguments).
3955 Ops.insert(std::next(Ops.begin()), AddTOC);
Bill Schmidtcea15962013-09-26 17:09:28 +00003956 } else if ((CallOpc == PPCISD::CALL) &&
3957 (!isLocalCall(Callee) ||
Bill Schmidt685aa8b2015-02-03 16:16:01 +00003958 DAG.getTarget().getRelocationModel() == Reloc::PIC_))
Roman Divacky76293062012-09-18 16:47:58 +00003959 // Otherwise insert NOP for non-local calls.
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003960 CallOpc = PPCISD::CALL_NOP;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003961 }
3962
Craig Topper48d114b2014-04-26 18:35:24 +00003963 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
Hal Finkel51861b42012-03-31 14:45:15 +00003964 InFlag = Chain.getValue(1);
3965
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003966 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3967 DAG.getIntPtrConstant(BytesCalleePops, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003968 InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003969 if (!Ins.empty())
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003970 InFlag = Chain.getValue(1);
3971
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003972 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3973 Ins, dl, DAG, InVals);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003974}
3975
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003976SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00003977PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003978 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00003979 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +00003980 SDLoc &dl = CLI.DL;
3981 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
3982 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
3983 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00003984 SDValue Chain = CLI.Chain;
3985 SDValue Callee = CLI.Callee;
3986 bool &isTailCall = CLI.IsTailCall;
3987 CallingConv::ID CallConv = CLI.CallConv;
3988 bool isVarArg = CLI.IsVarArg;
Hal Finkel934361a2015-01-14 01:07:51 +00003989 bool IsPatchPoint = CLI.IsPatchPoint;
Hal Finkele2ab0f12015-01-15 21:17:34 +00003990 ImmutableCallSite *CS = CLI.CS;
Justin Holewinskiaa583972012-05-25 16:35:28 +00003991
Evan Cheng67a69dd2010-01-27 00:07:07 +00003992 if (isTailCall)
3993 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
3994 Ins, DAG);
3995
Hal Finkele2ab0f12015-01-15 21:17:34 +00003996 if (!isTailCall && CS && CS->isMustTailCall())
Reid Kleckner5772b772014-04-24 20:14:34 +00003997 report_fatal_error("failed to perform tail call elimination on a call "
3998 "site marked musttail");
3999
Eric Christopherb1aaebe2014-06-12 22:38:18 +00004000 if (Subtarget.isSVR4ABI()) {
4001 if (Subtarget.isPPC64())
Bill Schmidt57d6de52012-10-23 15:51:16 +00004002 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004003 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004004 dl, DAG, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004005 else
4006 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004007 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004008 dl, DAG, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004009 }
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004010
Bill Schmidt57d6de52012-10-23 15:51:16 +00004011 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004012 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004013 dl, DAG, InVals, CS);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004014}
4015
4016SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004017PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
4018 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004019 bool isTailCall, bool IsPatchPoint,
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004020 const SmallVectorImpl<ISD::OutputArg> &Outs,
4021 const SmallVectorImpl<SDValue> &OutVals,
4022 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004023 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004024 SmallVectorImpl<SDValue> &InVals,
4025 ImmutableCallSite *CS) const {
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004026 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00004027 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004028
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004029 assert((CallConv == CallingConv::C ||
4030 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004031
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004032 unsigned PtrByteSize = 4;
4033
4034 MachineFunction &MF = DAG.getMachineFunction();
4035
4036 // Mark this function as potentially containing a function that contains a
4037 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4038 // and restoring the callers stack pointer in this functions epilog. This is
4039 // done because by tail calling the called function might overwrite the value
4040 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004041 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4042 CallConv == CallingConv::Fast)
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004043 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peck527da1b2010-11-23 03:31:01 +00004044
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004045 // Count how many bytes are to be pushed on the stack, including the linkage
4046 // area, parameter list area and the part of the local variable space which
4047 // contains copies of aggregates which are passed by value.
4048
4049 // Assign locations to all of the outgoing arguments.
4050 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00004051 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
4052 *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004053
4054 // Reserve space for the linkage area on the stack.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004055 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false, false),
4056 PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004057
4058 if (isVarArg) {
4059 // Handle fixed and variable vector arguments differently.
4060 // Fixed vector arguments go into registers as long as registers are
4061 // available. Variable vector arguments always go into memory.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004062 unsigned NumArgs = Outs.size();
Wesley Peck527da1b2010-11-23 03:31:01 +00004063
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004064 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00004065 MVT ArgVT = Outs[i].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004066 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004067 bool Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00004068
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004069 if (Outs[i].IsFixed) {
Bill Schmidtef17c142013-02-06 17:33:58 +00004070 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
4071 CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004072 } else {
Bill Schmidtef17c142013-02-06 17:33:58 +00004073 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
4074 ArgFlags, CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004075 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004076
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004077 if (Result) {
Torok Edwinfb8d6d52009-07-08 20:53:28 +00004078#ifndef NDEBUG
Chris Lattner13626022009-08-23 06:03:38 +00004079 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sandsf5dda012010-11-03 11:35:31 +00004080 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwinfb8d6d52009-07-08 20:53:28 +00004081#endif
Craig Toppere73658d2014-04-28 04:05:08 +00004082 llvm_unreachable(nullptr);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004083 }
4084 }
4085 } else {
4086 // All arguments are treated the same.
Bill Schmidtef17c142013-02-06 17:33:58 +00004087 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004088 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004089
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004090 // Assign locations to all of the outgoing aggregate by value arguments.
4091 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00004092 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Eric Christopherb5217502014-08-06 18:45:26 +00004093 ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004094
4095 // Reserve stack space for the allocations in CCInfo.
4096 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
4097
Bill Schmidtef17c142013-02-06 17:33:58 +00004098 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004099
4100 // Size of the linkage area, parameter list area and the part of the local
4101 // space variable where copies of aggregates which are passed by value are
4102 // stored.
4103 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004104
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004105 // Calculate by how many bytes the stack has to be adjusted in case of tail
4106 // call optimization.
4107 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4108
4109 // Adjust the stack pointer for the new arguments...
4110 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004111 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4112 dl);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004113 SDValue CallSeqStart = Chain;
4114
4115 // Load the return address and frame pointer so it can be moved somewhere else
4116 // later.
4117 SDValue LROp, FPOp;
4118 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
4119 dl);
4120
4121 // Set up a copy of the stack pointer for use loading and storing any
4122 // arguments that may not fit in the registers available for argument
4123 // passing.
Owen Anderson9f944592009-08-11 20:47:22 +00004124 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peck527da1b2010-11-23 03:31:01 +00004125
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004126 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4127 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4128 SmallVector<SDValue, 8> MemOpChains;
4129
Roman Divacky71038e72011-08-30 17:04:16 +00004130 bool seenFloatArg = false;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004131 // Walk the register/memloc assignments, inserting copies/loads.
4132 for (unsigned i = 0, j = 0, e = ArgLocs.size();
4133 i != e;
4134 ++i) {
4135 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004136 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004137 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peck527da1b2010-11-23 03:31:01 +00004138
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004139 if (Flags.isByVal()) {
4140 // Argument is an aggregate which is passed by value, thus we need to
4141 // create a copy of it in the local variable space of the current stack
4142 // frame (which is the stack frame of the caller) and pass the address of
4143 // this copy to the callee.
4144 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
4145 CCValAssign &ByValVA = ByValArgLocs[j++];
4146 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peck527da1b2010-11-23 03:31:01 +00004147
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004148 // Memory reserved in the local variable space of the callers stack frame.
4149 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004150
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004151 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4152 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Wesley Peck527da1b2010-11-23 03:31:01 +00004153
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004154 // Create a copy of the argument in the local area of the current
4155 // stack frame.
4156 SDValue MemcpyCall =
4157 CreateCopyOfByValArgument(Arg, PtrOff,
4158 CallSeqStart.getNode()->getOperand(0),
4159 Flags, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00004160
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004161 // This must go outside the CALLSEQ_START..END.
4162 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004163 CallSeqStart.getNode()->getOperand(1),
4164 SDLoc(MemcpyCall));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004165 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4166 NewCallSeqStart.getNode());
4167 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peck527da1b2010-11-23 03:31:01 +00004168
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004169 // Pass the address of the aggregate copy on the stack either in a
4170 // physical register or in the parameter list area of the current stack
4171 // frame to the callee.
4172 Arg = PtrOff;
4173 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004174
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004175 if (VA.isRegLoc()) {
Hal Finkel2a9d3182014-03-06 00:23:33 +00004176 if (Arg.getValueType() == MVT::i1)
4177 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg);
4178
Roman Divacky71038e72011-08-30 17:04:16 +00004179 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004180 // Put argument in a physical register.
4181 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
4182 } else {
4183 // Put argument in the parameter list area of the current stack frame.
4184 assert(VA.isMemLoc());
4185 unsigned LocMemOffset = VA.getLocMemOffset();
4186
4187 if (!isTailCall) {
4188 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4189 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
4190
4191 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner676c61d2010-09-21 18:41:36 +00004192 MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00004193 false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004194 } else {
4195 // Calculate and remember argument location.
4196 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
4197 TailCallArguments);
4198 }
4199 }
4200 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004201
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004202 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004203 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Wesley Peck527da1b2010-11-23 03:31:01 +00004204
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004205 // Build a sequence of copy-to-reg nodes chained together with token chain
4206 // and flag operands which copy the outgoing args into the appropriate regs.
4207 SDValue InFlag;
4208 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4209 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4210 RegsToPass[i].second, InFlag);
4211 InFlag = Chain.getValue(1);
4212 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004213
Hal Finkel5ab37802012-08-28 02:10:27 +00004214 // Set CR bit 6 to true if this is a vararg call with floating args passed in
4215 // registers.
4216 if (isVarArg) {
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004217 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
4218 SDValue Ops[] = { Chain, InFlag };
4219
Hal Finkel5ab37802012-08-28 02:10:27 +00004220 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00004221 dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1));
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004222
Hal Finkel5ab37802012-08-28 02:10:27 +00004223 InFlag = Chain.getValue(1);
4224 }
4225
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004226 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004227 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
4228 false, TailCallArguments);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004229
Hal Finkel934361a2015-01-14 01:07:51 +00004230 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004231 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4232 NumBytes, Ins, InVals, CS);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004233}
4234
Bill Schmidt57d6de52012-10-23 15:51:16 +00004235// Copy an argument into memory, being careful to do this outside the
4236// call sequence for the call to which the argument belongs.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004237SDValue
Bill Schmidt57d6de52012-10-23 15:51:16 +00004238PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
4239 SDValue CallSeqStart,
4240 ISD::ArgFlagsTy Flags,
4241 SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004242 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004243 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
4244 CallSeqStart.getNode()->getOperand(0),
4245 Flags, DAG, dl);
4246 // The MEMCPY must go outside the CALLSEQ_START..END.
4247 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004248 CallSeqStart.getNode()->getOperand(1),
4249 SDLoc(MemcpyCall));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004250 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4251 NewCallSeqStart.getNode());
4252 return NewCallSeqStart;
4253}
4254
4255SDValue
4256PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004257 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004258 bool isTailCall, bool IsPatchPoint,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004259 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004260 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004261 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004262 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004263 SmallVectorImpl<SDValue> &InVals,
4264 ImmutableCallSite *CS) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004265
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004266 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004267 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004268 unsigned NumOps = Outs.size();
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004269
Bill Schmidt57d6de52012-10-23 15:51:16 +00004270 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
4271 unsigned PtrByteSize = 8;
4272
4273 MachineFunction &MF = DAG.getMachineFunction();
4274
4275 // Mark this function as potentially containing a function that contains a
4276 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4277 // and restoring the callers stack pointer in this functions epilog. This is
4278 // done because by tail calling the called function might overwrite the value
4279 // in this function's (MF) stack pointer stack slot 0(SP).
4280 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4281 CallConv == CallingConv::Fast)
4282 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4283
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004284 assert(!(CallConv == CallingConv::Fast && isVarArg) &&
4285 "fastcc not supported on varargs functions");
4286
Bill Schmidt57d6de52012-10-23 15:51:16 +00004287 // Count how many bytes are to be pushed on the stack, including the linkage
Ulrich Weigand8658f172014-07-20 23:43:15 +00004288 // area, and parameter passing area. On ELFv1, the linkage area is 48 bytes
4289 // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage
4290 // area is 32 bytes reserved space for [SP][CR][LR][TOC].
4291 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false,
4292 isELFv2ABI);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004293 unsigned NumBytes = LinkageSize;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004294 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
4295
4296 static const MCPhysReg GPR[] = {
4297 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4298 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4299 };
4300 static const MCPhysReg *FPR = GetFPR();
4301
4302 static const MCPhysReg VR[] = {
4303 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4304 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4305 };
4306 static const MCPhysReg VSRH[] = {
4307 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
4308 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
4309 };
4310
4311 const unsigned NumGPRs = array_lengthof(GPR);
4312 const unsigned NumFPRs = 13;
4313 const unsigned NumVRs = array_lengthof(VR);
4314
4315 // When using the fast calling convention, we don't provide backing for
4316 // arguments that will be in registers.
4317 unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004318
4319 // Add up all the space actually used.
4320 for (unsigned i = 0; i != NumOps; ++i) {
4321 ISD::ArgFlagsTy Flags = Outs[i].Flags;
4322 EVT ArgVT = Outs[i].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004323 EVT OrigVT = Outs[i].ArgVT;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004324
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004325 if (CallConv == CallingConv::Fast) {
4326 if (Flags.isByVal())
4327 NumGPRsUsed += (Flags.getByValSize()+7)/8;
4328 else
4329 switch (ArgVT.getSimpleVT().SimpleTy) {
4330 default: llvm_unreachable("Unexpected ValueType for argument!");
4331 case MVT::i1:
4332 case MVT::i32:
4333 case MVT::i64:
4334 if (++NumGPRsUsed <= NumGPRs)
4335 continue;
4336 break;
4337 case MVT::f32:
4338 case MVT::f64:
4339 if (++NumFPRsUsed <= NumFPRs)
4340 continue;
4341 break;
4342 case MVT::v4f32:
4343 case MVT::v4i32:
4344 case MVT::v8i16:
4345 case MVT::v16i8:
4346 case MVT::v2f64:
4347 case MVT::v2i64:
4348 if (++NumVRsUsed <= NumVRs)
4349 continue;
4350 break;
4351 }
4352 }
4353
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004354 /* Respect alignment of argument on the stack. */
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004355 unsigned Align =
4356 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004357 NumBytes = ((NumBytes + Align - 1) / Align) * Align;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004358
4359 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004360 if (Flags.isInConsecutiveRegsLast())
4361 NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004362 }
4363
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004364 unsigned NumBytesActuallyUsed = NumBytes;
4365
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004366 // The prolog code of the callee may store up to 8 GPR argument registers to
4367 // the stack, allowing va_start to index over them in memory if its varargs.
4368 // Because we cannot tell if this is needed on the caller side, we have to
4369 // conservatively assume that it is needed. As such, make sure we have at
4370 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004371 // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004372 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004373
4374 // Tail call needs the stack to be aligned.
4375 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4376 CallConv == CallingConv::Fast)
Eric Christophercccae792015-01-30 22:02:31 +00004377 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004378
4379 // Calculate by how many bytes the stack has to be adjusted in case of tail
4380 // call optimization.
4381 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4382
4383 // To protect arguments on the stack from being clobbered in a tail call,
4384 // force all the loads to happen before doing any other lowering.
4385 if (isTailCall)
4386 Chain = DAG.getStackArgumentTokenFactor(Chain);
4387
4388 // Adjust the stack pointer for the new arguments...
4389 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004390 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4391 dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004392 SDValue CallSeqStart = Chain;
4393
4394 // Load the return address and frame pointer so it can be move somewhere else
4395 // later.
4396 SDValue LROp, FPOp;
4397 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4398 dl);
4399
4400 // Set up a copy of the stack pointer for use loading and storing any
4401 // arguments that may not fit in the registers available for argument
4402 // passing.
4403 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4404
4405 // Figure out which arguments are going to go in registers, and which in
4406 // memory. Also, if this is a vararg function, floating point operations
4407 // must be stored to our stack, and loaded into integer regs as well, if
4408 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004409 unsigned ArgOffset = LinkageSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004410
4411 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4412 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4413
4414 SmallVector<SDValue, 8> MemOpChains;
4415 for (unsigned i = 0; i != NumOps; ++i) {
4416 SDValue Arg = OutVals[i];
4417 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004418 EVT ArgVT = Outs[i].VT;
4419 EVT OrigVT = Outs[i].ArgVT;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004420
4421 // PtrOff will be used to store the current argument to the stack if a
4422 // register cannot be found for it.
4423 SDValue PtrOff;
4424
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004425 // We re-align the argument offset for each argument, except when using the
4426 // fast calling convention, when we need to make sure we do that only when
4427 // we'll actually use a stack slot.
4428 auto ComputePtrOff = [&]() {
4429 /* Respect alignment of argument on the stack. */
4430 unsigned Align =
4431 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4432 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004433
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004434 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
4435
4436 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4437 };
4438
4439 if (CallConv != CallingConv::Fast) {
4440 ComputePtrOff();
4441
4442 /* Compute GPR index associated with argument offset. */
4443 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
4444 GPR_idx = std::min(GPR_idx, NumGPRs);
4445 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004446
4447 // Promote integers to 64-bit values.
Hal Finkel940ab932014-02-28 00:27:01 +00004448 if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004449 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4450 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4451 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
4452 }
4453
4454 // FIXME memcpy is used way more than necessary. Correctness first.
4455 // Note: "by value" is code for passing a structure by value, not
4456 // basic types.
4457 if (Flags.isByVal()) {
4458 // Note: Size includes alignment padding, so
4459 // struct x { short a; char b; }
4460 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
4461 // These are the proper values we need for right-justifying the
4462 // aggregate in a parameter register.
4463 unsigned Size = Flags.getByValSize();
Bill Schmidt9953cf22012-10-31 01:15:05 +00004464
4465 // An empty aggregate parameter takes up no storage and no
4466 // registers.
4467 if (Size == 0)
4468 continue;
4469
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004470 if (CallConv == CallingConv::Fast)
4471 ComputePtrOff();
4472
Bill Schmidt57d6de52012-10-23 15:51:16 +00004473 // All aggregates smaller than 8 bytes must be passed right-justified.
4474 if (Size==1 || Size==2 || Size==4) {
4475 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
4476 if (GPR_idx != NumGPRs) {
4477 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
4478 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00004479 false, false, false, 0);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004480 MemOpChains.push_back(Load.getValue(1));
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004481 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004482
4483 ArgOffset += PtrByteSize;
4484 continue;
4485 }
4486 }
4487
4488 if (GPR_idx == NumGPRs && Size < 8) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004489 SDValue AddPtr = PtrOff;
4490 if (!isLittleEndian) {
4491 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4492 PtrOff.getValueType());
4493 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4494 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004495 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4496 CallSeqStart,
4497 Flags, DAG, dl);
4498 ArgOffset += PtrByteSize;
4499 continue;
4500 }
4501 // Copy entire object into memory. There are cases where gcc-generated
4502 // code assumes it is there, even if it could be put entirely into
4503 // registers. (This is not what the doc says.)
4504
4505 // FIXME: The above statement is likely due to a misunderstanding of the
4506 // documents. All arguments must be copied into the parameter area BY
4507 // THE CALLEE in the event that the callee takes the address of any
4508 // formal argument. That has not yet been implemented. However, it is
4509 // reasonable to use the stack area as a staging area for the register
4510 // load.
4511
4512 // Skip this for small aggregates, as we will use the same slot for a
4513 // right-justified copy, below.
4514 if (Size >= 8)
4515 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4516 CallSeqStart,
4517 Flags, DAG, dl);
4518
4519 // When a register is available, pass a small aggregate right-justified.
4520 if (Size < 8 && GPR_idx != NumGPRs) {
4521 // The easiest way to get this right-justified in a register
4522 // is to copy the structure into the rightmost portion of a
4523 // local variable slot, then load the whole slot into the
4524 // register.
4525 // FIXME: The memcpy seems to produce pretty awful code for
4526 // small aggregates, particularly for packed ones.
Matt Arsenault758659232013-05-18 00:21:46 +00004527 // FIXME: It would be preferable to use the slot in the
Bill Schmidt57d6de52012-10-23 15:51:16 +00004528 // parameter save area instead of a new local variable.
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004529 SDValue AddPtr = PtrOff;
4530 if (!isLittleEndian) {
4531 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
4532 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4533 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004534 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4535 CallSeqStart,
4536 Flags, DAG, dl);
4537
4538 // Load the slot into the register.
4539 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
4540 MachinePointerInfo(),
4541 false, false, false, 0);
4542 MemOpChains.push_back(Load.getValue(1));
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004543 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004544
4545 // Done with this argument.
4546 ArgOffset += PtrByteSize;
4547 continue;
4548 }
4549
4550 // For aggregates larger than PtrByteSize, copy the pieces of the
4551 // object that fit into registers from the parameter save area.
4552 for (unsigned j=0; j<Size; j+=PtrByteSize) {
4553 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
4554 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
4555 if (GPR_idx != NumGPRs) {
4556 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4557 MachinePointerInfo(),
4558 false, false, false, 0);
4559 MemOpChains.push_back(Load.getValue(1));
4560 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4561 ArgOffset += PtrByteSize;
4562 } else {
4563 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
4564 break;
4565 }
4566 }
4567 continue;
4568 }
4569
Craig Topper56710102013-08-15 02:33:50 +00004570 switch (Arg.getSimpleValueType().SimpleTy) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004571 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel940ab932014-02-28 00:27:01 +00004572 case MVT::i1:
Bill Schmidt57d6de52012-10-23 15:51:16 +00004573 case MVT::i32:
4574 case MVT::i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004575 // These can be scalar arguments or elements of an integer array type
4576 // passed directly. Clang may use those instead of "byval" aggregate
4577 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004578 if (GPR_idx != NumGPRs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004579 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004580 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004581 if (CallConv == CallingConv::Fast)
4582 ComputePtrOff();
4583
Bill Schmidt57d6de52012-10-23 15:51:16 +00004584 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4585 true, isTailCall, false, MemOpChains,
4586 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004587 if (CallConv == CallingConv::Fast)
4588 ArgOffset += PtrByteSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004589 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004590 if (CallConv != CallingConv::Fast)
4591 ArgOffset += PtrByteSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004592 break;
4593 case MVT::f32:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004594 case MVT::f64: {
4595 // These can be scalar arguments or elements of a float array type
4596 // passed directly. The latter are used to implement ELFv2 homogenous
4597 // float aggregates.
4598
4599 // Named arguments go into FPRs first, and once they overflow, the
4600 // remaining arguments go into GPRs and then the parameter save area.
4601 // Unnamed arguments for vararg functions always go to GPRs and
4602 // then the parameter save area. For now, put all arguments to vararg
4603 // routines always in both locations (FPR *and* GPR or stack slot).
4604 bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004605 bool NeededLoad = false;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004606
4607 // First load the argument into the next available FPR.
4608 if (FPR_idx != NumFPRs)
Bill Schmidt57d6de52012-10-23 15:51:16 +00004609 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4610
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004611 // Next, load the argument into GPR or stack slot if needed.
4612 if (!NeedGPROrStack)
4613 ;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004614 else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) {
Hal Finkel8ea446b2015-01-18 14:31:10 +00004615 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
4616 // once we support fp <-> gpr moves.
4617
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004618 // In the non-vararg case, this can only ever happen in the
4619 // presence of f32 array types, since otherwise we never run
4620 // out of FPRs before running out of GPRs.
4621 SDValue ArgVal;
Bill Schmidtbd4ac262012-10-29 21:18:16 +00004622
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004623 // Double values are always passed in a single GPR.
4624 if (Arg.getValueType() != MVT::f32) {
4625 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004626
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004627 // Non-array float values are extended and passed in a GPR.
4628 } else if (!Flags.isInConsecutiveRegs()) {
4629 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4630 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4631
4632 // If we have an array of floats, we collect every odd element
4633 // together with its predecessor into one GPR.
4634 } else if (ArgOffset % PtrByteSize != 0) {
4635 SDValue Lo, Hi;
4636 Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]);
4637 Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4638 if (!isLittleEndian)
4639 std::swap(Lo, Hi);
4640 ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4641
4642 // The final element, if even, goes into the first half of a GPR.
4643 } else if (Flags.isInConsecutiveRegsLast()) {
4644 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4645 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4646 if (!isLittleEndian)
4647 ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal,
4648 DAG.getConstant(32, MVT::i32));
4649
4650 // Non-final even elements are skipped; they will be handled
4651 // together the with subsequent argument on the next go-around.
4652 } else
4653 ArgVal = SDValue();
4654
4655 if (ArgVal.getNode())
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004656 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004657 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004658 if (CallConv == CallingConv::Fast)
4659 ComputePtrOff();
4660
Bill Schmidt57d6de52012-10-23 15:51:16 +00004661 // Single-precision floating-point values are mapped to the
4662 // second (rightmost) word of the stack doubleword.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004663 if (Arg.getValueType() == MVT::f32 &&
4664 !isLittleEndian && !Flags.isInConsecutiveRegs()) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004665 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4666 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4667 }
4668
4669 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4670 true, isTailCall, false, MemOpChains,
4671 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004672
4673 NeededLoad = true;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004674 }
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004675 // When passing an array of floats, the array occupies consecutive
4676 // space in the argument area; only round up to the next doubleword
4677 // at the end of the array. Otherwise, each float takes 8 bytes.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004678 if (CallConv != CallingConv::Fast || NeededLoad) {
4679 ArgOffset += (Arg.getValueType() == MVT::f32 &&
4680 Flags.isInConsecutiveRegs()) ? 4 : 8;
4681 if (Flags.isInConsecutiveRegsLast())
4682 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
4683 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004684 break;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004685 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004686 case MVT::v4f32:
4687 case MVT::v4i32:
4688 case MVT::v8i16:
4689 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00004690 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00004691 case MVT::v2i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004692 // These can be scalar arguments or elements of a vector array type
4693 // passed directly. The latter are used to implement ELFv2 homogenous
4694 // vector aggregates.
4695
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00004696 // For a varargs call, named arguments go into VRs or on the stack as
4697 // usual; unnamed arguments always go to the stack or the corresponding
4698 // GPRs when within range. For now, we always put the value in both
4699 // locations (or even all three).
Bill Schmidt57d6de52012-10-23 15:51:16 +00004700 if (isVarArg) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004701 // We could elide this store in the case where the object fits
4702 // entirely in R registers. Maybe later.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004703 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4704 MachinePointerInfo(), false, false, 0);
4705 MemOpChains.push_back(Store);
4706 if (VR_idx != NumVRs) {
4707 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
4708 MachinePointerInfo(),
4709 false, false, false, 0);
4710 MemOpChains.push_back(Load.getValue(1));
Hal Finkel7811c612014-03-28 19:58:11 +00004711
4712 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4713 Arg.getSimpleValueType() == MVT::v2i64) ?
4714 VSRH[VR_idx] : VR[VR_idx];
4715 ++VR_idx;
4716
4717 RegsToPass.push_back(std::make_pair(VReg, Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004718 }
4719 ArgOffset += 16;
4720 for (unsigned i=0; i<16; i+=PtrByteSize) {
4721 if (GPR_idx == NumGPRs)
4722 break;
4723 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4724 DAG.getConstant(i, PtrVT));
4725 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4726 false, false, false, 0);
4727 MemOpChains.push_back(Load.getValue(1));
4728 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4729 }
4730 break;
4731 }
4732
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00004733 // Non-varargs Altivec params go into VRs or on the stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004734 if (VR_idx != NumVRs) {
Hal Finkel7811c612014-03-28 19:58:11 +00004735 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4736 Arg.getSimpleValueType() == MVT::v2i64) ?
4737 VSRH[VR_idx] : VR[VR_idx];
4738 ++VR_idx;
4739
4740 RegsToPass.push_back(std::make_pair(VReg, Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004741 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004742 if (CallConv == CallingConv::Fast)
4743 ComputePtrOff();
4744
Bill Schmidt57d6de52012-10-23 15:51:16 +00004745 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4746 true, isTailCall, true, MemOpChains,
4747 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004748 if (CallConv == CallingConv::Fast)
4749 ArgOffset += 16;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004750 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004751
4752 if (CallConv != CallingConv::Fast)
4753 ArgOffset += 16;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004754 break;
4755 }
4756 }
4757
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004758 assert(NumBytesActuallyUsed == ArgOffset);
Ulrich Weigandde8641b2014-07-07 19:39:44 +00004759 (void)NumBytesActuallyUsed;
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004760
Bill Schmidt57d6de52012-10-23 15:51:16 +00004761 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004762 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004763
4764 // Check if this is an indirect call (MTCTR/BCTRL).
4765 // See PrepareCall() for more information about calls through function
4766 // pointers in the 64-bit SVR4 ABI.
Hal Finkel934361a2015-01-14 01:07:51 +00004767 if (!isTailCall && !IsPatchPoint &&
Hal Finkel87deb0b2015-01-12 04:34:47 +00004768 !isFunctionGlobalAddress(Callee) &&
4769 !isa<ExternalSymbolSDNode>(Callee)) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004770 // Load r2 into a virtual register and store it to the TOC save area.
Hal Finkele6698d52015-02-01 15:03:28 +00004771 setUsesTOCBasePtr(DAG);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004772 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4773 // TOC save area offset.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004774 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI);
Ulrich Weigandad0cb912014-06-18 17:52:49 +00004775 SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004776 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Hal Finkele2ab0f12015-01-15 21:17:34 +00004777 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr,
4778 MachinePointerInfo::getStack(TOCSaveOffset),
Bill Schmidt57d6de52012-10-23 15:51:16 +00004779 false, false, 0);
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004780 // In the ELFv2 ABI, R12 must contain the address of an indirect callee.
4781 // This does not mean the MTCTR instruction must use R12; it's easier
4782 // to model this as an extra parameter, so do that.
Hal Finkel934361a2015-01-14 01:07:51 +00004783 if (isELFv2ABI && !IsPatchPoint)
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004784 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004785 }
4786
4787 // Build a sequence of copy-to-reg nodes chained together with token chain
4788 // and flag operands which copy the outgoing args into the appropriate regs.
4789 SDValue InFlag;
4790 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4791 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4792 RegsToPass[i].second, InFlag);
4793 InFlag = Chain.getValue(1);
4794 }
4795
4796 if (isTailCall)
4797 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4798 FPOp, true, TailCallArguments);
4799
Hal Finkel934361a2015-01-14 01:07:51 +00004800 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004801 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4802 NumBytes, Ins, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004803}
4804
4805SDValue
4806PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4807 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004808 bool isTailCall, bool IsPatchPoint,
Bill Schmidt57d6de52012-10-23 15:51:16 +00004809 const SmallVectorImpl<ISD::OutputArg> &Outs,
4810 const SmallVectorImpl<SDValue> &OutVals,
4811 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004812 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004813 SmallVectorImpl<SDValue> &InVals,
4814 ImmutableCallSite *CS) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004815
4816 unsigned NumOps = Outs.size();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004817
Owen Anderson53aa7a92009-08-10 22:56:29 +00004818 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00004819 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004820 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004821
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004822 MachineFunction &MF = DAG.getMachineFunction();
4823
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004824 // Mark this function as potentially containing a function that contains a
4825 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4826 // and restoring the callers stack pointer in this functions epilog. This is
4827 // done because by tail calling the called function might overwrite the value
4828 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004829 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4830 CallConv == CallingConv::Fast)
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004831 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4832
Chris Lattneraa40ec12006-05-16 22:56:08 +00004833 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerec78cad2006-06-26 22:48:35 +00004834 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerb7552a82006-05-17 00:15:40 +00004835 // prereserved space for [SP][CR][LR][3 x unused].
Ulrich Weigand8658f172014-07-20 23:43:15 +00004836 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true,
4837 false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004838 unsigned NumBytes = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004839
4840 // Add up all the space actually used.
4841 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
4842 // they all go in registers, but we must reserve stack space for them for
4843 // possible use by the caller. In varargs or 64-bit calls, parameters are
4844 // assigned stack space in order, with padding so Altivec parameters are
4845 // 16-byte aligned.
4846 unsigned nAltivecParamsAtEnd = 0;
4847 for (unsigned i = 0; i != NumOps; ++i) {
4848 ISD::ArgFlagsTy Flags = Outs[i].Flags;
4849 EVT ArgVT = Outs[i].VT;
4850 // Varargs Altivec parameters are padded to a 16 byte boundary.
4851 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
4852 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
4853 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) {
4854 if (!isVarArg && !isPPC64) {
4855 // Non-varargs Altivec parameters go after all the non-Altivec
4856 // parameters; handle those later so we know how much padding we need.
4857 nAltivecParamsAtEnd++;
4858 continue;
4859 }
4860 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
4861 NumBytes = ((NumBytes+15)/16)*16;
4862 }
4863 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
4864 }
4865
4866 // Allow for Altivec parameters at the end, if needed.
4867 if (nAltivecParamsAtEnd) {
4868 NumBytes = ((NumBytes+15)/16)*16;
4869 NumBytes += 16*nAltivecParamsAtEnd;
4870 }
4871
4872 // The prolog code of the callee may store up to 8 GPR argument registers to
4873 // the stack, allowing va_start to index over them in memory if its varargs.
4874 // Because we cannot tell if this is needed on the caller side, we have to
4875 // conservatively assume that it is needed. As such, make sure we have at
4876 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004877 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004878
4879 // Tail call needs the stack to be aligned.
4880 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4881 CallConv == CallingConv::Fast)
Eric Christophercccae792015-01-30 22:02:31 +00004882 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004883
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004884 // Calculate by how many bytes the stack has to be adjusted in case of tail
4885 // call optimization.
4886 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004887
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004888 // To protect arguments on the stack from being clobbered in a tail call,
4889 // force all the loads to happen before doing any other lowering.
4890 if (isTailCall)
4891 Chain = DAG.getStackArgumentTokenFactor(Chain);
4892
Chris Lattnerb7552a82006-05-17 00:15:40 +00004893 // Adjust the stack pointer for the new arguments...
4894 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004895 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4896 dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004897 SDValue CallSeqStart = Chain;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004898
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004899 // Load the return address and frame pointer so it can be move somewhere else
4900 // later.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004901 SDValue LROp, FPOp;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004902 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4903 dl);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004904
Chris Lattnerb7552a82006-05-17 00:15:40 +00004905 // Set up a copy of the stack pointer for use loading and storing any
4906 // arguments that may not fit in the registers available for argument
4907 // passing.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004908 SDValue StackPtr;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004909 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00004910 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004911 else
Owen Anderson9f944592009-08-11 20:47:22 +00004912 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004913
Chris Lattnerb7552a82006-05-17 00:15:40 +00004914 // Figure out which arguments are going to go in registers, and which in
4915 // memory. Also, if this is a vararg function, floating point operations
4916 // must be stored to our stack, and loaded into integer regs as well, if
4917 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004918 unsigned ArgOffset = LinkageSize;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004919 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004920
Craig Topper840beec2014-04-04 05:16:06 +00004921 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004922 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4923 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4924 };
Craig Topper840beec2014-04-04 05:16:06 +00004925 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00004926 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4927 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4928 };
Craig Topper840beec2014-04-04 05:16:06 +00004929 static const MCPhysReg *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004930
Craig Topper840beec2014-04-04 05:16:06 +00004931 static const MCPhysReg VR[] = {
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004932 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4933 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4934 };
Owen Andersone2f23a32007-09-07 04:06:50 +00004935 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004936 const unsigned NumFPRs = 13;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00004937 const unsigned NumVRs = array_lengthof(VR);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004938
Craig Topper840beec2014-04-04 05:16:06 +00004939 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004940
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004941 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004942 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4943
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004944 SmallVector<SDValue, 8> MemOpChains;
Evan Chengc2cd4732006-05-25 00:57:32 +00004945 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004946 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004947 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004948
Chris Lattnerb7552a82006-05-17 00:15:40 +00004949 // PtrOff will be used to store the current argument to the stack if a
4950 // register cannot be found for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004951 SDValue PtrOff;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004952
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004953 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004954
Dale Johannesen679073b2009-02-04 02:34:38 +00004955 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004956
4957 // On PPC64, promote integers to 64-bit values.
Owen Anderson9f944592009-08-11 20:47:22 +00004958 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sandsd97eea32008-03-21 09:14:45 +00004959 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4960 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson9f944592009-08-11 20:47:22 +00004961 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004962 }
Dale Johannesen85d41a12008-03-04 23:17:14 +00004963
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004964 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004965 // Note: "by value" is code for passing a structure by value, not
4966 // basic types.
Duncan Sandsd97eea32008-03-21 09:14:45 +00004967 if (Flags.isByVal()) {
4968 unsigned Size = Flags.getByValSize();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004969 // Very small objects are passed right-justified. Everything else is
4970 // passed left-justified.
4971 if (Size==1 || Size==2) {
4972 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004973 if (GPR_idx != NumGPRs) {
Stuart Hastings81c43062011-02-16 16:23:55 +00004974 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d178ed2010-09-21 17:04:51 +00004975 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00004976 false, false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004977 MemOpChains.push_back(Load.getValue(1));
4978 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004979
4980 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004981 } else {
Bill Schmidt48081ca2012-10-16 13:30:53 +00004982 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4983 PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004984 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004985 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4986 CallSeqStart,
4987 Flags, DAG, dl);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004988 ArgOffset += PtrByteSize;
4989 }
4990 continue;
4991 }
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00004992 // Copy entire object into memory. There are cases where gcc-generated
4993 // code assumes it is there, even if it could be put entirely into
4994 // registers. (This is not what the doc says.)
Bill Schmidt57d6de52012-10-23 15:51:16 +00004995 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4996 CallSeqStart,
4997 Flags, DAG, dl);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004998
4999 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
5000 // copy the pieces of the object that fit into registers from the
5001 // parameter save area.
Dale Johannesen85d41a12008-03-04 23:17:14 +00005002 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005003 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005004 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen85d41a12008-03-04 23:17:14 +00005005 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00005006 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5007 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005008 false, false, false, 0);
Dale Johannesen0d235052008-03-05 23:31:27 +00005009 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen85d41a12008-03-04 23:17:14 +00005010 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005011 ArgOffset += PtrByteSize;
Dale Johannesen85d41a12008-03-04 23:17:14 +00005012 } else {
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00005013 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005014 break;
Dale Johannesen85d41a12008-03-04 23:17:14 +00005015 }
5016 }
5017 continue;
5018 }
5019
Craig Topper56710102013-08-15 02:33:50 +00005020 switch (Arg.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005021 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel5cae2162014-02-28 01:17:25 +00005022 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00005023 case MVT::i32:
5024 case MVT::i64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005025 if (GPR_idx != NumGPRs) {
Hal Finkel7f908e82014-03-06 00:45:19 +00005026 if (Arg.getValueType() == MVT::i1)
5027 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg);
5028
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005029 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerb7552a82006-05-17 00:15:40 +00005030 } else {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005031 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5032 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005033 TailCallArguments, dl);
Chris Lattnerb7552a82006-05-17 00:15:40 +00005034 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005035 ArgOffset += PtrByteSize;
Chris Lattnerb7552a82006-05-17 00:15:40 +00005036 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005037 case MVT::f32:
5038 case MVT::f64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005039 if (FPR_idx != NumFPRs) {
5040 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5041
Chris Lattnerb7552a82006-05-17 00:15:40 +00005042 if (isVarArg) {
Chris Lattner676c61d2010-09-21 18:41:36 +00005043 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5044 MachinePointerInfo(), false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005045 MemOpChains.push_back(Store);
5046
Chris Lattnerb7552a82006-05-17 00:15:40 +00005047 // Float varargs are always shadowed in available integer registers
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005048 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00005049 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooper82cd9e82011-11-08 18:42:53 +00005050 MachinePointerInfo(), false, false,
5051 false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005052 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005053 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerb7552a82006-05-17 00:15:40 +00005054 }
Owen Anderson9f944592009-08-11 20:47:22 +00005055 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005056 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005057 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattner7727d052010-09-21 06:44:06 +00005058 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5059 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005060 false, false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005061 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005062 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattneraa40ec12006-05-16 22:56:08 +00005063 }
5064 } else {
Chris Lattnerb7552a82006-05-17 00:15:40 +00005065 // If we have any FPRs remaining, we may also have GPRs remaining.
5066 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
5067 // GPRs.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005068 if (GPR_idx != NumGPRs)
5069 ++GPR_idx;
Owen Anderson9f944592009-08-11 20:47:22 +00005070 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005071 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
5072 ++GPR_idx;
Chris Lattneraa40ec12006-05-16 22:56:08 +00005073 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005074 } else
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005075 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5076 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005077 TailCallArguments, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005078 if (isPPC64)
5079 ArgOffset += 8;
5080 else
Owen Anderson9f944592009-08-11 20:47:22 +00005081 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerb7552a82006-05-17 00:15:40 +00005082 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005083 case MVT::v4f32:
5084 case MVT::v4i32:
5085 case MVT::v8i16:
5086 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00005087 if (isVarArg) {
5088 // These go aligned on the stack, or in the corresponding R registers
Scott Michelcf0da6c2009-02-17 22:15:04 +00005089 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesenb28456e2008-03-12 00:22:17 +00005090 // V registers; in fact gcc does this only for arguments that are
5091 // prototyped, not for those that match the ... We do it for all
5092 // arguments, seems to work.
5093 while (ArgOffset % 16 !=0) {
5094 ArgOffset += PtrByteSize;
5095 if (GPR_idx != NumGPRs)
5096 GPR_idx++;
5097 }
5098 // We could elide this store in the case where the object fits
5099 // entirely in R registers. Maybe later.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005100 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesenb28456e2008-03-12 00:22:17 +00005101 DAG.getConstant(ArgOffset, PtrVT));
Chris Lattner676c61d2010-09-21 18:41:36 +00005102 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5103 MachinePointerInfo(), false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005104 MemOpChains.push_back(Store);
5105 if (VR_idx != NumVRs) {
Wesley Peck527da1b2010-11-23 03:31:01 +00005106 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattner7727d052010-09-21 06:44:06 +00005107 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005108 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005109 MemOpChains.push_back(Load.getValue(1));
5110 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
5111 }
5112 ArgOffset += 16;
5113 for (unsigned i=0; i<16; i+=PtrByteSize) {
5114 if (GPR_idx == NumGPRs)
5115 break;
Dale Johannesen679073b2009-02-04 02:34:38 +00005116 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesenb28456e2008-03-12 00:22:17 +00005117 DAG.getConstant(i, PtrVT));
Chris Lattner7727d052010-09-21 06:44:06 +00005118 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005119 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005120 MemOpChains.push_back(Load.getValue(1));
5121 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5122 }
5123 break;
5124 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005125
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005126 // Non-varargs Altivec params generally go in registers, but have
5127 // stack space allocated at the end.
5128 if (VR_idx != NumVRs) {
5129 // Doesn't have GPR space allocated.
5130 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
5131 } else if (nAltivecParamsAtEnd==0) {
5132 // We are emitting Altivec params in order.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005133 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5134 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005135 TailCallArguments, dl);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005136 ArgOffset += 16;
Dale Johannesenb28456e2008-03-12 00:22:17 +00005137 }
Chris Lattnerb7552a82006-05-17 00:15:40 +00005138 break;
Chris Lattneraa40ec12006-05-16 22:56:08 +00005139 }
Chris Lattneraa40ec12006-05-16 22:56:08 +00005140 }
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005141 // If all Altivec parameters fit in registers, as they usually do,
5142 // they get stack space following the non-Altivec parameters. We
5143 // don't track this here because nobody below needs it.
5144 // If there are more Altivec parameters than fit in registers emit
5145 // the stores here.
5146 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
5147 unsigned j = 0;
5148 // Offset is aligned; skip 1st 12 params which go in V registers.
5149 ArgOffset = ((ArgOffset+15)/16)*16;
5150 ArgOffset += 12*16;
5151 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005152 SDValue Arg = OutVals[i];
5153 EVT ArgType = Outs[i].VT;
Owen Anderson9f944592009-08-11 20:47:22 +00005154 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
5155 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005156 if (++j > NumVRs) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005157 SDValue PtrOff;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005158 // We are emitting Altivec params in order.
5159 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5160 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005161 TailCallArguments, dl);
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005162 ArgOffset += 16;
5163 }
5164 }
5165 }
5166 }
5167
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005168 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00005169 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005170
Dale Johannesen90eab672010-03-09 20:15:42 +00005171 // On Darwin, R12 must contain the address of an indirect callee. This does
5172 // not mean the MTCTR instruction must use R12; it's easier to model this as
5173 // an extra parameter, so do that.
Wesley Peck527da1b2010-11-23 03:31:01 +00005174 if (!isTailCall &&
Hal Finkel87deb0b2015-01-12 04:34:47 +00005175 !isFunctionGlobalAddress(Callee) &&
5176 !isa<ExternalSymbolSDNode>(Callee) &&
Dale Johannesen90eab672010-03-09 20:15:42 +00005177 !isBLACompatibleAddress(Callee, DAG))
5178 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
5179 PPC::R12), Callee));
5180
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005181 // Build a sequence of copy-to-reg nodes chained together with token chain
5182 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005183 SDValue InFlag;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005184 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00005185 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen679073b2009-02-04 02:34:38 +00005186 RegsToPass[i].second, InFlag);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005187 InFlag = Chain.getValue(1);
5188 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005189
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00005190 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005191 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
5192 FPOp, true, TailCallArguments);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005193
Hal Finkel934361a2015-01-14 01:07:51 +00005194 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00005195 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
5196 NumBytes, Ins, InVals, CS);
Chris Lattneraa40ec12006-05-16 22:56:08 +00005197}
5198
Hal Finkel450128a2011-10-14 19:51:36 +00005199bool
5200PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
5201 MachineFunction &MF, bool isVarArg,
5202 const SmallVectorImpl<ISD::OutputArg> &Outs,
5203 LLVMContext &Context) const {
5204 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00005205 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
Hal Finkel450128a2011-10-14 19:51:36 +00005206 return CCInfo.CheckReturn(Outs, RetCC_PPC);
5207}
5208
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005209SDValue
5210PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00005211 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005212 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005213 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005214 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005215
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005216 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00005217 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
5218 *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005219 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005220
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005221 SDValue Flag;
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005222 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005223
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005224 // Copy the result values into the output registers.
5225 for (unsigned i = 0; i != RVLocs.size(); ++i) {
5226 CCValAssign &VA = RVLocs[i];
5227 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00005228
5229 SDValue Arg = OutVals[i];
5230
5231 switch (VA.getLocInfo()) {
5232 default: llvm_unreachable("Unknown loc info!");
5233 case CCValAssign::Full: break;
5234 case CCValAssign::AExt:
5235 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
5236 break;
5237 case CCValAssign::ZExt:
5238 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
5239 break;
5240 case CCValAssign::SExt:
5241 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
5242 break;
5243 }
5244
5245 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005246 Flag = Chain.getValue(1);
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005247 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005248 }
5249
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005250 RetOps[0] = Chain; // Update chain.
5251
5252 // Add the flag if we have it.
Gabor Greiff304a7a2008-08-28 21:40:38 +00005253 if (Flag.getNode())
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005254 RetOps.push_back(Flag);
5255
Craig Topper48d114b2014-04-26 18:35:24 +00005256 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps);
Chris Lattner4211ca92006-04-14 06:01:58 +00005257}
5258
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005259SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005260 const PPCSubtarget &Subtarget) const {
Jim Laskeye4f4d042006-12-04 22:04:42 +00005261 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005262 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005263
Jim Laskeye4f4d042006-12-04 22:04:42 +00005264 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005265 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeye4f4d042006-12-04 22:04:42 +00005266
5267 // Construct the stack pointer operand.
Dale Johannesen86dcae12009-11-24 01:09:07 +00005268 bool isPPC64 = Subtarget.isPPC64();
5269 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005270 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeye4f4d042006-12-04 22:04:42 +00005271
5272 // Get the operands for the STACKRESTORE.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005273 SDValue Chain = Op.getOperand(0);
5274 SDValue SaveSP = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005275
Jim Laskeye4f4d042006-12-04 22:04:42 +00005276 // Load the old link SP.
Chris Lattner7727d052010-09-21 06:44:06 +00005277 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
5278 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005279 false, false, false, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005280
Jim Laskeye4f4d042006-12-04 22:04:42 +00005281 // Restore the stack pointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00005282 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005283
Jim Laskeye4f4d042006-12-04 22:04:42 +00005284 // Store the old link SP.
Chris Lattner676c61d2010-09-21 18:41:36 +00005285 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00005286 false, false, 0);
Jim Laskeye4f4d042006-12-04 22:04:42 +00005287}
5288
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005289
5290
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005291SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005292PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey48850c12006-11-16 22:43:37 +00005293 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005294 bool isPPC64 = Subtarget.isPPC64();
5295 bool isDarwinABI = Subtarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005296 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005297
5298 // Get current frame pointer save index. The users of this index will be
5299 // primarily DYNALLOC instructions.
5300 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5301 int RASI = FI->getReturnAddrSaveIndex();
5302
5303 // If the frame pointer save index hasn't been defined yet.
5304 if (!RASI) {
5305 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00005306 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005307 // Allocate the frame index for frame pointer save area.
Hal Finkel6e27c6d2014-12-23 09:45:06 +00005308 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, false);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005309 // Save the result.
5310 FI->setReturnAddrSaveIndex(RASI);
5311 }
5312 return DAG.getFrameIndex(RASI, PtrVT);
5313}
5314
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005315SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005316PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
5317 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005318 bool isPPC64 = Subtarget.isPPC64();
5319 bool isDarwinABI = Subtarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005320 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00005321
5322 // Get current frame pointer save index. The users of this index will be
5323 // primarily DYNALLOC instructions.
5324 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5325 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005326
Jim Laskey48850c12006-11-16 22:43:37 +00005327 // If the frame pointer save index hasn't been defined yet.
5328 if (!FPSI) {
5329 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00005330 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005331 isDarwinABI);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005332
Jim Laskey48850c12006-11-16 22:43:37 +00005333 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00005334 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey48850c12006-11-16 22:43:37 +00005335 // Save the result.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005336 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey48850c12006-11-16 22:43:37 +00005337 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005338 return DAG.getFrameIndex(FPSI, PtrVT);
5339}
Jim Laskey48850c12006-11-16 22:43:37 +00005340
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005341SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005342 SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005343 const PPCSubtarget &Subtarget) const {
Jim Laskey48850c12006-11-16 22:43:37 +00005344 // Get the inputs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005345 SDValue Chain = Op.getOperand(0);
5346 SDValue Size = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005347 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005348
Jim Laskey48850c12006-11-16 22:43:37 +00005349 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005350 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00005351 // Negate the size.
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005352 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey48850c12006-11-16 22:43:37 +00005353 DAG.getConstant(0, PtrVT), Size);
5354 // Construct a node for the frame pointer save index.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005355 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey48850c12006-11-16 22:43:37 +00005356 // Build a DYNALLOC node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005357 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson9f944592009-08-11 20:47:22 +00005358 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Craig Topper48d114b2014-04-26 18:35:24 +00005359 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops);
Jim Laskey48850c12006-11-16 22:43:37 +00005360}
5361
Hal Finkel756810f2013-03-21 21:37:52 +00005362SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
5363 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005364 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00005365 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
5366 DAG.getVTList(MVT::i32, MVT::Other),
5367 Op.getOperand(0), Op.getOperand(1));
5368}
5369
5370SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
5371 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005372 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00005373 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
5374 Op.getOperand(0), Op.getOperand(1));
5375}
5376
Hal Finkel940ab932014-02-28 00:27:01 +00005377SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
5378 assert(Op.getValueType() == MVT::i1 &&
5379 "Custom lowering only for i1 loads");
5380
5381 // First, load 8 bits into 32 bits, then truncate to 1 bit.
5382
5383 SDLoc dl(Op);
5384 LoadSDNode *LD = cast<LoadSDNode>(Op);
5385
5386 SDValue Chain = LD->getChain();
5387 SDValue BasePtr = LD->getBasePtr();
5388 MachineMemOperand *MMO = LD->getMemOperand();
5389
5390 SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(), Chain,
5391 BasePtr, MVT::i8, MMO);
5392 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD);
5393
5394 SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) };
Craig Topper64941d92014-04-27 19:20:57 +00005395 return DAG.getMergeValues(Ops, dl);
Hal Finkel940ab932014-02-28 00:27:01 +00005396}
5397
5398SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
5399 assert(Op.getOperand(1).getValueType() == MVT::i1 &&
5400 "Custom lowering only for i1 stores");
5401
5402 // First, zero extend to 32 bits, then use a truncating store to 8 bits.
5403
5404 SDLoc dl(Op);
5405 StoreSDNode *ST = cast<StoreSDNode>(Op);
5406
5407 SDValue Chain = ST->getChain();
5408 SDValue BasePtr = ST->getBasePtr();
5409 SDValue Value = ST->getValue();
5410 MachineMemOperand *MMO = ST->getMemOperand();
5411
5412 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(), Value);
5413 return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO);
5414}
5415
5416// FIXME: Remove this once the ANDI glue bug is fixed:
5417SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
5418 assert(Op.getValueType() == MVT::i1 &&
5419 "Custom lowering only for i1 results");
5420
5421 SDLoc DL(Op);
5422 return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1,
5423 Op.getOperand(0));
5424}
5425
Chris Lattner4211ca92006-04-14 06:01:58 +00005426/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
5427/// possible.
Dan Gohman21cea8a2010-04-17 15:26:15 +00005428SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00005429 // Not FP? Not a fsel.
Duncan Sands13237ac2008-06-06 12:08:01 +00005430 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
5431 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedman5806e182009-05-28 04:31:08 +00005432 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005433
Hal Finkel81f87992013-04-07 22:11:09 +00005434 // We might be able to do better than this under some circumstances, but in
5435 // general, fsel-based lowering of select is a finite-math-only optimization.
5436 // For more information, see section F.3 of the 2.06 ISA specification.
5437 if (!DAG.getTarget().Options.NoInfsFPMath ||
5438 !DAG.getTarget().Options.NoNaNsFPMath)
5439 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005440
Hal Finkel81f87992013-04-07 22:11:09 +00005441 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005442
Owen Anderson53aa7a92009-08-10 22:56:29 +00005443 EVT ResVT = Op.getValueType();
5444 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005445 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
5446 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005447 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005448
Chris Lattner4211ca92006-04-14 06:01:58 +00005449 // If the RHS of the comparison is a 0.0, we don't need to do the
5450 // subtraction at all.
Hal Finkel81f87992013-04-07 22:11:09 +00005451 SDValue Sel1;
Chris Lattner4211ca92006-04-14 06:01:58 +00005452 if (isFloatingPointZero(RHS))
5453 switch (CC) {
5454 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00005455 case ISD::SETNE:
5456 std::swap(TV, FV);
5457 case ISD::SETEQ:
5458 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5459 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5460 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
5461 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
5462 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5463 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5464 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005465 case ISD::SETULT:
5466 case ISD::SETLT:
5467 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005468 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005469 case ISD::SETGE:
Owen Anderson9f944592009-08-11 20:47:22 +00005470 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5471 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005472 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005473 case ISD::SETUGT:
5474 case ISD::SETGT:
5475 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005476 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005477 case ISD::SETLE:
Owen Anderson9f944592009-08-11 20:47:22 +00005478 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5479 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005480 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005481 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005482 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005483
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005484 SDValue Cmp;
Chris Lattner4211ca92006-04-14 06:01:58 +00005485 switch (CC) {
5486 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00005487 case ISD::SETNE:
5488 std::swap(TV, FV);
5489 case ISD::SETEQ:
5490 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
5491 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5492 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5493 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
5494 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
5495 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5496 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5497 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005498 case ISD::SETULT:
5499 case ISD::SETLT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005500 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005501 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5502 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005503 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005504 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005505 case ISD::SETGE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005506 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005507 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5508 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005509 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005510 case ISD::SETUGT:
5511 case ISD::SETGT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005512 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005513 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5514 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005515 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005516 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005517 case ISD::SETLE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005518 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005519 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5520 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005521 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005522 }
Eli Friedman5806e182009-05-28 04:31:08 +00005523 return Op;
Chris Lattner4211ca92006-04-14 06:01:58 +00005524}
5525
Hal Finkeled844c42015-01-06 22:31:02 +00005526void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI,
5527 SelectionDAG &DAG,
5528 SDLoc dl) const {
Duncan Sands13237ac2008-06-06 12:08:01 +00005529 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005530 SDValue Src = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00005531 if (Src.getValueType() == MVT::f32)
5532 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sands2a287912008-07-19 16:26:02 +00005533
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005534 SDValue Tmp;
Craig Topper56710102013-08-15 02:33:50 +00005535 switch (Op.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005536 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson9f944592009-08-11 20:47:22 +00005537 case MVT::i32:
Eric Christophercccae792015-01-30 22:02:31 +00005538 Tmp = DAG.getNode(
5539 Op.getOpcode() == ISD::FP_TO_SINT
5540 ? PPCISD::FCTIWZ
5541 : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
5542 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00005543 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005544 case MVT::i64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005545 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
Hal Finkel3f88d082013-04-01 18:42:58 +00005546 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkelf6d45f22013-04-01 17:52:07 +00005547 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
5548 PPCISD::FCTIDUZ,
5549 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00005550 break;
5551 }
Duncan Sands2a287912008-07-19 16:26:02 +00005552
Chris Lattner4211ca92006-04-14 06:01:58 +00005553 // Convert the FP value to an int value through memory.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005554 bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() &&
5555 (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT());
Hal Finkelf6d45f22013-04-01 17:52:07 +00005556 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
5557 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
5558 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
Duncan Sands2a287912008-07-19 16:26:02 +00005559
Chris Lattner06a49542007-10-15 20:14:52 +00005560 // Emit a store to the stack slot.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005561 SDValue Chain;
5562 if (i32Stack) {
5563 MachineFunction &MF = DAG.getMachineFunction();
5564 MachineMemOperand *MMO =
5565 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
5566 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
5567 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +00005568 DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO);
Hal Finkelf6d45f22013-04-01 17:52:07 +00005569 } else
5570 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
5571 MPI, false, false, 0);
Chris Lattner06a49542007-10-15 20:14:52 +00005572
5573 // Result is a load from the stack slot. If loading 4 bytes, make sure to
5574 // add in a bias.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005575 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen021052a2009-02-04 20:06:27 +00005576 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner06a49542007-10-15 20:14:52 +00005577 DAG.getConstant(4, FIPtr.getValueType()));
Hal Finkeled844c42015-01-06 22:31:02 +00005578 MPI = MPI.getWithOffset(4);
Hal Finkelf6d45f22013-04-01 17:52:07 +00005579 }
5580
Hal Finkeled844c42015-01-06 22:31:02 +00005581 RLI.Chain = Chain;
5582 RLI.Ptr = FIPtr;
5583 RLI.MPI = MPI;
5584}
5585
5586SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
5587 SDLoc dl) const {
5588 ReuseLoadInfo RLI;
5589 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
5590
5591 return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
5592 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
5593 RLI.Ranges);
5594}
5595
5596// We're trying to insert a regular store, S, and then a load, L. If the
5597// incoming value, O, is a load, we might just be able to have our load use the
5598// address used by O. However, we don't know if anything else will store to
5599// that address before we can load from it. To prevent this situation, we need
5600// to insert our load, L, into the chain as a peer of O. To do this, we give L
5601// the same chain operand as O, we create a token factor from the chain results
5602// of O and L, and we replace all uses of O's chain result with that token
5603// factor (see spliceIntoChain below for this last part).
5604bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT,
5605 ReuseLoadInfo &RLI,
Hal Finkel6c392692015-01-09 01:34:30 +00005606 SelectionDAG &DAG,
5607 ISD::LoadExtType ET) const {
Hal Finkeled844c42015-01-06 22:31:02 +00005608 SDLoc dl(Op);
Hal Finkel6c392692015-01-09 01:34:30 +00005609 if (ET == ISD::NON_EXTLOAD &&
5610 (Op.getOpcode() == ISD::FP_TO_UINT ||
Hal Finkeled844c42015-01-06 22:31:02 +00005611 Op.getOpcode() == ISD::FP_TO_SINT) &&
5612 isOperationLegalOrCustom(Op.getOpcode(),
5613 Op.getOperand(0).getValueType())) {
5614
5615 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
5616 return true;
5617 }
5618
5619 LoadSDNode *LD = dyn_cast<LoadSDNode>(Op);
Hal Finkel6c392692015-01-09 01:34:30 +00005620 if (!LD || LD->getExtensionType() != ET || LD->isVolatile() ||
5621 LD->isNonTemporal())
Hal Finkeled844c42015-01-06 22:31:02 +00005622 return false;
5623 if (LD->getMemoryVT() != MemVT)
5624 return false;
5625
5626 RLI.Ptr = LD->getBasePtr();
5627 if (LD->isIndexed() && LD->getOffset().getOpcode() != ISD::UNDEF) {
5628 assert(LD->getAddressingMode() == ISD::PRE_INC &&
5629 "Non-pre-inc AM on PPC?");
5630 RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr,
5631 LD->getOffset());
5632 }
5633
5634 RLI.Chain = LD->getChain();
5635 RLI.MPI = LD->getPointerInfo();
5636 RLI.IsInvariant = LD->isInvariant();
5637 RLI.Alignment = LD->getAlignment();
5638 RLI.AAInfo = LD->getAAInfo();
5639 RLI.Ranges = LD->getRanges();
5640
5641 RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1);
5642 return true;
5643}
5644
5645// Given the head of the old chain, ResChain, insert a token factor containing
5646// it and NewResChain, and make users of ResChain now be users of that token
5647// factor.
5648void PPCTargetLowering::spliceIntoChain(SDValue ResChain,
5649 SDValue NewResChain,
5650 SelectionDAG &DAG) const {
5651 if (!ResChain)
5652 return;
5653
5654 SDLoc dl(NewResChain);
5655
5656 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
5657 NewResChain, DAG.getUNDEF(MVT::Other));
5658 assert(TF.getNode() != NewResChain.getNode() &&
5659 "A new TF really is required here");
5660
5661 DAG.ReplaceAllUsesOfValueWith(ResChain, TF);
5662 DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain);
Chris Lattner4211ca92006-04-14 06:01:58 +00005663}
5664
Hal Finkelf6d45f22013-04-01 17:52:07 +00005665SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Hal Finkeled844c42015-01-06 22:31:02 +00005666 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005667 SDLoc dl(Op);
Dan Gohmand6819da2008-03-11 01:59:03 +00005668 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson9f944592009-08-11 20:47:22 +00005669 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005670 return SDValue();
Dan Gohmand6819da2008-03-11 01:59:03 +00005671
Hal Finkel6a56b212014-03-05 22:14:00 +00005672 if (Op.getOperand(0).getValueType() == MVT::i1)
5673 return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0),
5674 DAG.getConstantFP(1.0, Op.getValueType()),
5675 DAG.getConstantFP(0.0, Op.getValueType()));
5676
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005677 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005678 "UINT_TO_FP is supported only with FPCVT");
5679
5680 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel93d75ea2013-04-02 03:29:51 +00005681 // Otherwise, convert to double-precision and then round.
Eric Christophercccae792015-01-30 22:02:31 +00005682 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
5683 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
5684 : PPCISD::FCFIDS)
5685 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
5686 : PPCISD::FCFID);
5687 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
5688 ? MVT::f32
5689 : MVT::f64;
Hal Finkelf6d45f22013-04-01 17:52:07 +00005690
Owen Anderson9f944592009-08-11 20:47:22 +00005691 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00005692 SDValue SINT = Op.getOperand(0);
5693 // When converting to single-precision, we actually need to convert
5694 // to double-precision first and then round to single-precision.
5695 // To avoid double-rounding effects during that operation, we have
5696 // to prepare the input operand. Bits that might be truncated when
5697 // converting to double-precision are replaced by a bit that won't
5698 // be lost at this stage, but is below the single-precision rounding
5699 // position.
5700 //
5701 // However, if -enable-unsafe-fp-math is in effect, accept double
5702 // rounding to avoid the extra overhead.
5703 if (Op.getValueType() == MVT::f32 &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005704 !Subtarget.hasFPCVT() &&
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00005705 !DAG.getTarget().Options.UnsafeFPMath) {
5706
5707 // Twiddle input to make sure the low 11 bits are zero. (If this
5708 // is the case, we are guaranteed the value will fit into the 53 bit
5709 // mantissa of an IEEE double-precision value without rounding.)
5710 // If any of those low 11 bits were not zero originally, make sure
5711 // bit 12 (value 2048) is set instead, so that the final rounding
5712 // to single-precision gets the correct result.
5713 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5714 SINT, DAG.getConstant(2047, MVT::i64));
5715 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
5716 Round, DAG.getConstant(2047, MVT::i64));
5717 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
5718 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5719 Round, DAG.getConstant(-2048, MVT::i64));
5720
5721 // However, we cannot use that value unconditionally: if the magnitude
5722 // of the input value is small, the bit-twiddling we did above might
5723 // end up visibly changing the output. Fortunately, in that case, we
5724 // don't need to twiddle bits since the original input will convert
5725 // exactly to double-precision floating-point already. Therefore,
5726 // construct a conditional to use the original value if the top 11
5727 // bits are all sign-bit copies, and use the rounded value computed
5728 // above otherwise.
5729 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
5730 SINT, DAG.getConstant(53, MVT::i32));
5731 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
5732 Cond, DAG.getConstant(1, MVT::i64));
5733 Cond = DAG.getSetCC(dl, MVT::i32,
5734 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
5735
5736 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
5737 }
Hal Finkelf6d45f22013-04-01 17:52:07 +00005738
Hal Finkeled844c42015-01-06 22:31:02 +00005739 ReuseLoadInfo RLI;
5740 SDValue Bits;
5741
Hal Finkel6c392692015-01-09 01:34:30 +00005742 MachineFunction &MF = DAG.getMachineFunction();
Hal Finkeled844c42015-01-06 22:31:02 +00005743 if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) {
5744 Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
5745 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
5746 RLI.Ranges);
5747 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
Hal Finkel6c392692015-01-09 01:34:30 +00005748 } else if (Subtarget.hasLFIWAX() &&
5749 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) {
5750 MachineMemOperand *MMO =
5751 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5752 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5753 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5754 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl,
5755 DAG.getVTList(MVT::f64, MVT::Other),
5756 Ops, MVT::i32, MMO);
5757 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
5758 } else if (Subtarget.hasFPCVT() &&
5759 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) {
5760 MachineMemOperand *MMO =
5761 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5762 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5763 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5764 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl,
5765 DAG.getVTList(MVT::f64, MVT::Other),
5766 Ops, MVT::i32, MMO);
5767 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
5768 } else if (((Subtarget.hasLFIWAX() &&
5769 SINT.getOpcode() == ISD::SIGN_EXTEND) ||
5770 (Subtarget.hasFPCVT() &&
5771 SINT.getOpcode() == ISD::ZERO_EXTEND)) &&
5772 SINT.getOperand(0).getValueType() == MVT::i32) {
5773 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
5774 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5775
5776 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
5777 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5778
5779 SDValue Store =
5780 DAG.getStore(DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx,
5781 MachinePointerInfo::getFixedStack(FrameIdx),
5782 false, false, 0);
5783
5784 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
5785 "Expected an i32 store");
5786
5787 RLI.Ptr = FIdx;
5788 RLI.Chain = Store;
5789 RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
5790 RLI.Alignment = 4;
5791
5792 MachineMemOperand *MMO =
5793 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5794 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5795 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5796 Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ?
5797 PPCISD::LFIWZX : PPCISD::LFIWAX,
5798 dl, DAG.getVTList(MVT::f64, MVT::Other),
5799 Ops, MVT::i32, MMO);
Hal Finkeled844c42015-01-06 22:31:02 +00005800 } else
5801 Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
5802
Hal Finkelf6d45f22013-04-01 17:52:07 +00005803 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
5804
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005805 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Scott Michelcf0da6c2009-02-17 22:15:04 +00005806 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005807 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00005808 return FP;
5809 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005810
Owen Anderson9f944592009-08-11 20:47:22 +00005811 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005812 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner4211ca92006-04-14 06:01:58 +00005813 // Since we only generate this in 64-bit mode, we can take advantage of
5814 // 64-bit registers. In particular, sign extend the input value into the
5815 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
5816 // then lfd it and fcfid it.
Dan Gohman48b185d2009-09-25 20:36:54 +00005817 MachineFunction &MF = DAG.getMachineFunction();
5818 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005819 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005820
Hal Finkelbeb296b2013-03-31 10:12:51 +00005821 SDValue Ld;
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005822 if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) {
Hal Finkeled844c42015-01-06 22:31:02 +00005823 ReuseLoadInfo RLI;
5824 bool ReusingLoad;
5825 if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI,
5826 DAG))) {
5827 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
5828 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005829
Hal Finkeled844c42015-01-06 22:31:02 +00005830 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
5831 MachinePointerInfo::getFixedStack(FrameIdx),
5832 false, false, 0);
Hal Finkele53429a2013-03-31 01:58:02 +00005833
Hal Finkeled844c42015-01-06 22:31:02 +00005834 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
5835 "Expected an i32 store");
5836
5837 RLI.Ptr = FIdx;
5838 RLI.Chain = Store;
5839 RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
5840 RLI.Alignment = 4;
5841 }
5842
Hal Finkelbeb296b2013-03-31 10:12:51 +00005843 MachineMemOperand *MMO =
Hal Finkeled844c42015-01-06 22:31:02 +00005844 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5845 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5846 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
Hal Finkelf6d45f22013-04-01 17:52:07 +00005847 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
5848 PPCISD::LFIWZX : PPCISD::LFIWAX,
5849 dl, DAG.getVTList(MVT::f64, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00005850 Ops, MVT::i32, MMO);
Hal Finkeled844c42015-01-06 22:31:02 +00005851 if (ReusingLoad)
5852 spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG);
Hal Finkelbeb296b2013-03-31 10:12:51 +00005853 } else {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005854 assert(Subtarget.isPPC64() &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005855 "i32->FP without LFIWAX supported only on PPC64");
5856
Hal Finkelbeb296b2013-03-31 10:12:51 +00005857 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
5858 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5859
5860 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
5861 Op.getOperand(0));
5862
5863 // STD the extended value into the stack slot.
5864 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
5865 MachinePointerInfo::getFixedStack(FrameIdx),
5866 false, false, 0);
5867
5868 // Load the value as a double.
5869 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
5870 MachinePointerInfo::getFixedStack(FrameIdx),
5871 false, false, false, 0);
5872 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005873
Chris Lattner4211ca92006-04-14 06:01:58 +00005874 // FCFID it and return it.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005875 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005876 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Owen Anderson9f944592009-08-11 20:47:22 +00005877 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00005878 return FP;
5879}
5880
Dan Gohman21cea8a2010-04-17 15:26:15 +00005881SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
5882 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005883 SDLoc dl(Op);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005884 /*
5885 The rounding mode is in bits 30:31 of FPSR, and has the following
5886 settings:
5887 00 Round to nearest
5888 01 Round to 0
5889 10 Round to +inf
5890 11 Round to -inf
5891
5892 FLT_ROUNDS, on the other hand, expects the following:
5893 -1 Undefined
5894 0 Round to 0
5895 1 Round to nearest
5896 2 Round to +inf
5897 3 Round to -inf
5898
5899 To perform the conversion, we do:
5900 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
5901 */
5902
5903 MachineFunction &MF = DAG.getMachineFunction();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005904 EVT VT = Op.getValueType();
5905 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005906
5907 // Save FP Control Word to register
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005908 EVT NodeTys[] = {
5909 MVT::f64, // return register
5910 MVT::Glue // unused in this context
5911 };
Craig Topper2d2aa0c2014-04-30 07:17:30 +00005912 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005913
5914 // Save FP register to stack slot
David Greene1fbe0542009-11-12 20:49:22 +00005915 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005916 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005917 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner676c61d2010-09-21 18:41:36 +00005918 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005919
5920 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005921 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005922 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattner7727d052010-09-21 06:44:06 +00005923 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005924 false, false, false, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005925
5926 // Transform as necessary
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005927 SDValue CWD1 =
Owen Anderson9f944592009-08-11 20:47:22 +00005928 DAG.getNode(ISD::AND, dl, MVT::i32,
5929 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005930 SDValue CWD2 =
Owen Anderson9f944592009-08-11 20:47:22 +00005931 DAG.getNode(ISD::SRL, dl, MVT::i32,
5932 DAG.getNode(ISD::AND, dl, MVT::i32,
5933 DAG.getNode(ISD::XOR, dl, MVT::i32,
5934 CWD, DAG.getConstant(3, MVT::i32)),
5935 DAG.getConstant(3, MVT::i32)),
5936 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005937
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005938 SDValue RetVal =
Owen Anderson9f944592009-08-11 20:47:22 +00005939 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005940
Duncan Sands13237ac2008-06-06 12:08:01 +00005941 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen021052a2009-02-04 20:06:27 +00005942 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005943}
5944
Dan Gohman21cea8a2010-04-17 15:26:15 +00005945SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005946 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005947 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005948 SDLoc dl(Op);
Dan Gohman8d2ead22008-03-07 20:36:53 +00005949 assert(Op.getNumOperands() == 3 &&
5950 VT == Op.getOperand(1).getValueType() &&
5951 "Unexpected SHL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005952
Chris Lattner601b8652006-09-20 03:47:40 +00005953 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005954 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005955 SDValue Lo = Op.getOperand(0);
5956 SDValue Hi = Op.getOperand(1);
5957 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005958 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005959
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005960 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005961 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005962 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
5963 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
5964 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
5965 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005966 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005967 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
5968 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5969 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005970 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00005971 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005972}
5973
Dan Gohman21cea8a2010-04-17 15:26:15 +00005974SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005975 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005976 SDLoc dl(Op);
Duncan Sands13237ac2008-06-06 12:08:01 +00005977 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00005978 assert(Op.getNumOperands() == 3 &&
5979 VT == Op.getOperand(1).getValueType() &&
5980 "Unexpected SRL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005981
Dan Gohman8d2ead22008-03-07 20:36:53 +00005982 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005983 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005984 SDValue Lo = Op.getOperand(0);
5985 SDValue Hi = Op.getOperand(1);
5986 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005987 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005988
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005989 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005990 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005991 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5992 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5993 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5994 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005995 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005996 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
5997 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5998 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005999 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00006000 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00006001}
6002
Dan Gohman21cea8a2010-04-17 15:26:15 +00006003SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006004 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006005 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00006006 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00006007 assert(Op.getNumOperands() == 3 &&
6008 VT == Op.getOperand(1).getValueType() &&
6009 "Unexpected SRA!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00006010
Dan Gohman8d2ead22008-03-07 20:36:53 +00006011 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006012 SDValue Lo = Op.getOperand(0);
6013 SDValue Hi = Op.getOperand(1);
6014 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006015 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006016
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006017 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00006018 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006019 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6020 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6021 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6022 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00006023 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006024 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
6025 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
6026 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands13105742008-10-30 19:28:32 +00006027 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006028 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00006029 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00006030}
6031
6032//===----------------------------------------------------------------------===//
6033// Vector related lowering.
6034//
6035
Chris Lattner2a099c02006-04-17 06:00:21 +00006036/// BuildSplatI - Build a canonical splati of Val with an element size of
6037/// SplatSize. Cast the result to VT.
Owen Anderson53aa7a92009-08-10 22:56:29 +00006038static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006039 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner2a099c02006-04-17 06:00:21 +00006040 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006041
Owen Anderson53aa7a92009-08-10 22:56:29 +00006042 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson9f944592009-08-11 20:47:22 +00006043 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner2a099c02006-04-17 06:00:21 +00006044 };
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006045
Owen Anderson9f944592009-08-11 20:47:22 +00006046 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006047
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006048 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
6049 if (Val == -1)
6050 SplatSize = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006051
Owen Anderson53aa7a92009-08-10 22:56:29 +00006052 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006053
Chris Lattner2a099c02006-04-17 06:00:21 +00006054 // Build a canonical splat for this value.
Owen Anderson9f944592009-08-11 20:47:22 +00006055 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006056 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00006057 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Craig Topper48d114b2014-04-26 18:35:24 +00006058 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00006059 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00006060}
6061
Hal Finkelcf2e9082013-05-24 23:00:14 +00006062/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
6063/// specified intrinsic ID.
6064static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006065 SelectionDAG &DAG, SDLoc dl,
Hal Finkelcf2e9082013-05-24 23:00:14 +00006066 EVT DestVT = MVT::Other) {
6067 if (DestVT == MVT::Other) DestVT = Op.getValueType();
6068 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6069 DAG.getConstant(IID, MVT::i32), Op);
6070}
6071
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006072/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner1b3806a2006-04-17 06:58:41 +00006073/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006074static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006075 SelectionDAG &DAG, SDLoc dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006076 EVT DestVT = MVT::Other) {
6077 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006078 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00006079 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner1b3806a2006-04-17 06:58:41 +00006080}
6081
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006082/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
6083/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006084static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006085 SDValue Op2, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006086 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson9f944592009-08-11 20:47:22 +00006087 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006088 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00006089 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006090}
6091
6092
Chris Lattner264c9082006-04-17 17:55:10 +00006093/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
6094/// amount. The result has the specified value type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006095static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006096 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattner264c9082006-04-17 17:55:10 +00006097 // Force LHS/RHS to be the right type.
Wesley Peck527da1b2010-11-23 03:31:01 +00006098 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
6099 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsb0e39382008-07-21 10:20:31 +00006100
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006101 int Ops[16];
Chris Lattner264c9082006-04-17 17:55:10 +00006102 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006103 Ops[i] = i + Amt;
Owen Anderson9f944592009-08-11 20:47:22 +00006104 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00006105 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner264c9082006-04-17 17:55:10 +00006106}
6107
Chris Lattner19e90552006-04-14 05:19:18 +00006108// If this is a case we can't handle, return null and let the default
6109// expansion code take care of it. If we CAN select this case, and if it
6110// selects to a single instruction, return Op. Otherwise, if we can codegen
6111// this case more efficiently than a constant pool load, lower it to the
6112// sequence of ops that should be used.
Dan Gohman21cea8a2010-04-17 15:26:15 +00006113SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
6114 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006115 SDLoc dl(Op);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006116 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
Craig Toppere73658d2014-04-28 04:05:08 +00006117 assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Michelbb878282009-02-25 03:12:50 +00006118
Bob Wilson85cefe82009-03-02 23:24:16 +00006119 // Check if this is a splat of a constant value.
6120 APInt APSplatBits, APSplatUndef;
6121 unsigned SplatBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006122 bool HasAnyUndefs;
Bob Wilson530e0382009-03-03 19:26:27 +00006123 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006124 HasAnyUndefs, 0, true) || SplatBitSize > 32)
Bob Wilson530e0382009-03-03 19:26:27 +00006125 return SDValue();
Evan Chenga49de9d2009-02-25 22:49:59 +00006126
Bob Wilson530e0382009-03-03 19:26:27 +00006127 unsigned SplatBits = APSplatBits.getZExtValue();
6128 unsigned SplatUndef = APSplatUndef.getZExtValue();
6129 unsigned SplatSize = SplatBitSize / 8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006130
Bob Wilson530e0382009-03-03 19:26:27 +00006131 // First, handle single instruction cases.
6132
6133 // All zeros?
6134 if (SplatBits == 0) {
6135 // Canonicalize all zero vectors to be v4i32.
Owen Anderson9f944592009-08-11 20:47:22 +00006136 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
6137 SDValue Z = DAG.getConstant(0, MVT::i32);
6138 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Wesley Peck527da1b2010-11-23 03:31:01 +00006139 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattner19e90552006-04-14 05:19:18 +00006140 }
Bob Wilson530e0382009-03-03 19:26:27 +00006141 return Op;
6142 }
Chris Lattnerfa5aa392006-04-16 01:01:29 +00006143
Bob Wilson530e0382009-03-03 19:26:27 +00006144 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
6145 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
6146 (32-SplatBitSize));
6147 if (SextVal >= -16 && SextVal <= 15)
6148 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006149
6150
Bob Wilson530e0382009-03-03 19:26:27 +00006151 // Two instruction sequences.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006152
Bob Wilson530e0382009-03-03 19:26:27 +00006153 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtc6cbecc2013-02-20 20:41:42 +00006154 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
6155 // If this value is in the range [17,31] and is odd, use:
6156 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
6157 // If this value is in the range [-31,-17] and is odd, use:
6158 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
6159 // Note the last two are three-instruction sequences.
6160 if (SextVal >= -32 && SextVal <= 31) {
6161 // To avoid having these optimizations undone by constant folding,
6162 // we convert to a pseudo that will be expanded later into one of
6163 // the above forms.
6164 SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
Bill Schmidt71dddd52014-05-27 15:57:51 +00006165 EVT VT = (SplatSize == 1 ? MVT::v16i8 :
6166 (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32));
6167 SDValue EltSize = DAG.getConstant(SplatSize, MVT::i32);
6168 SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
6169 if (VT == Op.getValueType())
6170 return RetVal;
6171 else
6172 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal);
Bob Wilson530e0382009-03-03 19:26:27 +00006173 }
6174
6175 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
6176 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
6177 // for fneg/fabs.
6178 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
6179 // Make -1 and vspltisw -1:
Owen Anderson9f944592009-08-11 20:47:22 +00006180 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006181
6182 // Make the VSLW intrinsic, computing 0x8000_0000.
6183 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
6184 OnesV, DAG, dl);
6185
6186 // xor by OnesV to invert it.
Owen Anderson9f944592009-08-11 20:47:22 +00006187 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peck527da1b2010-11-23 03:31:01 +00006188 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00006189 }
6190
Bill Schmidt4aedff82014-06-06 14:06:26 +00006191 // The remaining cases assume either big endian element order or
6192 // a splat-size that equates to the element size of the vector
6193 // to be built. An example that doesn't work for little endian is
6194 // {0, -1, 0, -1, 0, -1, 0, -1} which has a splat size of 32 bits
6195 // and a vector element size of 16 bits. The code below will
6196 // produce the vector in big endian element order, which for little
6197 // endian is {-1, 0, -1, 0, -1, 0, -1, 0}.
6198
6199 // For now, just avoid these optimizations in that case.
6200 // FIXME: Develop correct optimizations for LE with mismatched
6201 // splat and element sizes.
6202
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006203 if (Subtarget.isLittleEndian() &&
Bill Schmidt4aedff82014-06-06 14:06:26 +00006204 SplatSize != Op.getValueType().getVectorElementType().getSizeInBits())
6205 return SDValue();
6206
Bob Wilson530e0382009-03-03 19:26:27 +00006207 // Check to see if this is a wide variety of vsplti*, binop self cases.
6208 static const signed char SplatCsts[] = {
6209 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
6210 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
6211 };
6212
6213 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
6214 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
6215 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
6216 int i = SplatCsts[idx];
6217
6218 // Figure out what shift amount will be used by altivec if shifted by i in
6219 // this splat size.
6220 unsigned TypeShiftAmt = i & (SplatBitSize-1);
6221
6222 // vsplti + shl self.
Richard Smith228e6d42012-08-24 23:29:28 +00006223 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00006224 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006225 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6226 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
6227 Intrinsic::ppc_altivec_vslw
6228 };
6229 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006230 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00006231 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006232
Bob Wilson530e0382009-03-03 19:26:27 +00006233 // vsplti + srl self.
6234 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00006235 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006236 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6237 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
6238 Intrinsic::ppc_altivec_vsrw
6239 };
6240 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006241 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00006242 }
6243
Bob Wilson530e0382009-03-03 19:26:27 +00006244 // vsplti + sra self.
6245 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00006246 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006247 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6248 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
6249 Intrinsic::ppc_altivec_vsraw
6250 };
6251 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006252 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00006253 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006254
Bob Wilson530e0382009-03-03 19:26:27 +00006255 // vsplti + rol self.
6256 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
6257 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006258 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006259 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6260 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
6261 Intrinsic::ppc_altivec_vrlw
6262 };
6263 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006264 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00006265 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006266
Bob Wilson530e0382009-03-03 19:26:27 +00006267 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith228e6d42012-08-24 23:29:28 +00006268 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006269 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006270 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnere54133c2006-04-17 18:09:22 +00006271 }
Bob Wilson530e0382009-03-03 19:26:27 +00006272 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith228e6d42012-08-24 23:29:28 +00006273 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006274 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006275 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattner19e90552006-04-14 05:19:18 +00006276 }
Bob Wilson530e0382009-03-03 19:26:27 +00006277 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith228e6d42012-08-24 23:29:28 +00006278 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006279 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006280 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
6281 }
6282 }
6283
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006284 return SDValue();
Chris Lattner19e90552006-04-14 05:19:18 +00006285}
6286
Chris Lattner071ad012006-04-17 05:28:54 +00006287/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
6288/// the specified operations to build the shuffle.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006289static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelcf0da6c2009-02-17 22:15:04 +00006290 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006291 SDLoc dl) {
Chris Lattner071ad012006-04-17 05:28:54 +00006292 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling95e1af22008-09-17 00:30:57 +00006293 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner071ad012006-04-17 05:28:54 +00006294 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006295
Chris Lattner071ad012006-04-17 05:28:54 +00006296 enum {
Chris Lattnerd2ca9ab2006-05-16 04:20:24 +00006297 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 +00006298 OP_VMRGHW,
6299 OP_VMRGLW,
6300 OP_VSPLTISW0,
6301 OP_VSPLTISW1,
6302 OP_VSPLTISW2,
6303 OP_VSPLTISW3,
6304 OP_VSLDOI4,
6305 OP_VSLDOI8,
Chris Lattneraa2372562006-05-24 17:04:05 +00006306 OP_VSLDOI12
Chris Lattner071ad012006-04-17 05:28:54 +00006307 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00006308
Chris Lattner071ad012006-04-17 05:28:54 +00006309 if (OpNum == OP_COPY) {
6310 if (LHSID == (1*9+2)*9+3) return LHS;
6311 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
6312 return RHS;
6313 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006314
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006315 SDValue OpLHS, OpRHS;
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006316 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
6317 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006318
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006319 int ShufIdxs[16];
Chris Lattner071ad012006-04-17 05:28:54 +00006320 switch (OpNum) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006321 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner071ad012006-04-17 05:28:54 +00006322 case OP_VMRGHW:
6323 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
6324 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
6325 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
6326 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
6327 break;
6328 case OP_VMRGLW:
6329 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
6330 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
6331 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
6332 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
6333 break;
6334 case OP_VSPLTISW0:
6335 for (unsigned i = 0; i != 16; ++i)
6336 ShufIdxs[i] = (i&3)+0;
6337 break;
6338 case OP_VSPLTISW1:
6339 for (unsigned i = 0; i != 16; ++i)
6340 ShufIdxs[i] = (i&3)+4;
6341 break;
6342 case OP_VSPLTISW2:
6343 for (unsigned i = 0; i != 16; ++i)
6344 ShufIdxs[i] = (i&3)+8;
6345 break;
6346 case OP_VSPLTISW3:
6347 for (unsigned i = 0; i != 16; ++i)
6348 ShufIdxs[i] = (i&3)+12;
6349 break;
6350 case OP_VSLDOI4:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006351 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006352 case OP_VSLDOI8:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006353 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006354 case OP_VSLDOI12:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006355 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006356 }
Owen Anderson53aa7a92009-08-10 22:56:29 +00006357 EVT VT = OpLHS.getValueType();
Wesley Peck527da1b2010-11-23 03:31:01 +00006358 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
6359 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson9f944592009-08-11 20:47:22 +00006360 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peck527da1b2010-11-23 03:31:01 +00006361 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner071ad012006-04-17 05:28:54 +00006362}
6363
Chris Lattner19e90552006-04-14 05:19:18 +00006364/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
6365/// is a shuffle we can handle in a single instruction, return it. Otherwise,
6366/// return the code it can be lowered into. Worst case, it can always be
6367/// lowered into a vperm.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006368SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006369 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006370 SDLoc dl(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006371 SDValue V1 = Op.getOperand(0);
6372 SDValue V2 = Op.getOperand(1);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006373 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006374 EVT VT = Op.getValueType();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006375 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006376
Chris Lattner19e90552006-04-14 05:19:18 +00006377 // Cases that are handled by instructions that take permute immediates
6378 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
6379 // selected by the instruction selector.
6380 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006381 if (PPC::isSplatShuffleMask(SVOp, 1) ||
6382 PPC::isSplatShuffleMask(SVOp, 2) ||
6383 PPC::isSplatShuffleMask(SVOp, 4) ||
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00006384 PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) ||
6385 PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) ||
Bill Schmidt42a69362014-08-05 20:47:25 +00006386 PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006387 PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) ||
6388 PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) ||
6389 PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) ||
6390 PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) ||
6391 PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) ||
6392 PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG)) {
Chris Lattner19e90552006-04-14 05:19:18 +00006393 return Op;
6394 }
6395 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006396
Chris Lattner19e90552006-04-14 05:19:18 +00006397 // Altivec has a variety of "shuffle immediates" that take two vector inputs
6398 // and produce a fixed permutation. If any of these match, do not lower to
6399 // VPERM.
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006400 unsigned int ShuffleKind = isLittleEndian ? 2 : 0;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00006401 if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) ||
6402 PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) ||
Bill Schmidt42a69362014-08-05 20:47:25 +00006403 PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006404 PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6405 PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6406 PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
6407 PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6408 PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6409 PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG))
Chris Lattner19e90552006-04-14 05:19:18 +00006410 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006411
Chris Lattner071ad012006-04-17 05:28:54 +00006412 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
6413 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramer339ced42012-01-15 13:16:05 +00006414 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peck527da1b2010-11-23 03:31:01 +00006415
Chris Lattner071ad012006-04-17 05:28:54 +00006416 unsigned PFIndexes[4];
6417 bool isFourElementShuffle = true;
6418 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
6419 unsigned EltNo = 8; // Start out undef.
6420 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006421 if (PermMask[i*4+j] < 0)
Chris Lattner071ad012006-04-17 05:28:54 +00006422 continue; // Undef, ignore it.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006423
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006424 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner071ad012006-04-17 05:28:54 +00006425 if ((ByteSource & 3) != j) {
6426 isFourElementShuffle = false;
6427 break;
6428 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006429
Chris Lattner071ad012006-04-17 05:28:54 +00006430 if (EltNo == 8) {
6431 EltNo = ByteSource/4;
6432 } else if (EltNo != ByteSource/4) {
6433 isFourElementShuffle = false;
6434 break;
6435 }
6436 }
6437 PFIndexes[i] = EltNo;
6438 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006439
6440 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner071ad012006-04-17 05:28:54 +00006441 // perfect shuffle vector to determine if it is cost effective to do this as
6442 // discrete instructions, or whether we should use a vperm.
Bill Schmidtf910a062014-06-10 14:35:01 +00006443 // For now, we skip this for little endian until such time as we have a
6444 // little-endian perfect shuffle table.
6445 if (isFourElementShuffle && !isLittleEndian) {
Chris Lattner071ad012006-04-17 05:28:54 +00006446 // Compute the index in the perfect shuffle table.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006447 unsigned PFTableIndex =
Chris Lattner071ad012006-04-17 05:28:54 +00006448 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006449
Chris Lattner071ad012006-04-17 05:28:54 +00006450 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6451 unsigned Cost = (PFEntry >> 30);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006452
Chris Lattner071ad012006-04-17 05:28:54 +00006453 // Determining when to avoid vperm is tricky. Many things affect the cost
6454 // of vperm, particularly how many times the perm mask needs to be computed.
6455 // For example, if the perm mask can be hoisted out of a loop or is already
6456 // used (perhaps because there are multiple permutes with the same shuffle
6457 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
6458 // the loop requires an extra register.
6459 //
6460 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelcf0da6c2009-02-17 22:15:04 +00006461 // generated in 3 or fewer operations. When we have loop information
Chris Lattner071ad012006-04-17 05:28:54 +00006462 // available, if this block is within a loop, we should avoid using vperm
6463 // for 3-operation perms and use a constant pool load instead.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006464 if (Cost < 3)
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006465 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006466 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006467
Chris Lattner19e90552006-04-14 05:19:18 +00006468 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
6469 // vector that will get spilled to the constant pool.
6470 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006471
Chris Lattner19e90552006-04-14 05:19:18 +00006472 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
6473 // that it is in input element units, not in bytes. Convert now.
Bill Schmidt4aedff82014-06-06 14:06:26 +00006474
6475 // For little endian, the order of the input vectors is reversed, and
6476 // the permutation mask is complemented with respect to 31. This is
6477 // necessary to produce proper semantics with the big-endian-biased vperm
6478 // instruction.
Owen Anderson53aa7a92009-08-10 22:56:29 +00006479 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands13237ac2008-06-06 12:08:01 +00006480 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006481
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006482 SmallVector<SDValue, 16> ResultMask;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006483 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
6484 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006485
Chris Lattner19e90552006-04-14 05:19:18 +00006486 for (unsigned j = 0; j != BytesPerElement; ++j)
Bill Schmidt4aedff82014-06-06 14:06:26 +00006487 if (isLittleEndian)
6488 ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement+j),
6489 MVT::i32));
6490 else
6491 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
6492 MVT::i32));
Chris Lattner19e90552006-04-14 05:19:18 +00006493 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006494
Owen Anderson9f944592009-08-11 20:47:22 +00006495 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Craig Topper48d114b2014-04-26 18:35:24 +00006496 ResultMask);
Bill Schmidt4aedff82014-06-06 14:06:26 +00006497 if (isLittleEndian)
6498 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6499 V2, V1, VPermMask);
6500 else
6501 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6502 V1, V2, VPermMask);
Chris Lattner19e90552006-04-14 05:19:18 +00006503}
6504
Chris Lattner9754d142006-04-18 17:59:36 +00006505/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
6506/// altivec comparison. If it is, return true and fill in Opc/isDot with
6507/// information about the intrinsic.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006508static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner9754d142006-04-18 17:59:36 +00006509 bool &isDot) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00006510 unsigned IntrinsicID =
6511 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00006512 CompareOpc = -1;
6513 isDot = false;
6514 switch (IntrinsicID) {
6515 default: return false;
6516 // Comparison predicates.
Chris Lattner4211ca92006-04-14 06:01:58 +00006517 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
6518 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
6519 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
6520 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
6521 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
6522 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
6523 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
6524 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
6525 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
6526 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
6527 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
6528 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
6529 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006530
Chris Lattner4211ca92006-04-14 06:01:58 +00006531 // Normal Comparisons.
6532 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
6533 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
6534 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
6535 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
6536 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
6537 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
6538 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
6539 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
6540 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
6541 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
6542 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
6543 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
6544 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
6545 }
Chris Lattner9754d142006-04-18 17:59:36 +00006546 return true;
6547}
6548
6549/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
6550/// lower, do it, otherwise return null.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006551SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006552 SelectionDAG &DAG) const {
Chris Lattner9754d142006-04-18 17:59:36 +00006553 // If this is a lowered altivec predicate compare, CompareOpc is set to the
6554 // opcode number of the comparison.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006555 SDLoc dl(Op);
Chris Lattner9754d142006-04-18 17:59:36 +00006556 int CompareOpc;
6557 bool isDot;
6558 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006559 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006560
Chris Lattner9754d142006-04-18 17:59:36 +00006561 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner4211ca92006-04-14 06:01:58 +00006562 if (!isDot) {
Dale Johannesenf80493b2009-02-05 22:07:54 +00006563 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner9fa851b2010-03-14 22:44:11 +00006564 Op.getOperand(1), Op.getOperand(2),
6565 DAG.getConstant(CompareOpc, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00006566 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner4211ca92006-04-14 06:01:58 +00006567 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006568
Chris Lattner4211ca92006-04-14 06:01:58 +00006569 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006570 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00006571 Op.getOperand(2), // LHS
6572 Op.getOperand(3), // RHS
Owen Anderson9f944592009-08-11 20:47:22 +00006573 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00006574 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00006575 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +00006576 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006577
Chris Lattner4211ca92006-04-14 06:01:58 +00006578 // Now that we have the comparison, emit a copy from the CR to a GPR.
6579 // This is flagged to the above dot comparison.
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00006580 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
Owen Anderson9f944592009-08-11 20:47:22 +00006581 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelcf0da6c2009-02-17 22:15:04 +00006582 CompNode.getValue(1));
6583
Chris Lattner4211ca92006-04-14 06:01:58 +00006584 // Unpack the result based on how the target uses it.
6585 unsigned BitNo; // Bit # of CR6.
6586 bool InvertBit; // Invert result?
Dan Gohmaneffb8942008-09-12 16:56:44 +00006587 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner4211ca92006-04-14 06:01:58 +00006588 default: // Can't happen, don't crash on invalid number though.
6589 case 0: // Return the value of the EQ bit of CR6.
6590 BitNo = 0; InvertBit = false;
6591 break;
6592 case 1: // Return the inverted value of the EQ bit of CR6.
6593 BitNo = 0; InvertBit = true;
6594 break;
6595 case 2: // Return the value of the LT bit of CR6.
6596 BitNo = 2; InvertBit = false;
6597 break;
6598 case 3: // Return the inverted value of the LT bit of CR6.
6599 BitNo = 2; InvertBit = true;
6600 break;
6601 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006602
Chris Lattner4211ca92006-04-14 06:01:58 +00006603 // Shift the bit into the low position.
Owen Anderson9f944592009-08-11 20:47:22 +00006604 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
6605 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00006606 // Isolate the bit.
Owen Anderson9f944592009-08-11 20:47:22 +00006607 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
6608 DAG.getConstant(1, MVT::i32));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006609
Chris Lattner4211ca92006-04-14 06:01:58 +00006610 // If we are supposed to, toggle the bit.
6611 if (InvertBit)
Owen Anderson9f944592009-08-11 20:47:22 +00006612 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
6613 DAG.getConstant(1, MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00006614 return Flags;
6615}
6616
Hal Finkel5c0d1452014-03-30 13:22:59 +00006617SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
6618 SelectionDAG &DAG) const {
6619 SDLoc dl(Op);
6620 // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int
6621 // instructions), but for smaller types, we need to first extend up to v2i32
6622 // before doing going farther.
6623 if (Op.getValueType() == MVT::v2i64) {
6624 EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
6625 if (ExtVT != MVT::v2i32) {
6626 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0));
6627 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op,
6628 DAG.getValueType(EVT::getVectorVT(*DAG.getContext(),
6629 ExtVT.getVectorElementType(), 4)));
6630 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op);
6631 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op,
6632 DAG.getValueType(MVT::v2i32));
6633 }
6634
6635 return Op;
6636 }
6637
6638 return SDValue();
6639}
6640
Scott Michelcf0da6c2009-02-17 22:15:04 +00006641SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006642 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006643 SDLoc dl(Op);
Chris Lattner4211ca92006-04-14 06:01:58 +00006644 // Create a stack slot that is 16-byte aligned.
6645 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00006646 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Dale Johannesen81bfca72010-05-03 22:59:34 +00006647 EVT PtrVT = getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006648 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006649
Chris Lattner4211ca92006-04-14 06:01:58 +00006650 // Store the input value into Value#0 of the stack slot.
Dale Johannesen021052a2009-02-04 20:06:27 +00006651 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00006652 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00006653 false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00006654 // Load it out.
Chris Lattner7727d052010-09-21 06:44:06 +00006655 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006656 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00006657}
6658
Dan Gohman21cea8a2010-04-17 15:26:15 +00006659SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006660 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00006661 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006662 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006663
Owen Anderson9f944592009-08-11 20:47:22 +00006664 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
6665 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006666
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006667 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006668 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006669
Chris Lattner7e4398742006-04-18 03:43:48 +00006670 // Shrinkify inputs to v8i16.
Wesley Peck527da1b2010-11-23 03:31:01 +00006671 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
6672 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
6673 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006674
Chris Lattner7e4398742006-04-18 03:43:48 +00006675 // Low parts multiplied together, generating 32-bit results (we ignore the
6676 // top parts).
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006677 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson9f944592009-08-11 20:47:22 +00006678 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006679
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006680 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson9f944592009-08-11 20:47:22 +00006681 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner7e4398742006-04-18 03:43:48 +00006682 // Shift the high parts up 16 bits.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006683 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006684 Neg16, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00006685 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
6686 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006687 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006688
Owen Anderson9f944592009-08-11 20:47:22 +00006689 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner7e4398742006-04-18 03:43:48 +00006690
Chris Lattner96d50482006-04-18 04:28:57 +00006691 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006692 LHS, RHS, Zero, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00006693 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006694 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006695 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006696
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006697 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006698 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson9f944592009-08-11 20:47:22 +00006699 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00006700 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006701
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006702 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006703 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson9f944592009-08-11 20:47:22 +00006704 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00006705 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006706
Bill Schmidt42995e82014-06-09 16:06:29 +00006707 // Merge the results together. Because vmuleub and vmuloub are
6708 // instructions with a big-endian bias, we must reverse the
6709 // element numbering and reverse the meaning of "odd" and "even"
6710 // when generating little endian code.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006711 int Ops[16];
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006712 for (unsigned i = 0; i != 8; ++i) {
Bill Schmidt42995e82014-06-09 16:06:29 +00006713 if (isLittleEndian) {
6714 Ops[i*2 ] = 2*i;
6715 Ops[i*2+1] = 2*i+16;
6716 } else {
6717 Ops[i*2 ] = 2*i+1;
6718 Ops[i*2+1] = 2*i+1+16;
6719 }
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006720 }
Bill Schmidt42995e82014-06-09 16:06:29 +00006721 if (isLittleEndian)
6722 return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops);
6723 else
6724 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner7e4398742006-04-18 03:43:48 +00006725 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006726 llvm_unreachable("Unknown mul to lower!");
Chris Lattner7e4398742006-04-18 03:43:48 +00006727 }
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006728}
6729
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006730/// LowerOperation - Provide custom lowering hooks for some operations.
6731///
Dan Gohman21cea8a2010-04-17 15:26:15 +00006732SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006733 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006734 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner4211ca92006-04-14 06:01:58 +00006735 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00006736 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006737 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackye3f15c982012-06-04 17:36:38 +00006738 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00006739 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006740 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sandsa0984362011-09-06 13:37:06 +00006741 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
6742 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006743 case ISD::VASTART:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006744 return LowerVASTART(Op, DAG, Subtarget);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006745
6746 case ISD::VAARG:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006747 return LowerVAARG(Op, DAG, Subtarget);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00006748
Roman Divackyc3825df2013-07-25 21:36:47 +00006749 case ISD::VACOPY:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006750 return LowerVACOPY(Op, DAG, Subtarget);
Roman Divackyc3825df2013-07-25 21:36:47 +00006751
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006752 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, Subtarget);
Chris Lattner43df5b32007-02-25 05:34:32 +00006753 case ISD::DYNAMIC_STACKALLOC:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006754 return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget);
Evan Cheng51096af2008-04-19 01:30:48 +00006755
Hal Finkel756810f2013-03-21 21:37:52 +00006756 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
6757 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
6758
Hal Finkel940ab932014-02-28 00:27:01 +00006759 case ISD::LOAD: return LowerLOAD(Op, DAG);
6760 case ISD::STORE: return LowerSTORE(Op, DAG);
6761 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006762 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen37bc85f2009-06-04 20:53:52 +00006763 case ISD::FP_TO_UINT:
6764 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Hal Finkeled844c42015-01-06 22:31:02 +00006765 SDLoc(Op));
Hal Finkelf6d45f22013-04-01 17:52:07 +00006766 case ISD::UINT_TO_FP:
6767 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman9ba4d762008-01-31 00:41:03 +00006768 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00006769
Chris Lattner4211ca92006-04-14 06:01:58 +00006770 // Lower 64-bit shifts.
Chris Lattner601b8652006-09-20 03:47:40 +00006771 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
6772 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
6773 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00006774
Chris Lattner4211ca92006-04-14 06:01:58 +00006775 // Vector-related lowering.
6776 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6777 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6778 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6779 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Hal Finkel5c0d1452014-03-30 13:22:59 +00006780 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006781 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006782
Hal Finkel25c19922013-05-15 21:37:41 +00006783 // For counter-based loop handling.
6784 case ISD::INTRINSIC_W_CHAIN: return SDValue();
6785
Chris Lattnerf6a81562007-12-08 06:59:59 +00006786 // Frame & Return address.
6787 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00006788 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnere675a082005-08-31 20:23:54 +00006789 }
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006790}
6791
Duncan Sands6ed40142008-12-01 11:39:25 +00006792void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
6793 SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006794 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006795 SDLoc dl(N);
Chris Lattner57ee7c62007-11-28 18:44:47 +00006796 switch (N->getOpcode()) {
Duncan Sands4068a7f2008-10-28 15:00:32 +00006797 default:
Craig Toppere55c5562012-02-07 02:50:20 +00006798 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkelbbdee932014-12-02 22:01:00 +00006799 case ISD::READCYCLECOUNTER: {
6800 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
6801 SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0));
6802
6803 Results.push_back(RTB);
6804 Results.push_back(RTB.getValue(1));
6805 Results.push_back(RTB.getValue(2));
6806 break;
6807 }
Hal Finkel25c19922013-05-15 21:37:41 +00006808 case ISD::INTRINSIC_W_CHAIN: {
6809 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
6810 Intrinsic::ppc_is_decremented_ctr_nonzero)
6811 break;
6812
6813 assert(N->getValueType(0) == MVT::i1 &&
6814 "Unexpected result type for CTR decrement intrinsic");
Matt Arsenault758659232013-05-18 00:21:46 +00006815 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
Hal Finkel25c19922013-05-15 21:37:41 +00006816 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
6817 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
6818 N->getOperand(1));
6819
6820 Results.push_back(NewInt);
6821 Results.push_back(NewInt.getValue(1));
6822 break;
6823 }
Roman Divacky4394e682011-06-28 15:30:42 +00006824 case ISD::VAARG: {
Eric Christophercccae792015-01-30 22:02:31 +00006825 if (!Subtarget.isSVR4ABI() || Subtarget.isPPC64())
Roman Divacky4394e682011-06-28 15:30:42 +00006826 return;
6827
6828 EVT VT = N->getValueType(0);
6829
6830 if (VT == MVT::i64) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006831 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget);
Roman Divacky4394e682011-06-28 15:30:42 +00006832
6833 Results.push_back(NewNode);
6834 Results.push_back(NewNode.getValue(1));
6835 }
6836 return;
6837 }
Duncan Sands6ed40142008-12-01 11:39:25 +00006838 case ISD::FP_ROUND_INREG: {
Owen Anderson9f944592009-08-11 20:47:22 +00006839 assert(N->getValueType(0) == MVT::ppcf128);
6840 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006841 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006842 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00006843 DAG.getIntPtrConstant(0));
Dale Johannesenf80493b2009-02-05 22:07:54 +00006844 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006845 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00006846 DAG.getIntPtrConstant(1));
6847
Ulrich Weigand874fc622013-03-26 10:56:22 +00006848 // Add the two halves of the long double in round-to-zero mode.
6849 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands6ed40142008-12-01 11:39:25 +00006850
6851 // We know the low half is about to be thrown away, so just use something
6852 // convenient.
Owen Anderson9f944592009-08-11 20:47:22 +00006853 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesenf80493b2009-02-05 22:07:54 +00006854 FPreg, FPreg));
Duncan Sands6ed40142008-12-01 11:39:25 +00006855 return;
Duncan Sands2a287912008-07-19 16:26:02 +00006856 }
Duncan Sands6ed40142008-12-01 11:39:25 +00006857 case ISD::FP_TO_SINT:
Bill Schmidt41221692013-07-09 18:50:20 +00006858 // LowerFP_TO_INT() can only handle f32 and f64.
6859 if (N->getOperand(0).getValueType() == MVT::ppcf128)
6860 return;
Dale Johannesen37bc85f2009-06-04 20:53:52 +00006861 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands6ed40142008-12-01 11:39:25 +00006862 return;
Chris Lattner57ee7c62007-11-28 18:44:47 +00006863 }
6864}
6865
6866
Chris Lattner4211ca92006-04-14 06:01:58 +00006867//===----------------------------------------------------------------------===//
6868// Other Lowering Code
6869//===----------------------------------------------------------------------===//
6870
Robin Morisset22129962014-09-23 20:46:49 +00006871static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) {
6872 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
6873 Function *Func = Intrinsic::getDeclaration(M, Id);
6874 return Builder.CreateCall(Func);
6875}
6876
6877// The mappings for emitLeading/TrailingFence is taken from
6878// http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
6879Instruction* PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
6880 AtomicOrdering Ord, bool IsStore,
6881 bool IsLoad) const {
6882 if (Ord == SequentiallyConsistent)
6883 return callIntrinsic(Builder, Intrinsic::ppc_sync);
6884 else if (isAtLeastRelease(Ord))
6885 return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
6886 else
6887 return nullptr;
6888}
6889
6890Instruction* PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
6891 AtomicOrdering Ord, bool IsStore,
6892 bool IsLoad) const {
6893 if (IsLoad && isAtLeastAcquire(Ord))
6894 return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
6895 // FIXME: this is too conservative, a dependent branch + isync is enough.
6896 // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and
6897 // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
6898 // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification.
6899 else
6900 return nullptr;
6901}
6902
Chris Lattner9b577f12005-08-26 21:23:58 +00006903MachineBasicBlock *
Dale Johannesend4eb0522008-08-25 22:34:37 +00006904PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman747e55b2009-02-07 16:15:20 +00006905 bool is64bit, unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006906 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christophercccae792015-01-30 22:02:31 +00006907 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Dale Johannesend4eb0522008-08-25 22:34:37 +00006908
6909 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6910 MachineFunction *F = BB->getParent();
6911 MachineFunction::iterator It = BB;
6912 ++It;
6913
6914 unsigned dest = MI->getOperand(0).getReg();
6915 unsigned ptrA = MI->getOperand(1).getReg();
6916 unsigned ptrB = MI->getOperand(2).getReg();
6917 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006918 DebugLoc dl = MI->getDebugLoc();
Dale Johannesend4eb0522008-08-25 22:34:37 +00006919
6920 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
6921 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6922 F->insert(It, loopMBB);
6923 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006924 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00006925 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00006926 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006927
6928 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006929 unsigned TmpReg = (!BinOpcode) ? incr :
Craig Topper61e88f42014-11-21 05:58:21 +00006930 RegInfo.createVirtualRegister( is64bit ? &PPC::G8RCRegClass
6931 : &PPC::GPRCRegClass);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006932
6933 // thisMBB:
6934 // ...
6935 // fallthrough --> loopMBB
6936 BB->addSuccessor(loopMBB);
6937
6938 // loopMBB:
6939 // l[wd]arx dest, ptr
6940 // add r0, dest, incr
6941 // st[wd]cx. r0, ptr
6942 // bne- loopMBB
6943 // fallthrough --> exitMBB
6944 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006945 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesend4eb0522008-08-25 22:34:37 +00006946 .addReg(ptrA).addReg(ptrB);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006947 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006948 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
6949 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesend4eb0522008-08-25 22:34:37 +00006950 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006951 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00006952 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006953 BB->addSuccessor(loopMBB);
6954 BB->addSuccessor(exitMBB);
6955
6956 // exitMBB:
6957 // ...
6958 BB = exitMBB;
6959 return BB;
6960}
6961
6962MachineBasicBlock *
Scott Michelcf0da6c2009-02-17 22:15:04 +00006963PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesena32affb2008-08-28 17:53:09 +00006964 MachineBasicBlock *BB,
6965 bool is8bit, // operation
Dan Gohman747e55b2009-02-07 16:15:20 +00006966 unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006967 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christophercccae792015-01-30 22:02:31 +00006968 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Dale Johannesena32affb2008-08-28 17:53:09 +00006969 // In 64 bit mode we have to use 64 bits for addresses, even though the
6970 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
6971 // registers without caring whether they're 32 or 64, but here we're
6972 // doing actual arithmetic on the addresses.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006973 bool is64bit = Subtarget.isPPC64();
Hal Finkelf70c41e2013-03-21 23:45:03 +00006974 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesena32affb2008-08-28 17:53:09 +00006975
6976 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6977 MachineFunction *F = BB->getParent();
6978 MachineFunction::iterator It = BB;
6979 ++It;
6980
6981 unsigned dest = MI->getOperand(0).getReg();
6982 unsigned ptrA = MI->getOperand(1).getReg();
6983 unsigned ptrB = MI->getOperand(2).getReg();
6984 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006985 DebugLoc dl = MI->getDebugLoc();
Dale Johannesena32affb2008-08-28 17:53:09 +00006986
6987 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
6988 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6989 F->insert(It, loopMBB);
6990 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006991 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00006992 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00006993 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesena32affb2008-08-28 17:53:09 +00006994
6995 MachineRegisterInfo &RegInfo = F->getRegInfo();
Craig Topper61e88f42014-11-21 05:58:21 +00006996 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
6997 : &PPC::GPRCRegClass;
Dale Johannesena32affb2008-08-28 17:53:09 +00006998 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
6999 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
7000 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
7001 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
7002 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
7003 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
7004 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
7005 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
7006 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
7007 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007008 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00007009 unsigned Ptr1Reg;
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007010 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00007011
7012 // thisMBB:
7013 // ...
7014 // fallthrough --> loopMBB
7015 BB->addSuccessor(loopMBB);
7016
7017 // The 4-byte load must be aligned, while a char or short may be
7018 // anywhere in the word. Hence all this nasty bookkeeping code.
7019 // add ptr1, ptrA, ptrB [copy if ptrA==0]
7020 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00007021 // xori shift, shift1, 24 [16]
Dale Johannesena32affb2008-08-28 17:53:09 +00007022 // rlwinm ptr, ptr1, 0, 0, 29
7023 // slw incr2, incr, shift
7024 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
7025 // slw mask, mask2, shift
7026 // loopMBB:
Dale Johannesen340d2642008-08-30 00:08:53 +00007027 // lwarx tmpDest, ptr
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007028 // add tmp, tmpDest, incr2
7029 // andc tmp2, tmpDest, mask
Dale Johannesena32affb2008-08-28 17:53:09 +00007030 // and tmp3, tmp, mask
7031 // or tmp4, tmp3, tmp2
Dale Johannesen340d2642008-08-30 00:08:53 +00007032 // stwcx. tmp4, ptr
Dale Johannesena32affb2008-08-28 17:53:09 +00007033 // bne- loopMBB
7034 // fallthrough --> exitMBB
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007035 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007036 if (ptrA != ZeroReg) {
Dale Johannesena32affb2008-08-28 17:53:09 +00007037 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007038 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007039 .addReg(ptrA).addReg(ptrB);
7040 } else {
7041 Ptr1Reg = ptrB;
7042 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007043 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007044 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007045 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007046 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
7047 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007048 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007049 .addReg(Ptr1Reg).addImm(0).addImm(61);
7050 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00007051 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007052 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007053 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007054 .addReg(incr).addReg(ShiftReg);
7055 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007056 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesena32affb2008-08-28 17:53:09 +00007057 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00007058 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
7059 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesena32affb2008-08-28 17:53:09 +00007060 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007061 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007062 .addReg(Mask2Reg).addReg(ShiftReg);
7063
7064 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007065 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007066 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007067 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007068 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007069 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007070 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007071 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007072 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007073 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007074 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007075 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidt3581cd42013-04-02 18:37:08 +00007076 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007077 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007078 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00007079 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesena32affb2008-08-28 17:53:09 +00007080 BB->addSuccessor(loopMBB);
7081 BB->addSuccessor(exitMBB);
7082
7083 // exitMBB:
7084 // ...
7085 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00007086 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
7087 .addReg(ShiftReg);
Dale Johannesena32affb2008-08-28 17:53:09 +00007088 return BB;
7089}
7090
Hal Finkel756810f2013-03-21 21:37:52 +00007091llvm::MachineBasicBlock*
7092PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
7093 MachineBasicBlock *MBB) const {
7094 DebugLoc DL = MI->getDebugLoc();
Eric Christophercccae792015-01-30 22:02:31 +00007095 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00007096
7097 MachineFunction *MF = MBB->getParent();
7098 MachineRegisterInfo &MRI = MF->getRegInfo();
7099
7100 const BasicBlock *BB = MBB->getBasicBlock();
7101 MachineFunction::iterator I = MBB;
7102 ++I;
7103
7104 // Memory Reference
7105 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
7106 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
7107
7108 unsigned DstReg = MI->getOperand(0).getReg();
7109 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
7110 assert(RC->hasType(MVT::i32) && "Invalid destination!");
7111 unsigned mainDstReg = MRI.createVirtualRegister(RC);
7112 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
7113
7114 MVT PVT = getPointerTy();
7115 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
7116 "Invalid Pointer Size!");
7117 // For v = setjmp(buf), we generate
7118 //
7119 // thisMBB:
7120 // SjLjSetup mainMBB
7121 // bl mainMBB
7122 // v_restore = 1
7123 // b sinkMBB
7124 //
7125 // mainMBB:
7126 // buf[LabelOffset] = LR
7127 // v_main = 0
7128 //
7129 // sinkMBB:
7130 // v = phi(main, restore)
7131 //
7132
7133 MachineBasicBlock *thisMBB = MBB;
7134 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
7135 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
7136 MF->insert(I, mainMBB);
7137 MF->insert(I, sinkMBB);
7138
7139 MachineInstrBuilder MIB;
7140
7141 // Transfer the remainder of BB and its successor edges to sinkMBB.
7142 sinkMBB->splice(sinkMBB->begin(), MBB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007143 std::next(MachineBasicBlock::iterator(MI)), MBB->end());
Hal Finkel756810f2013-03-21 21:37:52 +00007144 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
7145
7146 // Note that the structure of the jmp_buf used here is not compatible
7147 // with that used by libc, and is not designed to be. Specifically, it
7148 // stores only those 'reserved' registers that LLVM does not otherwise
7149 // understand how to spill. Also, by convention, by the time this
7150 // intrinsic is called, Clang has already stored the frame address in the
7151 // first slot of the buffer and stack address in the third. Following the
7152 // X86 target code, we'll store the jump address in the second slot. We also
7153 // need to save the TOC pointer (R2) to handle jumps between shared
7154 // libraries, and that will be stored in the fourth slot. The thread
7155 // identifier (R13) is not affected.
7156
7157 // thisMBB:
7158 const int64_t LabelOffset = 1 * PVT.getStoreSize();
7159 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00007160 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00007161
7162 // Prepare IP either in reg.
7163 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
7164 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
7165 unsigned BufReg = MI->getOperand(1).getReg();
7166
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007167 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) {
Hal Finkele6698d52015-02-01 15:03:28 +00007168 setUsesTOCBasePtr(*MBB->getParent());
Hal Finkel756810f2013-03-21 21:37:52 +00007169 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
7170 .addReg(PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007171 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007172 .addReg(BufReg);
Hal Finkel756810f2013-03-21 21:37:52 +00007173 MIB.setMemRefs(MMOBegin, MMOEnd);
7174 }
7175
Hal Finkelf05d6c72013-07-17 23:50:51 +00007176 // Naked functions never have a base pointer, and so we use r1. For all
7177 // other functions, this decision must be delayed until during PEI.
7178 unsigned BaseReg;
7179 if (MF->getFunction()->getAttributes().hasAttribute(
7180 AttributeSet::FunctionIndex, Attribute::Naked))
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007181 BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
Hal Finkelf05d6c72013-07-17 23:50:51 +00007182 else
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007183 BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP;
Hal Finkelf05d6c72013-07-17 23:50:51 +00007184
7185 MIB = BuildMI(*thisMBB, MI, DL,
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007186 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW))
Eric Christophercccae792015-01-30 22:02:31 +00007187 .addReg(BaseReg)
7188 .addImm(BPOffset)
7189 .addReg(BufReg);
Hal Finkelf05d6c72013-07-17 23:50:51 +00007190 MIB.setMemRefs(MMOBegin, MMOEnd);
7191
Hal Finkel756810f2013-03-21 21:37:52 +00007192 // Setup
Hal Finkele5680b32013-04-04 22:55:54 +00007193 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Eric Christophercccae792015-01-30 22:02:31 +00007194 const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo();
Bill Wendling5e7656b2013-06-07 07:55:53 +00007195 MIB.addRegMask(TRI->getNoPreservedMask());
Hal Finkel756810f2013-03-21 21:37:52 +00007196
7197 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
7198
7199 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
7200 .addMBB(mainMBB);
7201 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
7202
7203 thisMBB->addSuccessor(mainMBB, /* weight */ 0);
7204 thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
7205
7206 // mainMBB:
7207 // mainDstReg = 0
Eric Christophercccae792015-01-30 22:02:31 +00007208 MIB =
7209 BuildMI(mainMBB, DL,
7210 TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
Hal Finkel756810f2013-03-21 21:37:52 +00007211
7212 // Store IP
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007213 if (Subtarget.isPPC64()) {
Hal Finkel756810f2013-03-21 21:37:52 +00007214 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
7215 .addReg(LabelReg)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007216 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007217 .addReg(BufReg);
7218 } else {
7219 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
7220 .addReg(LabelReg)
7221 .addImm(LabelOffset)
7222 .addReg(BufReg);
7223 }
7224
7225 MIB.setMemRefs(MMOBegin, MMOEnd);
7226
7227 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
7228 mainMBB->addSuccessor(sinkMBB);
7229
7230 // sinkMBB:
7231 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
7232 TII->get(PPC::PHI), DstReg)
7233 .addReg(mainDstReg).addMBB(mainMBB)
7234 .addReg(restoreDstReg).addMBB(thisMBB);
7235
7236 MI->eraseFromParent();
7237 return sinkMBB;
7238}
7239
7240MachineBasicBlock *
7241PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
7242 MachineBasicBlock *MBB) const {
7243 DebugLoc DL = MI->getDebugLoc();
Eric Christophercccae792015-01-30 22:02:31 +00007244 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00007245
7246 MachineFunction *MF = MBB->getParent();
7247 MachineRegisterInfo &MRI = MF->getRegInfo();
7248
7249 // Memory Reference
7250 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
7251 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
7252
7253 MVT PVT = getPointerTy();
7254 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
7255 "Invalid Pointer Size!");
7256
7257 const TargetRegisterClass *RC =
7258 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
7259 unsigned Tmp = MRI.createVirtualRegister(RC);
7260 // Since FP is only updated here but NOT referenced, it's treated as GPR.
7261 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
7262 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
Eric Christophercccae792015-01-30 22:02:31 +00007263 unsigned BP =
7264 (PVT == MVT::i64)
7265 ? PPC::X30
7266 : (Subtarget.isSVR4ABI() &&
7267 MF->getTarget().getRelocationModel() == Reloc::PIC_
7268 ? PPC::R29
7269 : PPC::R30);
Hal Finkel756810f2013-03-21 21:37:52 +00007270
7271 MachineInstrBuilder MIB;
7272
7273 const int64_t LabelOffset = 1 * PVT.getStoreSize();
7274 const int64_t SPOffset = 2 * PVT.getStoreSize();
7275 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00007276 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00007277
7278 unsigned BufReg = MI->getOperand(0).getReg();
7279
7280 // Reload FP (the jumped-to function may not have had a
7281 // frame pointer, and if so, then its r31 will be restored
7282 // as necessary).
7283 if (PVT == MVT::i64) {
7284 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
7285 .addImm(0)
7286 .addReg(BufReg);
7287 } else {
7288 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
7289 .addImm(0)
7290 .addReg(BufReg);
7291 }
7292 MIB.setMemRefs(MMOBegin, MMOEnd);
7293
7294 // Reload IP
7295 if (PVT == MVT::i64) {
7296 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007297 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007298 .addReg(BufReg);
7299 } else {
7300 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
7301 .addImm(LabelOffset)
7302 .addReg(BufReg);
7303 }
7304 MIB.setMemRefs(MMOBegin, MMOEnd);
7305
7306 // Reload SP
7307 if (PVT == MVT::i64) {
7308 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007309 .addImm(SPOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007310 .addReg(BufReg);
7311 } else {
7312 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
7313 .addImm(SPOffset)
7314 .addReg(BufReg);
7315 }
7316 MIB.setMemRefs(MMOBegin, MMOEnd);
7317
Hal Finkelf05d6c72013-07-17 23:50:51 +00007318 // Reload BP
7319 if (PVT == MVT::i64) {
7320 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
7321 .addImm(BPOffset)
7322 .addReg(BufReg);
7323 } else {
7324 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
7325 .addImm(BPOffset)
7326 .addReg(BufReg);
7327 }
7328 MIB.setMemRefs(MMOBegin, MMOEnd);
Hal Finkel756810f2013-03-21 21:37:52 +00007329
7330 // Reload TOC
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007331 if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) {
Hal Finkele6698d52015-02-01 15:03:28 +00007332 setUsesTOCBasePtr(*MBB->getParent());
Hal Finkel756810f2013-03-21 21:37:52 +00007333 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007334 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007335 .addReg(BufReg);
7336
7337 MIB.setMemRefs(MMOBegin, MMOEnd);
7338 }
7339
7340 // Jump
7341 BuildMI(*MBB, MI, DL,
7342 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
7343 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
7344
7345 MI->eraseFromParent();
7346 return MBB;
7347}
7348
Dale Johannesena32affb2008-08-28 17:53:09 +00007349MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00007350PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00007351 MachineBasicBlock *BB) const {
Hal Finkel934361a2015-01-14 01:07:51 +00007352 if (MI->getOpcode() == TargetOpcode::STACKMAP ||
Hal Finkelaf519932015-01-19 07:20:27 +00007353 MI->getOpcode() == TargetOpcode::PATCHPOINT) {
7354 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI() &&
7355 MI->getOpcode() == TargetOpcode::PATCHPOINT) {
7356 // Call lowering should have added an r2 operand to indicate a dependence
7357 // on the TOC base pointer value. It can't however, because there is no
7358 // way to mark the dependence as implicit there, and so the stackmap code
7359 // will confuse it with a regular operand. Instead, add the dependence
7360 // here.
Hal Finkele6698d52015-02-01 15:03:28 +00007361 setUsesTOCBasePtr(*BB->getParent());
Hal Finkelaf519932015-01-19 07:20:27 +00007362 MI->addOperand(MachineOperand::CreateReg(PPC::X2, false, true));
7363 }
7364
Hal Finkel934361a2015-01-14 01:07:51 +00007365 return emitPatchPoint(MI, BB);
Hal Finkelaf519932015-01-19 07:20:27 +00007366 }
Hal Finkel934361a2015-01-14 01:07:51 +00007367
Hal Finkel756810f2013-03-21 21:37:52 +00007368 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
7369 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
7370 return emitEHSjLjSetJmp(MI, BB);
7371 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
7372 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
7373 return emitEHSjLjLongJmp(MI, BB);
7374 }
7375
Eric Christophercccae792015-01-30 22:02:31 +00007376 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Evan Cheng32e376f2008-07-12 02:23:19 +00007377
7378 // To "insert" these instructions we actually have to insert their
7379 // control-flow patterns.
Chris Lattner9b577f12005-08-26 21:23:58 +00007380 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman3b460302008-07-07 23:14:23 +00007381 MachineFunction::iterator It = BB;
Chris Lattner9b577f12005-08-26 21:23:58 +00007382 ++It;
Evan Cheng32e376f2008-07-12 02:23:19 +00007383
Dan Gohman3b460302008-07-07 23:14:23 +00007384 MachineFunction *F = BB->getParent();
Evan Cheng32e376f2008-07-12 02:23:19 +00007385
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007386 if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
Eric Christophercccae792015-01-30 22:02:31 +00007387 MI->getOpcode() == PPC::SELECT_CC_I8 ||
7388 MI->getOpcode() == PPC::SELECT_I4 ||
7389 MI->getOpcode() == PPC::SELECT_I8)) {
Hal Finkeled6a2852013-04-05 23:29:01 +00007390 SmallVector<MachineOperand, 2> Cond;
Hal Finkel940ab932014-02-28 00:27:01 +00007391 if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7392 MI->getOpcode() == PPC::SELECT_CC_I8)
7393 Cond.push_back(MI->getOperand(4));
7394 else
7395 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
Hal Finkeled6a2852013-04-05 23:29:01 +00007396 Cond.push_back(MI->getOperand(1));
7397
Hal Finkel460e94d2012-06-22 23:10:08 +00007398 DebugLoc dl = MI->getDebugLoc();
Bill Wendling5e7656b2013-06-07 07:55:53 +00007399 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
7400 Cond, MI->getOperand(2).getReg(),
7401 MI->getOperand(3).getReg());
Hal Finkel460e94d2012-06-22 23:10:08 +00007402 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7403 MI->getOpcode() == PPC::SELECT_CC_I8 ||
7404 MI->getOpcode() == PPC::SELECT_CC_F4 ||
7405 MI->getOpcode() == PPC::SELECT_CC_F8 ||
Hal Finkel940ab932014-02-28 00:27:01 +00007406 MI->getOpcode() == PPC::SELECT_CC_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00007407 MI->getOpcode() == PPC::SELECT_CC_VSFRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007408 MI->getOpcode() == PPC::SELECT_CC_VSRC ||
Hal Finkel940ab932014-02-28 00:27:01 +00007409 MI->getOpcode() == PPC::SELECT_I4 ||
7410 MI->getOpcode() == PPC::SELECT_I8 ||
7411 MI->getOpcode() == PPC::SELECT_F4 ||
7412 MI->getOpcode() == PPC::SELECT_F8 ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007413 MI->getOpcode() == PPC::SELECT_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00007414 MI->getOpcode() == PPC::SELECT_VSFRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007415 MI->getOpcode() == PPC::SELECT_VSRC) {
Evan Cheng32e376f2008-07-12 02:23:19 +00007416 // The incoming instruction knows the destination vreg to set, the
7417 // condition code register to branch on, the true/false values to
7418 // select between, and a branch opcode to use.
7419
7420 // thisMBB:
7421 // ...
7422 // TrueVal = ...
7423 // cmpTY ccX, r1, r2
7424 // bCC copy1MBB
7425 // fallthrough --> copy0MBB
7426 MachineBasicBlock *thisMBB = BB;
7427 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7428 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007429 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00007430 F->insert(It, copy0MBB);
7431 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007432
7433 // Transfer the remainder of BB and its successor edges to sinkMBB.
7434 sinkMBB->splice(sinkMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007435 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007436 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7437
Evan Cheng32e376f2008-07-12 02:23:19 +00007438 // Next, add the true and fallthrough blocks as its successors.
7439 BB->addSuccessor(copy0MBB);
7440 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007441
Hal Finkel940ab932014-02-28 00:27:01 +00007442 if (MI->getOpcode() == PPC::SELECT_I4 ||
7443 MI->getOpcode() == PPC::SELECT_I8 ||
7444 MI->getOpcode() == PPC::SELECT_F4 ||
7445 MI->getOpcode() == PPC::SELECT_F8 ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007446 MI->getOpcode() == PPC::SELECT_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00007447 MI->getOpcode() == PPC::SELECT_VSFRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007448 MI->getOpcode() == PPC::SELECT_VSRC) {
Hal Finkel940ab932014-02-28 00:27:01 +00007449 BuildMI(BB, dl, TII->get(PPC::BC))
7450 .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7451 } else {
7452 unsigned SelectPred = MI->getOperand(4).getImm();
7453 BuildMI(BB, dl, TII->get(PPC::BCC))
7454 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7455 }
Dan Gohman34396292010-07-06 20:24:04 +00007456
Evan Cheng32e376f2008-07-12 02:23:19 +00007457 // copy0MBB:
7458 // %FalseValue = ...
7459 // # fallthrough to sinkMBB
7460 BB = copy0MBB;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007461
Evan Cheng32e376f2008-07-12 02:23:19 +00007462 // Update machine-CFG edges
7463 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007464
Evan Cheng32e376f2008-07-12 02:23:19 +00007465 // sinkMBB:
7466 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7467 // ...
7468 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00007469 BuildMI(*BB, BB->begin(), dl,
7470 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng32e376f2008-07-12 02:23:19 +00007471 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
7472 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
Hal Finkelbbdee932014-12-02 22:01:00 +00007473 } else if (MI->getOpcode() == PPC::ReadTB) {
7474 // To read the 64-bit time-base register on a 32-bit target, we read the
7475 // two halves. Should the counter have wrapped while it was being read, we
7476 // need to try again.
7477 // ...
7478 // readLoop:
7479 // mfspr Rx,TBU # load from TBU
7480 // mfspr Ry,TB # load from TB
7481 // mfspr Rz,TBU # load from TBU
7482 // cmpw crX,Rx,Rz # check if ‘old’=’new’
7483 // bne readLoop # branch if they're not equal
7484 // ...
7485
7486 MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB);
7487 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
7488 DebugLoc dl = MI->getDebugLoc();
7489 F->insert(It, readMBB);
7490 F->insert(It, sinkMBB);
7491
7492 // Transfer the remainder of BB and its successor edges to sinkMBB.
7493 sinkMBB->splice(sinkMBB->begin(), BB,
7494 std::next(MachineBasicBlock::iterator(MI)), BB->end());
7495 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7496
7497 BB->addSuccessor(readMBB);
7498 BB = readMBB;
7499
7500 MachineRegisterInfo &RegInfo = F->getRegInfo();
7501 unsigned ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
7502 unsigned LoReg = MI->getOperand(0).getReg();
7503 unsigned HiReg = MI->getOperand(1).getReg();
7504
7505 BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269);
7506 BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268);
7507 BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269);
7508
7509 unsigned CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
7510
7511 BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg)
7512 .addReg(HiReg).addReg(ReadAgainReg);
7513 BuildMI(BB, dl, TII->get(PPC::BCC))
7514 .addImm(PPC::PRED_NE).addReg(CmpReg).addMBB(readMBB);
7515
7516 BB->addSuccessor(readMBB);
7517 BB->addSuccessor(sinkMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007518 }
Dale Johannesena32affb2008-08-28 17:53:09 +00007519 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
7520 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
7521 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
7522 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007523 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
7524 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
7525 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
7526 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007527
7528 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
7529 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
7530 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
7531 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007532 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
7533 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
7534 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
7535 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007536
7537 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
7538 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
7539 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
7540 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007541 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
7542 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
7543 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
7544 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007545
7546 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
7547 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
7548 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
7549 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007550 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
7551 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
7552 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
7553 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007554
7555 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007556 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND);
Dale Johannesena32affb2008-08-28 17:53:09 +00007557 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007558 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007559 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007560 BB = EmitAtomicBinary(MI, BB, false, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007561 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007562 BB = EmitAtomicBinary(MI, BB, true, PPC::NAND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007563
7564 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
7565 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
7566 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
7567 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007568 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
7569 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
7570 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
7571 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007572
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007573 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
7574 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
7575 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
7576 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
7577 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
7578 BB = EmitAtomicBinary(MI, BB, false, 0);
7579 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
7580 BB = EmitAtomicBinary(MI, BB, true, 0);
7581
Evan Cheng32e376f2008-07-12 02:23:19 +00007582 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
7583 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
7584 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
7585
7586 unsigned dest = MI->getOperand(0).getReg();
7587 unsigned ptrA = MI->getOperand(1).getReg();
7588 unsigned ptrB = MI->getOperand(2).getReg();
7589 unsigned oldval = MI->getOperand(3).getReg();
7590 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00007591 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00007592
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007593 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7594 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7595 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007596 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007597 F->insert(It, loop1MBB);
7598 F->insert(It, loop2MBB);
7599 F->insert(It, midMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007600 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007601 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007602 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007603 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007604
7605 // thisMBB:
7606 // ...
7607 // fallthrough --> loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007608 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007609
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007610 // loop1MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00007611 // l[wd]arx dest, ptr
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007612 // cmp[wd] dest, oldval
7613 // bne- midMBB
7614 // loop2MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00007615 // st[wd]cx. newval, ptr
7616 // bne- loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007617 // b exitBB
7618 // midMBB:
7619 // st[wd]cx. dest, ptr
7620 // exitBB:
7621 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007622 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng32e376f2008-07-12 02:23:19 +00007623 .addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007624 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng32e376f2008-07-12 02:23:19 +00007625 .addReg(oldval).addReg(dest);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007626 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007627 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7628 BB->addSuccessor(loop2MBB);
7629 BB->addSuccessor(midMBB);
7630
7631 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007632 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng32e376f2008-07-12 02:23:19 +00007633 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007634 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007635 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007636 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007637 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007638 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007639
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007640 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007641 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007642 .addReg(dest).addReg(ptrA).addReg(ptrB);
7643 BB->addSuccessor(exitMBB);
7644
Evan Cheng32e376f2008-07-12 02:23:19 +00007645 // exitMBB:
7646 // ...
7647 BB = exitMBB;
Dale Johannesen340d2642008-08-30 00:08:53 +00007648 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
7649 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
7650 // We must use 64-bit registers for addresses when targeting 64-bit,
7651 // since we're actually doing arithmetic on them. Other registers
7652 // can be 32-bit.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007653 bool is64bit = Subtarget.isPPC64();
Dale Johannesen340d2642008-08-30 00:08:53 +00007654 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
7655
7656 unsigned dest = MI->getOperand(0).getReg();
7657 unsigned ptrA = MI->getOperand(1).getReg();
7658 unsigned ptrB = MI->getOperand(2).getReg();
7659 unsigned oldval = MI->getOperand(3).getReg();
7660 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00007661 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen340d2642008-08-30 00:08:53 +00007662
7663 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7664 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7665 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
7666 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
7667 F->insert(It, loop1MBB);
7668 F->insert(It, loop2MBB);
7669 F->insert(It, midMBB);
7670 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007671 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007672 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007673 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen340d2642008-08-30 00:08:53 +00007674
7675 MachineRegisterInfo &RegInfo = F->getRegInfo();
Craig Topper61e88f42014-11-21 05:58:21 +00007676 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
7677 : &PPC::GPRCRegClass;
Dale Johannesen340d2642008-08-30 00:08:53 +00007678 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
7679 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
7680 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
7681 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
7682 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
7683 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
7684 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
7685 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
7686 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
7687 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
7688 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
7689 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
7690 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
7691 unsigned Ptr1Reg;
7692 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkelf70c41e2013-03-21 23:45:03 +00007693 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen340d2642008-08-30 00:08:53 +00007694 // thisMBB:
7695 // ...
7696 // fallthrough --> loopMBB
7697 BB->addSuccessor(loop1MBB);
7698
7699 // The 4-byte load must be aligned, while a char or short may be
7700 // anywhere in the word. Hence all this nasty bookkeeping code.
7701 // add ptr1, ptrA, ptrB [copy if ptrA==0]
7702 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00007703 // xori shift, shift1, 24 [16]
Dale Johannesen340d2642008-08-30 00:08:53 +00007704 // rlwinm ptr, ptr1, 0, 0, 29
7705 // slw newval2, newval, shift
7706 // slw oldval2, oldval,shift
7707 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
7708 // slw mask, mask2, shift
7709 // and newval3, newval2, mask
7710 // and oldval3, oldval2, mask
7711 // loop1MBB:
7712 // lwarx tmpDest, ptr
7713 // and tmp, tmpDest, mask
7714 // cmpw tmp, oldval3
7715 // bne- midMBB
7716 // loop2MBB:
7717 // andc tmp2, tmpDest, mask
7718 // or tmp4, tmp2, newval3
7719 // stwcx. tmp4, ptr
7720 // bne- loop1MBB
7721 // b exitBB
7722 // midMBB:
7723 // stwcx. tmpDest, ptr
7724 // exitBB:
7725 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007726 if (ptrA != ZeroReg) {
Dale Johannesen340d2642008-08-30 00:08:53 +00007727 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007728 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007729 .addReg(ptrA).addReg(ptrB);
7730 } else {
7731 Ptr1Reg = ptrB;
7732 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007733 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007734 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007735 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007736 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
7737 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007738 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007739 .addReg(Ptr1Reg).addImm(0).addImm(61);
7740 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00007741 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007742 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007743 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007744 .addReg(newval).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007745 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007746 .addReg(oldval).addReg(ShiftReg);
7747 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007748 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen340d2642008-08-30 00:08:53 +00007749 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00007750 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
7751 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
7752 .addReg(Mask3Reg).addImm(65535);
Dale Johannesen340d2642008-08-30 00:08:53 +00007753 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007754 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007755 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007756 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007757 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007758 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007759 .addReg(OldVal2Reg).addReg(MaskReg);
7760
7761 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007762 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007763 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007764 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
7765 .addReg(TmpDestReg).addReg(MaskReg);
7766 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesen340d2642008-08-30 00:08:53 +00007767 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007768 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00007769 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7770 BB->addSuccessor(loop2MBB);
7771 BB->addSuccessor(midMBB);
7772
7773 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007774 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
7775 .addReg(TmpDestReg).addReg(MaskReg);
7776 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
7777 .addReg(Tmp2Reg).addReg(NewVal3Reg);
7778 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007779 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007780 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00007781 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007782 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen340d2642008-08-30 00:08:53 +00007783 BB->addSuccessor(loop1MBB);
7784 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007785
Dale Johannesen340d2642008-08-30 00:08:53 +00007786 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007787 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007788 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00007789 BB->addSuccessor(exitMBB);
7790
7791 // exitMBB:
7792 // ...
7793 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00007794 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
7795 .addReg(ShiftReg);
Ulrich Weigand874fc622013-03-26 10:56:22 +00007796 } else if (MI->getOpcode() == PPC::FADDrtz) {
7797 // This pseudo performs an FADD with rounding mode temporarily forced
7798 // to round-to-zero. We emit this via custom inserter since the FPSCR
7799 // is not modeled at the SelectionDAG level.
7800 unsigned Dest = MI->getOperand(0).getReg();
7801 unsigned Src1 = MI->getOperand(1).getReg();
7802 unsigned Src2 = MI->getOperand(2).getReg();
7803 DebugLoc dl = MI->getDebugLoc();
7804
7805 MachineRegisterInfo &RegInfo = F->getRegInfo();
7806 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
7807
7808 // Save FPSCR value.
7809 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
7810
7811 // Set rounding mode to round-to-zero.
7812 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
7813 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
7814
7815 // Perform addition.
7816 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
7817
7818 // Restore FPSCR value.
Hal Finkel64202162015-01-15 01:00:53 +00007819 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg);
Hal Finkel940ab932014-02-28 00:27:01 +00007820 } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7821 MI->getOpcode() == PPC::ANDIo_1_GT_BIT ||
7822 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7823 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) {
7824 unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7825 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ?
7826 PPC::ANDIo8 : PPC::ANDIo;
7827 bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7828 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8);
7829
7830 MachineRegisterInfo &RegInfo = F->getRegInfo();
7831 unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ?
7832 &PPC::GPRCRegClass :
7833 &PPC::G8RCRegClass);
7834
7835 DebugLoc dl = MI->getDebugLoc();
7836 BuildMI(*BB, MI, dl, TII->get(Opcode), Dest)
7837 .addReg(MI->getOperand(1).getReg()).addImm(1);
7838 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY),
7839 MI->getOperand(0).getReg())
7840 .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT);
Dale Johannesen340d2642008-08-30 00:08:53 +00007841 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00007842 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng32e376f2008-07-12 02:23:19 +00007843 }
Chris Lattner9b577f12005-08-26 21:23:58 +00007844
Dan Gohman34396292010-07-06 20:24:04 +00007845 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner9b577f12005-08-26 21:23:58 +00007846 return BB;
7847}
7848
Chris Lattner4211ca92006-04-14 06:01:58 +00007849//===----------------------------------------------------------------------===//
7850// Target Optimization Hooks
7851//===----------------------------------------------------------------------===//
7852
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007853SDValue PPCTargetLowering::getRsqrtEstimate(SDValue Operand,
7854 DAGCombinerInfo &DCI,
Sanjay Patel957efc232014-10-24 17:02:16 +00007855 unsigned &RefinementSteps,
7856 bool &UseOneConstNR) const {
Sanjay Patelbdf1e382014-09-26 23:01:47 +00007857 EVT VT = Operand.getValueType();
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007858 if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) ||
Eric Christophercccae792015-01-30 22:02:31 +00007859 (VT == MVT::f64 && Subtarget.hasFRSQRTE()) ||
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007860 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7861 (VT == MVT::v2f64 && Subtarget.hasVSX())) {
Hal Finkel2e103312013-04-03 04:01:11 +00007862 // Convergence is quadratic, so we essentially double the number of digits
Sanjay Patelbdf1e382014-09-26 23:01:47 +00007863 // correct after every iteration. For both FRE and FRSQRTE, the minimum
7864 // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
7865 // 2^-14. IEEE float has 23 digits and double has 52 digits.
7866 RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00007867 if (VT.getScalarType() == MVT::f64)
Sanjay Patelbdf1e382014-09-26 23:01:47 +00007868 ++RefinementSteps;
Sanjay Patel957efc232014-10-24 17:02:16 +00007869 UseOneConstNR = true;
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007870 return DCI.DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand);
Hal Finkel2e103312013-04-03 04:01:11 +00007871 }
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007872 return SDValue();
7873}
7874
7875SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand,
7876 DAGCombinerInfo &DCI,
7877 unsigned &RefinementSteps) const {
7878 EVT VT = Operand.getValueType();
7879 if ((VT == MVT::f32 && Subtarget.hasFRES()) ||
Eric Christophercccae792015-01-30 22:02:31 +00007880 (VT == MVT::f64 && Subtarget.hasFRE()) ||
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007881 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7882 (VT == MVT::v2f64 && Subtarget.hasVSX())) {
7883 // Convergence is quadratic, so we essentially double the number of digits
7884 // correct after every iteration. For both FRE and FRSQRTE, the minimum
7885 // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
7886 // 2^-14. IEEE float has 23 digits and double has 52 digits.
7887 RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
7888 if (VT.getScalarType() == MVT::f64)
7889 ++RefinementSteps;
7890 return DCI.DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand);
7891 }
7892 return SDValue();
Hal Finkel2e103312013-04-03 04:01:11 +00007893}
7894
Hal Finkel360f2132014-11-24 23:45:21 +00007895bool PPCTargetLowering::combineRepeatedFPDivisors(unsigned NumUsers) const {
7896 // Note: This functionality is used only when unsafe-fp-math is enabled, and
7897 // on cores with reciprocal estimates (which are used when unsafe-fp-math is
7898 // enabled for division), this functionality is redundant with the default
7899 // combiner logic (once the division -> reciprocal/multiply transformation
7900 // has taken place). As a result, this matters more for older cores than for
7901 // newer ones.
7902
7903 // Combine multiple FDIVs with the same divisor into multiple FMULs by the
7904 // reciprocal if there are two or more FDIVs (for embedded cores with only
7905 // one FP pipeline) for three or more FDIVs (for generic OOO cores).
7906 switch (Subtarget.getDarwinDirective()) {
7907 default:
7908 return NumUsers > 2;
7909 case PPC::DIR_440:
7910 case PPC::DIR_A2:
7911 case PPC::DIR_E500mc:
7912 case PPC::DIR_E5500:
7913 return NumUsers > 1;
7914 }
7915}
7916
Hal Finkel3604bf72014-08-01 01:02:01 +00007917static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base,
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007918 unsigned Bytes, int Dist,
7919 SelectionDAG &DAG) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007920 if (VT.getSizeInBits() / 8 != Bytes)
7921 return false;
7922
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007923 SDValue BaseLoc = Base->getBasePtr();
7924 if (Loc.getOpcode() == ISD::FrameIndex) {
7925 if (BaseLoc.getOpcode() != ISD::FrameIndex)
7926 return false;
7927 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7928 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
7929 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
7930 int FS = MFI->getObjectSize(FI);
7931 int BFS = MFI->getObjectSize(BFI);
7932 if (FS != BFS || FS != (int)Bytes) return false;
7933 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
7934 }
7935
7936 // Handle X+C
7937 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
7938 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
7939 return true;
7940
7941 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Craig Topper062a2ba2014-04-25 05:30:21 +00007942 const GlobalValue *GV1 = nullptr;
7943 const GlobalValue *GV2 = nullptr;
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007944 int64_t Offset1 = 0;
7945 int64_t Offset2 = 0;
7946 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
7947 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
7948 if (isGA1 && isGA2 && GV1 == GV2)
7949 return Offset1 == (Offset2 + Dist*Bytes);
7950 return false;
7951}
7952
Hal Finkel3604bf72014-08-01 01:02:01 +00007953// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
7954// not enforce equality of the chain operands.
7955static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base,
7956 unsigned Bytes, int Dist,
7957 SelectionDAG &DAG) {
7958 if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) {
7959 EVT VT = LS->getMemoryVT();
7960 SDValue Loc = LS->getBasePtr();
7961 return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG);
7962 }
7963
7964 if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
7965 EVT VT;
7966 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7967 default: return false;
7968 case Intrinsic::ppc_altivec_lvx:
7969 case Intrinsic::ppc_altivec_lvxl:
Bill Schmidt72954782014-11-12 04:19:40 +00007970 case Intrinsic::ppc_vsx_lxvw4x:
Hal Finkel3604bf72014-08-01 01:02:01 +00007971 VT = MVT::v4i32;
7972 break;
Bill Schmidt72954782014-11-12 04:19:40 +00007973 case Intrinsic::ppc_vsx_lxvd2x:
7974 VT = MVT::v2f64;
7975 break;
Hal Finkel3604bf72014-08-01 01:02:01 +00007976 case Intrinsic::ppc_altivec_lvebx:
7977 VT = MVT::i8;
7978 break;
7979 case Intrinsic::ppc_altivec_lvehx:
7980 VT = MVT::i16;
7981 break;
7982 case Intrinsic::ppc_altivec_lvewx:
7983 VT = MVT::i32;
7984 break;
7985 }
7986
7987 return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG);
7988 }
7989
7990 if (N->getOpcode() == ISD::INTRINSIC_VOID) {
7991 EVT VT;
7992 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7993 default: return false;
7994 case Intrinsic::ppc_altivec_stvx:
7995 case Intrinsic::ppc_altivec_stvxl:
Bill Schmidt72954782014-11-12 04:19:40 +00007996 case Intrinsic::ppc_vsx_stxvw4x:
Hal Finkel3604bf72014-08-01 01:02:01 +00007997 VT = MVT::v4i32;
7998 break;
Bill Schmidt72954782014-11-12 04:19:40 +00007999 case Intrinsic::ppc_vsx_stxvd2x:
8000 VT = MVT::v2f64;
8001 break;
Hal Finkel3604bf72014-08-01 01:02:01 +00008002 case Intrinsic::ppc_altivec_stvebx:
8003 VT = MVT::i8;
8004 break;
8005 case Intrinsic::ppc_altivec_stvehx:
8006 VT = MVT::i16;
8007 break;
8008 case Intrinsic::ppc_altivec_stvewx:
8009 VT = MVT::i32;
8010 break;
8011 }
8012
8013 return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG);
8014 }
8015
8016 return false;
8017}
8018
Hal Finkel7d8a6912013-05-26 18:08:30 +00008019// Return true is there is a nearyby consecutive load to the one provided
8020// (regardless of alignment). We search up and down the chain, looking though
Matt Arsenault57e74d22014-07-29 00:02:40 +00008021// token factors and other loads (but nothing else). As a result, a true result
8022// indicates that it is safe to create a new consecutive load adjacent to the
8023// load provided.
Hal Finkel7d8a6912013-05-26 18:08:30 +00008024static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
8025 SDValue Chain = LD->getChain();
8026 EVT VT = LD->getMemoryVT();
8027
8028 SmallSet<SDNode *, 16> LoadRoots;
8029 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
8030 SmallSet<SDNode *, 16> Visited;
8031
8032 // First, search up the chain, branching to follow all token-factor operands.
8033 // If we find a consecutive load, then we're done, otherwise, record all
8034 // nodes just above the top-level loads and token factors.
8035 while (!Queue.empty()) {
8036 SDNode *ChainNext = Queue.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +00008037 if (!Visited.insert(ChainNext).second)
Hal Finkel7d8a6912013-05-26 18:08:30 +00008038 continue;
8039
Hal Finkel3604bf72014-08-01 01:02:01 +00008040 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00008041 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00008042 return true;
8043
8044 if (!Visited.count(ChainLD->getChain().getNode()))
8045 Queue.push_back(ChainLD->getChain().getNode());
8046 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
Craig Topper66e588b2014-06-29 00:40:57 +00008047 for (const SDUse &O : ChainNext->ops())
8048 if (!Visited.count(O.getNode()))
8049 Queue.push_back(O.getNode());
Hal Finkel7d8a6912013-05-26 18:08:30 +00008050 } else
8051 LoadRoots.insert(ChainNext);
8052 }
8053
8054 // Second, search down the chain, starting from the top-level nodes recorded
8055 // in the first phase. These top-level nodes are the nodes just above all
8056 // loads and token factors. Starting with their uses, recursively look though
8057 // all loads (just the chain uses) and token factors to find a consecutive
8058 // load.
8059 Visited.clear();
8060 Queue.clear();
8061
8062 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
8063 IE = LoadRoots.end(); I != IE; ++I) {
8064 Queue.push_back(*I);
8065
8066 while (!Queue.empty()) {
8067 SDNode *LoadRoot = Queue.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +00008068 if (!Visited.insert(LoadRoot).second)
Hal Finkel7d8a6912013-05-26 18:08:30 +00008069 continue;
8070
Hal Finkel3604bf72014-08-01 01:02:01 +00008071 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot))
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00008072 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00008073 return true;
8074
8075 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
8076 UE = LoadRoot->use_end(); UI != UE; ++UI)
Hal Finkel3604bf72014-08-01 01:02:01 +00008077 if (((isa<MemSDNode>(*UI) &&
8078 cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
Hal Finkel7d8a6912013-05-26 18:08:30 +00008079 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
8080 Queue.push_back(*UI);
8081 }
8082 }
8083
8084 return false;
8085}
8086
Hal Finkel940ab932014-02-28 00:27:01 +00008087SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N,
8088 DAGCombinerInfo &DCI) const {
8089 SelectionDAG &DAG = DCI.DAG;
8090 SDLoc dl(N);
8091
Eric Christophercccae792015-01-30 22:02:31 +00008092 assert(Subtarget.useCRBits() && "Expecting to be tracking CR bits");
Hal Finkel940ab932014-02-28 00:27:01 +00008093 // If we're tracking CR bits, we need to be careful that we don't have:
8094 // trunc(binary-ops(zext(x), zext(y)))
8095 // or
8096 // trunc(binary-ops(binary-ops(zext(x), zext(y)), ...)
8097 // such that we're unnecessarily moving things into GPRs when it would be
8098 // better to keep them in CR bits.
8099
8100 // Note that trunc here can be an actual i1 trunc, or can be the effective
8101 // truncation that comes from a setcc or select_cc.
8102 if (N->getOpcode() == ISD::TRUNCATE &&
8103 N->getValueType(0) != MVT::i1)
8104 return SDValue();
8105
8106 if (N->getOperand(0).getValueType() != MVT::i32 &&
8107 N->getOperand(0).getValueType() != MVT::i64)
8108 return SDValue();
8109
8110 if (N->getOpcode() == ISD::SETCC ||
8111 N->getOpcode() == ISD::SELECT_CC) {
8112 // If we're looking at a comparison, then we need to make sure that the
8113 // high bits (all except for the first) don't matter the result.
8114 ISD::CondCode CC =
8115 cast<CondCodeSDNode>(N->getOperand(
8116 N->getOpcode() == ISD::SETCC ? 2 : 4))->get();
8117 unsigned OpBits = N->getOperand(0).getValueSizeInBits();
8118
8119 if (ISD::isSignedIntSetCC(CC)) {
8120 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
8121 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
8122 return SDValue();
8123 } else if (ISD::isUnsignedIntSetCC(CC)) {
8124 if (!DAG.MaskedValueIsZero(N->getOperand(0),
8125 APInt::getHighBitsSet(OpBits, OpBits-1)) ||
8126 !DAG.MaskedValueIsZero(N->getOperand(1),
8127 APInt::getHighBitsSet(OpBits, OpBits-1)))
8128 return SDValue();
8129 } else {
8130 // This is neither a signed nor an unsigned comparison, just make sure
8131 // that the high bits are equal.
8132 APInt Op1Zero, Op1One;
8133 APInt Op2Zero, Op2One;
Jay Foada0653a32014-05-14 21:14:37 +00008134 DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One);
8135 DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One);
Hal Finkel940ab932014-02-28 00:27:01 +00008136
8137 // We don't really care about what is known about the first bit (if
8138 // anything), so clear it in all masks prior to comparing them.
8139 Op1Zero.clearBit(0); Op1One.clearBit(0);
8140 Op2Zero.clearBit(0); Op2One.clearBit(0);
8141
8142 if (Op1Zero != Op2Zero || Op1One != Op2One)
8143 return SDValue();
8144 }
8145 }
8146
8147 // We now know that the higher-order bits are irrelevant, we just need to
8148 // make sure that all of the intermediate operations are bit operations, and
8149 // all inputs are extensions.
8150 if (N->getOperand(0).getOpcode() != ISD::AND &&
8151 N->getOperand(0).getOpcode() != ISD::OR &&
8152 N->getOperand(0).getOpcode() != ISD::XOR &&
8153 N->getOperand(0).getOpcode() != ISD::SELECT &&
8154 N->getOperand(0).getOpcode() != ISD::SELECT_CC &&
8155 N->getOperand(0).getOpcode() != ISD::TRUNCATE &&
8156 N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND &&
8157 N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND &&
8158 N->getOperand(0).getOpcode() != ISD::ANY_EXTEND)
8159 return SDValue();
8160
8161 if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) &&
8162 N->getOperand(1).getOpcode() != ISD::AND &&
8163 N->getOperand(1).getOpcode() != ISD::OR &&
8164 N->getOperand(1).getOpcode() != ISD::XOR &&
8165 N->getOperand(1).getOpcode() != ISD::SELECT &&
8166 N->getOperand(1).getOpcode() != ISD::SELECT_CC &&
8167 N->getOperand(1).getOpcode() != ISD::TRUNCATE &&
8168 N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND &&
8169 N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND &&
8170 N->getOperand(1).getOpcode() != ISD::ANY_EXTEND)
8171 return SDValue();
8172
8173 SmallVector<SDValue, 4> Inputs;
8174 SmallVector<SDValue, 8> BinOps, PromOps;
8175 SmallPtrSet<SDNode *, 16> Visited;
8176
8177 for (unsigned i = 0; i < 2; ++i) {
8178 if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8179 N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8180 N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
8181 N->getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
8182 isa<ConstantSDNode>(N->getOperand(i)))
8183 Inputs.push_back(N->getOperand(i));
8184 else
8185 BinOps.push_back(N->getOperand(i));
8186
8187 if (N->getOpcode() == ISD::TRUNCATE)
8188 break;
8189 }
8190
8191 // Visit all inputs, collect all binary operations (and, or, xor and
8192 // select) that are all fed by extensions.
8193 while (!BinOps.empty()) {
8194 SDValue BinOp = BinOps.back();
8195 BinOps.pop_back();
8196
David Blaikie70573dc2014-11-19 07:49:26 +00008197 if (!Visited.insert(BinOp.getNode()).second)
Hal Finkel940ab932014-02-28 00:27:01 +00008198 continue;
8199
8200 PromOps.push_back(BinOp);
8201
8202 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
8203 // The condition of the select is not promoted.
8204 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
8205 continue;
8206 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
8207 continue;
8208
8209 if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8210 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8211 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
8212 BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
8213 isa<ConstantSDNode>(BinOp.getOperand(i))) {
8214 Inputs.push_back(BinOp.getOperand(i));
8215 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
8216 BinOp.getOperand(i).getOpcode() == ISD::OR ||
8217 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
8218 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
8219 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC ||
8220 BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
8221 BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8222 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8223 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) {
8224 BinOps.push_back(BinOp.getOperand(i));
8225 } else {
8226 // We have an input that is not an extension or another binary
8227 // operation; we'll abort this transformation.
8228 return SDValue();
8229 }
8230 }
8231 }
8232
8233 // Make sure that this is a self-contained cluster of operations (which
8234 // is not quite the same thing as saying that everything has only one
8235 // use).
8236 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8237 if (isa<ConstantSDNode>(Inputs[i]))
8238 continue;
8239
8240 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
8241 UE = Inputs[i].getNode()->use_end();
8242 UI != UE; ++UI) {
8243 SDNode *User = *UI;
8244 if (User != N && !Visited.count(User))
8245 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008246
8247 // Make sure that we're not going to promote the non-output-value
8248 // operand(s) or SELECT or SELECT_CC.
8249 // FIXME: Although we could sometimes handle this, and it does occur in
8250 // practice that one of the condition inputs to the select is also one of
8251 // the outputs, we currently can't deal with this.
8252 if (User->getOpcode() == ISD::SELECT) {
8253 if (User->getOperand(0) == Inputs[i])
8254 return SDValue();
8255 } else if (User->getOpcode() == ISD::SELECT_CC) {
8256 if (User->getOperand(0) == Inputs[i] ||
8257 User->getOperand(1) == Inputs[i])
8258 return SDValue();
8259 }
Hal Finkel940ab932014-02-28 00:27:01 +00008260 }
8261 }
8262
8263 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
8264 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
8265 UE = PromOps[i].getNode()->use_end();
8266 UI != UE; ++UI) {
8267 SDNode *User = *UI;
8268 if (User != N && !Visited.count(User))
8269 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008270
8271 // Make sure that we're not going to promote the non-output-value
8272 // operand(s) or SELECT or SELECT_CC.
8273 // FIXME: Although we could sometimes handle this, and it does occur in
8274 // practice that one of the condition inputs to the select is also one of
8275 // the outputs, we currently can't deal with this.
8276 if (User->getOpcode() == ISD::SELECT) {
8277 if (User->getOperand(0) == PromOps[i])
8278 return SDValue();
8279 } else if (User->getOpcode() == ISD::SELECT_CC) {
8280 if (User->getOperand(0) == PromOps[i] ||
8281 User->getOperand(1) == PromOps[i])
8282 return SDValue();
8283 }
Hal Finkel940ab932014-02-28 00:27:01 +00008284 }
8285 }
8286
8287 // Replace all inputs with the extension operand.
8288 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8289 // Constants may have users outside the cluster of to-be-promoted nodes,
8290 // and so we need to replace those as we do the promotions.
8291 if (isa<ConstantSDNode>(Inputs[i]))
8292 continue;
8293 else
8294 DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0));
8295 }
8296
8297 // Replace all operations (these are all the same, but have a different
8298 // (i1) return type). DAG.getNode will validate that the types of
8299 // a binary operator match, so go through the list in reverse so that
8300 // we've likely promoted both operands first. Any intermediate truncations or
8301 // extensions disappear.
8302 while (!PromOps.empty()) {
8303 SDValue PromOp = PromOps.back();
8304 PromOps.pop_back();
8305
8306 if (PromOp.getOpcode() == ISD::TRUNCATE ||
8307 PromOp.getOpcode() == ISD::SIGN_EXTEND ||
8308 PromOp.getOpcode() == ISD::ZERO_EXTEND ||
8309 PromOp.getOpcode() == ISD::ANY_EXTEND) {
8310 if (!isa<ConstantSDNode>(PromOp.getOperand(0)) &&
8311 PromOp.getOperand(0).getValueType() != MVT::i1) {
8312 // The operand is not yet ready (see comment below).
8313 PromOps.insert(PromOps.begin(), PromOp);
8314 continue;
8315 }
8316
8317 SDValue RepValue = PromOp.getOperand(0);
8318 if (isa<ConstantSDNode>(RepValue))
8319 RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue);
8320
8321 DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue);
8322 continue;
8323 }
8324
8325 unsigned C;
8326 switch (PromOp.getOpcode()) {
8327 default: C = 0; break;
8328 case ISD::SELECT: C = 1; break;
8329 case ISD::SELECT_CC: C = 2; break;
8330 }
8331
8332 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
8333 PromOp.getOperand(C).getValueType() != MVT::i1) ||
8334 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
8335 PromOp.getOperand(C+1).getValueType() != MVT::i1)) {
8336 // The to-be-promoted operands of this node have not yet been
8337 // promoted (this should be rare because we're going through the
8338 // list backward, but if one of the operands has several users in
8339 // this cluster of to-be-promoted nodes, it is possible).
8340 PromOps.insert(PromOps.begin(), PromOp);
8341 continue;
8342 }
8343
8344 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
8345 PromOp.getNode()->op_end());
8346
8347 // If there are any constant inputs, make sure they're replaced now.
8348 for (unsigned i = 0; i < 2; ++i)
8349 if (isa<ConstantSDNode>(Ops[C+i]))
8350 Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]);
8351
8352 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +00008353 DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops));
Hal Finkel940ab932014-02-28 00:27:01 +00008354 }
8355
8356 // Now we're left with the initial truncation itself.
8357 if (N->getOpcode() == ISD::TRUNCATE)
8358 return N->getOperand(0);
8359
8360 // Otherwise, this is a comparison. The operands to be compared have just
8361 // changed type (to i1), but everything else is the same.
8362 return SDValue(N, 0);
8363}
8364
8365SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N,
8366 DAGCombinerInfo &DCI) const {
8367 SelectionDAG &DAG = DCI.DAG;
8368 SDLoc dl(N);
8369
Hal Finkel940ab932014-02-28 00:27:01 +00008370 // If we're tracking CR bits, we need to be careful that we don't have:
8371 // zext(binary-ops(trunc(x), trunc(y)))
8372 // or
8373 // zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...)
8374 // such that we're unnecessarily moving things into CR bits that can more
8375 // efficiently stay in GPRs. Note that if we're not certain that the high
8376 // bits are set as required by the final extension, we still may need to do
8377 // some masking to get the proper behavior.
8378
Hal Finkel46043ed2014-03-01 21:36:57 +00008379 // This same functionality is important on PPC64 when dealing with
8380 // 32-to-64-bit extensions; these occur often when 32-bit values are used as
8381 // the return values of functions. Because it is so similar, it is handled
8382 // here as well.
8383
Hal Finkel940ab932014-02-28 00:27:01 +00008384 if (N->getValueType(0) != MVT::i32 &&
8385 N->getValueType(0) != MVT::i64)
8386 return SDValue();
8387
Eric Christophercccae792015-01-30 22:02:31 +00008388 if (!((N->getOperand(0).getValueType() == MVT::i1 && Subtarget.useCRBits()) ||
8389 (N->getOperand(0).getValueType() == MVT::i32 && Subtarget.isPPC64())))
Hal Finkel940ab932014-02-28 00:27:01 +00008390 return SDValue();
8391
8392 if (N->getOperand(0).getOpcode() != ISD::AND &&
8393 N->getOperand(0).getOpcode() != ISD::OR &&
8394 N->getOperand(0).getOpcode() != ISD::XOR &&
8395 N->getOperand(0).getOpcode() != ISD::SELECT &&
8396 N->getOperand(0).getOpcode() != ISD::SELECT_CC)
8397 return SDValue();
8398
8399 SmallVector<SDValue, 4> Inputs;
8400 SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps;
8401 SmallPtrSet<SDNode *, 16> Visited;
8402
8403 // Visit all inputs, collect all binary operations (and, or, xor and
8404 // select) that are all fed by truncations.
8405 while (!BinOps.empty()) {
8406 SDValue BinOp = BinOps.back();
8407 BinOps.pop_back();
8408
David Blaikie70573dc2014-11-19 07:49:26 +00008409 if (!Visited.insert(BinOp.getNode()).second)
Hal Finkel940ab932014-02-28 00:27:01 +00008410 continue;
8411
8412 PromOps.push_back(BinOp);
8413
8414 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
8415 // The condition of the select is not promoted.
8416 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
8417 continue;
8418 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
8419 continue;
8420
8421 if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
8422 isa<ConstantSDNode>(BinOp.getOperand(i))) {
8423 Inputs.push_back(BinOp.getOperand(i));
8424 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
8425 BinOp.getOperand(i).getOpcode() == ISD::OR ||
8426 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
8427 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
8428 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) {
8429 BinOps.push_back(BinOp.getOperand(i));
8430 } else {
8431 // We have an input that is not a truncation or another binary
8432 // operation; we'll abort this transformation.
8433 return SDValue();
8434 }
8435 }
8436 }
8437
Hal Finkel4104a1a2014-12-14 05:53:19 +00008438 // The operands of a select that must be truncated when the select is
8439 // promoted because the operand is actually part of the to-be-promoted set.
8440 DenseMap<SDNode *, EVT> SelectTruncOp[2];
8441
Hal Finkel940ab932014-02-28 00:27:01 +00008442 // Make sure that this is a self-contained cluster of operations (which
8443 // is not quite the same thing as saying that everything has only one
8444 // use).
8445 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8446 if (isa<ConstantSDNode>(Inputs[i]))
8447 continue;
8448
8449 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
8450 UE = Inputs[i].getNode()->use_end();
8451 UI != UE; ++UI) {
8452 SDNode *User = *UI;
8453 if (User != N && !Visited.count(User))
8454 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008455
Hal Finkel4104a1a2014-12-14 05:53:19 +00008456 // If we're going to promote the non-output-value operand(s) or SELECT or
8457 // SELECT_CC, record them for truncation.
Hal Finkel46043ed2014-03-01 21:36:57 +00008458 if (User->getOpcode() == ISD::SELECT) {
8459 if (User->getOperand(0) == Inputs[i])
Hal Finkel4104a1a2014-12-14 05:53:19 +00008460 SelectTruncOp[0].insert(std::make_pair(User,
8461 User->getOperand(0).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008462 } else if (User->getOpcode() == ISD::SELECT_CC) {
Hal Finkel4104a1a2014-12-14 05:53:19 +00008463 if (User->getOperand(0) == Inputs[i])
8464 SelectTruncOp[0].insert(std::make_pair(User,
8465 User->getOperand(0).getValueType()));
8466 if (User->getOperand(1) == Inputs[i])
8467 SelectTruncOp[1].insert(std::make_pair(User,
8468 User->getOperand(1).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008469 }
Hal Finkel940ab932014-02-28 00:27:01 +00008470 }
8471 }
8472
8473 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
8474 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
8475 UE = PromOps[i].getNode()->use_end();
8476 UI != UE; ++UI) {
8477 SDNode *User = *UI;
8478 if (User != N && !Visited.count(User))
8479 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008480
Hal Finkel4104a1a2014-12-14 05:53:19 +00008481 // If we're going to promote the non-output-value operand(s) or SELECT or
8482 // SELECT_CC, record them for truncation.
Hal Finkel46043ed2014-03-01 21:36:57 +00008483 if (User->getOpcode() == ISD::SELECT) {
8484 if (User->getOperand(0) == PromOps[i])
Hal Finkel4104a1a2014-12-14 05:53:19 +00008485 SelectTruncOp[0].insert(std::make_pair(User,
8486 User->getOperand(0).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008487 } else if (User->getOpcode() == ISD::SELECT_CC) {
Hal Finkel4104a1a2014-12-14 05:53:19 +00008488 if (User->getOperand(0) == PromOps[i])
8489 SelectTruncOp[0].insert(std::make_pair(User,
8490 User->getOperand(0).getValueType()));
8491 if (User->getOperand(1) == PromOps[i])
8492 SelectTruncOp[1].insert(std::make_pair(User,
8493 User->getOperand(1).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008494 }
Hal Finkel940ab932014-02-28 00:27:01 +00008495 }
8496 }
8497
Hal Finkel46043ed2014-03-01 21:36:57 +00008498 unsigned PromBits = N->getOperand(0).getValueSizeInBits();
Hal Finkel940ab932014-02-28 00:27:01 +00008499 bool ReallyNeedsExt = false;
8500 if (N->getOpcode() != ISD::ANY_EXTEND) {
8501 // If all of the inputs are not already sign/zero extended, then
8502 // we'll still need to do that at the end.
8503 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8504 if (isa<ConstantSDNode>(Inputs[i]))
8505 continue;
8506
8507 unsigned OpBits =
8508 Inputs[i].getOperand(0).getValueSizeInBits();
Hal Finkel46043ed2014-03-01 21:36:57 +00008509 assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
8510
Hal Finkel940ab932014-02-28 00:27:01 +00008511 if ((N->getOpcode() == ISD::ZERO_EXTEND &&
8512 !DAG.MaskedValueIsZero(Inputs[i].getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +00008513 APInt::getHighBitsSet(OpBits,
8514 OpBits-PromBits))) ||
Hal Finkel940ab932014-02-28 00:27:01 +00008515 (N->getOpcode() == ISD::SIGN_EXTEND &&
Hal Finkel46043ed2014-03-01 21:36:57 +00008516 DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) <
8517 (OpBits-(PromBits-1)))) {
Hal Finkel940ab932014-02-28 00:27:01 +00008518 ReallyNeedsExt = true;
8519 break;
8520 }
8521 }
8522 }
8523
8524 // Replace all inputs, either with the truncation operand, or a
8525 // truncation or extension to the final output type.
8526 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8527 // Constant inputs need to be replaced with the to-be-promoted nodes that
8528 // use them because they might have users outside of the cluster of
8529 // promoted nodes.
8530 if (isa<ConstantSDNode>(Inputs[i]))
8531 continue;
8532
8533 SDValue InSrc = Inputs[i].getOperand(0);
8534 if (Inputs[i].getValueType() == N->getValueType(0))
8535 DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc);
8536 else if (N->getOpcode() == ISD::SIGN_EXTEND)
8537 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8538 DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0)));
8539 else if (N->getOpcode() == ISD::ZERO_EXTEND)
8540 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8541 DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0)));
8542 else
8543 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8544 DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0)));
8545 }
8546
8547 // Replace all operations (these are all the same, but have a different
8548 // (promoted) return type). DAG.getNode will validate that the types of
8549 // a binary operator match, so go through the list in reverse so that
8550 // we've likely promoted both operands first.
8551 while (!PromOps.empty()) {
8552 SDValue PromOp = PromOps.back();
8553 PromOps.pop_back();
8554
8555 unsigned C;
8556 switch (PromOp.getOpcode()) {
8557 default: C = 0; break;
8558 case ISD::SELECT: C = 1; break;
8559 case ISD::SELECT_CC: C = 2; break;
8560 }
8561
8562 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
8563 PromOp.getOperand(C).getValueType() != N->getValueType(0)) ||
8564 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
8565 PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) {
8566 // The to-be-promoted operands of this node have not yet been
8567 // promoted (this should be rare because we're going through the
8568 // list backward, but if one of the operands has several users in
8569 // this cluster of to-be-promoted nodes, it is possible).
8570 PromOps.insert(PromOps.begin(), PromOp);
8571 continue;
8572 }
8573
Hal Finkel4104a1a2014-12-14 05:53:19 +00008574 // For SELECT and SELECT_CC nodes, we do a similar check for any
8575 // to-be-promoted comparison inputs.
8576 if (PromOp.getOpcode() == ISD::SELECT ||
8577 PromOp.getOpcode() == ISD::SELECT_CC) {
8578 if ((SelectTruncOp[0].count(PromOp.getNode()) &&
8579 PromOp.getOperand(0).getValueType() != N->getValueType(0)) ||
8580 (SelectTruncOp[1].count(PromOp.getNode()) &&
8581 PromOp.getOperand(1).getValueType() != N->getValueType(0))) {
8582 PromOps.insert(PromOps.begin(), PromOp);
8583 continue;
8584 }
8585 }
8586
Hal Finkel940ab932014-02-28 00:27:01 +00008587 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
8588 PromOp.getNode()->op_end());
8589
8590 // If this node has constant inputs, then they'll need to be promoted here.
8591 for (unsigned i = 0; i < 2; ++i) {
8592 if (!isa<ConstantSDNode>(Ops[C+i]))
8593 continue;
8594 if (Ops[C+i].getValueType() == N->getValueType(0))
8595 continue;
8596
8597 if (N->getOpcode() == ISD::SIGN_EXTEND)
8598 Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8599 else if (N->getOpcode() == ISD::ZERO_EXTEND)
8600 Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8601 else
8602 Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8603 }
8604
Hal Finkel4104a1a2014-12-14 05:53:19 +00008605 // If we've promoted the comparison inputs of a SELECT or SELECT_CC,
8606 // truncate them again to the original value type.
8607 if (PromOp.getOpcode() == ISD::SELECT ||
8608 PromOp.getOpcode() == ISD::SELECT_CC) {
8609 auto SI0 = SelectTruncOp[0].find(PromOp.getNode());
8610 if (SI0 != SelectTruncOp[0].end())
8611 Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]);
8612 auto SI1 = SelectTruncOp[1].find(PromOp.getNode());
8613 if (SI1 != SelectTruncOp[1].end())
8614 Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]);
8615 }
8616
Hal Finkel940ab932014-02-28 00:27:01 +00008617 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +00008618 DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops));
Hal Finkel940ab932014-02-28 00:27:01 +00008619 }
8620
8621 // Now we're left with the initial extension itself.
8622 if (!ReallyNeedsExt)
8623 return N->getOperand(0);
8624
Hal Finkel46043ed2014-03-01 21:36:57 +00008625 // To zero extend, just mask off everything except for the first bit (in the
8626 // i1 case).
Hal Finkel940ab932014-02-28 00:27:01 +00008627 if (N->getOpcode() == ISD::ZERO_EXTEND)
8628 return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +00008629 DAG.getConstant(APInt::getLowBitsSet(
8630 N->getValueSizeInBits(0), PromBits),
8631 N->getValueType(0)));
Hal Finkel940ab932014-02-28 00:27:01 +00008632
8633 assert(N->getOpcode() == ISD::SIGN_EXTEND &&
8634 "Invalid extension type");
8635 EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0));
8636 SDValue ShiftCst =
Hal Finkel46043ed2014-03-01 21:36:57 +00008637 DAG.getConstant(N->getValueSizeInBits(0)-PromBits, ShiftAmountTy);
Hal Finkel940ab932014-02-28 00:27:01 +00008638 return DAG.getNode(ISD::SRA, dl, N->getValueType(0),
8639 DAG.getNode(ISD::SHL, dl, N->getValueType(0),
8640 N->getOperand(0), ShiftCst), ShiftCst);
8641}
8642
Hal Finkel5efb9182015-01-06 06:01:57 +00008643SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N,
8644 DAGCombinerInfo &DCI) const {
8645 assert((N->getOpcode() == ISD::SINT_TO_FP ||
8646 N->getOpcode() == ISD::UINT_TO_FP) &&
8647 "Need an int -> FP conversion node here");
8648
8649 if (!Subtarget.has64BitSupport())
8650 return SDValue();
8651
8652 SelectionDAG &DAG = DCI.DAG;
8653 SDLoc dl(N);
8654 SDValue Op(N, 0);
8655
8656 // Don't handle ppc_fp128 here or i1 conversions.
8657 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
8658 return SDValue();
8659 if (Op.getOperand(0).getValueType() == MVT::i1)
8660 return SDValue();
8661
8662 // For i32 intermediate values, unfortunately, the conversion functions
8663 // leave the upper 32 bits of the value are undefined. Within the set of
8664 // scalar instructions, we have no method for zero- or sign-extending the
8665 // value. Thus, we cannot handle i32 intermediate values here.
8666 if (Op.getOperand(0).getValueType() == MVT::i32)
8667 return SDValue();
8668
8669 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
8670 "UINT_TO_FP is supported only with FPCVT");
8671
8672 // If we have FCFIDS, then use it when converting to single-precision.
8673 // Otherwise, convert to double-precision and then round.
Eric Christophercccae792015-01-30 22:02:31 +00008674 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
8675 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
8676 : PPCISD::FCFIDS)
8677 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
8678 : PPCISD::FCFID);
8679 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
8680 ? MVT::f32
8681 : MVT::f64;
Hal Finkel5efb9182015-01-06 06:01:57 +00008682
8683 // If we're converting from a float, to an int, and back to a float again,
8684 // then we don't need the store/load pair at all.
8685 if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT &&
8686 Subtarget.hasFPCVT()) ||
8687 (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) {
8688 SDValue Src = Op.getOperand(0).getOperand(0);
8689 if (Src.getValueType() == MVT::f32) {
8690 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
8691 DCI.AddToWorklist(Src.getNode());
8692 }
8693
8694 unsigned FCTOp =
8695 Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
8696 PPCISD::FCTIDUZ;
8697
8698 SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src);
8699 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp);
8700
8701 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) {
8702 FP = DAG.getNode(ISD::FP_ROUND, dl,
8703 MVT::f32, FP, DAG.getIntPtrConstant(0));
8704 DCI.AddToWorklist(FP.getNode());
8705 }
8706
8707 return FP;
8708 }
8709
8710 return SDValue();
8711}
8712
Bill Schmidtfae5d712014-12-09 16:35:51 +00008713// expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for
8714// builtins) into loads with swaps.
8715SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N,
8716 DAGCombinerInfo &DCI) const {
8717 SelectionDAG &DAG = DCI.DAG;
8718 SDLoc dl(N);
8719 SDValue Chain;
8720 SDValue Base;
8721 MachineMemOperand *MMO;
8722
8723 switch (N->getOpcode()) {
8724 default:
8725 llvm_unreachable("Unexpected opcode for little endian VSX load");
8726 case ISD::LOAD: {
8727 LoadSDNode *LD = cast<LoadSDNode>(N);
8728 Chain = LD->getChain();
8729 Base = LD->getBasePtr();
8730 MMO = LD->getMemOperand();
8731 // If the MMO suggests this isn't a load of a full vector, leave
8732 // things alone. For a built-in, we have to make the change for
8733 // correctness, so if there is a size problem that will be a bug.
8734 if (MMO->getSize() < 16)
8735 return SDValue();
8736 break;
8737 }
8738 case ISD::INTRINSIC_W_CHAIN: {
8739 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
8740 Chain = Intrin->getChain();
8741 Base = Intrin->getBasePtr();
8742 MMO = Intrin->getMemOperand();
8743 break;
8744 }
8745 }
8746
8747 MVT VecTy = N->getValueType(0).getSimpleVT();
8748 SDValue LoadOps[] = { Chain, Base };
8749 SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl,
8750 DAG.getVTList(VecTy, MVT::Other),
8751 LoadOps, VecTy, MMO);
8752 DCI.AddToWorklist(Load.getNode());
8753 Chain = Load.getValue(1);
8754 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
8755 DAG.getVTList(VecTy, MVT::Other), Chain, Load);
8756 DCI.AddToWorklist(Swap.getNode());
8757 return Swap;
8758}
8759
8760// expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for
8761// builtins) into stores with swaps.
8762SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N,
8763 DAGCombinerInfo &DCI) const {
8764 SelectionDAG &DAG = DCI.DAG;
8765 SDLoc dl(N);
8766 SDValue Chain;
8767 SDValue Base;
8768 unsigned SrcOpnd;
8769 MachineMemOperand *MMO;
8770
8771 switch (N->getOpcode()) {
8772 default:
8773 llvm_unreachable("Unexpected opcode for little endian VSX store");
8774 case ISD::STORE: {
8775 StoreSDNode *ST = cast<StoreSDNode>(N);
8776 Chain = ST->getChain();
8777 Base = ST->getBasePtr();
8778 MMO = ST->getMemOperand();
8779 SrcOpnd = 1;
8780 // If the MMO suggests this isn't a store of a full vector, leave
8781 // things alone. For a built-in, we have to make the change for
8782 // correctness, so if there is a size problem that will be a bug.
8783 if (MMO->getSize() < 16)
8784 return SDValue();
8785 break;
8786 }
8787 case ISD::INTRINSIC_VOID: {
8788 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
8789 Chain = Intrin->getChain();
8790 // Intrin->getBasePtr() oddly does not get what we want.
8791 Base = Intrin->getOperand(3);
8792 MMO = Intrin->getMemOperand();
8793 SrcOpnd = 2;
8794 break;
8795 }
8796 }
8797
8798 SDValue Src = N->getOperand(SrcOpnd);
8799 MVT VecTy = Src.getValueType().getSimpleVT();
8800 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
8801 DAG.getVTList(VecTy, MVT::Other), Chain, Src);
8802 DCI.AddToWorklist(Swap.getNode());
8803 Chain = Swap.getValue(1);
8804 SDValue StoreOps[] = { Chain, Swap, Base };
8805 SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl,
8806 DAG.getVTList(MVT::Other),
8807 StoreOps, VecTy, MMO);
8808 DCI.AddToWorklist(Store.getNode());
8809 return Store;
8810}
8811
Duncan Sandsdc2dac12008-11-24 14:53:14 +00008812SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
8813 DAGCombinerInfo &DCI) const {
Chris Lattnerf4184352006-03-01 04:57:39 +00008814 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008815 SDLoc dl(N);
Chris Lattnerf4184352006-03-01 04:57:39 +00008816 switch (N->getOpcode()) {
8817 default: break;
Chris Lattner3c48ea52006-09-19 05:22:59 +00008818 case PPCISD::SHL:
8819 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008820 if (C->isNullValue()) // 0 << V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008821 return N->getOperand(0);
8822 }
8823 break;
8824 case PPCISD::SRL:
8825 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008826 if (C->isNullValue()) // 0 >>u V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008827 return N->getOperand(0);
8828 }
8829 break;
8830 case PPCISD::SRA:
8831 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008832 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008833 C->isAllOnesValue()) // -1 >>s V -> -1.
8834 return N->getOperand(0);
8835 }
8836 break;
Hal Finkel940ab932014-02-28 00:27:01 +00008837 case ISD::SIGN_EXTEND:
8838 case ISD::ZERO_EXTEND:
8839 case ISD::ANY_EXTEND:
8840 return DAGCombineExtBoolTrunc(N, DCI);
8841 case ISD::TRUNCATE:
8842 case ISD::SETCC:
8843 case ISD::SELECT_CC:
8844 return DAGCombineTruncBoolExt(N, DCI);
Chris Lattnerf4184352006-03-01 04:57:39 +00008845 case ISD::SINT_TO_FP:
Hal Finkel5efb9182015-01-06 06:01:57 +00008846 case ISD::UINT_TO_FP:
8847 return combineFPToIntToFP(N, DCI);
Bill Schmidtfae5d712014-12-09 16:35:51 +00008848 case ISD::STORE: {
Chris Lattner27f53452006-03-01 05:50:56 +00008849 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
Eric Christophercccae792015-01-30 22:02:31 +00008850 if (Subtarget.hasSTFIWX() && !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner27f53452006-03-01 05:50:56 +00008851 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson9f944592009-08-11 20:47:22 +00008852 N->getOperand(1).getValueType() == MVT::i32 &&
8853 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008854 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00008855 if (Val.getValueType() == MVT::f32) {
8856 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008857 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008858 }
Owen Anderson9f944592009-08-11 20:47:22 +00008859 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008860 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008861
Hal Finkel60c75102013-04-01 15:37:53 +00008862 SDValue Ops[] = {
8863 N->getOperand(0), Val, N->getOperand(2),
8864 DAG.getValueType(N->getOperand(1).getValueType())
8865 };
8866
8867 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +00008868 DAG.getVTList(MVT::Other), Ops,
Hal Finkel60c75102013-04-01 15:37:53 +00008869 cast<StoreSDNode>(N)->getMemoryVT(),
8870 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greiff304a7a2008-08-28 21:40:38 +00008871 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008872 return Val;
8873 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008874
Chris Lattnera7976d32006-07-10 20:56:58 +00008875 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman28328db2009-09-25 00:57:30 +00008876 if (cast<StoreSDNode>(N)->isUnindexed() &&
8877 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00008878 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson9f944592009-08-11 20:47:22 +00008879 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkel31d29562013-03-28 19:25:55 +00008880 N->getOperand(1).getValueType() == MVT::i16 ||
Eric Christophercccae792015-01-30 22:02:31 +00008881 (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00008882 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008883 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnera7976d32006-07-10 20:56:58 +00008884 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson9f944592009-08-11 20:47:22 +00008885 if (BSwapOp.getValueType() == MVT::i16)
8886 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnera7976d32006-07-10 20:56:58 +00008887
Dan Gohman48b185d2009-09-25 20:36:54 +00008888 SDValue Ops[] = {
8889 N->getOperand(0), BSwapOp, N->getOperand(2),
8890 DAG.getValueType(N->getOperand(1).getValueType())
8891 };
8892 return
8893 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00008894 Ops, cast<StoreSDNode>(N)->getMemoryVT(),
Dan Gohman48b185d2009-09-25 20:36:54 +00008895 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00008896 }
Bill Schmidtfae5d712014-12-09 16:35:51 +00008897
8898 // For little endian, VSX stores require generating xxswapd/lxvd2x.
8899 EVT VT = N->getOperand(1).getValueType();
8900 if (VT.isSimple()) {
8901 MVT StoreVT = VT.getSimpleVT();
Eric Christophercccae792015-01-30 22:02:31 +00008902 if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
Bill Schmidtfae5d712014-12-09 16:35:51 +00008903 (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 ||
8904 StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32))
8905 return expandVSXStoreForLE(N, DCI);
8906 }
Chris Lattnera7976d32006-07-10 20:56:58 +00008907 break;
Bill Schmidtfae5d712014-12-09 16:35:51 +00008908 }
Hal Finkelcf2e9082013-05-24 23:00:14 +00008909 case ISD::LOAD: {
8910 LoadSDNode *LD = cast<LoadSDNode>(N);
8911 EVT VT = LD->getValueType(0);
Bill Schmidtfae5d712014-12-09 16:35:51 +00008912
8913 // For little endian, VSX loads require generating lxvd2x/xxswapd.
8914 if (VT.isSimple()) {
8915 MVT LoadVT = VT.getSimpleVT();
Eric Christophercccae792015-01-30 22:02:31 +00008916 if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
Bill Schmidtfae5d712014-12-09 16:35:51 +00008917 (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 ||
8918 LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32))
8919 return expandVSXLoadForLE(N, DCI);
8920 }
8921
Hal Finkelcf2e9082013-05-24 23:00:14 +00008922 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
8923 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
Eric Christophercccae792015-01-30 22:02:31 +00008924 if (ISD::isNON_EXTLoad(N) && VT.isVector() && Subtarget.hasAltivec() &&
Bill Schmidt2d1128a2014-10-17 15:13:38 +00008925 // P8 and later hardware should just use LOAD.
Eric Christophercccae792015-01-30 22:02:31 +00008926 !Subtarget.hasP8Vector() && (VT == MVT::v16i8 || VT == MVT::v8i16 ||
8927 VT == MVT::v4i32 || VT == MVT::v4f32) &&
Hal Finkelcf2e9082013-05-24 23:00:14 +00008928 LD->getAlignment() < ABIAlignment) {
8929 // This is a type-legal unaligned Altivec load.
8930 SDValue Chain = LD->getChain();
8931 SDValue Ptr = LD->getBasePtr();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008932 bool isLittleEndian = Subtarget.isLittleEndian();
Hal Finkelcf2e9082013-05-24 23:00:14 +00008933
8934 // This implements the loading of unaligned vectors as described in
8935 // the venerable Apple Velocity Engine overview. Specifically:
8936 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
8937 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
8938 //
8939 // The general idea is to expand a sequence of one or more unaligned
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008940 // loads into an alignment-based permutation-control instruction (lvsl
8941 // or lvsr), a series of regular vector loads (which always truncate
8942 // their input address to an aligned address), and a series of
8943 // permutations. The results of these permutations are the requested
8944 // loaded values. The trick is that the last "extra" load is not taken
8945 // from the address you might suspect (sizeof(vector) bytes after the
8946 // last requested load), but rather sizeof(vector) - 1 bytes after the
8947 // last requested vector. The point of this is to avoid a page fault if
8948 // the base address happened to be aligned. This works because if the
8949 // base address is aligned, then adding less than a full vector length
8950 // will cause the last vector in the sequence to be (re)loaded.
8951 // Otherwise, the next vector will be fetched as you might suspect was
8952 // necessary.
Hal Finkelcf2e9082013-05-24 23:00:14 +00008953
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008954 // We might be able to reuse the permutation generation from
Hal Finkelcf2e9082013-05-24 23:00:14 +00008955 // a different base address offset from this one by an aligned amount.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008956 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
8957 // optimization later.
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008958 Intrinsic::ID Intr = (isLittleEndian ?
8959 Intrinsic::ppc_altivec_lvsr :
8960 Intrinsic::ppc_altivec_lvsl);
8961 SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, MVT::v16i8);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008962
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008963 // Create the new MMO for the new base load. It is like the original MMO,
8964 // but represents an area in memory almost twice the vector size centered
8965 // on the original address. If the address is unaligned, we might start
8966 // reading up to (sizeof(vector)-1) bytes below the address of the
8967 // original unaligned load.
Hal Finkelcf2e9082013-05-24 23:00:14 +00008968 MachineFunction &MF = DAG.getMachineFunction();
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008969 MachineMemOperand *BaseMMO =
8970 MF.getMachineMemOperand(LD->getMemOperand(),
8971 -LD->getMemoryVT().getStoreSize()+1,
8972 2*LD->getMemoryVT().getStoreSize()-1);
8973
8974 // Create the new base load.
8975 SDValue LDXIntID = DAG.getTargetConstant(Intrinsic::ppc_altivec_lvx,
8976 getPointerTy());
8977 SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr };
8978 SDValue BaseLoad =
8979 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
8980 DAG.getVTList(MVT::v4i32, MVT::Other),
8981 BaseLoadOps, MVT::v4i32, BaseMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008982
8983 // Note that the value of IncOffset (which is provided to the next
8984 // load's pointer info offset value, and thus used to calculate the
8985 // alignment), and the value of IncValue (which is actually used to
8986 // increment the pointer value) are different! This is because we
8987 // require the next load to appear to be aligned, even though it
8988 // is actually offset from the base pointer by a lesser amount.
8989 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel7d8a6912013-05-26 18:08:30 +00008990 int IncValue = IncOffset;
8991
8992 // Walk (both up and down) the chain looking for another load at the real
8993 // (aligned) offset (the alignment of the other load does not matter in
8994 // this case). If found, then do not use the offset reduction trick, as
8995 // that will prevent the loads from being later combined (as they would
8996 // otherwise be duplicates).
8997 if (!findConsecutiveLoad(LD, DAG))
8998 --IncValue;
8999
Hal Finkelcf2e9082013-05-24 23:00:14 +00009000 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
9001 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
9002
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00009003 MachineMemOperand *ExtraMMO =
9004 MF.getMachineMemOperand(LD->getMemOperand(),
9005 1, 2*LD->getMemoryVT().getStoreSize()-1);
9006 SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr };
Hal Finkelcf2e9082013-05-24 23:00:14 +00009007 SDValue ExtraLoad =
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00009008 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
9009 DAG.getVTList(MVT::v4i32, MVT::Other),
9010 ExtraLoadOps, MVT::v4i32, ExtraMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +00009011
9012 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
9013 BaseLoad.getValue(1), ExtraLoad.getValue(1));
9014
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00009015 // Because vperm has a big-endian bias, we must reverse the order
9016 // of the input vectors and complement the permute control vector
9017 // when generating little endian code. We have already handled the
9018 // latter by using lvsr instead of lvsl, so just reverse BaseLoad
9019 // and ExtraLoad here.
9020 SDValue Perm;
9021 if (isLittleEndian)
9022 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
9023 ExtraLoad, BaseLoad, PermCntl, DAG, dl);
9024 else
9025 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
9026 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
Hal Finkelcf2e9082013-05-24 23:00:14 +00009027
9028 if (VT != MVT::v4i32)
9029 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
9030
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00009031 // The output of the permutation is our loaded result, the TokenFactor is
9032 // our new chain.
9033 DCI.CombineTo(N, Perm, TF);
Hal Finkelcf2e9082013-05-24 23:00:14 +00009034 return SDValue(N, 0);
9035 }
9036 }
9037 break;
Eric Christophercccae792015-01-30 22:02:31 +00009038 case ISD::INTRINSIC_WO_CHAIN: {
9039 bool isLittleEndian = Subtarget.isLittleEndian();
9040 Intrinsic::ID Intr = (isLittleEndian ? Intrinsic::ppc_altivec_lvsr
9041 : Intrinsic::ppc_altivec_lvsl);
9042 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() == Intr &&
9043 N->getOperand(1)->getOpcode() == ISD::ADD) {
9044 SDValue Add = N->getOperand(1);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00009045
Eric Christophercccae792015-01-30 22:02:31 +00009046 if (DAG.MaskedValueIsZero(
9047 Add->getOperand(1),
9048 APInt::getAllOnesValue(4 /* 16 byte alignment */)
9049 .zext(
9050 Add.getValueType().getScalarType().getSizeInBits()))) {
9051 SDNode *BasePtr = Add->getOperand(0).getNode();
9052 for (SDNode::use_iterator UI = BasePtr->use_begin(),
9053 UE = BasePtr->use_end();
9054 UI != UE; ++UI) {
9055 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
9056 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
9057 Intr) {
9058 // We've found another LVSL/LVSR, and this address is an aligned
9059 // multiple of that one. The results will be the same, so use the
9060 // one we've just found instead.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00009061
Eric Christophercccae792015-01-30 22:02:31 +00009062 return SDValue(*UI, 0);
9063 }
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00009064 }
9065 }
9066 }
9067 }
Hal Finkelc3cfbf82013-09-13 20:09:02 +00009068
9069 break;
Bill Schmidtfae5d712014-12-09 16:35:51 +00009070 case ISD::INTRINSIC_W_CHAIN: {
9071 // For little endian, VSX loads require generating lxvd2x/xxswapd.
Eric Christophercccae792015-01-30 22:02:31 +00009072 if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
Bill Schmidtfae5d712014-12-09 16:35:51 +00009073 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9074 default:
9075 break;
9076 case Intrinsic::ppc_vsx_lxvw4x:
9077 case Intrinsic::ppc_vsx_lxvd2x:
9078 return expandVSXLoadForLE(N, DCI);
9079 }
9080 }
9081 break;
9082 }
9083 case ISD::INTRINSIC_VOID: {
9084 // For little endian, VSX stores require generating xxswapd/stxvd2x.
Eric Christophercccae792015-01-30 22:02:31 +00009085 if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
Bill Schmidtfae5d712014-12-09 16:35:51 +00009086 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9087 default:
9088 break;
9089 case Intrinsic::ppc_vsx_stxvw4x:
9090 case Intrinsic::ppc_vsx_stxvd2x:
9091 return expandVSXStoreForLE(N, DCI);
9092 }
9093 }
9094 break;
9095 }
Chris Lattnera7976d32006-07-10 20:56:58 +00009096 case ISD::BSWAP:
9097 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greiff304a7a2008-08-28 21:40:38 +00009098 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnera7976d32006-07-10 20:56:58 +00009099 N->getOperand(0).hasOneUse() &&
Hal Finkel31d29562013-03-28 19:25:55 +00009100 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
Eric Christophercccae792015-01-30 22:02:31 +00009101 (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00009102 N->getValueType(0) == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009103 SDValue Load = N->getOperand(0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00009104 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnera7976d32006-07-10 20:56:58 +00009105 // Create the byte-swapping load.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009106 SDValue Ops[] = {
Evan Chenge71fe34d2006-10-09 20:57:25 +00009107 LD->getChain(), // Chain
9108 LD->getBasePtr(), // Ptr
Chris Lattnerd66f14e2006-08-11 17:18:05 +00009109 DAG.getValueType(N->getValueType(0)) // VT
9110 };
Dan Gohman48b185d2009-09-25 20:36:54 +00009111 SDValue BSLoad =
9112 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkel31d29562013-03-28 19:25:55 +00009113 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
9114 MVT::i64 : MVT::i32, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00009115 Ops, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00009116
Scott Michelcf0da6c2009-02-17 22:15:04 +00009117 // If this is an i16 load, insert the truncate.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009118 SDValue ResVal = BSLoad;
Owen Anderson9f944592009-08-11 20:47:22 +00009119 if (N->getValueType(0) == MVT::i16)
9120 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009121
Chris Lattnera7976d32006-07-10 20:56:58 +00009122 // First, combine the bswap away. This makes the value produced by the
9123 // load dead.
9124 DCI.CombineTo(N, ResVal);
9125
9126 // Next, combine the load away, we give it a bogus result value but a real
9127 // chain result. The result value is dead because the bswap is dead.
Gabor Greiff304a7a2008-08-28 21:40:38 +00009128 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00009129
Chris Lattnera7976d32006-07-10 20:56:58 +00009130 // Return N so it doesn't get rechecked!
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009131 return SDValue(N, 0);
Chris Lattnera7976d32006-07-10 20:56:58 +00009132 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009133
Chris Lattner27f53452006-03-01 05:50:56 +00009134 break;
Chris Lattnerd4058a52006-03-31 06:02:07 +00009135 case PPCISD::VCMP: {
9136 // If a VCMPo node already exists with exactly the same operands as this
9137 // node, use its result instead of this node (VCMPo computes both a CR6 and
9138 // a normal output).
9139 //
9140 if (!N->getOperand(0).hasOneUse() &&
9141 !N->getOperand(1).hasOneUse() &&
9142 !N->getOperand(2).hasOneUse()) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00009143
Chris Lattnerd4058a52006-03-31 06:02:07 +00009144 // Scan all of the users of the LHS, looking for VCMPo's that match.
Craig Topper062a2ba2014-04-25 05:30:21 +00009145 SDNode *VCMPoNode = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009146
Gabor Greiff304a7a2008-08-28 21:40:38 +00009147 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattnerd4058a52006-03-31 06:02:07 +00009148 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
9149 UI != E; ++UI)
Dan Gohman91e5dcb2008-07-27 20:43:25 +00009150 if (UI->getOpcode() == PPCISD::VCMPo &&
9151 UI->getOperand(1) == N->getOperand(1) &&
9152 UI->getOperand(2) == N->getOperand(2) &&
9153 UI->getOperand(0) == N->getOperand(0)) {
9154 VCMPoNode = *UI;
Chris Lattnerd4058a52006-03-31 06:02:07 +00009155 break;
9156 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009157
Chris Lattner518834c2006-04-18 18:28:22 +00009158 // If there is no VCMPo node, or if the flag value has a single use, don't
9159 // transform this.
9160 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
9161 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009162
9163 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner518834c2006-04-18 18:28:22 +00009164 // chain, this transformation is more complex. Note that multiple things
9165 // could use the value result, which we should ignore.
Craig Topper062a2ba2014-04-25 05:30:21 +00009166 SDNode *FlagUser = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009167 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Craig Topper062a2ba2014-04-25 05:30:21 +00009168 FlagUser == nullptr; ++UI) {
Chris Lattner518834c2006-04-18 18:28:22 +00009169 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman91e5dcb2008-07-27 20:43:25 +00009170 SDNode *User = *UI;
Chris Lattner518834c2006-04-18 18:28:22 +00009171 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009172 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner518834c2006-04-18 18:28:22 +00009173 FlagUser = User;
9174 break;
9175 }
9176 }
9177 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009178
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00009179 // If the user is a MFOCRF instruction, we know this is safe.
9180 // Otherwise we give up for right now.
9181 if (FlagUser->getOpcode() == PPCISD::MFOCRF)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009182 return SDValue(VCMPoNode, 0);
Chris Lattnerd4058a52006-03-31 06:02:07 +00009183 }
9184 break;
9185 }
Hal Finkel940ab932014-02-28 00:27:01 +00009186 case ISD::BRCOND: {
9187 SDValue Cond = N->getOperand(1);
9188 SDValue Target = N->getOperand(2);
9189
9190 if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9191 cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() ==
9192 Intrinsic::ppc_is_decremented_ctr_nonzero) {
9193
9194 // We now need to make the intrinsic dead (it cannot be instruction
9195 // selected).
9196 DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0));
9197 assert(Cond.getNode()->hasOneUse() &&
9198 "Counter decrement has more than one use");
9199
9200 return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other,
9201 N->getOperand(0), Target);
9202 }
9203 }
9204 break;
Chris Lattner9754d142006-04-18 17:59:36 +00009205 case ISD::BR_CC: {
9206 // If this is a branch on an altivec predicate comparison, lower this so
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00009207 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This
Chris Lattner9754d142006-04-18 17:59:36 +00009208 // lowering is done pre-legalize, because the legalizer lowers the predicate
9209 // compare down to code that is difficult to reassemble.
9210 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009211 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkel25c19922013-05-15 21:37:41 +00009212
9213 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
9214 // value. If so, pass-through the AND to get to the intrinsic.
9215 if (LHS.getOpcode() == ISD::AND &&
9216 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9217 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
9218 Intrinsic::ppc_is_decremented_ctr_nonzero &&
9219 isa<ConstantSDNode>(LHS.getOperand(1)) &&
9220 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
9221 isZero())
9222 LHS = LHS.getOperand(0);
9223
9224 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9225 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
9226 Intrinsic::ppc_is_decremented_ctr_nonzero &&
9227 isa<ConstantSDNode>(RHS)) {
9228 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
9229 "Counter decrement comparison is not EQ or NE");
9230
9231 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
9232 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
9233 (CC == ISD::SETNE && !Val);
9234
9235 // We now need to make the intrinsic dead (it cannot be instruction
9236 // selected).
9237 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
9238 assert(LHS.getNode()->hasOneUse() &&
9239 "Counter decrement has more than one use");
9240
9241 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
9242 N->getOperand(0), N->getOperand(4));
9243 }
9244
Chris Lattner9754d142006-04-18 17:59:36 +00009245 int CompareOpc;
9246 bool isDot;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009247
Chris Lattner9754d142006-04-18 17:59:36 +00009248 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
9249 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
9250 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
9251 assert(isDot && "Can't compare against a vector result!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00009252
Chris Lattner9754d142006-04-18 17:59:36 +00009253 // If this is a comparison against something other than 0/1, then we know
9254 // that the condition is never/always true.
Dan Gohmaneffb8942008-09-12 16:56:44 +00009255 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00009256 if (Val != 0 && Val != 1) {
9257 if (CC == ISD::SETEQ) // Cond never true, remove branch.
9258 return N->getOperand(0);
9259 // Always !=, turn it into an unconditional branch.
Owen Anderson9f944592009-08-11 20:47:22 +00009260 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner9754d142006-04-18 17:59:36 +00009261 N->getOperand(0), N->getOperand(4));
9262 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009263
Chris Lattner9754d142006-04-18 17:59:36 +00009264 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009265
Chris Lattner9754d142006-04-18 17:59:36 +00009266 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009267 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00009268 LHS.getOperand(2), // LHS of compare
9269 LHS.getOperand(3), // RHS of compare
Owen Anderson9f944592009-08-11 20:47:22 +00009270 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00009271 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00009272 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +00009273 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009274
Chris Lattner9754d142006-04-18 17:59:36 +00009275 // Unpack the result based on how the target uses it.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009276 PPC::Predicate CompOpc;
Dan Gohmaneffb8942008-09-12 16:56:44 +00009277 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner9754d142006-04-18 17:59:36 +00009278 default: // Can't happen, don't crash on invalid number though.
9279 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009280 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner9754d142006-04-18 17:59:36 +00009281 break;
9282 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009283 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner9754d142006-04-18 17:59:36 +00009284 break;
9285 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009286 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner9754d142006-04-18 17:59:36 +00009287 break;
9288 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009289 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner9754d142006-04-18 17:59:36 +00009290 break;
9291 }
9292
Owen Anderson9f944592009-08-11 20:47:22 +00009293 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
9294 DAG.getConstant(CompOpc, MVT::i32),
9295 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner9754d142006-04-18 17:59:36 +00009296 N->getOperand(4), CompNode.getValue(1));
9297 }
9298 break;
9299 }
Chris Lattnerf4184352006-03-01 04:57:39 +00009300 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009301
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009302 return SDValue();
Chris Lattnerf4184352006-03-01 04:57:39 +00009303}
9304
Hal Finkel13d104b2014-12-11 18:37:52 +00009305SDValue
9306PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
9307 SelectionDAG &DAG,
9308 std::vector<SDNode *> *Created) const {
9309 // fold (sdiv X, pow2)
9310 EVT VT = N->getValueType(0);
Hal Finkel04b16b52014-12-23 08:38:50 +00009311 if (VT == MVT::i64 && !Subtarget.isPPC64())
9312 return SDValue();
Hal Finkel13d104b2014-12-11 18:37:52 +00009313 if ((VT != MVT::i32 && VT != MVT::i64) ||
9314 !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
9315 return SDValue();
9316
9317 SDLoc DL(N);
9318 SDValue N0 = N->getOperand(0);
9319
9320 bool IsNegPow2 = (-Divisor).isPowerOf2();
9321 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros();
9322 SDValue ShiftAmt = DAG.getConstant(Lg2, VT);
9323
9324 SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt);
9325 if (Created)
9326 Created->push_back(Op.getNode());
9327
9328 if (IsNegPow2) {
9329 Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), Op);
9330 if (Created)
9331 Created->push_back(Op.getNode());
9332 }
9333
9334 return Op;
9335}
9336
Chris Lattner4211ca92006-04-14 06:01:58 +00009337//===----------------------------------------------------------------------===//
9338// Inline Assembly Support
9339//===----------------------------------------------------------------------===//
9340
Jay Foada0653a32014-05-14 21:14:37 +00009341void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
9342 APInt &KnownZero,
9343 APInt &KnownOne,
9344 const SelectionDAG &DAG,
9345 unsigned Depth) const {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00009346 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerc5287c02006-04-02 06:26:07 +00009347 switch (Op.getOpcode()) {
9348 default: break;
Chris Lattnera7976d32006-07-10 20:56:58 +00009349 case PPCISD::LBRX: {
9350 // lhbrx is known to have the top bits cleared out.
Dan Gohmana5fc0352009-09-27 23:17:47 +00009351 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnera7976d32006-07-10 20:56:58 +00009352 KnownZero = 0xFFFF0000;
9353 break;
9354 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00009355 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmaneffb8942008-09-12 16:56:44 +00009356 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerc5287c02006-04-02 06:26:07 +00009357 default: break;
9358 case Intrinsic::ppc_altivec_vcmpbfp_p:
9359 case Intrinsic::ppc_altivec_vcmpeqfp_p:
9360 case Intrinsic::ppc_altivec_vcmpequb_p:
9361 case Intrinsic::ppc_altivec_vcmpequh_p:
9362 case Intrinsic::ppc_altivec_vcmpequw_p:
9363 case Intrinsic::ppc_altivec_vcmpgefp_p:
9364 case Intrinsic::ppc_altivec_vcmpgtfp_p:
9365 case Intrinsic::ppc_altivec_vcmpgtsb_p:
9366 case Intrinsic::ppc_altivec_vcmpgtsh_p:
9367 case Intrinsic::ppc_altivec_vcmpgtsw_p:
9368 case Intrinsic::ppc_altivec_vcmpgtub_p:
9369 case Intrinsic::ppc_altivec_vcmpgtuh_p:
9370 case Intrinsic::ppc_altivec_vcmpgtuw_p:
9371 KnownZero = ~1U; // All bits but the low one are known to be zero.
9372 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009373 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00009374 }
9375 }
9376}
9377
Hal Finkel57725662015-01-03 17:58:24 +00009378unsigned PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const {
9379 switch (Subtarget.getDarwinDirective()) {
9380 default: break;
9381 case PPC::DIR_970:
9382 case PPC::DIR_PWR4:
9383 case PPC::DIR_PWR5:
9384 case PPC::DIR_PWR5X:
9385 case PPC::DIR_PWR6:
9386 case PPC::DIR_PWR6X:
9387 case PPC::DIR_PWR7:
9388 case PPC::DIR_PWR8: {
9389 if (!ML)
9390 break;
9391
Eric Christophercccae792015-01-30 22:02:31 +00009392 const PPCInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel57725662015-01-03 17:58:24 +00009393
9394 // For small loops (between 5 and 8 instructions), align to a 32-byte
9395 // boundary so that the entire loop fits in one instruction-cache line.
9396 uint64_t LoopSize = 0;
9397 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I)
9398 for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J)
9399 LoopSize += TII->GetInstSizeInBytes(J);
9400
9401 if (LoopSize > 16 && LoopSize <= 32)
9402 return 5;
9403
9404 break;
9405 }
9406 }
9407
9408 return TargetLowering::getPrefLoopAlignment(ML);
9409}
Chris Lattnerc5287c02006-04-02 06:26:07 +00009410
Chris Lattnerd6855142007-03-25 02:14:49 +00009411/// getConstraintType - Given a constraint, return the type of
Chris Lattner203b2f12006-02-07 20:16:30 +00009412/// constraint it is for this target.
Scott Michelcf0da6c2009-02-17 22:15:04 +00009413PPCTargetLowering::ConstraintType
Chris Lattnerd6855142007-03-25 02:14:49 +00009414PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
9415 if (Constraint.size() == 1) {
9416 switch (Constraint[0]) {
9417 default: break;
9418 case 'b':
9419 case 'r':
9420 case 'f':
9421 case 'v':
9422 case 'y':
9423 return C_RegisterClass;
Hal Finkel4f24c622012-11-05 18:18:42 +00009424 case 'Z':
9425 // FIXME: While Z does indicate a memory constraint, it specifically
9426 // indicates an r+r address (used in conjunction with the 'y' modifier
9427 // in the replacement string). Currently, we're forcing the base
9428 // register to be r0 in the asm printer (which is interpreted as zero)
9429 // and forming the complete address in the second register. This is
9430 // suboptimal.
9431 return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +00009432 }
Hal Finkel6aca2372014-03-02 18:23:39 +00009433 } else if (Constraint == "wc") { // individual CR bits.
9434 return C_RegisterClass;
Hal Finkel27774d92014-03-13 07:58:58 +00009435 } else if (Constraint == "wa" || Constraint == "wd" ||
9436 Constraint == "wf" || Constraint == "ws") {
9437 return C_RegisterClass; // VSX registers.
Chris Lattnerd6855142007-03-25 02:14:49 +00009438 }
9439 return TargetLowering::getConstraintType(Constraint);
Chris Lattner203b2f12006-02-07 20:16:30 +00009440}
9441
John Thompsone8360b72010-10-29 17:29:13 +00009442/// Examine constraint type and operand type and determine a weight value.
9443/// This object must already have been set up with the operand type
9444/// and the current alternative constraint selected.
9445TargetLowering::ConstraintWeight
9446PPCTargetLowering::getSingleConstraintMatchWeight(
9447 AsmOperandInfo &info, const char *constraint) const {
9448 ConstraintWeight weight = CW_Invalid;
9449 Value *CallOperandVal = info.CallOperandVal;
9450 // If we don't have a value, we can't do a match,
9451 // but allow it at the lowest weight.
Craig Topper062a2ba2014-04-25 05:30:21 +00009452 if (!CallOperandVal)
John Thompsone8360b72010-10-29 17:29:13 +00009453 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +00009454 Type *type = CallOperandVal->getType();
Hal Finkel6aca2372014-03-02 18:23:39 +00009455
John Thompsone8360b72010-10-29 17:29:13 +00009456 // Look at the constraint type.
Hal Finkel6aca2372014-03-02 18:23:39 +00009457 if (StringRef(constraint) == "wc" && type->isIntegerTy(1))
9458 return CW_Register; // an individual CR bit.
Hal Finkel27774d92014-03-13 07:58:58 +00009459 else if ((StringRef(constraint) == "wa" ||
9460 StringRef(constraint) == "wd" ||
9461 StringRef(constraint) == "wf") &&
9462 type->isVectorTy())
9463 return CW_Register;
9464 else if (StringRef(constraint) == "ws" && type->isDoubleTy())
9465 return CW_Register;
Hal Finkel6aca2372014-03-02 18:23:39 +00009466
John Thompsone8360b72010-10-29 17:29:13 +00009467 switch (*constraint) {
9468 default:
9469 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
9470 break;
9471 case 'b':
9472 if (type->isIntegerTy())
9473 weight = CW_Register;
9474 break;
9475 case 'f':
9476 if (type->isFloatTy())
9477 weight = CW_Register;
9478 break;
9479 case 'd':
9480 if (type->isDoubleTy())
9481 weight = CW_Register;
9482 break;
9483 case 'v':
9484 if (type->isVectorTy())
9485 weight = CW_Register;
9486 break;
9487 case 'y':
9488 weight = CW_Register;
9489 break;
Hal Finkel4f24c622012-11-05 18:18:42 +00009490 case 'Z':
9491 weight = CW_Memory;
9492 break;
John Thompsone8360b72010-10-29 17:29:13 +00009493 }
9494 return weight;
9495}
9496
Scott Michelcf0da6c2009-02-17 22:15:04 +00009497std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner584a11a2006-11-02 01:44:04 +00009498PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier295bd432013-06-22 18:37:38 +00009499 MVT VT) const {
Chris Lattner01513612006-01-31 19:20:21 +00009500 if (Constraint.size() == 1) {
Chris Lattner584a11a2006-11-02 01:44:04 +00009501 // GCC RS6000 Constraint Letters
9502 switch (Constraint[0]) {
9503 case 'b': // R1-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009504 if (VT == MVT::i64 && Subtarget.isPPC64())
Hal Finkel638a9fa2013-03-19 18:51:05 +00009505 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
9506 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009507 case 'r': // R0-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009508 if (VT == MVT::i64 && Subtarget.isPPC64())
Craig Topperabadc662012-04-20 06:31:50 +00009509 return std::make_pair(0U, &PPC::G8RCRegClass);
9510 return std::make_pair(0U, &PPC::GPRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009511 case 'f':
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00009512 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperabadc662012-04-20 06:31:50 +00009513 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00009514 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperabadc662012-04-20 06:31:50 +00009515 return std::make_pair(0U, &PPC::F8RCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009516 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009517 case 'v':
Craig Topperabadc662012-04-20 06:31:50 +00009518 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009519 case 'y': // crrc
Craig Topperabadc662012-04-20 06:31:50 +00009520 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00009521 }
Hal Finkel6aca2372014-03-02 18:23:39 +00009522 } else if (Constraint == "wc") { // an individual CR bit.
9523 return std::make_pair(0U, &PPC::CRBITRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +00009524 } else if (Constraint == "wa" || Constraint == "wd" ||
Hal Finkel19be5062014-03-29 05:29:01 +00009525 Constraint == "wf") {
Hal Finkel27774d92014-03-13 07:58:58 +00009526 return std::make_pair(0U, &PPC::VSRCRegClass);
Hal Finkel19be5062014-03-29 05:29:01 +00009527 } else if (Constraint == "ws") {
9528 return std::make_pair(0U, &PPC::VSFRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00009529 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009530
Hal Finkelb176acb2013-08-03 12:25:10 +00009531 std::pair<unsigned, const TargetRegisterClass*> R =
9532 TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
9533
9534 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
9535 // (which we call X[0-9]+). If a 64-bit value has been requested, and a
9536 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
9537 // register.
9538 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
9539 // the AsmName field from *RegisterInfo.td, then this would not be necessary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009540 if (R.first && VT == MVT::i64 && Subtarget.isPPC64() &&
Hal Finkelb176acb2013-08-03 12:25:10 +00009541 PPC::GPRCRegClass.contains(R.first)) {
Eric Christophercccae792015-01-30 22:02:31 +00009542 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
Hal Finkelb176acb2013-08-03 12:25:10 +00009543 return std::make_pair(TRI->getMatchingSuperReg(R.first,
Hal Finkelb3ca00d2013-08-14 20:05:04 +00009544 PPC::sub_32, &PPC::G8RCRegClass),
Hal Finkelb176acb2013-08-03 12:25:10 +00009545 &PPC::G8RCRegClass);
9546 }
9547
Hal Finkelaa10b3c2014-12-08 22:54:22 +00009548 // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same.
9549 if (!R.second && StringRef("{cc}").equals_lower(Constraint)) {
9550 R.first = PPC::CR0;
9551 R.second = &PPC::CRRCRegClass;
9552 }
9553
Hal Finkelb176acb2013-08-03 12:25:10 +00009554 return R;
Chris Lattner01513612006-01-31 19:20:21 +00009555}
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009556
Chris Lattner584a11a2006-11-02 01:44:04 +00009557
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009558/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesence97d552010-06-25 21:55:36 +00009559/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher0713a9d2011-06-08 23:55:35 +00009560void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +00009561 std::string &Constraint,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009562 std::vector<SDValue>&Ops,
Chris Lattner724539c2008-04-26 23:02:14 +00009563 SelectionDAG &DAG) const {
Craig Topper062a2ba2014-04-25 05:30:21 +00009564 SDValue Result;
Eric Christopher0713a9d2011-06-08 23:55:35 +00009565
Eric Christopherde9399b2011-06-02 23:16:42 +00009566 // Only support length 1 constraints.
9567 if (Constraint.length() > 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +00009568
Eric Christopherde9399b2011-06-02 23:16:42 +00009569 char Letter = Constraint[0];
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009570 switch (Letter) {
9571 default: break;
9572 case 'I':
9573 case 'J':
9574 case 'K':
9575 case 'L':
9576 case 'M':
9577 case 'N':
9578 case 'O':
9579 case 'P': {
Chris Lattner0b7472d2007-05-15 01:31:05 +00009580 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009581 if (!CST) return; // Must be an immediate to match.
Hal Finkelc91fc112014-12-03 09:37:50 +00009582 int64_t Value = CST->getSExtValue();
9583 EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative
9584 // numbers are printed as such.
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009585 switch (Letter) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009586 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009587 case 'I': // "I" is a signed 16-bit constant.
Hal Finkelc91fc112014-12-03 09:37:50 +00009588 if (isInt<16>(Value))
9589 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009590 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009591 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
Hal Finkelc91fc112014-12-03 09:37:50 +00009592 if (isShiftedUInt<16, 16>(Value))
9593 Result = DAG.getTargetConstant(Value, TCVT);
9594 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009595 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Hal Finkelc91fc112014-12-03 09:37:50 +00009596 if (isShiftedInt<16, 16>(Value))
9597 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009598 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009599 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Hal Finkelc91fc112014-12-03 09:37:50 +00009600 if (isUInt<16>(Value))
9601 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009602 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009603 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009604 if (Value > 31)
Hal Finkelc91fc112014-12-03 09:37:50 +00009605 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009606 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009607 case 'N': // "N" is a positive constant that is an exact power of two.
Hal Finkelc91fc112014-12-03 09:37:50 +00009608 if (Value > 0 && isPowerOf2_64(Value))
9609 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009610 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009611 case 'O': // "O" is the constant zero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009612 if (Value == 0)
Hal Finkelc91fc112014-12-03 09:37:50 +00009613 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009614 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009615 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Hal Finkelc91fc112014-12-03 09:37:50 +00009616 if (isInt<16>(-Value))
9617 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009618 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009619 }
9620 break;
9621 }
9622 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009623
Gabor Greiff304a7a2008-08-28 21:40:38 +00009624 if (Result.getNode()) {
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009625 Ops.push_back(Result);
9626 return;
9627 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009628
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009629 // Handle standard constraint letters.
Eric Christopherde9399b2011-06-02 23:16:42 +00009630 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009631}
Evan Cheng2dd2c652006-03-13 23:20:37 +00009632
Chris Lattner1eb94d92007-03-30 23:15:24 +00009633// isLegalAddressingMode - Return true if the addressing mode represented
9634// by AM is legal for this target, for a load/store of the specified type.
Scott Michelcf0da6c2009-02-17 22:15:04 +00009635bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattner229907c2011-07-18 04:54:35 +00009636 Type *Ty) const {
Chris Lattner1eb94d92007-03-30 23:15:24 +00009637 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelcf0da6c2009-02-17 22:15:04 +00009638
Chris Lattner1eb94d92007-03-30 23:15:24 +00009639 // PPC allows a sign-extended 16-bit immediate field.
9640 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
9641 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009642
Chris Lattner1eb94d92007-03-30 23:15:24 +00009643 // No global is ever allowed as a base.
9644 if (AM.BaseGV)
9645 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009646
9647 // PPC only support r+r,
Chris Lattner1eb94d92007-03-30 23:15:24 +00009648 switch (AM.Scale) {
9649 case 0: // "r+i" or just "i", depending on HasBaseReg.
9650 break;
9651 case 1:
9652 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
9653 return false;
9654 // Otherwise we have r+r or r+i.
9655 break;
9656 case 2:
9657 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
9658 return false;
9659 // Allow 2*r as r+r.
9660 break;
Chris Lattner19ccd622007-04-09 22:10:05 +00009661 default:
9662 // No other scales are supported.
9663 return false;
Chris Lattner1eb94d92007-03-30 23:15:24 +00009664 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009665
Chris Lattner1eb94d92007-03-30 23:15:24 +00009666 return true;
9667}
9668
Dan Gohman21cea8a2010-04-17 15:26:15 +00009669SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
9670 SelectionDAG &DAG) const {
Evan Cheng168ced92010-05-22 01:47:14 +00009671 MachineFunction &MF = DAG.getMachineFunction();
9672 MachineFrameInfo *MFI = MF.getFrameInfo();
9673 MFI->setReturnAddressIsTaken(true);
9674
Bill Wendling908bf812014-01-06 00:43:20 +00009675 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00009676 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00009677
Andrew Trickef9de2a2013-05-25 02:42:55 +00009678 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009679 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattnerf6a81562007-12-08 06:59:59 +00009680
Dale Johannesen81bfca72010-05-03 22:59:34 +00009681 // Make sure the function does not optimize away the store of the RA to
9682 // the stack.
Chris Lattnerf6a81562007-12-08 06:59:59 +00009683 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009684 FuncInfo->setLRStoreRequired();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009685 bool isPPC64 = Subtarget.isPPC64();
9686 bool isDarwinABI = Subtarget.isDarwinABI();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009687
9688 if (Depth > 0) {
9689 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9690 SDValue Offset =
Wesley Peck527da1b2010-11-23 03:31:01 +00009691
Anton Korobeynikov2f931282011-01-10 12:39:04 +00009692 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI),
Dale Johannesen81bfca72010-05-03 22:59:34 +00009693 isPPC64? MVT::i64 : MVT::i32);
9694 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
9695 DAG.getNode(ISD::ADD, dl, getPointerTy(),
9696 FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009697 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009698 }
Chris Lattnerf6a81562007-12-08 06:59:59 +00009699
Chris Lattnerf6a81562007-12-08 06:59:59 +00009700 // Just load the return address off the stack.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009701 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009702 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009703 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Chris Lattnerf6a81562007-12-08 06:59:59 +00009704}
9705
Dan Gohman21cea8a2010-04-17 15:26:15 +00009706SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
9707 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00009708 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009709 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00009710
Owen Anderson53aa7a92009-08-10 22:56:29 +00009711 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00009712 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009713
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00009714 MachineFunction &MF = DAG.getMachineFunction();
9715 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009716 MFI->setFrameAddressIsTaken(true);
Hal Finkelaa03c032013-03-21 19:03:19 +00009717
9718 // Naked functions never have a frame pointer, and so we use r1. For all
9719 // other functions, this decision must be delayed until during PEI.
9720 unsigned FrameReg;
9721 if (MF.getFunction()->getAttributes().hasAttribute(
9722 AttributeSet::FunctionIndex, Attribute::Naked))
9723 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
9724 else
9725 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
9726
Dale Johannesen81bfca72010-05-03 22:59:34 +00009727 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
9728 PtrVT);
9729 while (Depth--)
9730 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009731 FrameAddr, MachinePointerInfo(), false, false,
9732 false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009733 return FrameAddr;
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00009734}
Dan Gohmanc14e5222008-10-21 03:41:46 +00009735
Hal Finkel0d8db462014-05-11 19:29:11 +00009736// FIXME? Maybe this could be a TableGen attribute on some registers and
9737// this table could be generated automatically from RegInfo.
9738unsigned PPCTargetLowering::getRegisterByName(const char* RegName,
9739 EVT VT) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009740 bool isPPC64 = Subtarget.isPPC64();
9741 bool isDarwinABI = Subtarget.isDarwinABI();
Hal Finkel0d8db462014-05-11 19:29:11 +00009742
9743 if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) ||
9744 (!isPPC64 && VT != MVT::i32))
9745 report_fatal_error("Invalid register global variable type");
9746
9747 bool is64Bit = isPPC64 && VT == MVT::i64;
9748 unsigned Reg = StringSwitch<unsigned>(RegName)
9749 .Case("r1", is64Bit ? PPC::X1 : PPC::R1)
Hal Finkele6698d52015-02-01 15:03:28 +00009750 .Case("r2", (isDarwinABI || isPPC64) ? 0 : PPC::R2)
Hal Finkel0d8db462014-05-11 19:29:11 +00009751 .Case("r13", (!isPPC64 && isDarwinABI) ? 0 :
9752 (is64Bit ? PPC::X13 : PPC::R13))
9753 .Default(0);
9754
9755 if (Reg)
9756 return Reg;
9757 report_fatal_error("Invalid register name global variable");
9758}
9759
Dan Gohmanc14e5222008-10-21 03:41:46 +00009760bool
9761PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
9762 // The PowerPC target isn't yet aware of offsets.
9763 return false;
9764}
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009765
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009766bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
9767 const CallInst &I,
9768 unsigned Intrinsic) const {
9769
9770 switch (Intrinsic) {
9771 case Intrinsic::ppc_altivec_lvx:
9772 case Intrinsic::ppc_altivec_lvxl:
9773 case Intrinsic::ppc_altivec_lvebx:
9774 case Intrinsic::ppc_altivec_lvehx:
Bill Schmidt72954782014-11-12 04:19:40 +00009775 case Intrinsic::ppc_altivec_lvewx:
9776 case Intrinsic::ppc_vsx_lxvd2x:
9777 case Intrinsic::ppc_vsx_lxvw4x: {
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009778 EVT VT;
9779 switch (Intrinsic) {
9780 case Intrinsic::ppc_altivec_lvebx:
9781 VT = MVT::i8;
9782 break;
9783 case Intrinsic::ppc_altivec_lvehx:
9784 VT = MVT::i16;
9785 break;
9786 case Intrinsic::ppc_altivec_lvewx:
9787 VT = MVT::i32;
9788 break;
Bill Schmidt72954782014-11-12 04:19:40 +00009789 case Intrinsic::ppc_vsx_lxvd2x:
9790 VT = MVT::v2f64;
9791 break;
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009792 default:
9793 VT = MVT::v4i32;
9794 break;
9795 }
9796
9797 Info.opc = ISD::INTRINSIC_W_CHAIN;
9798 Info.memVT = VT;
9799 Info.ptrVal = I.getArgOperand(0);
9800 Info.offset = -VT.getStoreSize()+1;
9801 Info.size = 2*VT.getStoreSize()-1;
9802 Info.align = 1;
9803 Info.vol = false;
9804 Info.readMem = true;
9805 Info.writeMem = false;
9806 return true;
9807 }
9808 case Intrinsic::ppc_altivec_stvx:
9809 case Intrinsic::ppc_altivec_stvxl:
9810 case Intrinsic::ppc_altivec_stvebx:
9811 case Intrinsic::ppc_altivec_stvehx:
Bill Schmidt72954782014-11-12 04:19:40 +00009812 case Intrinsic::ppc_altivec_stvewx:
9813 case Intrinsic::ppc_vsx_stxvd2x:
9814 case Intrinsic::ppc_vsx_stxvw4x: {
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009815 EVT VT;
9816 switch (Intrinsic) {
9817 case Intrinsic::ppc_altivec_stvebx:
9818 VT = MVT::i8;
9819 break;
9820 case Intrinsic::ppc_altivec_stvehx:
9821 VT = MVT::i16;
9822 break;
9823 case Intrinsic::ppc_altivec_stvewx:
9824 VT = MVT::i32;
9825 break;
Bill Schmidt72954782014-11-12 04:19:40 +00009826 case Intrinsic::ppc_vsx_stxvd2x:
9827 VT = MVT::v2f64;
9828 break;
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009829 default:
9830 VT = MVT::v4i32;
9831 break;
9832 }
9833
9834 Info.opc = ISD::INTRINSIC_VOID;
9835 Info.memVT = VT;
9836 Info.ptrVal = I.getArgOperand(1);
9837 Info.offset = -VT.getStoreSize()+1;
9838 Info.size = 2*VT.getStoreSize()-1;
9839 Info.align = 1;
9840 Info.vol = false;
9841 Info.readMem = false;
9842 Info.writeMem = true;
9843 return true;
9844 }
9845 default:
9846 break;
9847 }
9848
9849 return false;
9850}
9851
Evan Chengd9929f02010-04-01 20:10:42 +00009852/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng61399372010-04-02 19:36:14 +00009853/// and store operations as a result of memset, memcpy, and memmove
9854/// lowering. If DstAlign is zero that means it's safe to destination
9855/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
9856/// means there isn't a need to check it against alignment requirement,
Evan Cheng962711e2012-12-12 02:34:41 +00009857/// probably because the source does not need to be loaded. If 'IsMemset' is
9858/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
9859/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
9860/// source is constant so it does not need to be loaded.
Dan Gohman148c69a2010-04-16 20:11:05 +00009861/// It returns EVT::Other if the type should be determined using generic
9862/// target-independent logic.
Evan Cheng43cd9e32010-04-01 06:04:33 +00009863EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
9864 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00009865 bool IsMemset, bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00009866 bool MemcpyStrSrc,
Dan Gohman148c69a2010-04-16 20:11:05 +00009867 MachineFunction &MF) const {
Eric Christopherd90a8742014-06-12 22:38:20 +00009868 if (Subtarget.isPPC64()) {
Owen Anderson9f944592009-08-11 20:47:22 +00009869 return MVT::i64;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009870 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00009871 return MVT::i32;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009872 }
9873}
Hal Finkel88ed4e32012-04-01 19:23:08 +00009874
Hal Finkel34974ed2014-04-12 21:52:38 +00009875/// \brief Returns true if it is beneficial to convert a load of a constant
9876/// to just the constant itself.
9877bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
9878 Type *Ty) const {
9879 assert(Ty->isIntegerTy());
9880
9881 unsigned BitSize = Ty->getPrimitiveSizeInBits();
9882 if (BitSize == 0 || BitSize > 64)
9883 return false;
9884 return true;
9885}
9886
9887bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
9888 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9889 return false;
9890 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9891 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
9892 return NumBits1 == 64 && NumBits2 == 32;
9893}
9894
9895bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
9896 if (!VT1.isInteger() || !VT2.isInteger())
9897 return false;
9898 unsigned NumBits1 = VT1.getSizeInBits();
9899 unsigned NumBits2 = VT2.getSizeInBits();
9900 return NumBits1 == 64 && NumBits2 == 32;
9901}
9902
Hal Finkel5d5d1532015-01-10 08:21:59 +00009903bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
9904 // Generally speaking, zexts are not free, but they are free when they can be
9905 // folded with other operations.
9906 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) {
9907 EVT MemVT = LD->getMemoryVT();
9908 if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 ||
9909 (Subtarget.isPPC64() && MemVT == MVT::i32)) &&
9910 (LD->getExtensionType() == ISD::NON_EXTLOAD ||
9911 LD->getExtensionType() == ISD::ZEXTLOAD))
9912 return true;
9913 }
9914
9915 // FIXME: Add other cases...
9916 // - 32-bit shifts with a zext to i64
9917 // - zext after ctlz, bswap, etc.
9918 // - zext after and by a constant mask
9919
9920 return TargetLowering::isZExtFree(Val, VT2);
9921}
9922
Olivier Sallenave32509692015-01-13 15:06:36 +00009923bool PPCTargetLowering::isFPExtFree(EVT VT) const {
9924 assert(VT.isFloatingPoint());
9925 return true;
9926}
9927
Hal Finkel34974ed2014-04-12 21:52:38 +00009928bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
9929 return isInt<16>(Imm) || isUInt<16>(Imm);
9930}
9931
9932bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
9933 return isInt<16>(Imm) || isUInt<16>(Imm);
9934}
9935
Matt Arsenault6f2a5262014-07-27 17:46:40 +00009936bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
9937 unsigned,
9938 unsigned,
9939 bool *Fast) const {
Hal Finkel8d7fbc92013-03-15 15:27:13 +00009940 if (DisablePPCUnaligned)
9941 return false;
9942
9943 // PowerPC supports unaligned memory access for simple non-vector types.
9944 // Although accessing unaligned addresses is not as efficient as accessing
9945 // aligned addresses, it is generally more efficient than manual expansion,
9946 // and generally only traps for software emulation when crossing page
9947 // boundaries.
9948
9949 if (!VT.isSimple())
9950 return false;
9951
Hal Finkel6e28e6a2014-03-26 19:39:09 +00009952 if (VT.getSimpleVT().isVector()) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009953 if (Subtarget.hasVSX()) {
Bill Schmidt2d1128a2014-10-17 15:13:38 +00009954 if (VT != MVT::v2f64 && VT != MVT::v2i64 &&
9955 VT != MVT::v4f32 && VT != MVT::v4i32)
Hal Finkel6e28e6a2014-03-26 19:39:09 +00009956 return false;
9957 } else {
9958 return false;
9959 }
9960 }
Hal Finkel8d7fbc92013-03-15 15:27:13 +00009961
9962 if (VT == MVT::ppcf128)
9963 return false;
9964
9965 if (Fast)
9966 *Fast = true;
9967
9968 return true;
9969}
9970
Stephen Lin73de7bf2013-07-09 18:16:56 +00009971bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
9972 VT = VT.getScalarType();
9973
Hal Finkel0a479ae2012-06-22 00:49:52 +00009974 if (!VT.isSimple())
9975 return false;
9976
9977 switch (VT.getSimpleVT().SimpleTy) {
9978 case MVT::f32:
9979 case MVT::f64:
Hal Finkel0a479ae2012-06-22 00:49:52 +00009980 return true;
9981 default:
9982 break;
9983 }
9984
9985 return false;
9986}
9987
Hal Finkel934361a2015-01-14 01:07:51 +00009988const MCPhysReg *
9989PPCTargetLowering::getScratchRegisters(CallingConv::ID) const {
9990 // LR is a callee-save register, but we must treat it as clobbered by any call
9991 // site. Hence we include LR in the scratch registers, which are in turn added
9992 // as implicit-defs for stackmaps and patchpoints. The same reasoning applies
9993 // to CTR, which is used by any indirect call.
9994 static const MCPhysReg ScratchRegs[] = {
Hal Finkelc19805a2015-01-17 03:57:34 +00009995 PPC::X12, PPC::LR8, PPC::CTR8, 0
Hal Finkel934361a2015-01-14 01:07:51 +00009996 };
9997
9998 return ScratchRegs;
9999}
10000
Hal Finkelb4240ca2014-03-31 17:48:16 +000010001bool
10002PPCTargetLowering::shouldExpandBuildVectorWithShuffles(
10003 EVT VT , unsigned DefinedValues) const {
10004 if (VT == MVT::v2i64)
10005 return false;
10006
10007 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
10008}
10009
Hal Finkel88ed4e32012-04-01 19:23:08 +000010010Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +000010011 if (DisableILPPref || Subtarget.enableMachineScheduler())
Hal Finkel4e9f1a82012-06-10 19:32:29 +000010012 return TargetLowering::getSchedulingPreference(N);
Hal Finkel88ed4e32012-04-01 19:23:08 +000010013
Hal Finkel4e9f1a82012-06-10 19:32:29 +000010014 return Sched::ILP;
Hal Finkel88ed4e32012-04-01 19:23:08 +000010015}
10016
Bill Schmidt0cf702f2013-07-30 00:50:39 +000010017// Create a fast isel object.
10018FastISel *
10019PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
10020 const TargetLibraryInfo *LibInfo) const {
10021 return PPC::createFastISel(FuncInfo, LibInfo);
10022}