blob: df2437c021110efe0af4deb037e1c02a4dd67418 [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";
Bill Schmidt3d9674c2014-11-11 20:44:09 +0000794 case PPCISD::CALL_TLS: return "PPCISD::CALL_TLS";
795 case PPCISD::CALL_NOP_TLS: return "PPCISD::CALL_NOP_TLS";
Evan Cheng32e376f2008-07-12 02:23:19 +0000796 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000797 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Hal Finkelfc096c92014-12-23 22:29:40 +0000798 case PPCISD::BCTRL_LOAD_TOC: return "PPCISD::BCTRL_LOAD_TOC";
Evan Cheng32e376f2008-07-12 02:23:19 +0000799 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkelbbdee932014-12-02 22:01:00 +0000800 case PPCISD::READ_TIME_BASE: return "PPCISD::READ_TIME_BASE";
Hal Finkel756810f2013-03-21 21:37:52 +0000801 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
802 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Ulrich Weigandd5ebc622013-07-03 17:05:42 +0000803 case PPCISD::MFOCRF: return "PPCISD::MFOCRF";
Evan Cheng32e376f2008-07-12 02:23:19 +0000804 case PPCISD::VCMP: return "PPCISD::VCMP";
805 case PPCISD::VCMPo: return "PPCISD::VCMPo";
806 case PPCISD::LBRX: return "PPCISD::LBRX";
807 case PPCISD::STBRX: return "PPCISD::STBRX";
Hal Finkel3fe09ea2015-01-06 07:02:15 +0000808 case PPCISD::LFIWAX: return "PPCISD::LFIWAX";
809 case PPCISD::LFIWZX: return "PPCISD::LFIWZX";
Evan Cheng32e376f2008-07-12 02:23:19 +0000810 case PPCISD::LARX: return "PPCISD::LARX";
811 case PPCISD::STCX: return "PPCISD::STCX";
812 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkel25c19922013-05-15 21:37:41 +0000813 case PPCISD::BDNZ: return "PPCISD::BDNZ";
814 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000815 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng32e376f2008-07-12 02:23:19 +0000816 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000817 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel5ab37802012-08-28 02:10:27 +0000818 case PPCISD::CR6SET: return "PPCISD::CR6SET";
819 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Bill Schmidt34627e32012-11-27 17:35:46 +0000820 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA";
821 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L";
822 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L";
Roman Divacky32143e22013-12-20 18:08:54 +0000823 case PPCISD::PPC32_GOT: return "PPCISD::PPC32_GOT";
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +0000824 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
825 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtca4a0c92012-12-04 16:18:08 +0000826 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidtc56f1d32012-12-11 20:30:11 +0000827 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
828 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
Bill Schmidt24b8dd62012-12-12 19:29:35 +0000829 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
830 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
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
Scott Michelcf0da6c2009-02-17 22:15:04 +00001593SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001594 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001595 EVT PtrVT = Op.getValueType();
Chris Lattner4211ca92006-04-14 06:01:58 +00001596 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001597 const Constant *C = CP->getConstVal();
Chris Lattner4211ca92006-04-14 06:01:58 +00001598
Roman Divackyace47072012-08-24 16:26:02 +00001599 // 64-bit SVR4 ABI code is always position-independent.
1600 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001601 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Roman Divackyace47072012-08-24 16:26:02 +00001602 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001603 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001604 DAG.getRegister(PPC::X2, MVT::i64));
1605 }
1606
Chris Lattneredb9d842010-11-15 02:46:57 +00001607 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001608 bool isPIC =
1609 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00001610
1611 if (isPIC && Subtarget.isSVR4ABI()) {
1612 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(),
1613 PPCII::MO_PIC_FLAG);
1614 SDLoc DL(CP);
1615 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1616 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1617 }
1618
Chris Lattneredb9d842010-11-15 02:46:57 +00001619 SDValue CPIHi =
1620 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1621 SDValue CPILo =
1622 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1623 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00001624}
1625
Dan Gohman21cea8a2010-04-17 15:26:15 +00001626SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001627 EVT PtrVT = Op.getValueType();
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001628 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peck527da1b2010-11-23 03:31:01 +00001629
Roman Divackyace47072012-08-24 16:26:02 +00001630 // 64-bit SVR4 ABI code is always position-independent.
1631 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001632 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Roman Divackyace47072012-08-24 16:26:02 +00001633 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001634 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001635 DAG.getRegister(PPC::X2, MVT::i64));
1636 }
1637
Chris Lattneredb9d842010-11-15 02:46:57 +00001638 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001639 bool isPIC =
1640 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00001641
1642 if (isPIC && Subtarget.isSVR4ABI()) {
1643 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
1644 PPCII::MO_PIC_FLAG);
1645 SDLoc DL(GA);
1646 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), PtrVT, GA,
1647 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1648 }
1649
Chris Lattneredb9d842010-11-15 02:46:57 +00001650 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1651 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1652 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio09d73c02007-07-11 17:19:51 +00001653}
1654
Dan Gohman21cea8a2010-04-17 15:26:15 +00001655SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1656 SelectionDAG &DAG) const {
Bob Wilsonf84f7102009-11-04 21:31:18 +00001657 EVT PtrVT = Op.getValueType();
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00001658 BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op);
1659 const BlockAddress *BA = BASDN->getBlockAddress();
Bob Wilsonf84f7102009-11-04 21:31:18 +00001660
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00001661 // 64-bit SVR4 ABI code is always position-independent.
1662 // The actual BlockAddress is stored in the TOC.
1663 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
1664 SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset());
1665 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(BASDN), MVT::i64, GA,
1666 DAG.getRegister(PPC::X2, MVT::i64));
1667 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001668
Chris Lattneredb9d842010-11-15 02:46:57 +00001669 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001670 bool isPIC =
1671 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Michael Liaoabb87d42012-09-12 21:43:09 +00001672 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1673 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattneredb9d842010-11-15 02:46:57 +00001674 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1675}
1676
Bill Schmidt3d9674c2014-11-11 20:44:09 +00001677// Generate a call to __tls_get_addr for the given GOT entry Op.
1678std::pair<SDValue,SDValue>
1679PPCTargetLowering::lowerTLSCall(SDValue Op, SDLoc dl,
1680 SelectionDAG &DAG) const {
1681
1682 Type *IntPtrTy = getDataLayout()->getIntPtrType(*DAG.getContext());
1683 TargetLowering::ArgListTy Args;
1684 TargetLowering::ArgListEntry Entry;
1685 Entry.Node = Op;
1686 Entry.Ty = IntPtrTy;
1687 Args.push_back(Entry);
1688
1689 TargetLowering::CallLoweringInfo CLI(DAG);
1690 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
1691 .setCallee(CallingConv::C, IntPtrTy,
1692 DAG.getTargetExternalSymbol("__tls_get_addr", getPointerTy()),
1693 std::move(Args), 0);
1694
1695 return LowerCallTo(CLI);
1696}
1697
Roman Divackye3f15c982012-06-04 17:36:38 +00001698SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1699 SelectionDAG &DAG) const {
1700
Bill Schmidtbdae03f2013-09-17 20:22:05 +00001701 // FIXME: TLS addresses currently use medium model code sequences,
1702 // which is the most useful form. Eventually support for small and
1703 // large models could be added if users need it, at the cost of
1704 // additional complexity.
Roman Divackye3f15c982012-06-04 17:36:38 +00001705 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001706 SDLoc dl(GA);
Roman Divackye3f15c982012-06-04 17:36:38 +00001707 const GlobalValue *GV = GA->getGlobal();
1708 EVT PtrVT = getPointerTy();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001709 bool is64bit = Subtarget.isPPC64();
Justin Hibbitsa88b6052014-11-12 15:16:30 +00001710 const Module *M = DAG.getMachineFunction().getFunction()->getParent();
1711 PICLevel::Level picLevel = M->getPICLevel();
Roman Divackye3f15c982012-06-04 17:36:38 +00001712
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001713 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackye3f15c982012-06-04 17:36:38 +00001714
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001715 if (Model == TLSModel::LocalExec) {
1716 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001717 PPCII::MO_TPREL_HA);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001718 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001719 PPCII::MO_TPREL_LO);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001720 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1721 is64bit ? MVT::i64 : MVT::i32);
1722 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1723 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1724 }
Roman Divackye3f15c982012-06-04 17:36:38 +00001725
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001726 if (Model == TLSModel::InitialExec) {
Bill Schmidt732eb912012-12-13 18:45:54 +00001727 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001728 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1729 PPCII::MO_TLS);
Roman Divacky32143e22013-12-20 18:08:54 +00001730 SDValue GOTPtr;
1731 if (is64bit) {
1732 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1733 GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1734 PtrVT, GOTReg, TGA);
1735 } else
1736 GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +00001737 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
Roman Divacky32143e22013-12-20 18:08:54 +00001738 PtrVT, TGA, GOTPtr);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001739 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001740 }
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001741
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001742 if (Model == TLSModel::GeneralDynamic) {
Bill Schmidt3d9674c2014-11-11 20:44:09 +00001743 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1744 PPCII::MO_TLSGD);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001745 SDValue GOTPtr;
1746 if (is64bit) {
1747 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1748 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1749 GOTReg, TGA);
1750 } else {
Justin Hibbitsa88b6052014-11-12 15:16:30 +00001751 if (picLevel == PICLevel::Small)
1752 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
1753 else
1754 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001755 }
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001756 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl, PtrVT,
Hal Finkel7c8ae532014-07-25 17:47:22 +00001757 GOTPtr, TGA);
Bill Schmidt3d9674c2014-11-11 20:44:09 +00001758 std::pair<SDValue, SDValue> CallResult = lowerTLSCall(GOTEntry, dl, DAG);
1759 return CallResult.first;
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001760 }
1761
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001762 if (Model == TLSModel::LocalDynamic) {
Bill Schmidt3d9674c2014-11-11 20:44:09 +00001763 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1764 PPCII::MO_TLSLD);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001765 SDValue GOTPtr;
1766 if (is64bit) {
1767 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1768 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1769 GOTReg, TGA);
1770 } else {
Justin Hibbitsa88b6052014-11-12 15:16:30 +00001771 if (picLevel == PICLevel::Small)
1772 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
1773 else
1774 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001775 }
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001776 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT,
Hal Finkel7c8ae532014-07-25 17:47:22 +00001777 GOTPtr, TGA);
Bill Schmidt3d9674c2014-11-11 20:44:09 +00001778 std::pair<SDValue, SDValue> CallResult = lowerTLSCall(GOTEntry, dl, DAG);
1779 SDValue TLSAddr = CallResult.first;
1780 SDValue Chain = CallResult.second;
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001781 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, PtrVT,
Bill Schmidt3d9674c2014-11-11 20:44:09 +00001782 Chain, TLSAddr, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001783 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1784 }
1785
1786 llvm_unreachable("Unknown TLS model!");
Roman Divackye3f15c982012-06-04 17:36:38 +00001787}
1788
Chris Lattneredb9d842010-11-15 02:46:57 +00001789SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1790 SelectionDAG &DAG) const {
1791 EVT PtrVT = Op.getValueType();
1792 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001793 SDLoc DL(GSDN);
Chris Lattneredb9d842010-11-15 02:46:57 +00001794 const GlobalValue *GV = GSDN->getGlobal();
1795
Chris Lattneredb9d842010-11-15 02:46:57 +00001796 // 64-bit SVR4 ABI code is always position-independent.
1797 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001798 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Chris Lattneredb9d842010-11-15 02:46:57 +00001799 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1800 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1801 DAG.getRegister(PPC::X2, MVT::i64));
1802 }
1803
Chris Lattnerdd6df842010-11-15 03:13:19 +00001804 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00001805 bool isPIC =
1806 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag, GV);
Chris Lattneredb9d842010-11-15 02:46:57 +00001807
Hal Finkel3ee2af72014-07-18 23:29:49 +00001808 if (isPIC && Subtarget.isSVR4ABI()) {
1809 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT,
1810 GSDN->getOffset(),
1811 PPCII::MO_PIC_FLAG);
1812 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1813 DAG.getNode(PPCISD::GlobalBaseReg, DL, MVT::i32));
1814 }
1815
Chris Lattnerdd6df842010-11-15 03:13:19 +00001816 SDValue GAHi =
1817 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1818 SDValue GALo =
1819 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peck527da1b2010-11-23 03:31:01 +00001820
Chris Lattnerdd6df842010-11-15 03:13:19 +00001821 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00001822
Chris Lattnerdd6df842010-11-15 03:13:19 +00001823 // If the global reference is actually to a non-lazy-pointer, we have to do an
1824 // extra load to get the address of the global.
1825 if (MOHiFlag & PPCII::MO_NLP_FLAG)
1826 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001827 false, false, false, 0);
Chris Lattnerdd6df842010-11-15 03:13:19 +00001828 return Ptr;
Chris Lattner4211ca92006-04-14 06:01:58 +00001829}
1830
Dan Gohman21cea8a2010-04-17 15:26:15 +00001831SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00001832 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001833 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001834
Hal Finkel777c9dd2014-03-29 16:04:40 +00001835 if (Op.getValueType() == MVT::v2i64) {
1836 // When the operands themselves are v2i64 values, we need to do something
1837 // special because VSX has no underlying comparison operations for these.
1838 if (Op.getOperand(0).getValueType() == MVT::v2i64) {
1839 // Equality can be handled by casting to the legal type for Altivec
1840 // comparisons, everything else needs to be expanded.
1841 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
1842 return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
1843 DAG.getSetCC(dl, MVT::v4i32,
1844 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)),
1845 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)),
1846 CC));
1847 }
1848
1849 return SDValue();
1850 }
1851
1852 // We handle most of these in the usual way.
1853 return Op;
1854 }
1855
Chris Lattner4211ca92006-04-14 06:01:58 +00001856 // If we're comparing for equality to zero, expose the fact that this is
1857 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1858 // fold the new nodes.
1859 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1860 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001861 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001862 SDValue Zext = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00001863 if (VT.bitsLT(MVT::i32)) {
1864 VT = MVT::i32;
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001865 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001866 }
Duncan Sands13237ac2008-06-06 12:08:01 +00001867 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001868 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1869 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson9f944592009-08-11 20:47:22 +00001870 DAG.getConstant(Log2b, MVT::i32));
1871 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner4211ca92006-04-14 06:01:58 +00001872 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001873 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner4211ca92006-04-14 06:01:58 +00001874 // optimized. FIXME: revisit this when we can custom lower all setcc
1875 // optimizations.
1876 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001877 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001878 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001879
Chris Lattner4211ca92006-04-14 06:01:58 +00001880 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattner97ff46b2006-11-14 05:28:08 +00001881 // by xor'ing the rhs with the lhs, which is faster than setting a
1882 // condition register, reading it back out, and masking the correct bit. The
1883 // normal approach here uses sub to do this instead of xor. Using xor exposes
1884 // the result to other bit-twiddling opportunities.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001885 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00001886 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001887 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001888 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner4211ca92006-04-14 06:01:58 +00001889 Op.getOperand(1));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001890 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner4211ca92006-04-14 06:01:58 +00001891 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001892 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001893}
1894
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001895SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001896 const PPCSubtarget &Subtarget) const {
Roman Divacky4394e682011-06-28 15:30:42 +00001897 SDNode *Node = Op.getNode();
1898 EVT VT = Node->getValueType(0);
1899 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1900 SDValue InChain = Node->getOperand(0);
1901 SDValue VAListPtr = Node->getOperand(1);
1902 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001903 SDLoc dl(Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001904
Roman Divacky4394e682011-06-28 15:30:42 +00001905 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1906
1907 // gpr_index
1908 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1909 VAListPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001910 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001911 InChain = GprIndex.getValue(1);
1912
1913 if (VT == MVT::i64) {
1914 // Check if GprIndex is even
1915 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1916 DAG.getConstant(1, MVT::i32));
1917 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1918 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1919 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1920 DAG.getConstant(1, MVT::i32));
1921 // Align GprIndex to be even if it isn't
1922 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1923 GprIndex);
1924 }
1925
1926 // fpr index is 1 byte after gpr
1927 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1928 DAG.getConstant(1, MVT::i32));
1929
1930 // fpr
1931 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1932 FprPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001933 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001934 InChain = FprIndex.getValue(1);
1935
1936 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1937 DAG.getConstant(8, MVT::i32));
1938
1939 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1940 DAG.getConstant(4, MVT::i32));
1941
1942 // areas
1943 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001944 MachinePointerInfo(), false, false,
1945 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001946 InChain = OverflowArea.getValue(1);
1947
1948 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001949 MachinePointerInfo(), false, false,
1950 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001951 InChain = RegSaveArea.getValue(1);
1952
1953 // select overflow_area if index > 8
1954 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1955 DAG.getConstant(8, MVT::i32), ISD::SETLT);
1956
Roman Divacky4394e682011-06-28 15:30:42 +00001957 // adjustment constant gpr_index * 4/8
1958 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1959 VT.isInteger() ? GprIndex : FprIndex,
1960 DAG.getConstant(VT.isInteger() ? 4 : 8,
1961 MVT::i32));
1962
1963 // OurReg = RegSaveArea + RegConstant
1964 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1965 RegConstant);
1966
1967 // Floating types are 32 bytes into RegSaveArea
1968 if (VT.isFloatingPoint())
1969 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1970 DAG.getConstant(32, MVT::i32));
1971
1972 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1973 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1974 VT.isInteger() ? GprIndex : FprIndex,
1975 DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1976 MVT::i32));
1977
1978 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1979 VT.isInteger() ? VAListPtr : FprPtr,
1980 MachinePointerInfo(SV),
1981 MVT::i8, false, false, 0);
1982
1983 // determine if we should load from reg_save_area or overflow_area
1984 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1985
1986 // increase overflow_area by 4/8 if gpr/fpr > 8
1987 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1988 DAG.getConstant(VT.isInteger() ? 4 : 8,
1989 MVT::i32));
1990
1991 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1992 OverflowAreaPlusN);
1993
1994 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
1995 OverflowAreaPtr,
1996 MachinePointerInfo(),
1997 MVT::i32, false, false, 0);
1998
NAKAMURA Takumi8ad54e02012-08-30 15:52:23 +00001999 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002000 false, false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002001}
2002
Roman Divackyc3825df2013-07-25 21:36:47 +00002003SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
2004 const PPCSubtarget &Subtarget) const {
2005 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
2006
2007 // We have to copy the entire va_list struct:
2008 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
2009 return DAG.getMemcpy(Op.getOperand(0), Op,
2010 Op.getOperand(1), Op.getOperand(2),
2011 DAG.getConstant(12, MVT::i32), 8, false, true,
2012 MachinePointerInfo(), MachinePointerInfo());
2013}
2014
Duncan Sandsa0984362011-09-06 13:37:06 +00002015SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
2016 SelectionDAG &DAG) const {
2017 return Op.getOperand(0);
2018}
2019
2020SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
2021 SelectionDAG &DAG) const {
Bill Wendling95e1af22008-09-17 00:30:57 +00002022 SDValue Chain = Op.getOperand(0);
2023 SDValue Trmp = Op.getOperand(1); // trampoline
2024 SDValue FPtr = Op.getOperand(2); // nested function
2025 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickef9de2a2013-05-25 02:42:55 +00002026 SDLoc dl(Op);
Bill Wendling95e1af22008-09-17 00:30:57 +00002027
Owen Anderson53aa7a92009-08-10 22:56:29 +00002028 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00002029 bool isPPC64 = (PtrVT == MVT::i64);
Chris Lattner229907c2011-07-18 04:54:35 +00002030 Type *IntPtrTy =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00002031 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
Chandler Carruth7ec50852012-11-01 08:07:29 +00002032 *DAG.getContext());
Bill Wendling95e1af22008-09-17 00:30:57 +00002033
Scott Michelcf0da6c2009-02-17 22:15:04 +00002034 TargetLowering::ArgListTy Args;
Bill Wendling95e1af22008-09-17 00:30:57 +00002035 TargetLowering::ArgListEntry Entry;
2036
2037 Entry.Ty = IntPtrTy;
2038 Entry.Node = Trmp; Args.push_back(Entry);
2039
2040 // TrampSize == (isPPC64 ? 48 : 40);
2041 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson9f944592009-08-11 20:47:22 +00002042 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling95e1af22008-09-17 00:30:57 +00002043 Args.push_back(Entry);
2044
2045 Entry.Node = FPtr; Args.push_back(Entry);
2046 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002047
Bill Wendling95e1af22008-09-17 00:30:57 +00002048 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002049 TargetLowering::CallLoweringInfo CLI(DAG);
2050 CLI.setDebugLoc(dl).setChain(Chain)
2051 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002052 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
2053 std::move(Args), 0);
Bill Wendling95e1af22008-09-17 00:30:57 +00002054
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002055 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Duncan Sandsa0984362011-09-06 13:37:06 +00002056 return CallResult.second;
Bill Wendling95e1af22008-09-17 00:30:57 +00002057}
2058
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002059SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002060 const PPCSubtarget &Subtarget) const {
Dan Gohman31ae5862010-04-17 14:41:14 +00002061 MachineFunction &MF = DAG.getMachineFunction();
2062 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2063
Andrew Trickef9de2a2013-05-25 02:42:55 +00002064 SDLoc dl(Op);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002065
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002066 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002067 // vastart just stores the address of the VarArgsFrameIndex slot into the
2068 // memory location argument.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002069 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman31ae5862010-04-17 14:41:14 +00002070 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002071 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner676c61d2010-09-21 18:41:36 +00002072 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2073 MachinePointerInfo(SV),
David Greene87a5abe2010-02-15 16:56:53 +00002074 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002075 }
2076
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002077 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002078 // We suppose the given va_list is already allocated.
2079 //
2080 // typedef struct {
2081 // char gpr; /* index into the array of 8 GPRs
2082 // * stored in the register save area
2083 // * gpr=0 corresponds to r3,
2084 // * gpr=1 to r4, etc.
2085 // */
2086 // char fpr; /* index into the array of 8 FPRs
2087 // * stored in the register save area
2088 // * fpr=0 corresponds to f1,
2089 // * fpr=1 to f2, etc.
2090 // */
2091 // char *overflow_arg_area;
2092 // /* location on stack that holds
2093 // * the next overflow argument
2094 // */
2095 // char *reg_save_area;
2096 // /* where r3:r10 and f1:f8 (if saved)
2097 // * are stored
2098 // */
2099 // } va_list[1];
2100
2101
Dan Gohman31ae5862010-04-17 14:41:14 +00002102 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
2103 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002104
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002105
Owen Anderson53aa7a92009-08-10 22:56:29 +00002106 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002107
Dan Gohman31ae5862010-04-17 14:41:14 +00002108 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
2109 PtrVT);
2110 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
2111 PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002112
Duncan Sands13237ac2008-06-06 12:08:01 +00002113 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002114 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002115
Duncan Sands13237ac2008-06-06 12:08:01 +00002116 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002117 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002118
2119 uint64_t FPROffset = 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002120 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002121
Dan Gohman2d489b52008-02-06 22:27:42 +00002122 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002123
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002124 // Store first byte : number of int regs
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002125 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattner6963c1f2010-09-21 17:42:31 +00002126 Op.getOperand(1),
2127 MachinePointerInfo(SV),
2128 MVT::i8, false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002129 uint64_t nextOffset = FPROffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002130 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002131 ConstFPROffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002132
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002133 // Store second byte : number of float regs
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002134 SDValue secondStore =
Chris Lattner6963c1f2010-09-21 17:42:31 +00002135 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
2136 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene87a5abe2010-02-15 16:56:53 +00002137 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002138 nextOffset += StackOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002139 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002140
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002141 // Store second word : arguments given on stack
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002142 SDValue thirdStore =
Chris Lattner676c61d2010-09-21 18:41:36 +00002143 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
2144 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002145 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002146 nextOffset += FrameOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002147 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002148
2149 // Store third word : arguments given in registers
Chris Lattner676c61d2010-09-21 18:41:36 +00002150 return DAG.getStore(thirdStore, dl, FR, nextPtr,
2151 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002152 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002153
Chris Lattner4211ca92006-04-14 06:01:58 +00002154}
2155
Chris Lattner4f2e4e02007-03-06 00:59:59 +00002156#include "PPCGenCallingConv.inc"
2157
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002158// Function whose sole purpose is to kill compiler warnings
2159// stemming from unused functions included from PPCGenCallingConv.inc.
2160CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
Bill Schmidt8470b0f2013-08-30 22:18:55 +00002161 return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002162}
2163
Bill Schmidt230b4512013-06-12 16:39:22 +00002164bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
2165 CCValAssign::LocInfo &LocInfo,
2166 ISD::ArgFlagsTy &ArgFlags,
2167 CCState &State) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002168 return true;
2169}
2170
Bill Schmidt230b4512013-06-12 16:39:22 +00002171bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
2172 MVT &LocVT,
2173 CCValAssign::LocInfo &LocInfo,
2174 ISD::ArgFlagsTy &ArgFlags,
2175 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002176 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002177 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2178 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2179 };
2180 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002181
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002182 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2183
2184 // Skip one register if the first unallocated register has an even register
2185 // number and there are still argument registers available which have not been
2186 // allocated yet. RegNum is actually an index into ArgRegs, which means we
2187 // need to skip a register if RegNum is odd.
2188 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
2189 State.AllocateReg(ArgRegs[RegNum]);
2190 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002191
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002192 // Always return false here, as this function only makes sure that the first
2193 // unallocated register has an odd register number and does not actually
2194 // allocate a register for the current argument.
2195 return false;
2196}
2197
Bill Schmidt230b4512013-06-12 16:39:22 +00002198bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
2199 MVT &LocVT,
2200 CCValAssign::LocInfo &LocInfo,
2201 ISD::ArgFlagsTy &ArgFlags,
2202 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002203 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002204 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2205 PPC::F8
2206 };
2207
2208 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002209
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002210 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2211
2212 // If there is only one Floating-point register left we need to put both f64
2213 // values of a split ppc_fp128 value on the stack.
2214 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
2215 State.AllocateReg(ArgRegs[RegNum]);
2216 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002217
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002218 // Always return false here, as this function only makes sure that the two f64
2219 // values a ppc_fp128 value is split into are both passed in registers or both
2220 // passed on the stack and does not actually allocate a register for the
2221 // current argument.
2222 return false;
2223}
2224
Chris Lattner43df5b32007-02-25 05:34:32 +00002225/// GetFPR - Get the set of FP registers that should be allocated for arguments,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002226/// on Darwin.
Craig Topper840beec2014-04-04 05:16:06 +00002227static const MCPhysReg *GetFPR() {
2228 static const MCPhysReg FPR[] = {
Chris Lattner43df5b32007-02-25 05:34:32 +00002229 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002230 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
Chris Lattner43df5b32007-02-25 05:34:32 +00002231 };
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002232
Chris Lattner43df5b32007-02-25 05:34:32 +00002233 return FPR;
2234}
2235
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002236/// CalculateStackSlotSize - Calculates the size reserved for this argument on
2237/// the stack.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002238static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002239 unsigned PtrByteSize) {
Hal Finkel940ab932014-02-28 00:27:01 +00002240 unsigned ArgSize = ArgVT.getStoreSize();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002241 if (Flags.isByVal())
2242 ArgSize = Flags.getByValSize();
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002243
2244 // Round up to multiples of the pointer size, except for array members,
2245 // which are always packed.
2246 if (!Flags.isInConsecutiveRegs())
2247 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002248
2249 return ArgSize;
2250}
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002251
2252/// CalculateStackSlotAlignment - Calculates the alignment of this argument
2253/// on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002254static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT,
2255 ISD::ArgFlagsTy Flags,
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002256 unsigned PtrByteSize) {
2257 unsigned Align = PtrByteSize;
2258
2259 // Altivec parameters are padded to a 16 byte boundary.
2260 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2261 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2262 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2263 Align = 16;
2264
2265 // ByVal parameters are aligned as requested.
2266 if (Flags.isByVal()) {
2267 unsigned BVAlign = Flags.getByValAlign();
2268 if (BVAlign > PtrByteSize) {
2269 if (BVAlign % PtrByteSize != 0)
2270 llvm_unreachable(
2271 "ByVal alignment is not a multiple of the pointer size");
2272
2273 Align = BVAlign;
2274 }
2275 }
2276
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002277 // Array members are always packed to their original alignment.
2278 if (Flags.isInConsecutiveRegs()) {
2279 // If the array member was split into multiple registers, the first
2280 // needs to be aligned to the size of the full type. (Except for
2281 // ppcf128, which is only aligned as its f64 components.)
2282 if (Flags.isSplit() && OrigVT != MVT::ppcf128)
2283 Align = OrigVT.getStoreSize();
2284 else
2285 Align = ArgVT.getStoreSize();
2286 }
2287
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002288 return Align;
2289}
2290
Ulrich Weigand8658f172014-07-20 23:43:15 +00002291/// CalculateStackSlotUsed - Return whether this argument will use its
2292/// stack slot (instead of being passed in registers). ArgOffset,
2293/// AvailableFPRs, and AvailableVRs must hold the current argument
2294/// position, and will be updated to account for this argument.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002295static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT,
2296 ISD::ArgFlagsTy Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00002297 unsigned PtrByteSize,
2298 unsigned LinkageSize,
2299 unsigned ParamAreaSize,
2300 unsigned &ArgOffset,
2301 unsigned &AvailableFPRs,
2302 unsigned &AvailableVRs) {
2303 bool UseMemory = false;
2304
2305 // Respect alignment of argument on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002306 unsigned Align =
2307 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigand8658f172014-07-20 23:43:15 +00002308 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2309 // If there's no space left in the argument save area, we must
2310 // use memory (this check also catches zero-sized arguments).
2311 if (ArgOffset >= LinkageSize + ParamAreaSize)
2312 UseMemory = true;
2313
2314 // Allocate argument on the stack.
2315 ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002316 if (Flags.isInConsecutiveRegsLast())
2317 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand8658f172014-07-20 23:43:15 +00002318 // If we overran the argument save area, we must use memory
2319 // (this check catches arguments passed partially in memory)
2320 if (ArgOffset > LinkageSize + ParamAreaSize)
2321 UseMemory = true;
2322
2323 // However, if the argument is actually passed in an FPR or a VR,
2324 // we don't use memory after all.
2325 if (!Flags.isByVal()) {
2326 if (ArgVT == MVT::f32 || ArgVT == MVT::f64)
2327 if (AvailableFPRs > 0) {
2328 --AvailableFPRs;
2329 return false;
2330 }
2331 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2332 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2333 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2334 if (AvailableVRs > 0) {
2335 --AvailableVRs;
2336 return false;
2337 }
2338 }
2339
2340 return UseMemory;
2341}
2342
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002343/// EnsureStackAlignment - Round stack frame size up from NumBytes to
2344/// ensure minimum alignment required for target.
Eric Christophercccae792015-01-30 22:02:31 +00002345static unsigned EnsureStackAlignment(const PPCFrameLowering *Lowering,
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002346 unsigned NumBytes) {
Eric Christophercccae792015-01-30 22:02:31 +00002347 unsigned TargetAlign = Lowering->getStackAlignment();
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002348 unsigned AlignMask = TargetAlign - 1;
2349 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2350 return NumBytes;
2351}
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002352
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002353SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002354PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002355 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002356 const SmallVectorImpl<ISD::InputArg>
2357 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002358 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002359 SmallVectorImpl<SDValue> &InVals)
2360 const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002361 if (Subtarget.isSVR4ABI()) {
2362 if (Subtarget.isPPC64())
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002363 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
2364 dl, DAG, InVals);
2365 else
2366 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
2367 dl, DAG, InVals);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002368 } else {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002369 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
2370 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002371 }
2372}
2373
2374SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002375PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002376 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002377 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002378 const SmallVectorImpl<ISD::InputArg>
2379 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002380 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002381 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002382
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002383 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002384 // +-----------------------------------+
2385 // +--> | Back chain |
2386 // | +-----------------------------------+
2387 // | | Floating-point register save area |
2388 // | +-----------------------------------+
2389 // | | General register save area |
2390 // | +-----------------------------------+
2391 // | | CR save word |
2392 // | +-----------------------------------+
2393 // | | VRSAVE save word |
2394 // | +-----------------------------------+
2395 // | | Alignment padding |
2396 // | +-----------------------------------+
2397 // | | Vector register save area |
2398 // | +-----------------------------------+
2399 // | | Local variable space |
2400 // | +-----------------------------------+
2401 // | | Parameter list area |
2402 // | +-----------------------------------+
2403 // | | LR save word |
2404 // | +-----------------------------------+
2405 // SP--> +--- | Back chain |
2406 // +-----------------------------------+
2407 //
2408 // Specifications:
2409 // System V Application Binary Interface PowerPC Processor Supplement
2410 // AltiVec Technology Programming Interface Manual
Wesley Peck527da1b2010-11-23 03:31:01 +00002411
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002412 MachineFunction &MF = DAG.getMachineFunction();
2413 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002414 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002415
Owen Anderson53aa7a92009-08-10 22:56:29 +00002416 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002417 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002418 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2419 (CallConv == CallingConv::Fast));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002420 unsigned PtrByteSize = 4;
2421
2422 // Assign locations to all of the incoming arguments.
2423 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002424 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2425 *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002426
2427 // Reserve space for the linkage area on the stack.
Ulrich Weigand8658f172014-07-20 23:43:15 +00002428 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(false, false, false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002429 CCInfo.AllocateStack(LinkageSize, PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002430
Bill Schmidtef17c142013-02-06 17:33:58 +00002431 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peck527da1b2010-11-23 03:31:01 +00002432
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002433 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2434 CCValAssign &VA = ArgLocs[i];
Wesley Peck527da1b2010-11-23 03:31:01 +00002435
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002436 // Arguments stored in registers.
2437 if (VA.isRegLoc()) {
Craig Topper760b1342012-02-22 05:59:10 +00002438 const TargetRegisterClass *RC;
Owen Anderson53aa7a92009-08-10 22:56:29 +00002439 EVT ValVT = VA.getValVT();
Wesley Peck527da1b2010-11-23 03:31:01 +00002440
Owen Anderson9f944592009-08-11 20:47:22 +00002441 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002442 default:
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002443 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Hal Finkel940ab932014-02-28 00:27:01 +00002444 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00002445 case MVT::i32:
Craig Topperabadc662012-04-20 06:31:50 +00002446 RC = &PPC::GPRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002447 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002448 case MVT::f32:
Craig Topperabadc662012-04-20 06:31:50 +00002449 RC = &PPC::F4RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002450 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002451 case MVT::f64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002452 if (Subtarget.hasVSX())
Hal Finkel19be5062014-03-29 05:29:01 +00002453 RC = &PPC::VSFRCRegClass;
2454 else
2455 RC = &PPC::F8RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002456 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002457 case MVT::v16i8:
2458 case MVT::v8i16:
2459 case MVT::v4i32:
2460 case MVT::v4f32:
Hal Finkel7811c612014-03-28 19:58:11 +00002461 RC = &PPC::VRRCRegClass;
2462 break;
Hal Finkel27774d92014-03-13 07:58:58 +00002463 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00002464 case MVT::v2i64:
Hal Finkel7811c612014-03-28 19:58:11 +00002465 RC = &PPC::VSHRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002466 break;
2467 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002468
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002469 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00002470 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Hal Finkel940ab932014-02-28 00:27:01 +00002471 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg,
2472 ValVT == MVT::i1 ? MVT::i32 : ValVT);
2473
2474 if (ValVT == MVT::i1)
2475 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002476
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002477 InVals.push_back(ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002478 } else {
2479 // Argument stored in memory.
2480 assert(VA.isMemLoc());
2481
Hal Finkel940ab932014-02-28 00:27:01 +00002482 unsigned ArgSize = VA.getLocVT().getStoreSize();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002483 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Cheng0664a672010-07-03 00:40:23 +00002484 isImmutable);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002485
2486 // Create load nodes to retrieve arguments from the stack.
2487 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002488 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2489 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002490 false, false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002491 }
2492 }
2493
2494 // Assign locations to all of the incoming aggregate by value arguments.
2495 // Aggregates passed by value are stored in the local variable space of the
2496 // caller's stack frame, right above the parameter list area.
2497 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002498 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Eric Christopherb5217502014-08-06 18:45:26 +00002499 ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002500
2501 // Reserve stack space for the allocations in CCInfo.
2502 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2503
Bill Schmidtef17c142013-02-06 17:33:58 +00002504 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002505
2506 // Area that is at least reserved in the caller of this function.
2507 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002508 MinReservedArea = std::max(MinReservedArea, LinkageSize);
Wesley Peck527da1b2010-11-23 03:31:01 +00002509
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002510 // Set the size that is at least reserved in caller of this function. Tail
2511 // call optimized function's reserved stack space needs to be aligned so that
2512 // taking the difference between two stack areas will result in an aligned
2513 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00002514 MinReservedArea =
2515 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002516 FuncInfo->setMinReservedArea(MinReservedArea);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002517
2518 SmallVector<SDValue, 8> MemOps;
Wesley Peck527da1b2010-11-23 03:31:01 +00002519
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002520 // If the function takes variable number of arguments, make a frame index for
2521 // the start of the first vararg value... for expansion of llvm.va_start.
2522 if (isVarArg) {
Craig Topper840beec2014-04-04 05:16:06 +00002523 static const MCPhysReg GPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002524 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2525 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2526 };
2527 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2528
Craig Topper840beec2014-04-04 05:16:06 +00002529 static const MCPhysReg FPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002530 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2531 PPC::F8
2532 };
Joerg Sonnenbergereb8655a2014-08-08 16:46:10 +00002533 unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2534 if (DisablePPCFloatInVariadic)
2535 NumFPArgRegs = 0;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002536
Dan Gohman31ae5862010-04-17 14:41:14 +00002537 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2538 NumGPArgRegs));
2539 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2540 NumFPArgRegs));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002541
2542 // Make room for NumGPArgRegs and NumFPArgRegs.
2543 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Craig Topper7ff15922014-09-10 04:51:36 +00002544 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002545
Dan Gohman31ae5862010-04-17 14:41:14 +00002546 FuncInfo->setVarArgsStackOffset(
2547 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002548 CCInfo.getNextStackOffset(), true));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002549
Dan Gohman31ae5862010-04-17 14:41:14 +00002550 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2551 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002552
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002553 // The fixed integer arguments of a variadic function are stored to the
2554 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2555 // the result of va_next.
2556 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2557 // Get an existing live-in vreg, or add a new one.
2558 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2559 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002560 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002561
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002562 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002563 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2564 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002565 MemOps.push_back(Store);
2566 // Increment the address by four for the next argument to store
2567 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2568 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2569 }
2570
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002571 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2572 // is set.
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002573 // The double arguments are stored to the VarArgsFrameIndex
2574 // on the stack.
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002575 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2576 // Get an existing live-in vreg, or add a new one.
2577 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2578 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002579 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002580
Owen Anderson9f944592009-08-11 20:47:22 +00002581 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner676c61d2010-09-21 18:41:36 +00002582 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2583 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002584 MemOps.push_back(Store);
2585 // Increment the address by eight for the next argument to store
Craig Topper7ff15922014-09-10 04:51:36 +00002586 SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002587 PtrVT);
2588 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2589 }
2590 }
2591
2592 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00002593 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002594
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002595 return Chain;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002596}
2597
Bill Schmidt57d6de52012-10-23 15:51:16 +00002598// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2599// value to MVT::i64 and then truncate to the correct register size.
2600SDValue
2601PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2602 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002603 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00002604 if (Flags.isSExt())
2605 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2606 DAG.getValueType(ObjectVT));
2607 else if (Flags.isZExt())
2608 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2609 DAG.getValueType(ObjectVT));
Matt Arsenault758659232013-05-18 00:21:46 +00002610
Hal Finkel940ab932014-02-28 00:27:01 +00002611 return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal);
Bill Schmidt57d6de52012-10-23 15:51:16 +00002612}
2613
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002614SDValue
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002615PPCTargetLowering::LowerFormalArguments_64SVR4(
2616 SDValue Chain,
2617 CallingConv::ID CallConv, bool isVarArg,
2618 const SmallVectorImpl<ISD::InputArg>
2619 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002620 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002621 SmallVectorImpl<SDValue> &InVals) const {
2622 // TODO: add description of PPC stack frame format, or at least some docs.
2623 //
Ulrich Weigand8658f172014-07-20 23:43:15 +00002624 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00002625 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002626 MachineFunction &MF = DAG.getMachineFunction();
2627 MachineFrameInfo *MFI = MF.getFrameInfo();
2628 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2629
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002630 assert(!(CallConv == CallingConv::Fast && isVarArg) &&
2631 "fastcc not supported on varargs functions");
2632
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002633 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2634 // Potential tail calls could cause overwriting of argument stack slots.
2635 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2636 (CallConv == CallingConv::Fast));
2637 unsigned PtrByteSize = 8;
2638
Ulrich Weigand8658f172014-07-20 23:43:15 +00002639 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false,
2640 isELFv2ABI);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002641
Craig Topper840beec2014-04-04 05:16:06 +00002642 static const MCPhysReg GPR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002643 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2644 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2645 };
2646
Craig Topper840beec2014-04-04 05:16:06 +00002647 static const MCPhysReg *FPR = GetFPR();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002648
Craig Topper840beec2014-04-04 05:16:06 +00002649 static const MCPhysReg VR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002650 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2651 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2652 };
Craig Topper840beec2014-04-04 05:16:06 +00002653 static const MCPhysReg VSRH[] = {
Hal Finkel7811c612014-03-28 19:58:11 +00002654 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
2655 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
2656 };
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002657
2658 const unsigned Num_GPR_Regs = array_lengthof(GPR);
2659 const unsigned Num_FPR_Regs = 13;
2660 const unsigned Num_VR_Regs = array_lengthof(VR);
2661
Ulrich Weigand8658f172014-07-20 23:43:15 +00002662 // Do a first pass over the arguments to determine whether the ABI
2663 // guarantees that our caller has allocated the parameter save area
2664 // on its stack frame. In the ELFv1 ABI, this is always the case;
2665 // in the ELFv2 ABI, it is true if this is a vararg function or if
2666 // any parameter is located in a stack slot.
2667
2668 bool HasParameterArea = !isELFv2ABI || isVarArg;
2669 unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize;
2670 unsigned NumBytes = LinkageSize;
2671 unsigned AvailableFPRs = Num_FPR_Regs;
2672 unsigned AvailableVRs = Num_VR_Regs;
2673 for (unsigned i = 0, e = Ins.size(); i != e; ++i)
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002674 if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00002675 PtrByteSize, LinkageSize, ParamAreaSize,
2676 NumBytes, AvailableFPRs, AvailableVRs))
2677 HasParameterArea = true;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002678
2679 // Add DAG nodes to load the arguments or copy them out of registers. On
2680 // entry to a function on PPC, the arguments start after the linkage area,
2681 // although the first ones are often in registers.
2682
Ulrich Weigand8658f172014-07-20 23:43:15 +00002683 unsigned ArgOffset = LinkageSize;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002684 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002685 SmallVector<SDValue, 8> MemOps;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002686 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt6631e942013-02-20 17:31:41 +00002687 unsigned CurArgIdx = 0;
2688 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002689 SDValue ArgVal;
2690 bool needsLoad = false;
2691 EVT ObjectVT = Ins[ArgNo].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002692 EVT OrigVT = Ins[ArgNo].ArgVT;
Hal Finkel940ab932014-02-28 00:27:01 +00002693 unsigned ObjSize = ObjectVT.getStoreSize();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002694 unsigned ArgSize = ObjSize;
2695 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt6631e942013-02-20 17:31:41 +00002696 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2697 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002698
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002699 // We re-align the argument offset for each argument, except when using the
2700 // fast calling convention, when we need to make sure we do that only when
2701 // we'll actually use a stack slot.
2702 unsigned CurArgOffset, Align;
2703 auto ComputeArgOffset = [&]() {
2704 /* Respect alignment of argument on the stack. */
2705 Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize);
2706 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2707 CurArgOffset = ArgOffset;
2708 };
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002709
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002710 if (CallConv != CallingConv::Fast) {
2711 ComputeArgOffset();
2712
2713 /* Compute GPR index associated with argument offset. */
2714 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2715 GPR_idx = std::min(GPR_idx, Num_GPR_Regs);
2716 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002717
2718 // FIXME the codegen can be much improved in some cases.
2719 // We do not have to keep everything in memory.
2720 if (Flags.isByVal()) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002721 if (CallConv == CallingConv::Fast)
2722 ComputeArgOffset();
2723
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002724 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2725 ObjSize = Flags.getByValSize();
2726 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt9953cf22012-10-31 01:15:05 +00002727 // Empty aggregate parameters do not take up registers. Examples:
2728 // struct { } a;
2729 // union { } b;
2730 // int c[0];
2731 // etc. However, we have to provide a place-holder in InVals, so
2732 // pretend we have an 8-byte item at the current address for that
2733 // purpose.
2734 if (!ObjSize) {
2735 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2736 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2737 InVals.push_back(FIN);
2738 continue;
2739 }
Hal Finkel262a2242013-09-12 23:20:06 +00002740
Ulrich Weigand24195972014-07-20 22:36:52 +00002741 // Create a stack object covering all stack doublewords occupied
Ulrich Weigand8658f172014-07-20 23:43:15 +00002742 // by the argument. If the argument is (fully or partially) on
2743 // the stack, or if the argument is fully in registers but the
2744 // caller has allocated the parameter save anyway, we can refer
2745 // directly to the caller's stack frame. Otherwise, create a
2746 // local copy in our own frame.
2747 int FI;
2748 if (HasParameterArea ||
2749 ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize)
Hal Finkel41a55ad2014-08-16 00:17:05 +00002750 FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false, true);
Ulrich Weigand8658f172014-07-20 23:43:15 +00002751 else
2752 FI = MFI->CreateStackObject(ArgSize, Align, false);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002753 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002754
Ulrich Weigand24195972014-07-20 22:36:52 +00002755 // Handle aggregates smaller than 8 bytes.
2756 if (ObjSize < PtrByteSize) {
2757 // The value of the object is its address, which differs from the
2758 // address of the enclosing doubleword on big-endian systems.
2759 SDValue Arg = FIN;
2760 if (!isLittleEndian) {
2761 SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, PtrVT);
2762 Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff);
2763 }
2764 InVals.push_back(Arg);
2765
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002766 if (GPR_idx != Num_GPR_Regs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002767 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002768 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002769 SDValue Store;
2770
2771 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2772 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2773 (ObjSize == 2 ? MVT::i16 : MVT::i32));
Ulrich Weigand24195972014-07-20 22:36:52 +00002774 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002775 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002776 ObjType, false, false, 0);
2777 } else {
2778 // For sizes that don't fit a truncating store (3, 5, 6, 7),
2779 // store the whole register as-is to the parameter save area
Ulrich Weigand24195972014-07-20 22:36:52 +00002780 // slot.
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002781 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002782 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002783 false, false, 0);
2784 }
2785
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002786 MemOps.push_back(Store);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002787 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002788 // Whether we copied from a register or not, advance the offset
2789 // into the parameter save area by a full doubleword.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002790 ArgOffset += PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002791 continue;
2792 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002793
Ulrich Weigand24195972014-07-20 22:36:52 +00002794 // The value of the object is its address, which is the address of
2795 // its first stack doubleword.
2796 InVals.push_back(FIN);
2797
2798 // Store whatever pieces of the object are in registers to memory.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002799 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
Ulrich Weigand24195972014-07-20 22:36:52 +00002800 if (GPR_idx == Num_GPR_Regs)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002801 break;
Ulrich Weigand24195972014-07-20 22:36:52 +00002802
2803 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2804 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2805 SDValue Addr = FIN;
2806 if (j) {
2807 SDValue Off = DAG.getConstant(j, PtrVT);
2808 Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002809 }
Ulrich Weigand24195972014-07-20 22:36:52 +00002810 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, Addr,
2811 MachinePointerInfo(FuncArg, j),
2812 false, false, 0);
2813 MemOps.push_back(Store);
2814 ++GPR_idx;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002815 }
Ulrich Weigand24195972014-07-20 22:36:52 +00002816 ArgOffset += ArgSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002817 continue;
2818 }
2819
2820 switch (ObjectVT.getSimpleVT().SimpleTy) {
2821 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel940ab932014-02-28 00:27:01 +00002822 case MVT::i1:
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002823 case MVT::i32:
2824 case MVT::i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002825 // These can be scalar arguments or elements of an integer array type
2826 // passed directly. Clang may use those instead of "byval" aggregate
2827 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002828 if (GPR_idx != Num_GPR_Regs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002829 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002830 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2831
Hal Finkel940ab932014-02-28 00:27:01 +00002832 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002833 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2834 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002835 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002836 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002837 if (CallConv == CallingConv::Fast)
2838 ComputeArgOffset();
2839
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002840 needsLoad = true;
2841 ArgSize = PtrByteSize;
2842 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002843 if (CallConv != CallingConv::Fast || needsLoad)
2844 ArgOffset += 8;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002845 break;
2846
2847 case MVT::f32:
2848 case MVT::f64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002849 // These can be scalar arguments or elements of a float array type
2850 // passed directly. The latter are used to implement ELFv2 homogenous
2851 // float aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002852 if (FPR_idx != Num_FPR_Regs) {
2853 unsigned VReg;
2854
2855 if (ObjectVT == MVT::f32)
2856 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2857 else
Eric Christophercccae792015-01-30 22:02:31 +00002858 VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX()
2859 ? &PPC::VSFRCRegClass
2860 : &PPC::F8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002861
2862 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2863 ++FPR_idx;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002864 } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) {
Hal Finkel8ea446b2015-01-18 14:31:10 +00002865 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
2866 // once we support fp <-> gpr moves.
2867
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002868 // This can only ever happen in the presence of f32 array types,
2869 // since otherwise we never run out of FPRs before running out
2870 // of GPRs.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002871 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002872 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2873
2874 if (ObjectVT == MVT::f32) {
2875 if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0))
2876 ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal,
2877 DAG.getConstant(32, MVT::i32));
2878 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2879 }
2880
2881 ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002882 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002883 if (CallConv == CallingConv::Fast)
2884 ComputeArgOffset();
2885
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002886 needsLoad = true;
2887 }
2888
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002889 // When passing an array of floats, the array occupies consecutive
2890 // space in the argument area; only round up to the next doubleword
2891 // at the end of the array. Otherwise, each float takes 8 bytes.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002892 if (CallConv != CallingConv::Fast || needsLoad) {
2893 ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize;
2894 ArgOffset += ArgSize;
2895 if (Flags.isInConsecutiveRegsLast())
2896 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2897 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002898 break;
2899 case MVT::v4f32:
2900 case MVT::v4i32:
2901 case MVT::v8i16:
2902 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00002903 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00002904 case MVT::v2i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002905 // These can be scalar arguments or elements of a vector array type
2906 // passed directly. The latter are used to implement ELFv2 homogenous
2907 // vector aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002908 if (VR_idx != Num_VR_Regs) {
Hal Finkel7811c612014-03-28 19:58:11 +00002909 unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ?
2910 MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) :
2911 MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002912 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002913 ++VR_idx;
2914 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002915 if (CallConv == CallingConv::Fast)
2916 ComputeArgOffset();
2917
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002918 needsLoad = true;
2919 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00002920 if (CallConv != CallingConv::Fast || needsLoad)
2921 ArgOffset += 16;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002922 break;
2923 }
2924
2925 // We need to load the argument to a virtual register if we determined
2926 // above that we ran out of physical registers of the appropriate type.
2927 if (needsLoad) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00002928 if (ObjSize < ArgSize && !isLittleEndian)
2929 CurArgOffset += ArgSize - ObjSize;
2930 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002931 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2932 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2933 false, false, false, 0);
2934 }
2935
2936 InVals.push_back(ArgVal);
2937 }
2938
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002939 // Area that is at least reserved in the caller of this function.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002940 unsigned MinReservedArea;
Ulrich Weigand8658f172014-07-20 23:43:15 +00002941 if (HasParameterArea)
2942 MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize);
2943 else
2944 MinReservedArea = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002945
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002946 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00002947 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002948 // taking the difference between two stack areas will result in an aligned
2949 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00002950 MinReservedArea =
2951 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002952 FuncInfo->setMinReservedArea(MinReservedArea);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002953
2954 // If the function takes variable number of arguments, make a frame index for
2955 // the start of the first vararg value... for expansion of llvm.va_start.
2956 if (isVarArg) {
2957 int Depth = ArgOffset;
2958
2959 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt57d6de52012-10-23 15:51:16 +00002960 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002961 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2962
2963 // If this function is vararg, store any remaining integer argument regs
2964 // to their spots on the stack so that they may be loaded by deferencing the
2965 // result of va_next.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002966 for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2967 GPR_idx < Num_GPR_Regs; ++GPR_idx) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002968 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2969 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2970 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2971 MachinePointerInfo(), false, false, 0);
2972 MemOps.push_back(Store);
2973 // Increment the address by four for the next argument to store
Bill Schmidt57d6de52012-10-23 15:51:16 +00002974 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002975 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2976 }
2977 }
2978
2979 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00002980 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002981
2982 return Chain;
2983}
2984
2985SDValue
2986PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002987 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002988 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002989 const SmallVectorImpl<ISD::InputArg>
2990 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002991 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002992 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002993 // TODO: add description of PPC stack frame format, or at least some docs.
2994 //
2995 MachineFunction &MF = DAG.getMachineFunction();
2996 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002997 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002998
Owen Anderson53aa7a92009-08-10 22:56:29 +00002999 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00003000 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003001 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003002 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3003 (CallConv == CallingConv::Fast));
Jim Laskeyf4e2e002006-11-28 14:53:52 +00003004 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey48850c12006-11-16 22:43:37 +00003005
Ulrich Weigand8658f172014-07-20 23:43:15 +00003006 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true,
3007 false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00003008 unsigned ArgOffset = LinkageSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003009 // Area that is at least reserved in caller of this function.
3010 unsigned MinReservedArea = ArgOffset;
3011
Craig Topper840beec2014-04-04 05:16:06 +00003012 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003013 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
3014 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
3015 };
Craig Topper840beec2014-04-04 05:16:06 +00003016 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00003017 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3018 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3019 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00003020
Craig Topper840beec2014-04-04 05:16:06 +00003021 static const MCPhysReg *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003022
Craig Topper840beec2014-04-04 05:16:06 +00003023 static const MCPhysReg VR[] = {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003024 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3025 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3026 };
Chris Lattnerec78cad2006-06-26 22:48:35 +00003027
Owen Andersone2f23a32007-09-07 04:06:50 +00003028 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003029 const unsigned Num_FPR_Regs = 13;
Owen Andersone2f23a32007-09-07 04:06:50 +00003030 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey48850c12006-11-16 22:43:37 +00003031
3032 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003033
Craig Topper840beec2014-04-04 05:16:06 +00003034 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003035
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003036 // In 32-bit non-varargs functions, the stack space for vectors is after the
3037 // stack space for non-vectors. We do not use this space unless we have
3038 // too many vectors to fit in registers, something that only occurs in
Scott Michelcf0da6c2009-02-17 22:15:04 +00003039 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003040 // that out...for the pathological case, compute VecArgOffset as the
3041 // start of the vector parameter area. Computing VecArgOffset is the
3042 // entire point of the following loop.
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003043 unsigned VecArgOffset = ArgOffset;
3044 if (!isVarArg && !isPPC64) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003045 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003046 ++ArgNo) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003047 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003048 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003049
Duncan Sandsd97eea32008-03-21 09:14:45 +00003050 if (Flags.isByVal()) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003051 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer084b9f42012-01-20 14:42:32 +00003052 unsigned ObjSize = Flags.getByValSize();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003053 unsigned ArgSize =
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003054 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3055 VecArgOffset += ArgSize;
3056 continue;
3057 }
3058
Owen Anderson9f944592009-08-11 20:47:22 +00003059 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003060 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003061 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003062 case MVT::i32:
3063 case MVT::f32:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003064 VecArgOffset += 4;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003065 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003066 case MVT::i64: // PPC64
3067 case MVT::f64:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003068 // FIXME: We are guaranteed to be !isPPC64 at this point.
3069 // Does MVT::i64 apply?
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003070 VecArgOffset += 8;
3071 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003072 case MVT::v4f32:
3073 case MVT::v4i32:
3074 case MVT::v8i16:
3075 case MVT::v16i8:
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003076 // Nothing to do, we're only looking at Nonvector args here.
3077 break;
3078 }
3079 }
3080 }
3081 // We've found where the vector parameter area in memory is. Skip the
3082 // first 12 parameters; these don't use that memory.
3083 VecArgOffset = ((VecArgOffset+15)/16)*16;
3084 VecArgOffset += 12*16;
3085
Chris Lattner4302e8f2006-05-16 18:18:50 +00003086 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey48850c12006-11-16 22:43:37 +00003087 // entry to a function on PPC, the arguments start after the linkage area,
3088 // although the first ones are often in registers.
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00003089
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003090 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003091 unsigned nAltivecParamsAtEnd = 0;
Roman Divackyca103892012-09-24 20:47:19 +00003092 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt38b6cb52013-05-08 17:22:33 +00003093 unsigned CurArgIdx = 0;
3094 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003095 SDValue ArgVal;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003096 bool needsLoad = false;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003097 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands13237ac2008-06-06 12:08:01 +00003098 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey152671f2006-11-29 13:37:09 +00003099 unsigned ArgSize = ObjSize;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003100 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt38b6cb52013-05-08 17:22:33 +00003101 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
3102 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003103
Chris Lattner318f0d22006-05-16 18:51:52 +00003104 unsigned CurArgOffset = ArgOffset;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003105
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003106 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00003107 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
3108 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003109 if (isVarArg || isPPC64) {
3110 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003111 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003112 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003113 PtrByteSize);
3114 } else nAltivecParamsAtEnd++;
3115 } else
3116 // Calculate min reserved area.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003117 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003118 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003119 PtrByteSize);
3120
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003121 // FIXME the codegen can be much improved in some cases.
3122 // We do not have to keep everything in memory.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003123 if (Flags.isByVal()) {
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003124 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003125 ObjSize = Flags.getByValSize();
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003126 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003127 // Objects of size 1 and 2 are right justified, everything else is
3128 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen21a8f142008-03-08 01:41:42 +00003129 if (ObjSize==1 || ObjSize==2) {
3130 CurArgOffset = CurArgOffset + (4 - ObjSize);
3131 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003132 // The value of the object is its address.
Hal Finkel41a55ad2014-08-16 00:17:05 +00003133 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, false, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003134 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003135 InVals.push_back(FIN);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003136 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen21a8f142008-03-08 01:41:42 +00003137 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003138 unsigned VReg;
3139 if (isPPC64)
3140 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3141 else
3142 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003143 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt57d6de52012-10-23 15:51:16 +00003144 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003145 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00003146 MachinePointerInfo(FuncArg),
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003147 ObjType, false, false, 0);
Dale Johannesen21a8f142008-03-08 01:41:42 +00003148 MemOps.push_back(Store);
3149 ++GPR_idx;
Dale Johannesen21a8f142008-03-08 01:41:42 +00003150 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003151
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003152 ArgOffset += PtrByteSize;
Wesley Peck527da1b2010-11-23 03:31:01 +00003153
Dale Johannesen21a8f142008-03-08 01:41:42 +00003154 continue;
3155 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003156 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3157 // Store whatever pieces of the object are in registers
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003158 // to memory. ArgOffset will be the address of the beginning
3159 // of the object.
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003160 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003161 unsigned VReg;
3162 if (isPPC64)
3163 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3164 else
3165 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Cheng0664a672010-07-03 00:40:23 +00003166 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003167 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003168 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003169 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00003170 MachinePointerInfo(FuncArg, j),
David Greene87a5abe2010-02-15 16:56:53 +00003171 false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003172 MemOps.push_back(Store);
3173 ++GPR_idx;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003174 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003175 } else {
3176 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
3177 break;
3178 }
3179 }
3180 continue;
3181 }
3182
Owen Anderson9f944592009-08-11 20:47:22 +00003183 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003184 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003185 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003186 case MVT::i32:
Bill Wendling968f32c2008-03-07 20:49:02 +00003187 if (!isPPC64) {
Bill Wendling968f32c2008-03-07 20:49:02 +00003188 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003189 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003190 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Hal Finkel7f908e82014-03-06 00:45:19 +00003191
3192 if (ObjectVT == MVT::i1)
3193 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal);
3194
Bill Wendling968f32c2008-03-07 20:49:02 +00003195 ++GPR_idx;
3196 } else {
3197 needsLoad = true;
3198 ArgSize = PtrByteSize;
3199 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003200 // All int arguments reserve stack space in the Darwin ABI.
3201 ArgOffset += PtrByteSize;
Bill Wendling968f32c2008-03-07 20:49:02 +00003202 break;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003203 }
Bill Wendling968f32c2008-03-07 20:49:02 +00003204 // FALLTHROUGH
Owen Anderson9f944592009-08-11 20:47:22 +00003205 case MVT::i64: // PPC64
Chris Lattnerec78cad2006-06-26 22:48:35 +00003206 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003207 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003208 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling968f32c2008-03-07 20:49:02 +00003209
Hal Finkel940ab932014-02-28 00:27:01 +00003210 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Wendling968f32c2008-03-07 20:49:02 +00003211 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson9f944592009-08-11 20:47:22 +00003212 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00003213 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling968f32c2008-03-07 20:49:02 +00003214
Chris Lattnerec78cad2006-06-26 22:48:35 +00003215 ++GPR_idx;
3216 } else {
3217 needsLoad = true;
Evan Cheng0f0aee22008-07-24 08:17:07 +00003218 ArgSize = PtrByteSize;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003219 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003220 // All int arguments reserve stack space in the Darwin ABI.
3221 ArgOffset += 8;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003222 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003223
Owen Anderson9f944592009-08-11 20:47:22 +00003224 case MVT::f32:
3225 case MVT::f64:
Chris Lattner318f0d22006-05-16 18:51:52 +00003226 // Every 4 bytes of argument space consumes one of the GPRs available for
3227 // argument passing.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003228 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003229 ++GPR_idx;
Chris Lattner2cca3852006-11-18 01:57:19 +00003230 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003231 ++GPR_idx;
Chris Lattner318f0d22006-05-16 18:51:52 +00003232 }
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003233 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003234 unsigned VReg;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003235
Owen Anderson9f944592009-08-11 20:47:22 +00003236 if (ObjectVT == MVT::f32)
Devang Patelf3292b22011-02-21 23:21:26 +00003237 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003238 else
Devang Patelf3292b22011-02-21 23:21:26 +00003239 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003240
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003241 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003242 ++FPR_idx;
3243 } else {
3244 needsLoad = true;
3245 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003246
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003247 // All FP arguments reserve stack space in the Darwin ABI.
3248 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003249 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003250 case MVT::v4f32:
3251 case MVT::v4i32:
3252 case MVT::v8i16:
3253 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00003254 // Note that vector arguments in registers don't reserve stack space,
3255 // except in varargs functions.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003256 if (VR_idx != Num_VR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003257 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003258 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesenb28456e2008-03-12 00:22:17 +00003259 if (isVarArg) {
3260 while ((ArgOffset % 16) != 0) {
3261 ArgOffset += PtrByteSize;
3262 if (GPR_idx != Num_GPR_Regs)
3263 GPR_idx++;
3264 }
3265 ArgOffset += 16;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003266 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesenb28456e2008-03-12 00:22:17 +00003267 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003268 ++VR_idx;
3269 } else {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003270 if (!isVarArg && !isPPC64) {
3271 // Vectors go after all the nonvectors.
3272 CurArgOffset = VecArgOffset;
3273 VecArgOffset += 16;
3274 } else {
3275 // Vectors are aligned.
3276 ArgOffset = ((ArgOffset+15)/16)*16;
3277 CurArgOffset = ArgOffset;
3278 ArgOffset += 16;
Dale Johannesen0d982562008-03-12 00:49:20 +00003279 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003280 needsLoad = true;
3281 }
3282 break;
3283 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003284
Chris Lattner4302e8f2006-05-16 18:18:50 +00003285 // We need to load the argument to a virtual register if we determined above
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003286 // that we ran out of physical registers of the appropriate type.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003287 if (needsLoad) {
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003288 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003289 CurArgOffset + (ArgSize - ObjSize),
Evan Cheng0664a672010-07-03 00:40:23 +00003290 isImmutable);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003291 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00003292 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003293 false, false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003294 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003295
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003296 InVals.push_back(ArgVal);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003297 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003298
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003299 // Allow for Altivec parameters at the end, if needed.
3300 if (nAltivecParamsAtEnd) {
3301 MinReservedArea = ((MinReservedArea+15)/16)*16;
3302 MinReservedArea += 16*nAltivecParamsAtEnd;
3303 }
3304
3305 // Area that is at least reserved in the caller of this function.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00003306 MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003307
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003308 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00003309 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003310 // taking the difference between two stack areas will result in an aligned
3311 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00003312 MinReservedArea =
3313 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003314 FuncInfo->setMinReservedArea(MinReservedArea);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003315
Chris Lattner4302e8f2006-05-16 18:18:50 +00003316 // If the function takes variable number of arguments, make a frame index for
3317 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003318 if (isVarArg) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003319 int Depth = ArgOffset;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003320
Dan Gohman31ae5862010-04-17 14:41:14 +00003321 FuncInfo->setVarArgsFrameIndex(
3322 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00003323 Depth, true));
Dan Gohman31ae5862010-04-17 14:41:14 +00003324 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003325
Chris Lattner4302e8f2006-05-16 18:18:50 +00003326 // If this function is vararg, store any remaining integer argument regs
3327 // to their spots on the stack so that they may be loaded by deferencing the
3328 // result of va_next.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003329 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattner2cca3852006-11-18 01:57:19 +00003330 unsigned VReg;
Wesley Peck527da1b2010-11-23 03:31:01 +00003331
Chris Lattner2cca3852006-11-18 01:57:19 +00003332 if (isPPC64)
Devang Patelf3292b22011-02-21 23:21:26 +00003333 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003334 else
Devang Patelf3292b22011-02-21 23:21:26 +00003335 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003336
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003337 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00003338 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3339 MachinePointerInfo(), false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003340 MemOps.push_back(Store);
3341 // Increment the address by four for the next argument to store
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003342 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen679073b2009-02-04 02:34:38 +00003343 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003344 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003345 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003346
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003347 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003348 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003349
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003350 return Chain;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003351}
3352
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003353/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003354/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesen86dcae12009-11-24 01:09:07 +00003355static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003356 unsigned ParamSize) {
3357
Dale Johannesen86dcae12009-11-24 01:09:07 +00003358 if (!isTailCall) return 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003359
3360 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
3361 unsigned CallerMinReservedArea = FI->getMinReservedArea();
3362 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
3363 // Remember only if the new adjustement is bigger.
3364 if (SPDiff < FI->getTailCallSPDelta())
3365 FI->setTailCallSPDelta(SPDiff);
3366
3367 return SPDiff;
3368}
3369
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003370/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3371/// for tail call optimization. Targets which want to do tail call
3372/// optimization should implement this function.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003373bool
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003374PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003375 CallingConv::ID CalleeCC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003376 bool isVarArg,
3377 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003378 SelectionDAG& DAG) const {
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003379 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng25217ff2010-01-29 23:05:56 +00003380 return false;
3381
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003382 // Variable argument functions are not supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003383 if (isVarArg)
Dan Gohmaneffb8942008-09-12 16:56:44 +00003384 return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003385
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003386 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel68c5f472009-09-02 08:44:58 +00003387 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003388 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
3389 // Functions containing by val parameters are not supported.
3390 for (unsigned i = 0; i != Ins.size(); i++) {
3391 ISD::ArgFlagsTy Flags = Ins[i].Flags;
3392 if (Flags.isByVal()) return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003393 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003394
Alp Tokerf907b892013-12-05 05:44:44 +00003395 // Non-PIC/GOT tail calls are supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003396 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
3397 return true;
3398
3399 // At the moment we can only do local tail calls (in same module, hidden
3400 // or protected) if we are generating PIC.
3401 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3402 return G->getGlobal()->hasHiddenVisibility()
3403 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003404 }
3405
3406 return false;
3407}
3408
Chris Lattnereb755fc2006-05-17 19:00:46 +00003409/// isCallCompatibleAddress - Return the immediate to use if the specified
3410/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003411static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnereb755fc2006-05-17 19:00:46 +00003412 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
Craig Topper062a2ba2014-04-25 05:30:21 +00003413 if (!C) return nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003414
Dan Gohmaneffb8942008-09-12 16:56:44 +00003415 int Addr = C->getZExtValue();
Chris Lattnereb755fc2006-05-17 19:00:46 +00003416 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith228e6d42012-08-24 23:29:28 +00003417 SignExtend32<26>(Addr) != Addr)
Craig Topper062a2ba2014-04-25 05:30:21 +00003418 return nullptr; // Top 6 bits have to be sext of immediate.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003419
Dan Gohmaneffb8942008-09-12 16:56:44 +00003420 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greiff304a7a2008-08-28 21:40:38 +00003421 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnereb755fc2006-05-17 19:00:46 +00003422}
3423
Dan Gohmand78c4002008-05-13 00:00:25 +00003424namespace {
3425
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003426struct TailCallArgumentInfo {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003427 SDValue Arg;
3428 SDValue FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003429 int FrameIdx;
3430
3431 TailCallArgumentInfo() : FrameIdx(0) {}
3432};
3433
Dan Gohmand78c4002008-05-13 00:00:25 +00003434}
3435
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003436/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
3437static void
3438StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00003439 SDValue Chain,
Craig Topperb94011f2013-07-14 04:42:23 +00003440 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
3441 SmallVectorImpl<SDValue> &MemOpChains,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003442 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003443 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003444 SDValue Arg = TailCallArgs[i].Arg;
3445 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003446 int FI = TailCallArgs[i].FrameIdx;
3447 // Store relative to framepointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00003448 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Chris Lattner7727d052010-09-21 06:44:06 +00003449 MachinePointerInfo::getFixedStack(FI),
3450 false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003451 }
3452}
3453
3454/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
3455/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003456static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003457 MachineFunction &MF,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003458 SDValue Chain,
3459 SDValue OldRetAddr,
3460 SDValue OldFP,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003461 int SPDiff,
3462 bool isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003463 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003464 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003465 if (SPDiff) {
3466 // Calculate the new stack slot for the return address.
3467 int SlotSize = isPPC64 ? 8 : 4;
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003468 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003469 isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003470 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Cheng0664a672010-07-03 00:40:23 +00003471 NewRetAddrLoc, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003472 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003473 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen021052a2009-02-04 20:06:27 +00003474 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003475 MachinePointerInfo::getFixedStack(NewRetAddr),
David Greene87a5abe2010-02-15 16:56:53 +00003476 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003477
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003478 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3479 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003480 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003481 int NewFPLoc =
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003482 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
David Greene1fbe0542009-11-12 20:49:22 +00003483 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Cheng0664a672010-07-03 00:40:23 +00003484 true);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003485 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3486 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003487 MachinePointerInfo::getFixedStack(NewFPIdx),
David Greene87a5abe2010-02-15 16:56:53 +00003488 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003489 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003490 }
3491 return Chain;
3492}
3493
3494/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3495/// the position of the argument.
3496static void
3497CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003498 SDValue Arg, int SPDiff, unsigned ArgOffset,
Craig Topperb94011f2013-07-14 04:42:23 +00003499 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003500 int Offset = ArgOffset + SPDiff;
Duncan Sands13237ac2008-06-06 12:08:01 +00003501 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Cheng0664a672010-07-03 00:40:23 +00003502 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003503 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003504 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003505 TailCallArgumentInfo Info;
3506 Info.Arg = Arg;
3507 Info.FrameIdxOp = FIN;
3508 Info.FrameIdx = FI;
3509 TailCallArguments.push_back(Info);
3510}
3511
3512/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3513/// stack slot. Returns the chain as result and the loaded frame pointers in
3514/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003515SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen021052a2009-02-04 20:06:27 +00003516 int SPDiff,
3517 SDValue Chain,
3518 SDValue &LROpOut,
3519 SDValue &FPOpOut,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003520 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003521 SDLoc dl) const {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003522 if (SPDiff) {
3523 // Load the LR and FP stack slot for later adjusting.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003524 EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003525 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003526 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003527 false, false, false, 0);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003528 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peck527da1b2010-11-23 03:31:01 +00003529
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003530 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3531 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003532 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003533 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003534 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003535 false, false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003536 Chain = SDValue(FPOpOut.getNode(), 1);
3537 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003538 }
3539 return Chain;
3540}
3541
Dale Johannesen85d41a12008-03-04 23:17:14 +00003542/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelcf0da6c2009-02-17 22:15:04 +00003543/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen85d41a12008-03-04 23:17:14 +00003544/// specified by the specific parameter attribute. The copy will be passed as
3545/// a byval function parameter.
3546/// Sometimes what we are copying is the end of a larger object, the part that
3547/// does not fit in registers.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003548static SDValue
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003549CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sandsd97eea32008-03-21 09:14:45 +00003550 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003551 SDLoc dl) {
Owen Anderson9f944592009-08-11 20:47:22 +00003552 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen85263882009-02-04 01:17:06 +00003553 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Nick Lewyckyaad475b2014-04-15 07:22:52 +00003554 false, false, MachinePointerInfo(),
3555 MachinePointerInfo());
Dale Johannesen85d41a12008-03-04 23:17:14 +00003556}
Chris Lattner43df5b32007-02-25 05:34:32 +00003557
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003558/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3559/// tail calls.
3560static void
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003561LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3562 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003563 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003564 bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3565 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003566 SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003567 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003568 if (!isTailCall) {
3569 if (isVector) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003570 SDValue StackPtr;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003571 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00003572 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003573 else
Owen Anderson9f944592009-08-11 20:47:22 +00003574 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00003575 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003576 DAG.getConstant(ArgOffset, PtrVT));
3577 }
Chris Lattner676c61d2010-09-21 18:41:36 +00003578 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3579 MachinePointerInfo(), false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003580 // Calculate and remember argument location.
3581 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3582 TailCallArguments);
3583}
3584
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003585static
3586void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003587 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003588 SDValue LROp, SDValue FPOp, bool isDarwinABI,
Craig Topperb94011f2013-07-14 04:42:23 +00003589 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003590 MachineFunction &MF = DAG.getMachineFunction();
3591
3592 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3593 // might overwrite each other in case of tail call optimization.
3594 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003595 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003596 InFlag = SDValue();
3597 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3598 MemOpChains2, dl);
3599 if (!MemOpChains2.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003600 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003601
3602 // Store the return address to the appropriate stack slot.
3603 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3604 isPPC64, isDarwinABI, dl);
3605
3606 // Emit callseq_end just before tailcall node.
3607 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003608 DAG.getIntPtrConstant(0, true), InFlag, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003609 InFlag = Chain.getValue(1);
3610}
3611
Hal Finkel87deb0b2015-01-12 04:34:47 +00003612// Is this global address that of a function that can be called by name? (as
3613// opposed to something that must hold a descriptor for an indirect call).
3614static bool isFunctionGlobalAddress(SDValue Callee) {
3615 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3616 if (Callee.getOpcode() == ISD::GlobalTLSAddress ||
3617 Callee.getOpcode() == ISD::TargetGlobalTLSAddress)
3618 return false;
3619
3620 return G->getGlobal()->getType()->getElementType()->isFunctionTy();
3621 }
3622
3623 return false;
3624}
3625
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003626static
3627unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003628 SDValue &Chain, SDValue CallSeqStart, SDLoc dl, int SPDiff,
3629 bool isTailCall, bool IsPatchPoint,
Craig Topperb94011f2013-07-14 04:42:23 +00003630 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
3631 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003632 ImmutableCallSite *CS, const PPCSubtarget &Subtarget) {
Wesley Peck527da1b2010-11-23 03:31:01 +00003633
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003634 bool isPPC64 = Subtarget.isPPC64();
3635 bool isSVR4ABI = Subtarget.isSVR4ABI();
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003636 bool isELFv2ABI = Subtarget.isELFv2ABI();
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003637
Owen Anderson53aa7a92009-08-10 22:56:29 +00003638 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00003639 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003640 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003641
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003642 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003643
Torok Edwin31e90d22010-08-04 20:47:44 +00003644 bool needIndirectCall = true;
Ulrich Weigand9aa09ef2014-06-18 16:14:04 +00003645 if (!isSVR4ABI || !isPPC64)
3646 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
3647 // If this is an absolute destination address, use the munged value.
3648 Callee = SDValue(Dest, 0);
3649 needIndirectCall = false;
3650 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003651
Hal Finkel87deb0b2015-01-12 04:34:47 +00003652 if (isFunctionGlobalAddress(Callee)) {
3653 GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee);
3654 // A call to a TLS address is actually an indirect call to a
3655 // thread-specific pointer.
Eric Christopher79cc1e32014-09-02 22:28:02 +00003656 unsigned OpFlags = 0;
3657 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
3658 (Subtarget.getTargetTriple().isMacOSX() &&
3659 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
3660 (G->getGlobal()->isDeclaration() ||
3661 G->getGlobal()->isWeakForLinker())) ||
3662 (Subtarget.isTargetELF() && !isPPC64 &&
3663 !G->getGlobal()->hasLocalLinkage() &&
3664 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3665 // PC-relative references to external symbols should go through $stub,
3666 // unless we're building with the leopard linker or later, which
3667 // automatically synthesizes these stubs.
3668 OpFlags = PPCII::MO_PLT_OR_STUB;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +00003669 }
Eric Christopher79cc1e32014-09-02 22:28:02 +00003670
3671 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3672 // every direct call is) turn it into a TargetGlobalAddress /
3673 // TargetExternalSymbol node so that legalize doesn't hack it.
3674 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
3675 Callee.getValueType(), 0, OpFlags);
3676 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00003677 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003678
Torok Edwin31e90d22010-08-04 20:47:44 +00003679 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003680 unsigned char OpFlags = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00003681
Hal Finkel3ee2af72014-07-18 23:29:49 +00003682 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
3683 (Subtarget.getTargetTriple().isMacOSX() &&
3684 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) ||
3685 (Subtarget.isTargetELF() && !isPPC64 &&
Justin Hibbits17744c12015-01-10 07:50:31 +00003686 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003687 // PC-relative references to external symbols should go through $stub,
3688 // unless we're building with the leopard linker or later, which
3689 // automatically synthesizes these stubs.
Hal Finkel3ee2af72014-07-18 23:29:49 +00003690 OpFlags = PPCII::MO_PLT_OR_STUB;
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003691 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003692
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003693 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3694 OpFlags);
3695 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00003696 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003697
Hal Finkel934361a2015-01-14 01:07:51 +00003698 if (IsPatchPoint) {
3699 // We'll form an invalid direct call when lowering a patchpoint; the full
3700 // sequence for an indirect call is complicated, and many of the
3701 // instructions introduced might have side effects (and, thus, can't be
3702 // removed later). The call itself will be removed as soon as the
3703 // argument/return lowering is complete, so the fact that it has the wrong
3704 // kind of operands should not really matter.
3705 needIndirectCall = false;
3706 }
3707
Torok Edwin31e90d22010-08-04 20:47:44 +00003708 if (needIndirectCall) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003709 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
3710 // to do the call, we can't use PPCISD::CALL.
3711 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller79fef932009-12-18 13:00:15 +00003712
Hal Finkel63fb9282015-01-13 18:25:05 +00003713 if (isSVR4ABI && isPPC64 && !isELFv2ABI) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003714 // Function pointers in the 64-bit SVR4 ABI do not point to the function
3715 // entry point, but to the function descriptor (the function entry point
3716 // address is part of the function descriptor though).
3717 // The function descriptor is a three doubleword structure with the
3718 // following fields: function entry point, TOC base address and
3719 // environment pointer.
3720 // Thus for a call through a function pointer, the following actions need
3721 // to be performed:
3722 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt57d6de52012-10-23 15:51:16 +00003723 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller79fef932009-12-18 13:00:15 +00003724 // 2. Load the address of the function entry point from the function
3725 // descriptor.
3726 // 3. Load the TOC of the callee from the function descriptor into r2.
3727 // 4. Load the environment pointer from the function descriptor into
3728 // r11.
3729 // 5. Branch to the function entry point address.
3730 // 6. On return of the callee, the TOC of the caller needs to be
3731 // restored (this is done in FinishCall()).
3732 //
Hal Finkele2ab0f12015-01-15 21:17:34 +00003733 // The loads are scheduled at the beginning of the call sequence, and the
3734 // register copies are flagged together to ensure that no other
Tilmann Scheller79fef932009-12-18 13:00:15 +00003735 // operations can be scheduled in between. E.g. without flagging the
Hal Finkele2ab0f12015-01-15 21:17:34 +00003736 // copies together, a TOC access in the caller could be scheduled between
3737 // the assignment of the callee TOC and the branch to the callee, which
Tilmann Scheller79fef932009-12-18 13:00:15 +00003738 // results in the TOC access going through the TOC of the callee instead
3739 // of going through the TOC of the caller, which leads to incorrect code.
3740
3741 // Load the address of the function entry point from the function
3742 // descriptor.
Hal Finkele2ab0f12015-01-15 21:17:34 +00003743 SDValue LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-1);
3744 if (LDChain.getValueType() == MVT::Glue)
3745 LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-2);
3746
3747 bool LoadsInv = Subtarget.hasInvariantFunctionDescriptors();
3748
3749 MachinePointerInfo MPI(CS ? CS->getCalledValue() : nullptr);
3750 SDValue LoadFuncPtr = DAG.getLoad(MVT::i64, dl, LDChain, Callee, MPI,
3751 false, false, LoadsInv, 8);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003752
3753 // Load environment pointer into r11.
Tilmann Scheller79fef932009-12-18 13:00:15 +00003754 SDValue PtrOff = DAG.getIntPtrConstant(16);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003755 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
Hal Finkele2ab0f12015-01-15 21:17:34 +00003756 SDValue LoadEnvPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddPtr,
3757 MPI.getWithOffset(16), false, false,
3758 LoadsInv, 8);
3759
3760 SDValue TOCOff = DAG.getIntPtrConstant(8);
3761 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff);
3762 SDValue TOCPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddTOC,
3763 MPI.getWithOffset(8), false, false,
3764 LoadsInv, 8);
3765
3766 SDValue TOCVal = DAG.getCopyToReg(Chain, dl, PPC::X2, TOCPtr,
3767 InFlag);
3768 Chain = TOCVal.getValue(0);
3769 InFlag = TOCVal.getValue(1);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003770
3771 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3772 InFlag);
Hal Finkele2ab0f12015-01-15 21:17:34 +00003773
Tilmann Scheller79fef932009-12-18 13:00:15 +00003774 Chain = EnvVal.getValue(0);
3775 InFlag = EnvVal.getValue(1);
3776
Tilmann Scheller79fef932009-12-18 13:00:15 +00003777 MTCTROps[0] = Chain;
3778 MTCTROps[1] = LoadFuncPtr;
3779 MTCTROps[2] = InFlag;
3780 }
3781
Hal Finkel63fb9282015-01-13 18:25:05 +00003782 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys,
3783 makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
3784 InFlag = Chain.getValue(1);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003785
3786 NodeTys.clear();
Owen Anderson9f944592009-08-11 20:47:22 +00003787 NodeTys.push_back(MVT::Other);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003788 NodeTys.push_back(MVT::Glue);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003789 Ops.push_back(Chain);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003790 CallOpc = PPCISD::BCTRL;
Craig Topper062a2ba2014-04-25 05:30:21 +00003791 Callee.setNode(nullptr);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003792 // Add use of X11 (holding environment pointer)
Hal Finkel63fb9282015-01-13 18:25:05 +00003793 if (isSVR4ABI && isPPC64 && !isELFv2ABI)
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003794 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003795 // Add CTR register as callee so a bctr can be emitted later.
3796 if (isTailCall)
Roman Divackya4a59ae2011-06-03 15:47:49 +00003797 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003798 }
3799
3800 // If this is a direct call, pass the chain and the callee.
3801 if (Callee.getNode()) {
3802 Ops.push_back(Chain);
3803 Ops.push_back(Callee);
Bill Schmidt3d9674c2014-11-11 20:44:09 +00003804
3805 // If this is a call to __tls_get_addr, find the symbol whose address
3806 // is to be taken and add it to the list. This will be used to
3807 // generate __tls_get_addr(<sym>@tlsgd) or __tls_get_addr(<sym>@tlsld).
3808 // We find the symbol by walking the chain to the CopyFromReg, walking
3809 // back from the CopyFromReg to the ADDI_TLSGD_L or ADDI_TLSLD_L, and
3810 // pulling the symbol from that node.
3811 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
3812 if (!strcmp(S->getSymbol(), "__tls_get_addr")) {
3813 assert(!needIndirectCall && "Indirect call to __tls_get_addr???");
3814 SDNode *AddI = Chain.getNode()->getOperand(2).getNode();
3815 SDValue TGTAddr = AddI->getOperand(1);
3816 assert(TGTAddr.getNode()->getOpcode() == ISD::TargetGlobalTLSAddress &&
3817 "Didn't find target global TLS address where we expected one");
3818 Ops.push_back(TGTAddr);
3819 CallOpc = PPCISD::CALL_TLS;
3820 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003821 }
3822 // If this is a tail call add stack pointer delta.
3823 if (isTailCall)
Owen Anderson9f944592009-08-11 20:47:22 +00003824 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003825
3826 // Add argument registers to the end of the list so that they are known live
3827 // into the call.
3828 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3829 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3830 RegsToPass[i].second.getValueType()));
3831
Hal Finkelaf519932015-01-19 07:20:27 +00003832 // All calls, in both the ELF V1 and V2 ABIs, need the TOC register live
3833 // into the call.
3834 if (isSVR4ABI && isPPC64 && !IsPatchPoint)
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003835 Ops.push_back(DAG.getRegister(PPC::X2, PtrVT));
3836
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003837 return CallOpc;
3838}
3839
Roman Divacky76293062012-09-18 16:47:58 +00003840static
3841bool isLocalCall(const SDValue &Callee)
3842{
3843 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Roman Divacky09adf3d2012-09-18 18:27:49 +00003844 return !G->getGlobal()->isDeclaration() &&
3845 !G->getGlobal()->isWeakForLinker();
Roman Divacky76293062012-09-18 16:47:58 +00003846 return false;
3847}
3848
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003849SDValue
3850PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003851 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003852 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003853 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003854 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003855
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003856 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00003857 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
3858 *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003859 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003860
3861 // Copy all of the result registers out of their specified physreg.
3862 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3863 CCValAssign &VA = RVLocs[i];
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003864 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00003865
3866 SDValue Val = DAG.getCopyFromReg(Chain, dl,
3867 VA.getLocReg(), VA.getLocVT(), InFlag);
3868 Chain = Val.getValue(1);
3869 InFlag = Val.getValue(2);
3870
3871 switch (VA.getLocInfo()) {
3872 default: llvm_unreachable("Unknown loc info!");
3873 case CCValAssign::Full: break;
3874 case CCValAssign::AExt:
3875 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3876 break;
3877 case CCValAssign::ZExt:
3878 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3879 DAG.getValueType(VA.getValVT()));
3880 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3881 break;
3882 case CCValAssign::SExt:
3883 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3884 DAG.getValueType(VA.getValVT()));
3885 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3886 break;
3887 }
3888
3889 InVals.push_back(Val);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003890 }
3891
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003892 return Chain;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003893}
3894
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003895SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00003896PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Hal Finkel934361a2015-01-14 01:07:51 +00003897 bool isTailCall, bool isVarArg, bool IsPatchPoint,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003898 SelectionDAG &DAG,
3899 SmallVector<std::pair<unsigned, SDValue>, 8>
3900 &RegsToPass,
3901 SDValue InFlag, SDValue Chain,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003902 SDValue CallSeqStart, SDValue &Callee,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003903 int SPDiff, unsigned NumBytes,
3904 const SmallVectorImpl<ISD::InputArg> &Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00003905 SmallVectorImpl<SDValue> &InVals,
3906 ImmutableCallSite *CS) const {
Ulrich Weigand8658f172014-07-20 23:43:15 +00003907
3908 bool isELFv2ABI = Subtarget.isELFv2ABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003909 std::vector<EVT> NodeTys;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003910 SmallVector<SDValue, 8> Ops;
Hal Finkele2ab0f12015-01-15 21:17:34 +00003911 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, CallSeqStart, dl,
3912 SPDiff, isTailCall, IsPatchPoint, RegsToPass,
3913 Ops, NodeTys, CS, Subtarget);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003914
Hal Finkel5ab37802012-08-28 02:10:27 +00003915 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003916 if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64())
Hal Finkel5ab37802012-08-28 02:10:27 +00003917 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3918
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003919 // When performing tail call optimization the callee pops its arguments off
3920 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky8da87162013-02-21 20:05:00 +00003921 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003922 int BytesCalleePops =
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003923 (CallConv == CallingConv::Fast &&
3924 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003925
Roman Divackyef21be22012-03-06 16:41:49 +00003926 // Add a register mask operand representing the call-preserved registers.
Eric Christophercccae792015-01-30 22:02:31 +00003927 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
Roman Divackyef21be22012-03-06 16:41:49 +00003928 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3929 assert(Mask && "Missing call preserved mask for calling convention");
3930 Ops.push_back(DAG.getRegisterMask(Mask));
3931
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003932 if (InFlag.getNode())
3933 Ops.push_back(InFlag);
3934
3935 // Emit tail call.
3936 if (isTailCall) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003937 assert(((Callee.getOpcode() == ISD::Register &&
3938 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3939 Callee.getOpcode() == ISD::TargetExternalSymbol ||
3940 Callee.getOpcode() == ISD::TargetGlobalAddress ||
3941 isa<ConstantSDNode>(Callee)) &&
3942 "Expecting an global address, external symbol, absolute value or register");
3943
Craig Topper48d114b2014-04-26 18:35:24 +00003944 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003945 }
3946
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003947 // Add a NOP immediately after the branch instruction when using the 64-bit
3948 // SVR4 ABI. At link time, if caller and callee are in a different module and
3949 // thus have a different TOC, the call will be replaced with a call to a stub
3950 // function which saves the current TOC, loads the TOC of the callee and
3951 // branches to the callee. The NOP will be replaced with a load instruction
3952 // which restores the TOC of the caller from the TOC save slot of the current
3953 // stack frame. If caller and callee belong to the same module (and have the
3954 // same TOC), the NOP will remain unchanged.
Hal Finkel51861b42012-03-31 14:45:15 +00003955
Hal Finkel934361a2015-01-14 01:07:51 +00003956 if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64() &&
3957 !IsPatchPoint) {
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003958 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003959 // This is a call through a function pointer.
3960 // Restore the caller TOC from the save area into R2.
3961 // See PrepareCall() for more information about calls through function
3962 // pointers in the 64-bit SVR4 ABI.
3963 // We are using a target-specific load with r2 hard coded, because the
3964 // result of a target-independent load would never go directly into r2,
3965 // since r2 is a reserved register (which prevents the register allocator
3966 // from allocating it), resulting in an additional register being
3967 // allocated and an unnecessary move instruction being generated.
Hal Finkelfc096c92014-12-23 22:29:40 +00003968 CallOpc = PPCISD::BCTRL_LOAD_TOC;
3969
3970 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3971 SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT);
3972 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI);
3973 SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset);
3974 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff);
3975
3976 // The address needs to go after the chain input but before the flag (or
3977 // any other variadic arguments).
3978 Ops.insert(std::next(Ops.begin()), AddTOC);
Bill Schmidtcea15962013-09-26 17:09:28 +00003979 } else if ((CallOpc == PPCISD::CALL) &&
3980 (!isLocalCall(Callee) ||
3981 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
Roman Divacky76293062012-09-18 16:47:58 +00003982 // Otherwise insert NOP for non-local calls.
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003983 CallOpc = PPCISD::CALL_NOP;
Bill Schmidt3d9674c2014-11-11 20:44:09 +00003984 } else if (CallOpc == PPCISD::CALL_TLS)
3985 // For 64-bit SVR4, TLS calls are always non-local.
3986 CallOpc = PPCISD::CALL_NOP_TLS;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003987 }
3988
Craig Topper48d114b2014-04-26 18:35:24 +00003989 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
Hal Finkel51861b42012-03-31 14:45:15 +00003990 InFlag = Chain.getValue(1);
3991
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003992 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3993 DAG.getIntPtrConstant(BytesCalleePops, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003994 InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003995 if (!Ins.empty())
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003996 InFlag = Chain.getValue(1);
3997
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003998 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3999 Ins, dl, DAG, InVals);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004000}
4001
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004002SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00004003PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004004 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00004005 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +00004006 SDLoc &dl = CLI.DL;
4007 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
4008 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
4009 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00004010 SDValue Chain = CLI.Chain;
4011 SDValue Callee = CLI.Callee;
4012 bool &isTailCall = CLI.IsTailCall;
4013 CallingConv::ID CallConv = CLI.CallConv;
4014 bool isVarArg = CLI.IsVarArg;
Hal Finkel934361a2015-01-14 01:07:51 +00004015 bool IsPatchPoint = CLI.IsPatchPoint;
Hal Finkele2ab0f12015-01-15 21:17:34 +00004016 ImmutableCallSite *CS = CLI.CS;
Justin Holewinskiaa583972012-05-25 16:35:28 +00004017
Evan Cheng67a69dd2010-01-27 00:07:07 +00004018 if (isTailCall)
4019 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
4020 Ins, DAG);
4021
Hal Finkele2ab0f12015-01-15 21:17:34 +00004022 if (!isTailCall && CS && CS->isMustTailCall())
Reid Kleckner5772b772014-04-24 20:14:34 +00004023 report_fatal_error("failed to perform tail call elimination on a call "
4024 "site marked musttail");
4025
Eric Christopherb1aaebe2014-06-12 22:38:18 +00004026 if (Subtarget.isSVR4ABI()) {
4027 if (Subtarget.isPPC64())
Bill Schmidt57d6de52012-10-23 15:51:16 +00004028 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004029 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004030 dl, DAG, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004031 else
4032 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004033 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004034 dl, DAG, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004035 }
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004036
Bill Schmidt57d6de52012-10-23 15:51:16 +00004037 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004038 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004039 dl, DAG, InVals, CS);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004040}
4041
4042SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004043PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
4044 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004045 bool isTailCall, bool IsPatchPoint,
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004046 const SmallVectorImpl<ISD::OutputArg> &Outs,
4047 const SmallVectorImpl<SDValue> &OutVals,
4048 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004049 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004050 SmallVectorImpl<SDValue> &InVals,
4051 ImmutableCallSite *CS) const {
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004052 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00004053 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004054
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004055 assert((CallConv == CallingConv::C ||
4056 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004057
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004058 unsigned PtrByteSize = 4;
4059
4060 MachineFunction &MF = DAG.getMachineFunction();
4061
4062 // Mark this function as potentially containing a function that contains a
4063 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4064 // and restoring the callers stack pointer in this functions epilog. This is
4065 // done because by tail calling the called function might overwrite the value
4066 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004067 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4068 CallConv == CallingConv::Fast)
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004069 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peck527da1b2010-11-23 03:31:01 +00004070
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004071 // Count how many bytes are to be pushed on the stack, including the linkage
4072 // area, parameter list area and the part of the local variable space which
4073 // contains copies of aggregates which are passed by value.
4074
4075 // Assign locations to all of the outgoing arguments.
4076 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00004077 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
4078 *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004079
4080 // Reserve space for the linkage area on the stack.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004081 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false, false),
4082 PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004083
4084 if (isVarArg) {
4085 // Handle fixed and variable vector arguments differently.
4086 // Fixed vector arguments go into registers as long as registers are
4087 // available. Variable vector arguments always go into memory.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004088 unsigned NumArgs = Outs.size();
Wesley Peck527da1b2010-11-23 03:31:01 +00004089
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004090 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00004091 MVT ArgVT = Outs[i].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004092 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004093 bool Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00004094
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004095 if (Outs[i].IsFixed) {
Bill Schmidtef17c142013-02-06 17:33:58 +00004096 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
4097 CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004098 } else {
Bill Schmidtef17c142013-02-06 17:33:58 +00004099 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
4100 ArgFlags, CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004101 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004102
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004103 if (Result) {
Torok Edwinfb8d6d52009-07-08 20:53:28 +00004104#ifndef NDEBUG
Chris Lattner13626022009-08-23 06:03:38 +00004105 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sandsf5dda012010-11-03 11:35:31 +00004106 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwinfb8d6d52009-07-08 20:53:28 +00004107#endif
Craig Toppere73658d2014-04-28 04:05:08 +00004108 llvm_unreachable(nullptr);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004109 }
4110 }
4111 } else {
4112 // All arguments are treated the same.
Bill Schmidtef17c142013-02-06 17:33:58 +00004113 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004114 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004115
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004116 // Assign locations to all of the outgoing aggregate by value arguments.
4117 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00004118 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Eric Christopherb5217502014-08-06 18:45:26 +00004119 ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004120
4121 // Reserve stack space for the allocations in CCInfo.
4122 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
4123
Bill Schmidtef17c142013-02-06 17:33:58 +00004124 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004125
4126 // Size of the linkage area, parameter list area and the part of the local
4127 // space variable where copies of aggregates which are passed by value are
4128 // stored.
4129 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004130
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004131 // Calculate by how many bytes the stack has to be adjusted in case of tail
4132 // call optimization.
4133 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4134
4135 // Adjust the stack pointer for the new arguments...
4136 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004137 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4138 dl);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004139 SDValue CallSeqStart = Chain;
4140
4141 // Load the return address and frame pointer so it can be moved somewhere else
4142 // later.
4143 SDValue LROp, FPOp;
4144 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
4145 dl);
4146
4147 // Set up a copy of the stack pointer for use loading and storing any
4148 // arguments that may not fit in the registers available for argument
4149 // passing.
Owen Anderson9f944592009-08-11 20:47:22 +00004150 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peck527da1b2010-11-23 03:31:01 +00004151
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004152 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4153 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4154 SmallVector<SDValue, 8> MemOpChains;
4155
Roman Divacky71038e72011-08-30 17:04:16 +00004156 bool seenFloatArg = false;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004157 // Walk the register/memloc assignments, inserting copies/loads.
4158 for (unsigned i = 0, j = 0, e = ArgLocs.size();
4159 i != e;
4160 ++i) {
4161 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004162 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004163 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peck527da1b2010-11-23 03:31:01 +00004164
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004165 if (Flags.isByVal()) {
4166 // Argument is an aggregate which is passed by value, thus we need to
4167 // create a copy of it in the local variable space of the current stack
4168 // frame (which is the stack frame of the caller) and pass the address of
4169 // this copy to the callee.
4170 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
4171 CCValAssign &ByValVA = ByValArgLocs[j++];
4172 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peck527da1b2010-11-23 03:31:01 +00004173
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004174 // Memory reserved in the local variable space of the callers stack frame.
4175 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004176
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004177 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4178 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Wesley Peck527da1b2010-11-23 03:31:01 +00004179
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004180 // Create a copy of the argument in the local area of the current
4181 // stack frame.
4182 SDValue MemcpyCall =
4183 CreateCopyOfByValArgument(Arg, PtrOff,
4184 CallSeqStart.getNode()->getOperand(0),
4185 Flags, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00004186
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004187 // This must go outside the CALLSEQ_START..END.
4188 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004189 CallSeqStart.getNode()->getOperand(1),
4190 SDLoc(MemcpyCall));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004191 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4192 NewCallSeqStart.getNode());
4193 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peck527da1b2010-11-23 03:31:01 +00004194
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004195 // Pass the address of the aggregate copy on the stack either in a
4196 // physical register or in the parameter list area of the current stack
4197 // frame to the callee.
4198 Arg = PtrOff;
4199 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004200
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004201 if (VA.isRegLoc()) {
Hal Finkel2a9d3182014-03-06 00:23:33 +00004202 if (Arg.getValueType() == MVT::i1)
4203 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg);
4204
Roman Divacky71038e72011-08-30 17:04:16 +00004205 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004206 // Put argument in a physical register.
4207 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
4208 } else {
4209 // Put argument in the parameter list area of the current stack frame.
4210 assert(VA.isMemLoc());
4211 unsigned LocMemOffset = VA.getLocMemOffset();
4212
4213 if (!isTailCall) {
4214 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4215 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
4216
4217 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner676c61d2010-09-21 18:41:36 +00004218 MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00004219 false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004220 } else {
4221 // Calculate and remember argument location.
4222 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
4223 TailCallArguments);
4224 }
4225 }
4226 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004227
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004228 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004229 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Wesley Peck527da1b2010-11-23 03:31:01 +00004230
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004231 // Build a sequence of copy-to-reg nodes chained together with token chain
4232 // and flag operands which copy the outgoing args into the appropriate regs.
4233 SDValue InFlag;
4234 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4235 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4236 RegsToPass[i].second, InFlag);
4237 InFlag = Chain.getValue(1);
4238 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004239
Hal Finkel5ab37802012-08-28 02:10:27 +00004240 // Set CR bit 6 to true if this is a vararg call with floating args passed in
4241 // registers.
4242 if (isVarArg) {
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004243 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
4244 SDValue Ops[] = { Chain, InFlag };
4245
Hal Finkel5ab37802012-08-28 02:10:27 +00004246 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00004247 dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1));
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004248
Hal Finkel5ab37802012-08-28 02:10:27 +00004249 InFlag = Chain.getValue(1);
4250 }
4251
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004252 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004253 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
4254 false, TailCallArguments);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004255
Hal Finkel934361a2015-01-14 01:07:51 +00004256 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004257 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4258 NumBytes, Ins, InVals, CS);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004259}
4260
Bill Schmidt57d6de52012-10-23 15:51:16 +00004261// Copy an argument into memory, being careful to do this outside the
4262// call sequence for the call to which the argument belongs.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004263SDValue
Bill Schmidt57d6de52012-10-23 15:51:16 +00004264PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
4265 SDValue CallSeqStart,
4266 ISD::ArgFlagsTy Flags,
4267 SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004268 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004269 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
4270 CallSeqStart.getNode()->getOperand(0),
4271 Flags, DAG, dl);
4272 // The MEMCPY must go outside the CALLSEQ_START..END.
4273 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004274 CallSeqStart.getNode()->getOperand(1),
4275 SDLoc(MemcpyCall));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004276 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4277 NewCallSeqStart.getNode());
4278 return NewCallSeqStart;
4279}
4280
4281SDValue
4282PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004283 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004284 bool isTailCall, bool IsPatchPoint,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004285 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004286 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004287 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004288 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004289 SmallVectorImpl<SDValue> &InVals,
4290 ImmutableCallSite *CS) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004291
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004292 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004293 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004294 unsigned NumOps = Outs.size();
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004295
Bill Schmidt57d6de52012-10-23 15:51:16 +00004296 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
4297 unsigned PtrByteSize = 8;
4298
4299 MachineFunction &MF = DAG.getMachineFunction();
4300
4301 // Mark this function as potentially containing a function that contains a
4302 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4303 // and restoring the callers stack pointer in this functions epilog. This is
4304 // done because by tail calling the called function might overwrite the value
4305 // in this function's (MF) stack pointer stack slot 0(SP).
4306 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4307 CallConv == CallingConv::Fast)
4308 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4309
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004310 assert(!(CallConv == CallingConv::Fast && isVarArg) &&
4311 "fastcc not supported on varargs functions");
4312
Bill Schmidt57d6de52012-10-23 15:51:16 +00004313 // Count how many bytes are to be pushed on the stack, including the linkage
Ulrich Weigand8658f172014-07-20 23:43:15 +00004314 // area, and parameter passing area. On ELFv1, the linkage area is 48 bytes
4315 // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage
4316 // area is 32 bytes reserved space for [SP][CR][LR][TOC].
4317 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false,
4318 isELFv2ABI);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004319 unsigned NumBytes = LinkageSize;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004320 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
4321
4322 static const MCPhysReg GPR[] = {
4323 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4324 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4325 };
4326 static const MCPhysReg *FPR = GetFPR();
4327
4328 static const MCPhysReg VR[] = {
4329 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4330 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4331 };
4332 static const MCPhysReg VSRH[] = {
4333 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
4334 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
4335 };
4336
4337 const unsigned NumGPRs = array_lengthof(GPR);
4338 const unsigned NumFPRs = 13;
4339 const unsigned NumVRs = array_lengthof(VR);
4340
4341 // When using the fast calling convention, we don't provide backing for
4342 // arguments that will be in registers.
4343 unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004344
4345 // Add up all the space actually used.
4346 for (unsigned i = 0; i != NumOps; ++i) {
4347 ISD::ArgFlagsTy Flags = Outs[i].Flags;
4348 EVT ArgVT = Outs[i].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004349 EVT OrigVT = Outs[i].ArgVT;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004350
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004351 if (CallConv == CallingConv::Fast) {
4352 if (Flags.isByVal())
4353 NumGPRsUsed += (Flags.getByValSize()+7)/8;
4354 else
4355 switch (ArgVT.getSimpleVT().SimpleTy) {
4356 default: llvm_unreachable("Unexpected ValueType for argument!");
4357 case MVT::i1:
4358 case MVT::i32:
4359 case MVT::i64:
4360 if (++NumGPRsUsed <= NumGPRs)
4361 continue;
4362 break;
4363 case MVT::f32:
4364 case MVT::f64:
4365 if (++NumFPRsUsed <= NumFPRs)
4366 continue;
4367 break;
4368 case MVT::v4f32:
4369 case MVT::v4i32:
4370 case MVT::v8i16:
4371 case MVT::v16i8:
4372 case MVT::v2f64:
4373 case MVT::v2i64:
4374 if (++NumVRsUsed <= NumVRs)
4375 continue;
4376 break;
4377 }
4378 }
4379
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004380 /* Respect alignment of argument on the stack. */
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004381 unsigned Align =
4382 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004383 NumBytes = ((NumBytes + Align - 1) / Align) * Align;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004384
4385 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004386 if (Flags.isInConsecutiveRegsLast())
4387 NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004388 }
4389
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004390 unsigned NumBytesActuallyUsed = NumBytes;
4391
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004392 // The prolog code of the callee may store up to 8 GPR argument registers to
4393 // the stack, allowing va_start to index over them in memory if its varargs.
4394 // Because we cannot tell if this is needed on the caller side, we have to
4395 // conservatively assume that it is needed. As such, make sure we have at
4396 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004397 // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004398 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004399
4400 // Tail call needs the stack to be aligned.
4401 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4402 CallConv == CallingConv::Fast)
Eric Christophercccae792015-01-30 22:02:31 +00004403 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004404
4405 // Calculate by how many bytes the stack has to be adjusted in case of tail
4406 // call optimization.
4407 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4408
4409 // To protect arguments on the stack from being clobbered in a tail call,
4410 // force all the loads to happen before doing any other lowering.
4411 if (isTailCall)
4412 Chain = DAG.getStackArgumentTokenFactor(Chain);
4413
4414 // Adjust the stack pointer for the new arguments...
4415 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004416 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4417 dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004418 SDValue CallSeqStart = Chain;
4419
4420 // Load the return address and frame pointer so it can be move somewhere else
4421 // later.
4422 SDValue LROp, FPOp;
4423 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4424 dl);
4425
4426 // Set up a copy of the stack pointer for use loading and storing any
4427 // arguments that may not fit in the registers available for argument
4428 // passing.
4429 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4430
4431 // Figure out which arguments are going to go in registers, and which in
4432 // memory. Also, if this is a vararg function, floating point operations
4433 // must be stored to our stack, and loaded into integer regs as well, if
4434 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004435 unsigned ArgOffset = LinkageSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004436
4437 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4438 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4439
4440 SmallVector<SDValue, 8> MemOpChains;
4441 for (unsigned i = 0; i != NumOps; ++i) {
4442 SDValue Arg = OutVals[i];
4443 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004444 EVT ArgVT = Outs[i].VT;
4445 EVT OrigVT = Outs[i].ArgVT;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004446
4447 // PtrOff will be used to store the current argument to the stack if a
4448 // register cannot be found for it.
4449 SDValue PtrOff;
4450
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004451 // We re-align the argument offset for each argument, except when using the
4452 // fast calling convention, when we need to make sure we do that only when
4453 // we'll actually use a stack slot.
4454 auto ComputePtrOff = [&]() {
4455 /* Respect alignment of argument on the stack. */
4456 unsigned Align =
4457 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4458 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004459
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004460 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
4461
4462 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4463 };
4464
4465 if (CallConv != CallingConv::Fast) {
4466 ComputePtrOff();
4467
4468 /* Compute GPR index associated with argument offset. */
4469 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
4470 GPR_idx = std::min(GPR_idx, NumGPRs);
4471 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004472
4473 // Promote integers to 64-bit values.
Hal Finkel940ab932014-02-28 00:27:01 +00004474 if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004475 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4476 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4477 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
4478 }
4479
4480 // FIXME memcpy is used way more than necessary. Correctness first.
4481 // Note: "by value" is code for passing a structure by value, not
4482 // basic types.
4483 if (Flags.isByVal()) {
4484 // Note: Size includes alignment padding, so
4485 // struct x { short a; char b; }
4486 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
4487 // These are the proper values we need for right-justifying the
4488 // aggregate in a parameter register.
4489 unsigned Size = Flags.getByValSize();
Bill Schmidt9953cf22012-10-31 01:15:05 +00004490
4491 // An empty aggregate parameter takes up no storage and no
4492 // registers.
4493 if (Size == 0)
4494 continue;
4495
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004496 if (CallConv == CallingConv::Fast)
4497 ComputePtrOff();
4498
Bill Schmidt57d6de52012-10-23 15:51:16 +00004499 // All aggregates smaller than 8 bytes must be passed right-justified.
4500 if (Size==1 || Size==2 || Size==4) {
4501 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
4502 if (GPR_idx != NumGPRs) {
4503 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
4504 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00004505 false, false, false, 0);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004506 MemOpChains.push_back(Load.getValue(1));
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004507 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004508
4509 ArgOffset += PtrByteSize;
4510 continue;
4511 }
4512 }
4513
4514 if (GPR_idx == NumGPRs && Size < 8) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004515 SDValue AddPtr = PtrOff;
4516 if (!isLittleEndian) {
4517 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4518 PtrOff.getValueType());
4519 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4520 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004521 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4522 CallSeqStart,
4523 Flags, DAG, dl);
4524 ArgOffset += PtrByteSize;
4525 continue;
4526 }
4527 // Copy entire object into memory. There are cases where gcc-generated
4528 // code assumes it is there, even if it could be put entirely into
4529 // registers. (This is not what the doc says.)
4530
4531 // FIXME: The above statement is likely due to a misunderstanding of the
4532 // documents. All arguments must be copied into the parameter area BY
4533 // THE CALLEE in the event that the callee takes the address of any
4534 // formal argument. That has not yet been implemented. However, it is
4535 // reasonable to use the stack area as a staging area for the register
4536 // load.
4537
4538 // Skip this for small aggregates, as we will use the same slot for a
4539 // right-justified copy, below.
4540 if (Size >= 8)
4541 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4542 CallSeqStart,
4543 Flags, DAG, dl);
4544
4545 // When a register is available, pass a small aggregate right-justified.
4546 if (Size < 8 && GPR_idx != NumGPRs) {
4547 // The easiest way to get this right-justified in a register
4548 // is to copy the structure into the rightmost portion of a
4549 // local variable slot, then load the whole slot into the
4550 // register.
4551 // FIXME: The memcpy seems to produce pretty awful code for
4552 // small aggregates, particularly for packed ones.
Matt Arsenault758659232013-05-18 00:21:46 +00004553 // FIXME: It would be preferable to use the slot in the
Bill Schmidt57d6de52012-10-23 15:51:16 +00004554 // parameter save area instead of a new local variable.
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004555 SDValue AddPtr = PtrOff;
4556 if (!isLittleEndian) {
4557 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
4558 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4559 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004560 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4561 CallSeqStart,
4562 Flags, DAG, dl);
4563
4564 // Load the slot into the register.
4565 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
4566 MachinePointerInfo(),
4567 false, false, false, 0);
4568 MemOpChains.push_back(Load.getValue(1));
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004569 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004570
4571 // Done with this argument.
4572 ArgOffset += PtrByteSize;
4573 continue;
4574 }
4575
4576 // For aggregates larger than PtrByteSize, copy the pieces of the
4577 // object that fit into registers from the parameter save area.
4578 for (unsigned j=0; j<Size; j+=PtrByteSize) {
4579 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
4580 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
4581 if (GPR_idx != NumGPRs) {
4582 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4583 MachinePointerInfo(),
4584 false, false, false, 0);
4585 MemOpChains.push_back(Load.getValue(1));
4586 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4587 ArgOffset += PtrByteSize;
4588 } else {
4589 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
4590 break;
4591 }
4592 }
4593 continue;
4594 }
4595
Craig Topper56710102013-08-15 02:33:50 +00004596 switch (Arg.getSimpleValueType().SimpleTy) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004597 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel940ab932014-02-28 00:27:01 +00004598 case MVT::i1:
Bill Schmidt57d6de52012-10-23 15:51:16 +00004599 case MVT::i32:
4600 case MVT::i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004601 // These can be scalar arguments or elements of an integer array type
4602 // passed directly. Clang may use those instead of "byval" aggregate
4603 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004604 if (GPR_idx != NumGPRs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004605 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004606 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004607 if (CallConv == CallingConv::Fast)
4608 ComputePtrOff();
4609
Bill Schmidt57d6de52012-10-23 15:51:16 +00004610 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4611 true, isTailCall, false, MemOpChains,
4612 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004613 if (CallConv == CallingConv::Fast)
4614 ArgOffset += PtrByteSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004615 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004616 if (CallConv != CallingConv::Fast)
4617 ArgOffset += PtrByteSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004618 break;
4619 case MVT::f32:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004620 case MVT::f64: {
4621 // These can be scalar arguments or elements of a float array type
4622 // passed directly. The latter are used to implement ELFv2 homogenous
4623 // float aggregates.
4624
4625 // Named arguments go into FPRs first, and once they overflow, the
4626 // remaining arguments go into GPRs and then the parameter save area.
4627 // Unnamed arguments for vararg functions always go to GPRs and
4628 // then the parameter save area. For now, put all arguments to vararg
4629 // routines always in both locations (FPR *and* GPR or stack slot).
4630 bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004631 bool NeededLoad = false;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004632
4633 // First load the argument into the next available FPR.
4634 if (FPR_idx != NumFPRs)
Bill Schmidt57d6de52012-10-23 15:51:16 +00004635 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4636
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004637 // Next, load the argument into GPR or stack slot if needed.
4638 if (!NeedGPROrStack)
4639 ;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004640 else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) {
Hal Finkel8ea446b2015-01-18 14:31:10 +00004641 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
4642 // once we support fp <-> gpr moves.
4643
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004644 // In the non-vararg case, this can only ever happen in the
4645 // presence of f32 array types, since otherwise we never run
4646 // out of FPRs before running out of GPRs.
4647 SDValue ArgVal;
Bill Schmidtbd4ac262012-10-29 21:18:16 +00004648
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004649 // Double values are always passed in a single GPR.
4650 if (Arg.getValueType() != MVT::f32) {
4651 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004652
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004653 // Non-array float values are extended and passed in a GPR.
4654 } else if (!Flags.isInConsecutiveRegs()) {
4655 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4656 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4657
4658 // If we have an array of floats, we collect every odd element
4659 // together with its predecessor into one GPR.
4660 } else if (ArgOffset % PtrByteSize != 0) {
4661 SDValue Lo, Hi;
4662 Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]);
4663 Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4664 if (!isLittleEndian)
4665 std::swap(Lo, Hi);
4666 ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4667
4668 // The final element, if even, goes into the first half of a GPR.
4669 } else if (Flags.isInConsecutiveRegsLast()) {
4670 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4671 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4672 if (!isLittleEndian)
4673 ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal,
4674 DAG.getConstant(32, MVT::i32));
4675
4676 // Non-final even elements are skipped; they will be handled
4677 // together the with subsequent argument on the next go-around.
4678 } else
4679 ArgVal = SDValue();
4680
4681 if (ArgVal.getNode())
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004682 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004683 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004684 if (CallConv == CallingConv::Fast)
4685 ComputePtrOff();
4686
Bill Schmidt57d6de52012-10-23 15:51:16 +00004687 // Single-precision floating-point values are mapped to the
4688 // second (rightmost) word of the stack doubleword.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004689 if (Arg.getValueType() == MVT::f32 &&
4690 !isLittleEndian && !Flags.isInConsecutiveRegs()) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004691 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4692 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4693 }
4694
4695 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4696 true, isTailCall, false, MemOpChains,
4697 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004698
4699 NeededLoad = true;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004700 }
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004701 // When passing an array of floats, the array occupies consecutive
4702 // space in the argument area; only round up to the next doubleword
4703 // at the end of the array. Otherwise, each float takes 8 bytes.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004704 if (CallConv != CallingConv::Fast || NeededLoad) {
4705 ArgOffset += (Arg.getValueType() == MVT::f32 &&
4706 Flags.isInConsecutiveRegs()) ? 4 : 8;
4707 if (Flags.isInConsecutiveRegsLast())
4708 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
4709 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004710 break;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004711 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004712 case MVT::v4f32:
4713 case MVT::v4i32:
4714 case MVT::v8i16:
4715 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00004716 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00004717 case MVT::v2i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004718 // These can be scalar arguments or elements of a vector array type
4719 // passed directly. The latter are used to implement ELFv2 homogenous
4720 // vector aggregates.
4721
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00004722 // For a varargs call, named arguments go into VRs or on the stack as
4723 // usual; unnamed arguments always go to the stack or the corresponding
4724 // GPRs when within range. For now, we always put the value in both
4725 // locations (or even all three).
Bill Schmidt57d6de52012-10-23 15:51:16 +00004726 if (isVarArg) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004727 // We could elide this store in the case where the object fits
4728 // entirely in R registers. Maybe later.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004729 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4730 MachinePointerInfo(), false, false, 0);
4731 MemOpChains.push_back(Store);
4732 if (VR_idx != NumVRs) {
4733 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
4734 MachinePointerInfo(),
4735 false, false, false, 0);
4736 MemOpChains.push_back(Load.getValue(1));
Hal Finkel7811c612014-03-28 19:58:11 +00004737
4738 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4739 Arg.getSimpleValueType() == MVT::v2i64) ?
4740 VSRH[VR_idx] : VR[VR_idx];
4741 ++VR_idx;
4742
4743 RegsToPass.push_back(std::make_pair(VReg, Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004744 }
4745 ArgOffset += 16;
4746 for (unsigned i=0; i<16; i+=PtrByteSize) {
4747 if (GPR_idx == NumGPRs)
4748 break;
4749 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4750 DAG.getConstant(i, PtrVT));
4751 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4752 false, false, false, 0);
4753 MemOpChains.push_back(Load.getValue(1));
4754 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4755 }
4756 break;
4757 }
4758
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00004759 // Non-varargs Altivec params go into VRs or on the stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004760 if (VR_idx != NumVRs) {
Hal Finkel7811c612014-03-28 19:58:11 +00004761 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4762 Arg.getSimpleValueType() == MVT::v2i64) ?
4763 VSRH[VR_idx] : VR[VR_idx];
4764 ++VR_idx;
4765
4766 RegsToPass.push_back(std::make_pair(VReg, Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004767 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004768 if (CallConv == CallingConv::Fast)
4769 ComputePtrOff();
4770
Bill Schmidt57d6de52012-10-23 15:51:16 +00004771 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4772 true, isTailCall, true, MemOpChains,
4773 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004774 if (CallConv == CallingConv::Fast)
4775 ArgOffset += 16;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004776 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004777
4778 if (CallConv != CallingConv::Fast)
4779 ArgOffset += 16;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004780 break;
4781 }
4782 }
4783
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004784 assert(NumBytesActuallyUsed == ArgOffset);
Ulrich Weigandde8641b2014-07-07 19:39:44 +00004785 (void)NumBytesActuallyUsed;
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004786
Bill Schmidt57d6de52012-10-23 15:51:16 +00004787 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004788 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004789
4790 // Check if this is an indirect call (MTCTR/BCTRL).
4791 // See PrepareCall() for more information about calls through function
4792 // pointers in the 64-bit SVR4 ABI.
Hal Finkel934361a2015-01-14 01:07:51 +00004793 if (!isTailCall && !IsPatchPoint &&
Hal Finkel87deb0b2015-01-12 04:34:47 +00004794 !isFunctionGlobalAddress(Callee) &&
4795 !isa<ExternalSymbolSDNode>(Callee)) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004796 // Load r2 into a virtual register and store it to the TOC save area.
4797 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4798 // TOC save area offset.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004799 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI);
Ulrich Weigandad0cb912014-06-18 17:52:49 +00004800 SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004801 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Hal Finkele2ab0f12015-01-15 21:17:34 +00004802 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr,
4803 MachinePointerInfo::getStack(TOCSaveOffset),
Bill Schmidt57d6de52012-10-23 15:51:16 +00004804 false, false, 0);
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004805 // In the ELFv2 ABI, R12 must contain the address of an indirect callee.
4806 // This does not mean the MTCTR instruction must use R12; it's easier
4807 // to model this as an extra parameter, so do that.
Hal Finkel934361a2015-01-14 01:07:51 +00004808 if (isELFv2ABI && !IsPatchPoint)
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004809 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004810 }
4811
4812 // Build a sequence of copy-to-reg nodes chained together with token chain
4813 // and flag operands which copy the outgoing args into the appropriate regs.
4814 SDValue InFlag;
4815 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4816 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4817 RegsToPass[i].second, InFlag);
4818 InFlag = Chain.getValue(1);
4819 }
4820
4821 if (isTailCall)
4822 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4823 FPOp, true, TailCallArguments);
4824
Hal Finkel934361a2015-01-14 01:07:51 +00004825 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004826 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4827 NumBytes, Ins, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004828}
4829
4830SDValue
4831PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4832 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004833 bool isTailCall, bool IsPatchPoint,
Bill Schmidt57d6de52012-10-23 15:51:16 +00004834 const SmallVectorImpl<ISD::OutputArg> &Outs,
4835 const SmallVectorImpl<SDValue> &OutVals,
4836 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004837 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004838 SmallVectorImpl<SDValue> &InVals,
4839 ImmutableCallSite *CS) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004840
4841 unsigned NumOps = Outs.size();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004842
Owen Anderson53aa7a92009-08-10 22:56:29 +00004843 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00004844 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004845 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004846
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004847 MachineFunction &MF = DAG.getMachineFunction();
4848
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004849 // Mark this function as potentially containing a function that contains a
4850 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4851 // and restoring the callers stack pointer in this functions epilog. This is
4852 // done because by tail calling the called function might overwrite the value
4853 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004854 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4855 CallConv == CallingConv::Fast)
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004856 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4857
Chris Lattneraa40ec12006-05-16 22:56:08 +00004858 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerec78cad2006-06-26 22:48:35 +00004859 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerb7552a82006-05-17 00:15:40 +00004860 // prereserved space for [SP][CR][LR][3 x unused].
Ulrich Weigand8658f172014-07-20 23:43:15 +00004861 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true,
4862 false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004863 unsigned NumBytes = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004864
4865 // Add up all the space actually used.
4866 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
4867 // they all go in registers, but we must reserve stack space for them for
4868 // possible use by the caller. In varargs or 64-bit calls, parameters are
4869 // assigned stack space in order, with padding so Altivec parameters are
4870 // 16-byte aligned.
4871 unsigned nAltivecParamsAtEnd = 0;
4872 for (unsigned i = 0; i != NumOps; ++i) {
4873 ISD::ArgFlagsTy Flags = Outs[i].Flags;
4874 EVT ArgVT = Outs[i].VT;
4875 // Varargs Altivec parameters are padded to a 16 byte boundary.
4876 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
4877 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
4878 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) {
4879 if (!isVarArg && !isPPC64) {
4880 // Non-varargs Altivec parameters go after all the non-Altivec
4881 // parameters; handle those later so we know how much padding we need.
4882 nAltivecParamsAtEnd++;
4883 continue;
4884 }
4885 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
4886 NumBytes = ((NumBytes+15)/16)*16;
4887 }
4888 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
4889 }
4890
4891 // Allow for Altivec parameters at the end, if needed.
4892 if (nAltivecParamsAtEnd) {
4893 NumBytes = ((NumBytes+15)/16)*16;
4894 NumBytes += 16*nAltivecParamsAtEnd;
4895 }
4896
4897 // The prolog code of the callee may store up to 8 GPR argument registers to
4898 // the stack, allowing va_start to index over them in memory if its varargs.
4899 // Because we cannot tell if this is needed on the caller side, we have to
4900 // conservatively assume that it is needed. As such, make sure we have at
4901 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004902 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004903
4904 // Tail call needs the stack to be aligned.
4905 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4906 CallConv == CallingConv::Fast)
Eric Christophercccae792015-01-30 22:02:31 +00004907 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004908
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004909 // Calculate by how many bytes the stack has to be adjusted in case of tail
4910 // call optimization.
4911 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004912
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004913 // To protect arguments on the stack from being clobbered in a tail call,
4914 // force all the loads to happen before doing any other lowering.
4915 if (isTailCall)
4916 Chain = DAG.getStackArgumentTokenFactor(Chain);
4917
Chris Lattnerb7552a82006-05-17 00:15:40 +00004918 // Adjust the stack pointer for the new arguments...
4919 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004920 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4921 dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004922 SDValue CallSeqStart = Chain;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004923
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004924 // Load the return address and frame pointer so it can be move somewhere else
4925 // later.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004926 SDValue LROp, FPOp;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004927 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4928 dl);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004929
Chris Lattnerb7552a82006-05-17 00:15:40 +00004930 // Set up a copy of the stack pointer for use loading and storing any
4931 // arguments that may not fit in the registers available for argument
4932 // passing.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004933 SDValue StackPtr;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004934 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00004935 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004936 else
Owen Anderson9f944592009-08-11 20:47:22 +00004937 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004938
Chris Lattnerb7552a82006-05-17 00:15:40 +00004939 // Figure out which arguments are going to go in registers, and which in
4940 // memory. Also, if this is a vararg function, floating point operations
4941 // must be stored to our stack, and loaded into integer regs as well, if
4942 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004943 unsigned ArgOffset = LinkageSize;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004944 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004945
Craig Topper840beec2014-04-04 05:16:06 +00004946 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004947 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4948 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4949 };
Craig Topper840beec2014-04-04 05:16:06 +00004950 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00004951 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4952 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4953 };
Craig Topper840beec2014-04-04 05:16:06 +00004954 static const MCPhysReg *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004955
Craig Topper840beec2014-04-04 05:16:06 +00004956 static const MCPhysReg VR[] = {
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004957 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4958 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4959 };
Owen Andersone2f23a32007-09-07 04:06:50 +00004960 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004961 const unsigned NumFPRs = 13;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00004962 const unsigned NumVRs = array_lengthof(VR);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004963
Craig Topper840beec2014-04-04 05:16:06 +00004964 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004965
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004966 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004967 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4968
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004969 SmallVector<SDValue, 8> MemOpChains;
Evan Chengc2cd4732006-05-25 00:57:32 +00004970 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004971 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004972 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004973
Chris Lattnerb7552a82006-05-17 00:15:40 +00004974 // PtrOff will be used to store the current argument to the stack if a
4975 // register cannot be found for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004976 SDValue PtrOff;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004977
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004978 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004979
Dale Johannesen679073b2009-02-04 02:34:38 +00004980 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004981
4982 // On PPC64, promote integers to 64-bit values.
Owen Anderson9f944592009-08-11 20:47:22 +00004983 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sandsd97eea32008-03-21 09:14:45 +00004984 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4985 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson9f944592009-08-11 20:47:22 +00004986 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004987 }
Dale Johannesen85d41a12008-03-04 23:17:14 +00004988
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004989 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004990 // Note: "by value" is code for passing a structure by value, not
4991 // basic types.
Duncan Sandsd97eea32008-03-21 09:14:45 +00004992 if (Flags.isByVal()) {
4993 unsigned Size = Flags.getByValSize();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004994 // Very small objects are passed right-justified. Everything else is
4995 // passed left-justified.
4996 if (Size==1 || Size==2) {
4997 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004998 if (GPR_idx != NumGPRs) {
Stuart Hastings81c43062011-02-16 16:23:55 +00004999 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d178ed2010-09-21 17:04:51 +00005000 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00005001 false, false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005002 MemOpChains.push_back(Load.getValue(1));
5003 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005004
5005 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005006 } else {
Bill Schmidt48081ca2012-10-16 13:30:53 +00005007 SDValue Const = DAG.getConstant(PtrByteSize - Size,
5008 PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005009 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005010 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5011 CallSeqStart,
5012 Flags, DAG, dl);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005013 ArgOffset += PtrByteSize;
5014 }
5015 continue;
5016 }
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00005017 // Copy entire object into memory. There are cases where gcc-generated
5018 // code assumes it is there, even if it could be put entirely into
5019 // registers. (This is not what the doc says.)
Bill Schmidt57d6de52012-10-23 15:51:16 +00005020 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
5021 CallSeqStart,
5022 Flags, DAG, dl);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00005023
5024 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
5025 // copy the pieces of the object that fit into registers from the
5026 // parameter save area.
Dale Johannesen85d41a12008-03-04 23:17:14 +00005027 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005028 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005029 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen85d41a12008-03-04 23:17:14 +00005030 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00005031 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5032 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005033 false, false, false, 0);
Dale Johannesen0d235052008-03-05 23:31:27 +00005034 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen85d41a12008-03-04 23:17:14 +00005035 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005036 ArgOffset += PtrByteSize;
Dale Johannesen85d41a12008-03-04 23:17:14 +00005037 } else {
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00005038 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005039 break;
Dale Johannesen85d41a12008-03-04 23:17:14 +00005040 }
5041 }
5042 continue;
5043 }
5044
Craig Topper56710102013-08-15 02:33:50 +00005045 switch (Arg.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005046 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel5cae2162014-02-28 01:17:25 +00005047 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00005048 case MVT::i32:
5049 case MVT::i64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005050 if (GPR_idx != NumGPRs) {
Hal Finkel7f908e82014-03-06 00:45:19 +00005051 if (Arg.getValueType() == MVT::i1)
5052 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg);
5053
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005054 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerb7552a82006-05-17 00:15:40 +00005055 } else {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005056 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5057 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005058 TailCallArguments, dl);
Chris Lattnerb7552a82006-05-17 00:15:40 +00005059 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005060 ArgOffset += PtrByteSize;
Chris Lattnerb7552a82006-05-17 00:15:40 +00005061 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005062 case MVT::f32:
5063 case MVT::f64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005064 if (FPR_idx != NumFPRs) {
5065 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5066
Chris Lattnerb7552a82006-05-17 00:15:40 +00005067 if (isVarArg) {
Chris Lattner676c61d2010-09-21 18:41:36 +00005068 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5069 MachinePointerInfo(), false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005070 MemOpChains.push_back(Store);
5071
Chris Lattnerb7552a82006-05-17 00:15:40 +00005072 // Float varargs are always shadowed in available integer registers
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005073 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00005074 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooper82cd9e82011-11-08 18:42:53 +00005075 MachinePointerInfo(), false, false,
5076 false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005077 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005078 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerb7552a82006-05-17 00:15:40 +00005079 }
Owen Anderson9f944592009-08-11 20:47:22 +00005080 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005081 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005082 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattner7727d052010-09-21 06:44:06 +00005083 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5084 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005085 false, false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005086 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005087 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattneraa40ec12006-05-16 22:56:08 +00005088 }
5089 } else {
Chris Lattnerb7552a82006-05-17 00:15:40 +00005090 // If we have any FPRs remaining, we may also have GPRs remaining.
5091 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
5092 // GPRs.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005093 if (GPR_idx != NumGPRs)
5094 ++GPR_idx;
Owen Anderson9f944592009-08-11 20:47:22 +00005095 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005096 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
5097 ++GPR_idx;
Chris Lattneraa40ec12006-05-16 22:56:08 +00005098 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005099 } else
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005100 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5101 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005102 TailCallArguments, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005103 if (isPPC64)
5104 ArgOffset += 8;
5105 else
Owen Anderson9f944592009-08-11 20:47:22 +00005106 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerb7552a82006-05-17 00:15:40 +00005107 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005108 case MVT::v4f32:
5109 case MVT::v4i32:
5110 case MVT::v8i16:
5111 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00005112 if (isVarArg) {
5113 // These go aligned on the stack, or in the corresponding R registers
Scott Michelcf0da6c2009-02-17 22:15:04 +00005114 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesenb28456e2008-03-12 00:22:17 +00005115 // V registers; in fact gcc does this only for arguments that are
5116 // prototyped, not for those that match the ... We do it for all
5117 // arguments, seems to work.
5118 while (ArgOffset % 16 !=0) {
5119 ArgOffset += PtrByteSize;
5120 if (GPR_idx != NumGPRs)
5121 GPR_idx++;
5122 }
5123 // We could elide this store in the case where the object fits
5124 // entirely in R registers. Maybe later.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005125 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesenb28456e2008-03-12 00:22:17 +00005126 DAG.getConstant(ArgOffset, PtrVT));
Chris Lattner676c61d2010-09-21 18:41:36 +00005127 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5128 MachinePointerInfo(), false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005129 MemOpChains.push_back(Store);
5130 if (VR_idx != NumVRs) {
Wesley Peck527da1b2010-11-23 03:31:01 +00005131 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattner7727d052010-09-21 06:44:06 +00005132 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005133 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005134 MemOpChains.push_back(Load.getValue(1));
5135 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
5136 }
5137 ArgOffset += 16;
5138 for (unsigned i=0; i<16; i+=PtrByteSize) {
5139 if (GPR_idx == NumGPRs)
5140 break;
Dale Johannesen679073b2009-02-04 02:34:38 +00005141 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesenb28456e2008-03-12 00:22:17 +00005142 DAG.getConstant(i, PtrVT));
Chris Lattner7727d052010-09-21 06:44:06 +00005143 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005144 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005145 MemOpChains.push_back(Load.getValue(1));
5146 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5147 }
5148 break;
5149 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005150
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005151 // Non-varargs Altivec params generally go in registers, but have
5152 // stack space allocated at the end.
5153 if (VR_idx != NumVRs) {
5154 // Doesn't have GPR space allocated.
5155 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
5156 } else if (nAltivecParamsAtEnd==0) {
5157 // We are emitting Altivec params in order.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005158 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5159 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005160 TailCallArguments, dl);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005161 ArgOffset += 16;
Dale Johannesenb28456e2008-03-12 00:22:17 +00005162 }
Chris Lattnerb7552a82006-05-17 00:15:40 +00005163 break;
Chris Lattneraa40ec12006-05-16 22:56:08 +00005164 }
Chris Lattneraa40ec12006-05-16 22:56:08 +00005165 }
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005166 // If all Altivec parameters fit in registers, as they usually do,
5167 // they get stack space following the non-Altivec parameters. We
5168 // don't track this here because nobody below needs it.
5169 // If there are more Altivec parameters than fit in registers emit
5170 // the stores here.
5171 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
5172 unsigned j = 0;
5173 // Offset is aligned; skip 1st 12 params which go in V registers.
5174 ArgOffset = ((ArgOffset+15)/16)*16;
5175 ArgOffset += 12*16;
5176 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005177 SDValue Arg = OutVals[i];
5178 EVT ArgType = Outs[i].VT;
Owen Anderson9f944592009-08-11 20:47:22 +00005179 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
5180 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005181 if (++j > NumVRs) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005182 SDValue PtrOff;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005183 // We are emitting Altivec params in order.
5184 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5185 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005186 TailCallArguments, dl);
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005187 ArgOffset += 16;
5188 }
5189 }
5190 }
5191 }
5192
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005193 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00005194 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005195
Dale Johannesen90eab672010-03-09 20:15:42 +00005196 // On Darwin, R12 must contain the address of an indirect callee. This does
5197 // not mean the MTCTR instruction must use R12; it's easier to model this as
5198 // an extra parameter, so do that.
Wesley Peck527da1b2010-11-23 03:31:01 +00005199 if (!isTailCall &&
Hal Finkel87deb0b2015-01-12 04:34:47 +00005200 !isFunctionGlobalAddress(Callee) &&
5201 !isa<ExternalSymbolSDNode>(Callee) &&
Dale Johannesen90eab672010-03-09 20:15:42 +00005202 !isBLACompatibleAddress(Callee, DAG))
5203 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
5204 PPC::R12), Callee));
5205
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005206 // Build a sequence of copy-to-reg nodes chained together with token chain
5207 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005208 SDValue InFlag;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005209 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00005210 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen679073b2009-02-04 02:34:38 +00005211 RegsToPass[i].second, InFlag);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005212 InFlag = Chain.getValue(1);
5213 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005214
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00005215 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005216 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
5217 FPOp, true, TailCallArguments);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005218
Hal Finkel934361a2015-01-14 01:07:51 +00005219 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00005220 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
5221 NumBytes, Ins, InVals, CS);
Chris Lattneraa40ec12006-05-16 22:56:08 +00005222}
5223
Hal Finkel450128a2011-10-14 19:51:36 +00005224bool
5225PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
5226 MachineFunction &MF, bool isVarArg,
5227 const SmallVectorImpl<ISD::OutputArg> &Outs,
5228 LLVMContext &Context) const {
5229 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00005230 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
Hal Finkel450128a2011-10-14 19:51:36 +00005231 return CCInfo.CheckReturn(Outs, RetCC_PPC);
5232}
5233
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005234SDValue
5235PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00005236 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005237 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005238 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005239 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005240
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005241 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00005242 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
5243 *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005244 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005245
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005246 SDValue Flag;
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005247 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005248
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005249 // Copy the result values into the output registers.
5250 for (unsigned i = 0; i != RVLocs.size(); ++i) {
5251 CCValAssign &VA = RVLocs[i];
5252 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00005253
5254 SDValue Arg = OutVals[i];
5255
5256 switch (VA.getLocInfo()) {
5257 default: llvm_unreachable("Unknown loc info!");
5258 case CCValAssign::Full: break;
5259 case CCValAssign::AExt:
5260 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
5261 break;
5262 case CCValAssign::ZExt:
5263 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
5264 break;
5265 case CCValAssign::SExt:
5266 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
5267 break;
5268 }
5269
5270 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005271 Flag = Chain.getValue(1);
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005272 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005273 }
5274
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005275 RetOps[0] = Chain; // Update chain.
5276
5277 // Add the flag if we have it.
Gabor Greiff304a7a2008-08-28 21:40:38 +00005278 if (Flag.getNode())
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005279 RetOps.push_back(Flag);
5280
Craig Topper48d114b2014-04-26 18:35:24 +00005281 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps);
Chris Lattner4211ca92006-04-14 06:01:58 +00005282}
5283
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005284SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005285 const PPCSubtarget &Subtarget) const {
Jim Laskeye4f4d042006-12-04 22:04:42 +00005286 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005287 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005288
Jim Laskeye4f4d042006-12-04 22:04:42 +00005289 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005290 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeye4f4d042006-12-04 22:04:42 +00005291
5292 // Construct the stack pointer operand.
Dale Johannesen86dcae12009-11-24 01:09:07 +00005293 bool isPPC64 = Subtarget.isPPC64();
5294 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005295 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeye4f4d042006-12-04 22:04:42 +00005296
5297 // Get the operands for the STACKRESTORE.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005298 SDValue Chain = Op.getOperand(0);
5299 SDValue SaveSP = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005300
Jim Laskeye4f4d042006-12-04 22:04:42 +00005301 // Load the old link SP.
Chris Lattner7727d052010-09-21 06:44:06 +00005302 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
5303 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005304 false, false, false, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005305
Jim Laskeye4f4d042006-12-04 22:04:42 +00005306 // Restore the stack pointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00005307 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005308
Jim Laskeye4f4d042006-12-04 22:04:42 +00005309 // Store the old link SP.
Chris Lattner676c61d2010-09-21 18:41:36 +00005310 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00005311 false, false, 0);
Jim Laskeye4f4d042006-12-04 22:04:42 +00005312}
5313
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005314
5315
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005316SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005317PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey48850c12006-11-16 22:43:37 +00005318 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005319 bool isPPC64 = Subtarget.isPPC64();
5320 bool isDarwinABI = Subtarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005321 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005322
5323 // Get current frame pointer save index. The users of this index will be
5324 // primarily DYNALLOC instructions.
5325 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5326 int RASI = FI->getReturnAddrSaveIndex();
5327
5328 // If the frame pointer save index hasn't been defined yet.
5329 if (!RASI) {
5330 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00005331 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005332 // Allocate the frame index for frame pointer save area.
Hal Finkel6e27c6d2014-12-23 09:45:06 +00005333 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, false);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005334 // Save the result.
5335 FI->setReturnAddrSaveIndex(RASI);
5336 }
5337 return DAG.getFrameIndex(RASI, PtrVT);
5338}
5339
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005340SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005341PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
5342 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005343 bool isPPC64 = Subtarget.isPPC64();
5344 bool isDarwinABI = Subtarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005345 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00005346
5347 // Get current frame pointer save index. The users of this index will be
5348 // primarily DYNALLOC instructions.
5349 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5350 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005351
Jim Laskey48850c12006-11-16 22:43:37 +00005352 // If the frame pointer save index hasn't been defined yet.
5353 if (!FPSI) {
5354 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00005355 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005356 isDarwinABI);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005357
Jim Laskey48850c12006-11-16 22:43:37 +00005358 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00005359 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey48850c12006-11-16 22:43:37 +00005360 // Save the result.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005361 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey48850c12006-11-16 22:43:37 +00005362 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005363 return DAG.getFrameIndex(FPSI, PtrVT);
5364}
Jim Laskey48850c12006-11-16 22:43:37 +00005365
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005366SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005367 SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005368 const PPCSubtarget &Subtarget) const {
Jim Laskey48850c12006-11-16 22:43:37 +00005369 // Get the inputs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005370 SDValue Chain = Op.getOperand(0);
5371 SDValue Size = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005372 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005373
Jim Laskey48850c12006-11-16 22:43:37 +00005374 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005375 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00005376 // Negate the size.
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005377 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey48850c12006-11-16 22:43:37 +00005378 DAG.getConstant(0, PtrVT), Size);
5379 // Construct a node for the frame pointer save index.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005380 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey48850c12006-11-16 22:43:37 +00005381 // Build a DYNALLOC node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005382 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson9f944592009-08-11 20:47:22 +00005383 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Craig Topper48d114b2014-04-26 18:35:24 +00005384 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops);
Jim Laskey48850c12006-11-16 22:43:37 +00005385}
5386
Hal Finkel756810f2013-03-21 21:37:52 +00005387SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
5388 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005389 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00005390 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
5391 DAG.getVTList(MVT::i32, MVT::Other),
5392 Op.getOperand(0), Op.getOperand(1));
5393}
5394
5395SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
5396 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005397 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00005398 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
5399 Op.getOperand(0), Op.getOperand(1));
5400}
5401
Hal Finkel940ab932014-02-28 00:27:01 +00005402SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
5403 assert(Op.getValueType() == MVT::i1 &&
5404 "Custom lowering only for i1 loads");
5405
5406 // First, load 8 bits into 32 bits, then truncate to 1 bit.
5407
5408 SDLoc dl(Op);
5409 LoadSDNode *LD = cast<LoadSDNode>(Op);
5410
5411 SDValue Chain = LD->getChain();
5412 SDValue BasePtr = LD->getBasePtr();
5413 MachineMemOperand *MMO = LD->getMemOperand();
5414
5415 SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(), Chain,
5416 BasePtr, MVT::i8, MMO);
5417 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD);
5418
5419 SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) };
Craig Topper64941d92014-04-27 19:20:57 +00005420 return DAG.getMergeValues(Ops, dl);
Hal Finkel940ab932014-02-28 00:27:01 +00005421}
5422
5423SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
5424 assert(Op.getOperand(1).getValueType() == MVT::i1 &&
5425 "Custom lowering only for i1 stores");
5426
5427 // First, zero extend to 32 bits, then use a truncating store to 8 bits.
5428
5429 SDLoc dl(Op);
5430 StoreSDNode *ST = cast<StoreSDNode>(Op);
5431
5432 SDValue Chain = ST->getChain();
5433 SDValue BasePtr = ST->getBasePtr();
5434 SDValue Value = ST->getValue();
5435 MachineMemOperand *MMO = ST->getMemOperand();
5436
5437 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(), Value);
5438 return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO);
5439}
5440
5441// FIXME: Remove this once the ANDI glue bug is fixed:
5442SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
5443 assert(Op.getValueType() == MVT::i1 &&
5444 "Custom lowering only for i1 results");
5445
5446 SDLoc DL(Op);
5447 return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1,
5448 Op.getOperand(0));
5449}
5450
Chris Lattner4211ca92006-04-14 06:01:58 +00005451/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
5452/// possible.
Dan Gohman21cea8a2010-04-17 15:26:15 +00005453SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00005454 // Not FP? Not a fsel.
Duncan Sands13237ac2008-06-06 12:08:01 +00005455 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
5456 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedman5806e182009-05-28 04:31:08 +00005457 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005458
Hal Finkel81f87992013-04-07 22:11:09 +00005459 // We might be able to do better than this under some circumstances, but in
5460 // general, fsel-based lowering of select is a finite-math-only optimization.
5461 // For more information, see section F.3 of the 2.06 ISA specification.
5462 if (!DAG.getTarget().Options.NoInfsFPMath ||
5463 !DAG.getTarget().Options.NoNaNsFPMath)
5464 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005465
Hal Finkel81f87992013-04-07 22:11:09 +00005466 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005467
Owen Anderson53aa7a92009-08-10 22:56:29 +00005468 EVT ResVT = Op.getValueType();
5469 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005470 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
5471 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005472 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005473
Chris Lattner4211ca92006-04-14 06:01:58 +00005474 // If the RHS of the comparison is a 0.0, we don't need to do the
5475 // subtraction at all.
Hal Finkel81f87992013-04-07 22:11:09 +00005476 SDValue Sel1;
Chris Lattner4211ca92006-04-14 06:01:58 +00005477 if (isFloatingPointZero(RHS))
5478 switch (CC) {
5479 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00005480 case ISD::SETNE:
5481 std::swap(TV, FV);
5482 case ISD::SETEQ:
5483 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5484 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5485 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
5486 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
5487 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5488 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5489 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005490 case ISD::SETULT:
5491 case ISD::SETLT:
5492 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005493 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005494 case ISD::SETGE:
Owen Anderson9f944592009-08-11 20:47:22 +00005495 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5496 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005497 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005498 case ISD::SETUGT:
5499 case ISD::SETGT:
5500 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005501 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005502 case ISD::SETLE:
Owen Anderson9f944592009-08-11 20:47:22 +00005503 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5504 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005505 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005506 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005507 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005508
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005509 SDValue Cmp;
Chris Lattner4211ca92006-04-14 06:01:58 +00005510 switch (CC) {
5511 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00005512 case ISD::SETNE:
5513 std::swap(TV, FV);
5514 case ISD::SETEQ:
5515 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
5516 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5517 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5518 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
5519 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
5520 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5521 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5522 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005523 case ISD::SETULT:
5524 case ISD::SETLT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005525 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005526 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5527 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005528 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005529 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005530 case ISD::SETGE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005531 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005532 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5533 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005534 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005535 case ISD::SETUGT:
5536 case ISD::SETGT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005537 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005538 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5539 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005540 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005541 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005542 case ISD::SETLE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005543 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005544 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5545 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005546 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005547 }
Eli Friedman5806e182009-05-28 04:31:08 +00005548 return Op;
Chris Lattner4211ca92006-04-14 06:01:58 +00005549}
5550
Hal Finkeled844c42015-01-06 22:31:02 +00005551void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI,
5552 SelectionDAG &DAG,
5553 SDLoc dl) const {
Duncan Sands13237ac2008-06-06 12:08:01 +00005554 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005555 SDValue Src = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00005556 if (Src.getValueType() == MVT::f32)
5557 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sands2a287912008-07-19 16:26:02 +00005558
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005559 SDValue Tmp;
Craig Topper56710102013-08-15 02:33:50 +00005560 switch (Op.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005561 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson9f944592009-08-11 20:47:22 +00005562 case MVT::i32:
Eric Christophercccae792015-01-30 22:02:31 +00005563 Tmp = DAG.getNode(
5564 Op.getOpcode() == ISD::FP_TO_SINT
5565 ? PPCISD::FCTIWZ
5566 : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
5567 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00005568 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005569 case MVT::i64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005570 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
Hal Finkel3f88d082013-04-01 18:42:58 +00005571 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkelf6d45f22013-04-01 17:52:07 +00005572 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
5573 PPCISD::FCTIDUZ,
5574 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00005575 break;
5576 }
Duncan Sands2a287912008-07-19 16:26:02 +00005577
Chris Lattner4211ca92006-04-14 06:01:58 +00005578 // Convert the FP value to an int value through memory.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005579 bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() &&
5580 (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT());
Hal Finkelf6d45f22013-04-01 17:52:07 +00005581 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
5582 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
5583 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
Duncan Sands2a287912008-07-19 16:26:02 +00005584
Chris Lattner06a49542007-10-15 20:14:52 +00005585 // Emit a store to the stack slot.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005586 SDValue Chain;
5587 if (i32Stack) {
5588 MachineFunction &MF = DAG.getMachineFunction();
5589 MachineMemOperand *MMO =
5590 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
5591 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
5592 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +00005593 DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO);
Hal Finkelf6d45f22013-04-01 17:52:07 +00005594 } else
5595 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
5596 MPI, false, false, 0);
Chris Lattner06a49542007-10-15 20:14:52 +00005597
5598 // Result is a load from the stack slot. If loading 4 bytes, make sure to
5599 // add in a bias.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005600 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen021052a2009-02-04 20:06:27 +00005601 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner06a49542007-10-15 20:14:52 +00005602 DAG.getConstant(4, FIPtr.getValueType()));
Hal Finkeled844c42015-01-06 22:31:02 +00005603 MPI = MPI.getWithOffset(4);
Hal Finkelf6d45f22013-04-01 17:52:07 +00005604 }
5605
Hal Finkeled844c42015-01-06 22:31:02 +00005606 RLI.Chain = Chain;
5607 RLI.Ptr = FIPtr;
5608 RLI.MPI = MPI;
5609}
5610
5611SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
5612 SDLoc dl) const {
5613 ReuseLoadInfo RLI;
5614 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
5615
5616 return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
5617 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
5618 RLI.Ranges);
5619}
5620
5621// We're trying to insert a regular store, S, and then a load, L. If the
5622// incoming value, O, is a load, we might just be able to have our load use the
5623// address used by O. However, we don't know if anything else will store to
5624// that address before we can load from it. To prevent this situation, we need
5625// to insert our load, L, into the chain as a peer of O. To do this, we give L
5626// the same chain operand as O, we create a token factor from the chain results
5627// of O and L, and we replace all uses of O's chain result with that token
5628// factor (see spliceIntoChain below for this last part).
5629bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT,
5630 ReuseLoadInfo &RLI,
Hal Finkel6c392692015-01-09 01:34:30 +00005631 SelectionDAG &DAG,
5632 ISD::LoadExtType ET) const {
Hal Finkeled844c42015-01-06 22:31:02 +00005633 SDLoc dl(Op);
Hal Finkel6c392692015-01-09 01:34:30 +00005634 if (ET == ISD::NON_EXTLOAD &&
5635 (Op.getOpcode() == ISD::FP_TO_UINT ||
Hal Finkeled844c42015-01-06 22:31:02 +00005636 Op.getOpcode() == ISD::FP_TO_SINT) &&
5637 isOperationLegalOrCustom(Op.getOpcode(),
5638 Op.getOperand(0).getValueType())) {
5639
5640 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
5641 return true;
5642 }
5643
5644 LoadSDNode *LD = dyn_cast<LoadSDNode>(Op);
Hal Finkel6c392692015-01-09 01:34:30 +00005645 if (!LD || LD->getExtensionType() != ET || LD->isVolatile() ||
5646 LD->isNonTemporal())
Hal Finkeled844c42015-01-06 22:31:02 +00005647 return false;
5648 if (LD->getMemoryVT() != MemVT)
5649 return false;
5650
5651 RLI.Ptr = LD->getBasePtr();
5652 if (LD->isIndexed() && LD->getOffset().getOpcode() != ISD::UNDEF) {
5653 assert(LD->getAddressingMode() == ISD::PRE_INC &&
5654 "Non-pre-inc AM on PPC?");
5655 RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr,
5656 LD->getOffset());
5657 }
5658
5659 RLI.Chain = LD->getChain();
5660 RLI.MPI = LD->getPointerInfo();
5661 RLI.IsInvariant = LD->isInvariant();
5662 RLI.Alignment = LD->getAlignment();
5663 RLI.AAInfo = LD->getAAInfo();
5664 RLI.Ranges = LD->getRanges();
5665
5666 RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1);
5667 return true;
5668}
5669
5670// Given the head of the old chain, ResChain, insert a token factor containing
5671// it and NewResChain, and make users of ResChain now be users of that token
5672// factor.
5673void PPCTargetLowering::spliceIntoChain(SDValue ResChain,
5674 SDValue NewResChain,
5675 SelectionDAG &DAG) const {
5676 if (!ResChain)
5677 return;
5678
5679 SDLoc dl(NewResChain);
5680
5681 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
5682 NewResChain, DAG.getUNDEF(MVT::Other));
5683 assert(TF.getNode() != NewResChain.getNode() &&
5684 "A new TF really is required here");
5685
5686 DAG.ReplaceAllUsesOfValueWith(ResChain, TF);
5687 DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain);
Chris Lattner4211ca92006-04-14 06:01:58 +00005688}
5689
Hal Finkelf6d45f22013-04-01 17:52:07 +00005690SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Hal Finkeled844c42015-01-06 22:31:02 +00005691 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005692 SDLoc dl(Op);
Dan Gohmand6819da2008-03-11 01:59:03 +00005693 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson9f944592009-08-11 20:47:22 +00005694 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005695 return SDValue();
Dan Gohmand6819da2008-03-11 01:59:03 +00005696
Hal Finkel6a56b212014-03-05 22:14:00 +00005697 if (Op.getOperand(0).getValueType() == MVT::i1)
5698 return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0),
5699 DAG.getConstantFP(1.0, Op.getValueType()),
5700 DAG.getConstantFP(0.0, Op.getValueType()));
5701
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005702 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005703 "UINT_TO_FP is supported only with FPCVT");
5704
5705 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel93d75ea2013-04-02 03:29:51 +00005706 // Otherwise, convert to double-precision and then round.
Eric Christophercccae792015-01-30 22:02:31 +00005707 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
5708 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
5709 : PPCISD::FCFIDS)
5710 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
5711 : PPCISD::FCFID);
5712 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
5713 ? MVT::f32
5714 : MVT::f64;
Hal Finkelf6d45f22013-04-01 17:52:07 +00005715
Owen Anderson9f944592009-08-11 20:47:22 +00005716 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00005717 SDValue SINT = Op.getOperand(0);
5718 // When converting to single-precision, we actually need to convert
5719 // to double-precision first and then round to single-precision.
5720 // To avoid double-rounding effects during that operation, we have
5721 // to prepare the input operand. Bits that might be truncated when
5722 // converting to double-precision are replaced by a bit that won't
5723 // be lost at this stage, but is below the single-precision rounding
5724 // position.
5725 //
5726 // However, if -enable-unsafe-fp-math is in effect, accept double
5727 // rounding to avoid the extra overhead.
5728 if (Op.getValueType() == MVT::f32 &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005729 !Subtarget.hasFPCVT() &&
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00005730 !DAG.getTarget().Options.UnsafeFPMath) {
5731
5732 // Twiddle input to make sure the low 11 bits are zero. (If this
5733 // is the case, we are guaranteed the value will fit into the 53 bit
5734 // mantissa of an IEEE double-precision value without rounding.)
5735 // If any of those low 11 bits were not zero originally, make sure
5736 // bit 12 (value 2048) is set instead, so that the final rounding
5737 // to single-precision gets the correct result.
5738 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5739 SINT, DAG.getConstant(2047, MVT::i64));
5740 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
5741 Round, DAG.getConstant(2047, MVT::i64));
5742 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
5743 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5744 Round, DAG.getConstant(-2048, MVT::i64));
5745
5746 // However, we cannot use that value unconditionally: if the magnitude
5747 // of the input value is small, the bit-twiddling we did above might
5748 // end up visibly changing the output. Fortunately, in that case, we
5749 // don't need to twiddle bits since the original input will convert
5750 // exactly to double-precision floating-point already. Therefore,
5751 // construct a conditional to use the original value if the top 11
5752 // bits are all sign-bit copies, and use the rounded value computed
5753 // above otherwise.
5754 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
5755 SINT, DAG.getConstant(53, MVT::i32));
5756 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
5757 Cond, DAG.getConstant(1, MVT::i64));
5758 Cond = DAG.getSetCC(dl, MVT::i32,
5759 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
5760
5761 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
5762 }
Hal Finkelf6d45f22013-04-01 17:52:07 +00005763
Hal Finkeled844c42015-01-06 22:31:02 +00005764 ReuseLoadInfo RLI;
5765 SDValue Bits;
5766
Hal Finkel6c392692015-01-09 01:34:30 +00005767 MachineFunction &MF = DAG.getMachineFunction();
Hal Finkeled844c42015-01-06 22:31:02 +00005768 if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) {
5769 Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
5770 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
5771 RLI.Ranges);
5772 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
Hal Finkel6c392692015-01-09 01:34:30 +00005773 } else if (Subtarget.hasLFIWAX() &&
5774 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) {
5775 MachineMemOperand *MMO =
5776 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5777 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5778 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5779 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl,
5780 DAG.getVTList(MVT::f64, MVT::Other),
5781 Ops, MVT::i32, MMO);
5782 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
5783 } else if (Subtarget.hasFPCVT() &&
5784 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) {
5785 MachineMemOperand *MMO =
5786 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5787 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5788 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5789 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl,
5790 DAG.getVTList(MVT::f64, MVT::Other),
5791 Ops, MVT::i32, MMO);
5792 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
5793 } else if (((Subtarget.hasLFIWAX() &&
5794 SINT.getOpcode() == ISD::SIGN_EXTEND) ||
5795 (Subtarget.hasFPCVT() &&
5796 SINT.getOpcode() == ISD::ZERO_EXTEND)) &&
5797 SINT.getOperand(0).getValueType() == MVT::i32) {
5798 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
5799 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5800
5801 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
5802 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5803
5804 SDValue Store =
5805 DAG.getStore(DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx,
5806 MachinePointerInfo::getFixedStack(FrameIdx),
5807 false, false, 0);
5808
5809 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
5810 "Expected an i32 store");
5811
5812 RLI.Ptr = FIdx;
5813 RLI.Chain = Store;
5814 RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
5815 RLI.Alignment = 4;
5816
5817 MachineMemOperand *MMO =
5818 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5819 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5820 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5821 Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ?
5822 PPCISD::LFIWZX : PPCISD::LFIWAX,
5823 dl, DAG.getVTList(MVT::f64, MVT::Other),
5824 Ops, MVT::i32, MMO);
Hal Finkeled844c42015-01-06 22:31:02 +00005825 } else
5826 Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
5827
Hal Finkelf6d45f22013-04-01 17:52:07 +00005828 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
5829
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005830 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Scott Michelcf0da6c2009-02-17 22:15:04 +00005831 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005832 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00005833 return FP;
5834 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005835
Owen Anderson9f944592009-08-11 20:47:22 +00005836 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005837 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner4211ca92006-04-14 06:01:58 +00005838 // Since we only generate this in 64-bit mode, we can take advantage of
5839 // 64-bit registers. In particular, sign extend the input value into the
5840 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
5841 // then lfd it and fcfid it.
Dan Gohman48b185d2009-09-25 20:36:54 +00005842 MachineFunction &MF = DAG.getMachineFunction();
5843 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005844 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005845
Hal Finkelbeb296b2013-03-31 10:12:51 +00005846 SDValue Ld;
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005847 if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) {
Hal Finkeled844c42015-01-06 22:31:02 +00005848 ReuseLoadInfo RLI;
5849 bool ReusingLoad;
5850 if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI,
5851 DAG))) {
5852 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
5853 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005854
Hal Finkeled844c42015-01-06 22:31:02 +00005855 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
5856 MachinePointerInfo::getFixedStack(FrameIdx),
5857 false, false, 0);
Hal Finkele53429a2013-03-31 01:58:02 +00005858
Hal Finkeled844c42015-01-06 22:31:02 +00005859 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
5860 "Expected an i32 store");
5861
5862 RLI.Ptr = FIdx;
5863 RLI.Chain = Store;
5864 RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
5865 RLI.Alignment = 4;
5866 }
5867
Hal Finkelbeb296b2013-03-31 10:12:51 +00005868 MachineMemOperand *MMO =
Hal Finkeled844c42015-01-06 22:31:02 +00005869 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5870 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5871 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
Hal Finkelf6d45f22013-04-01 17:52:07 +00005872 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
5873 PPCISD::LFIWZX : PPCISD::LFIWAX,
5874 dl, DAG.getVTList(MVT::f64, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00005875 Ops, MVT::i32, MMO);
Hal Finkeled844c42015-01-06 22:31:02 +00005876 if (ReusingLoad)
5877 spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG);
Hal Finkelbeb296b2013-03-31 10:12:51 +00005878 } else {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005879 assert(Subtarget.isPPC64() &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005880 "i32->FP without LFIWAX supported only on PPC64");
5881
Hal Finkelbeb296b2013-03-31 10:12:51 +00005882 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
5883 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5884
5885 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
5886 Op.getOperand(0));
5887
5888 // STD the extended value into the stack slot.
5889 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
5890 MachinePointerInfo::getFixedStack(FrameIdx),
5891 false, false, 0);
5892
5893 // Load the value as a double.
5894 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
5895 MachinePointerInfo::getFixedStack(FrameIdx),
5896 false, false, false, 0);
5897 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005898
Chris Lattner4211ca92006-04-14 06:01:58 +00005899 // FCFID it and return it.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005900 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005901 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Owen Anderson9f944592009-08-11 20:47:22 +00005902 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00005903 return FP;
5904}
5905
Dan Gohman21cea8a2010-04-17 15:26:15 +00005906SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
5907 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005908 SDLoc dl(Op);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005909 /*
5910 The rounding mode is in bits 30:31 of FPSR, and has the following
5911 settings:
5912 00 Round to nearest
5913 01 Round to 0
5914 10 Round to +inf
5915 11 Round to -inf
5916
5917 FLT_ROUNDS, on the other hand, expects the following:
5918 -1 Undefined
5919 0 Round to 0
5920 1 Round to nearest
5921 2 Round to +inf
5922 3 Round to -inf
5923
5924 To perform the conversion, we do:
5925 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
5926 */
5927
5928 MachineFunction &MF = DAG.getMachineFunction();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005929 EVT VT = Op.getValueType();
5930 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005931
5932 // Save FP Control Word to register
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005933 EVT NodeTys[] = {
5934 MVT::f64, // return register
5935 MVT::Glue // unused in this context
5936 };
Craig Topper2d2aa0c2014-04-30 07:17:30 +00005937 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005938
5939 // Save FP register to stack slot
David Greene1fbe0542009-11-12 20:49:22 +00005940 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005941 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005942 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner676c61d2010-09-21 18:41:36 +00005943 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005944
5945 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005946 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005947 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattner7727d052010-09-21 06:44:06 +00005948 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005949 false, false, false, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005950
5951 // Transform as necessary
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005952 SDValue CWD1 =
Owen Anderson9f944592009-08-11 20:47:22 +00005953 DAG.getNode(ISD::AND, dl, MVT::i32,
5954 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005955 SDValue CWD2 =
Owen Anderson9f944592009-08-11 20:47:22 +00005956 DAG.getNode(ISD::SRL, dl, MVT::i32,
5957 DAG.getNode(ISD::AND, dl, MVT::i32,
5958 DAG.getNode(ISD::XOR, dl, MVT::i32,
5959 CWD, DAG.getConstant(3, MVT::i32)),
5960 DAG.getConstant(3, MVT::i32)),
5961 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005962
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005963 SDValue RetVal =
Owen Anderson9f944592009-08-11 20:47:22 +00005964 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005965
Duncan Sands13237ac2008-06-06 12:08:01 +00005966 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen021052a2009-02-04 20:06:27 +00005967 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005968}
5969
Dan Gohman21cea8a2010-04-17 15:26:15 +00005970SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005971 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005972 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005973 SDLoc dl(Op);
Dan Gohman8d2ead22008-03-07 20:36:53 +00005974 assert(Op.getNumOperands() == 3 &&
5975 VT == Op.getOperand(1).getValueType() &&
5976 "Unexpected SHL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005977
Chris Lattner601b8652006-09-20 03:47:40 +00005978 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005979 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005980 SDValue Lo = Op.getOperand(0);
5981 SDValue Hi = Op.getOperand(1);
5982 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005983 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005984
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005985 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005986 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005987 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
5988 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
5989 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
5990 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005991 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005992 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
5993 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5994 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005995 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00005996 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005997}
5998
Dan Gohman21cea8a2010-04-17 15:26:15 +00005999SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006000 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00006001 SDLoc dl(Op);
Duncan Sands13237ac2008-06-06 12:08:01 +00006002 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00006003 assert(Op.getNumOperands() == 3 &&
6004 VT == Op.getOperand(1).getValueType() &&
6005 "Unexpected SRL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00006006
Dan Gohman8d2ead22008-03-07 20:36:53 +00006007 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00006008 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006009 SDValue Lo = Op.getOperand(0);
6010 SDValue Hi = Op.getOperand(1);
6011 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006012 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006013
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006014 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00006015 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006016 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6017 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6018 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6019 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00006020 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006021 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
6022 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6023 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006024 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00006025 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00006026}
6027
Dan Gohman21cea8a2010-04-17 15:26:15 +00006028SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006029 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006030 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00006031 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00006032 assert(Op.getNumOperands() == 3 &&
6033 VT == Op.getOperand(1).getValueType() &&
6034 "Unexpected SRA!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00006035
Dan Gohman8d2ead22008-03-07 20:36:53 +00006036 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006037 SDValue Lo = Op.getOperand(0);
6038 SDValue Hi = Op.getOperand(1);
6039 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006040 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006041
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006042 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00006043 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006044 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6045 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6046 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6047 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00006048 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006049 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
6050 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
6051 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands13105742008-10-30 19:28:32 +00006052 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006053 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00006054 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00006055}
6056
6057//===----------------------------------------------------------------------===//
6058// Vector related lowering.
6059//
6060
Chris Lattner2a099c02006-04-17 06:00:21 +00006061/// BuildSplatI - Build a canonical splati of Val with an element size of
6062/// SplatSize. Cast the result to VT.
Owen Anderson53aa7a92009-08-10 22:56:29 +00006063static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006064 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner2a099c02006-04-17 06:00:21 +00006065 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006066
Owen Anderson53aa7a92009-08-10 22:56:29 +00006067 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson9f944592009-08-11 20:47:22 +00006068 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner2a099c02006-04-17 06:00:21 +00006069 };
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006070
Owen Anderson9f944592009-08-11 20:47:22 +00006071 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006072
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006073 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
6074 if (Val == -1)
6075 SplatSize = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006076
Owen Anderson53aa7a92009-08-10 22:56:29 +00006077 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006078
Chris Lattner2a099c02006-04-17 06:00:21 +00006079 // Build a canonical splat for this value.
Owen Anderson9f944592009-08-11 20:47:22 +00006080 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006081 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00006082 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Craig Topper48d114b2014-04-26 18:35:24 +00006083 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00006084 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00006085}
6086
Hal Finkelcf2e9082013-05-24 23:00:14 +00006087/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
6088/// specified intrinsic ID.
6089static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006090 SelectionDAG &DAG, SDLoc dl,
Hal Finkelcf2e9082013-05-24 23:00:14 +00006091 EVT DestVT = MVT::Other) {
6092 if (DestVT == MVT::Other) DestVT = Op.getValueType();
6093 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6094 DAG.getConstant(IID, MVT::i32), Op);
6095}
6096
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006097/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner1b3806a2006-04-17 06:58:41 +00006098/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006099static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006100 SelectionDAG &DAG, SDLoc dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006101 EVT DestVT = MVT::Other) {
6102 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006103 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00006104 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner1b3806a2006-04-17 06:58:41 +00006105}
6106
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006107/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
6108/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006109static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006110 SDValue Op2, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006111 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson9f944592009-08-11 20:47:22 +00006112 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006113 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00006114 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006115}
6116
6117
Chris Lattner264c9082006-04-17 17:55:10 +00006118/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
6119/// amount. The result has the specified value type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006120static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006121 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattner264c9082006-04-17 17:55:10 +00006122 // Force LHS/RHS to be the right type.
Wesley Peck527da1b2010-11-23 03:31:01 +00006123 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
6124 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsb0e39382008-07-21 10:20:31 +00006125
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006126 int Ops[16];
Chris Lattner264c9082006-04-17 17:55:10 +00006127 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006128 Ops[i] = i + Amt;
Owen Anderson9f944592009-08-11 20:47:22 +00006129 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00006130 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner264c9082006-04-17 17:55:10 +00006131}
6132
Chris Lattner19e90552006-04-14 05:19:18 +00006133// If this is a case we can't handle, return null and let the default
6134// expansion code take care of it. If we CAN select this case, and if it
6135// selects to a single instruction, return Op. Otherwise, if we can codegen
6136// this case more efficiently than a constant pool load, lower it to the
6137// sequence of ops that should be used.
Dan Gohman21cea8a2010-04-17 15:26:15 +00006138SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
6139 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006140 SDLoc dl(Op);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006141 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
Craig Toppere73658d2014-04-28 04:05:08 +00006142 assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Michelbb878282009-02-25 03:12:50 +00006143
Bob Wilson85cefe82009-03-02 23:24:16 +00006144 // Check if this is a splat of a constant value.
6145 APInt APSplatBits, APSplatUndef;
6146 unsigned SplatBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00006147 bool HasAnyUndefs;
Bob Wilson530e0382009-03-03 19:26:27 +00006148 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00006149 HasAnyUndefs, 0, true) || SplatBitSize > 32)
Bob Wilson530e0382009-03-03 19:26:27 +00006150 return SDValue();
Evan Chenga49de9d2009-02-25 22:49:59 +00006151
Bob Wilson530e0382009-03-03 19:26:27 +00006152 unsigned SplatBits = APSplatBits.getZExtValue();
6153 unsigned SplatUndef = APSplatUndef.getZExtValue();
6154 unsigned SplatSize = SplatBitSize / 8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006155
Bob Wilson530e0382009-03-03 19:26:27 +00006156 // First, handle single instruction cases.
6157
6158 // All zeros?
6159 if (SplatBits == 0) {
6160 // Canonicalize all zero vectors to be v4i32.
Owen Anderson9f944592009-08-11 20:47:22 +00006161 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
6162 SDValue Z = DAG.getConstant(0, MVT::i32);
6163 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Wesley Peck527da1b2010-11-23 03:31:01 +00006164 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattner19e90552006-04-14 05:19:18 +00006165 }
Bob Wilson530e0382009-03-03 19:26:27 +00006166 return Op;
6167 }
Chris Lattnerfa5aa392006-04-16 01:01:29 +00006168
Bob Wilson530e0382009-03-03 19:26:27 +00006169 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
6170 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
6171 (32-SplatBitSize));
6172 if (SextVal >= -16 && SextVal <= 15)
6173 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006174
6175
Bob Wilson530e0382009-03-03 19:26:27 +00006176 // Two instruction sequences.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006177
Bob Wilson530e0382009-03-03 19:26:27 +00006178 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtc6cbecc2013-02-20 20:41:42 +00006179 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
6180 // If this value is in the range [17,31] and is odd, use:
6181 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
6182 // If this value is in the range [-31,-17] and is odd, use:
6183 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
6184 // Note the last two are three-instruction sequences.
6185 if (SextVal >= -32 && SextVal <= 31) {
6186 // To avoid having these optimizations undone by constant folding,
6187 // we convert to a pseudo that will be expanded later into one of
6188 // the above forms.
6189 SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
Bill Schmidt71dddd52014-05-27 15:57:51 +00006190 EVT VT = (SplatSize == 1 ? MVT::v16i8 :
6191 (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32));
6192 SDValue EltSize = DAG.getConstant(SplatSize, MVT::i32);
6193 SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
6194 if (VT == Op.getValueType())
6195 return RetVal;
6196 else
6197 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal);
Bob Wilson530e0382009-03-03 19:26:27 +00006198 }
6199
6200 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
6201 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
6202 // for fneg/fabs.
6203 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
6204 // Make -1 and vspltisw -1:
Owen Anderson9f944592009-08-11 20:47:22 +00006205 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006206
6207 // Make the VSLW intrinsic, computing 0x8000_0000.
6208 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
6209 OnesV, DAG, dl);
6210
6211 // xor by OnesV to invert it.
Owen Anderson9f944592009-08-11 20:47:22 +00006212 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peck527da1b2010-11-23 03:31:01 +00006213 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00006214 }
6215
Bill Schmidt4aedff82014-06-06 14:06:26 +00006216 // The remaining cases assume either big endian element order or
6217 // a splat-size that equates to the element size of the vector
6218 // to be built. An example that doesn't work for little endian is
6219 // {0, -1, 0, -1, 0, -1, 0, -1} which has a splat size of 32 bits
6220 // and a vector element size of 16 bits. The code below will
6221 // produce the vector in big endian element order, which for little
6222 // endian is {-1, 0, -1, 0, -1, 0, -1, 0}.
6223
6224 // For now, just avoid these optimizations in that case.
6225 // FIXME: Develop correct optimizations for LE with mismatched
6226 // splat and element sizes.
6227
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006228 if (Subtarget.isLittleEndian() &&
Bill Schmidt4aedff82014-06-06 14:06:26 +00006229 SplatSize != Op.getValueType().getVectorElementType().getSizeInBits())
6230 return SDValue();
6231
Bob Wilson530e0382009-03-03 19:26:27 +00006232 // Check to see if this is a wide variety of vsplti*, binop self cases.
6233 static const signed char SplatCsts[] = {
6234 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
6235 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
6236 };
6237
6238 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
6239 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
6240 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
6241 int i = SplatCsts[idx];
6242
6243 // Figure out what shift amount will be used by altivec if shifted by i in
6244 // this splat size.
6245 unsigned TypeShiftAmt = i & (SplatBitSize-1);
6246
6247 // vsplti + shl self.
Richard Smith228e6d42012-08-24 23:29:28 +00006248 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00006249 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006250 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6251 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
6252 Intrinsic::ppc_altivec_vslw
6253 };
6254 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006255 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00006256 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006257
Bob Wilson530e0382009-03-03 19:26:27 +00006258 // vsplti + srl self.
6259 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00006260 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006261 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6262 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
6263 Intrinsic::ppc_altivec_vsrw
6264 };
6265 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006266 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00006267 }
6268
Bob Wilson530e0382009-03-03 19:26:27 +00006269 // vsplti + sra self.
6270 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00006271 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006272 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6273 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
6274 Intrinsic::ppc_altivec_vsraw
6275 };
6276 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006277 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00006278 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006279
Bob Wilson530e0382009-03-03 19:26:27 +00006280 // vsplti + rol self.
6281 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
6282 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006283 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006284 static const unsigned IIDs[] = { // Intrinsic to use for each size.
6285 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
6286 Intrinsic::ppc_altivec_vrlw
6287 };
6288 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00006289 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00006290 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006291
Bob Wilson530e0382009-03-03 19:26:27 +00006292 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith228e6d42012-08-24 23:29:28 +00006293 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006294 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006295 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnere54133c2006-04-17 18:09:22 +00006296 }
Bob Wilson530e0382009-03-03 19:26:27 +00006297 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith228e6d42012-08-24 23:29:28 +00006298 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006299 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006300 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattner19e90552006-04-14 05:19:18 +00006301 }
Bob Wilson530e0382009-03-03 19:26:27 +00006302 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith228e6d42012-08-24 23:29:28 +00006303 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00006304 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00006305 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
6306 }
6307 }
6308
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006309 return SDValue();
Chris Lattner19e90552006-04-14 05:19:18 +00006310}
6311
Chris Lattner071ad012006-04-17 05:28:54 +00006312/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
6313/// the specified operations to build the shuffle.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006314static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelcf0da6c2009-02-17 22:15:04 +00006315 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006316 SDLoc dl) {
Chris Lattner071ad012006-04-17 05:28:54 +00006317 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling95e1af22008-09-17 00:30:57 +00006318 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner071ad012006-04-17 05:28:54 +00006319 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006320
Chris Lattner071ad012006-04-17 05:28:54 +00006321 enum {
Chris Lattnerd2ca9ab2006-05-16 04:20:24 +00006322 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 +00006323 OP_VMRGHW,
6324 OP_VMRGLW,
6325 OP_VSPLTISW0,
6326 OP_VSPLTISW1,
6327 OP_VSPLTISW2,
6328 OP_VSPLTISW3,
6329 OP_VSLDOI4,
6330 OP_VSLDOI8,
Chris Lattneraa2372562006-05-24 17:04:05 +00006331 OP_VSLDOI12
Chris Lattner071ad012006-04-17 05:28:54 +00006332 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00006333
Chris Lattner071ad012006-04-17 05:28:54 +00006334 if (OpNum == OP_COPY) {
6335 if (LHSID == (1*9+2)*9+3) return LHS;
6336 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
6337 return RHS;
6338 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006339
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006340 SDValue OpLHS, OpRHS;
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006341 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
6342 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006343
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006344 int ShufIdxs[16];
Chris Lattner071ad012006-04-17 05:28:54 +00006345 switch (OpNum) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006346 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner071ad012006-04-17 05:28:54 +00006347 case OP_VMRGHW:
6348 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
6349 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
6350 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
6351 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
6352 break;
6353 case OP_VMRGLW:
6354 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
6355 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
6356 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
6357 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
6358 break;
6359 case OP_VSPLTISW0:
6360 for (unsigned i = 0; i != 16; ++i)
6361 ShufIdxs[i] = (i&3)+0;
6362 break;
6363 case OP_VSPLTISW1:
6364 for (unsigned i = 0; i != 16; ++i)
6365 ShufIdxs[i] = (i&3)+4;
6366 break;
6367 case OP_VSPLTISW2:
6368 for (unsigned i = 0; i != 16; ++i)
6369 ShufIdxs[i] = (i&3)+8;
6370 break;
6371 case OP_VSPLTISW3:
6372 for (unsigned i = 0; i != 16; ++i)
6373 ShufIdxs[i] = (i&3)+12;
6374 break;
6375 case OP_VSLDOI4:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006376 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006377 case OP_VSLDOI8:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006378 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006379 case OP_VSLDOI12:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006380 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006381 }
Owen Anderson53aa7a92009-08-10 22:56:29 +00006382 EVT VT = OpLHS.getValueType();
Wesley Peck527da1b2010-11-23 03:31:01 +00006383 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
6384 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson9f944592009-08-11 20:47:22 +00006385 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peck527da1b2010-11-23 03:31:01 +00006386 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner071ad012006-04-17 05:28:54 +00006387}
6388
Chris Lattner19e90552006-04-14 05:19:18 +00006389/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
6390/// is a shuffle we can handle in a single instruction, return it. Otherwise,
6391/// return the code it can be lowered into. Worst case, it can always be
6392/// lowered into a vperm.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006393SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006394 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006395 SDLoc dl(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006396 SDValue V1 = Op.getOperand(0);
6397 SDValue V2 = Op.getOperand(1);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006398 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006399 EVT VT = Op.getValueType();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006400 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006401
Chris Lattner19e90552006-04-14 05:19:18 +00006402 // Cases that are handled by instructions that take permute immediates
6403 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
6404 // selected by the instruction selector.
6405 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006406 if (PPC::isSplatShuffleMask(SVOp, 1) ||
6407 PPC::isSplatShuffleMask(SVOp, 2) ||
6408 PPC::isSplatShuffleMask(SVOp, 4) ||
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00006409 PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) ||
6410 PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) ||
Bill Schmidt42a69362014-08-05 20:47:25 +00006411 PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006412 PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) ||
6413 PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) ||
6414 PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) ||
6415 PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) ||
6416 PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) ||
6417 PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG)) {
Chris Lattner19e90552006-04-14 05:19:18 +00006418 return Op;
6419 }
6420 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006421
Chris Lattner19e90552006-04-14 05:19:18 +00006422 // Altivec has a variety of "shuffle immediates" that take two vector inputs
6423 // and produce a fixed permutation. If any of these match, do not lower to
6424 // VPERM.
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006425 unsigned int ShuffleKind = isLittleEndian ? 2 : 0;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00006426 if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) ||
6427 PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) ||
Bill Schmidt42a69362014-08-05 20:47:25 +00006428 PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006429 PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6430 PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6431 PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
6432 PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6433 PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6434 PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG))
Chris Lattner19e90552006-04-14 05:19:18 +00006435 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006436
Chris Lattner071ad012006-04-17 05:28:54 +00006437 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
6438 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramer339ced42012-01-15 13:16:05 +00006439 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peck527da1b2010-11-23 03:31:01 +00006440
Chris Lattner071ad012006-04-17 05:28:54 +00006441 unsigned PFIndexes[4];
6442 bool isFourElementShuffle = true;
6443 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
6444 unsigned EltNo = 8; // Start out undef.
6445 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006446 if (PermMask[i*4+j] < 0)
Chris Lattner071ad012006-04-17 05:28:54 +00006447 continue; // Undef, ignore it.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006448
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006449 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner071ad012006-04-17 05:28:54 +00006450 if ((ByteSource & 3) != j) {
6451 isFourElementShuffle = false;
6452 break;
6453 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006454
Chris Lattner071ad012006-04-17 05:28:54 +00006455 if (EltNo == 8) {
6456 EltNo = ByteSource/4;
6457 } else if (EltNo != ByteSource/4) {
6458 isFourElementShuffle = false;
6459 break;
6460 }
6461 }
6462 PFIndexes[i] = EltNo;
6463 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006464
6465 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner071ad012006-04-17 05:28:54 +00006466 // perfect shuffle vector to determine if it is cost effective to do this as
6467 // discrete instructions, or whether we should use a vperm.
Bill Schmidtf910a062014-06-10 14:35:01 +00006468 // For now, we skip this for little endian until such time as we have a
6469 // little-endian perfect shuffle table.
6470 if (isFourElementShuffle && !isLittleEndian) {
Chris Lattner071ad012006-04-17 05:28:54 +00006471 // Compute the index in the perfect shuffle table.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006472 unsigned PFTableIndex =
Chris Lattner071ad012006-04-17 05:28:54 +00006473 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006474
Chris Lattner071ad012006-04-17 05:28:54 +00006475 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6476 unsigned Cost = (PFEntry >> 30);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006477
Chris Lattner071ad012006-04-17 05:28:54 +00006478 // Determining when to avoid vperm is tricky. Many things affect the cost
6479 // of vperm, particularly how many times the perm mask needs to be computed.
6480 // For example, if the perm mask can be hoisted out of a loop or is already
6481 // used (perhaps because there are multiple permutes with the same shuffle
6482 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
6483 // the loop requires an extra register.
6484 //
6485 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelcf0da6c2009-02-17 22:15:04 +00006486 // generated in 3 or fewer operations. When we have loop information
Chris Lattner071ad012006-04-17 05:28:54 +00006487 // available, if this block is within a loop, we should avoid using vperm
6488 // for 3-operation perms and use a constant pool load instead.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006489 if (Cost < 3)
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006490 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006491 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006492
Chris Lattner19e90552006-04-14 05:19:18 +00006493 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
6494 // vector that will get spilled to the constant pool.
6495 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006496
Chris Lattner19e90552006-04-14 05:19:18 +00006497 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
6498 // that it is in input element units, not in bytes. Convert now.
Bill Schmidt4aedff82014-06-06 14:06:26 +00006499
6500 // For little endian, the order of the input vectors is reversed, and
6501 // the permutation mask is complemented with respect to 31. This is
6502 // necessary to produce proper semantics with the big-endian-biased vperm
6503 // instruction.
Owen Anderson53aa7a92009-08-10 22:56:29 +00006504 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands13237ac2008-06-06 12:08:01 +00006505 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006506
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006507 SmallVector<SDValue, 16> ResultMask;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006508 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
6509 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006510
Chris Lattner19e90552006-04-14 05:19:18 +00006511 for (unsigned j = 0; j != BytesPerElement; ++j)
Bill Schmidt4aedff82014-06-06 14:06:26 +00006512 if (isLittleEndian)
6513 ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement+j),
6514 MVT::i32));
6515 else
6516 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
6517 MVT::i32));
Chris Lattner19e90552006-04-14 05:19:18 +00006518 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006519
Owen Anderson9f944592009-08-11 20:47:22 +00006520 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Craig Topper48d114b2014-04-26 18:35:24 +00006521 ResultMask);
Bill Schmidt4aedff82014-06-06 14:06:26 +00006522 if (isLittleEndian)
6523 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6524 V2, V1, VPermMask);
6525 else
6526 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6527 V1, V2, VPermMask);
Chris Lattner19e90552006-04-14 05:19:18 +00006528}
6529
Chris Lattner9754d142006-04-18 17:59:36 +00006530/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
6531/// altivec comparison. If it is, return true and fill in Opc/isDot with
6532/// information about the intrinsic.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006533static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner9754d142006-04-18 17:59:36 +00006534 bool &isDot) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00006535 unsigned IntrinsicID =
6536 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00006537 CompareOpc = -1;
6538 isDot = false;
6539 switch (IntrinsicID) {
6540 default: return false;
6541 // Comparison predicates.
Chris Lattner4211ca92006-04-14 06:01:58 +00006542 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
6543 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
6544 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
6545 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
6546 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
6547 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
6548 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
6549 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
6550 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
6551 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
6552 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
6553 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
6554 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006555
Chris Lattner4211ca92006-04-14 06:01:58 +00006556 // Normal Comparisons.
6557 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
6558 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
6559 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
6560 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
6561 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
6562 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
6563 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
6564 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
6565 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
6566 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
6567 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
6568 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
6569 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
6570 }
Chris Lattner9754d142006-04-18 17:59:36 +00006571 return true;
6572}
6573
6574/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
6575/// lower, do it, otherwise return null.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006576SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006577 SelectionDAG &DAG) const {
Chris Lattner9754d142006-04-18 17:59:36 +00006578 // If this is a lowered altivec predicate compare, CompareOpc is set to the
6579 // opcode number of the comparison.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006580 SDLoc dl(Op);
Chris Lattner9754d142006-04-18 17:59:36 +00006581 int CompareOpc;
6582 bool isDot;
6583 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006584 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006585
Chris Lattner9754d142006-04-18 17:59:36 +00006586 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner4211ca92006-04-14 06:01:58 +00006587 if (!isDot) {
Dale Johannesenf80493b2009-02-05 22:07:54 +00006588 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner9fa851b2010-03-14 22:44:11 +00006589 Op.getOperand(1), Op.getOperand(2),
6590 DAG.getConstant(CompareOpc, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00006591 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner4211ca92006-04-14 06:01:58 +00006592 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006593
Chris Lattner4211ca92006-04-14 06:01:58 +00006594 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006595 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00006596 Op.getOperand(2), // LHS
6597 Op.getOperand(3), // RHS
Owen Anderson9f944592009-08-11 20:47:22 +00006598 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00006599 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00006600 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +00006601 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006602
Chris Lattner4211ca92006-04-14 06:01:58 +00006603 // Now that we have the comparison, emit a copy from the CR to a GPR.
6604 // This is flagged to the above dot comparison.
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00006605 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
Owen Anderson9f944592009-08-11 20:47:22 +00006606 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelcf0da6c2009-02-17 22:15:04 +00006607 CompNode.getValue(1));
6608
Chris Lattner4211ca92006-04-14 06:01:58 +00006609 // Unpack the result based on how the target uses it.
6610 unsigned BitNo; // Bit # of CR6.
6611 bool InvertBit; // Invert result?
Dan Gohmaneffb8942008-09-12 16:56:44 +00006612 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner4211ca92006-04-14 06:01:58 +00006613 default: // Can't happen, don't crash on invalid number though.
6614 case 0: // Return the value of the EQ bit of CR6.
6615 BitNo = 0; InvertBit = false;
6616 break;
6617 case 1: // Return the inverted value of the EQ bit of CR6.
6618 BitNo = 0; InvertBit = true;
6619 break;
6620 case 2: // Return the value of the LT bit of CR6.
6621 BitNo = 2; InvertBit = false;
6622 break;
6623 case 3: // Return the inverted value of the LT bit of CR6.
6624 BitNo = 2; InvertBit = true;
6625 break;
6626 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006627
Chris Lattner4211ca92006-04-14 06:01:58 +00006628 // Shift the bit into the low position.
Owen Anderson9f944592009-08-11 20:47:22 +00006629 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
6630 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00006631 // Isolate the bit.
Owen Anderson9f944592009-08-11 20:47:22 +00006632 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
6633 DAG.getConstant(1, MVT::i32));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006634
Chris Lattner4211ca92006-04-14 06:01:58 +00006635 // If we are supposed to, toggle the bit.
6636 if (InvertBit)
Owen Anderson9f944592009-08-11 20:47:22 +00006637 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
6638 DAG.getConstant(1, MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00006639 return Flags;
6640}
6641
Hal Finkel5c0d1452014-03-30 13:22:59 +00006642SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
6643 SelectionDAG &DAG) const {
6644 SDLoc dl(Op);
6645 // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int
6646 // instructions), but for smaller types, we need to first extend up to v2i32
6647 // before doing going farther.
6648 if (Op.getValueType() == MVT::v2i64) {
6649 EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
6650 if (ExtVT != MVT::v2i32) {
6651 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0));
6652 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op,
6653 DAG.getValueType(EVT::getVectorVT(*DAG.getContext(),
6654 ExtVT.getVectorElementType(), 4)));
6655 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op);
6656 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op,
6657 DAG.getValueType(MVT::v2i32));
6658 }
6659
6660 return Op;
6661 }
6662
6663 return SDValue();
6664}
6665
Scott Michelcf0da6c2009-02-17 22:15:04 +00006666SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006667 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006668 SDLoc dl(Op);
Chris Lattner4211ca92006-04-14 06:01:58 +00006669 // Create a stack slot that is 16-byte aligned.
6670 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00006671 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Dale Johannesen81bfca72010-05-03 22:59:34 +00006672 EVT PtrVT = getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006673 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006674
Chris Lattner4211ca92006-04-14 06:01:58 +00006675 // Store the input value into Value#0 of the stack slot.
Dale Johannesen021052a2009-02-04 20:06:27 +00006676 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00006677 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00006678 false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00006679 // Load it out.
Chris Lattner7727d052010-09-21 06:44:06 +00006680 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006681 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00006682}
6683
Dan Gohman21cea8a2010-04-17 15:26:15 +00006684SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006685 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00006686 if (Op.getValueType() == MVT::v4i32) {
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::v4i32, DAG, dl);
6690 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006691
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006692 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006693 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006694
Chris Lattner7e4398742006-04-18 03:43:48 +00006695 // Shrinkify inputs to v8i16.
Wesley Peck527da1b2010-11-23 03:31:01 +00006696 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
6697 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
6698 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006699
Chris Lattner7e4398742006-04-18 03:43:48 +00006700 // Low parts multiplied together, generating 32-bit results (we ignore the
6701 // top parts).
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006702 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson9f944592009-08-11 20:47:22 +00006703 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006704
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006705 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson9f944592009-08-11 20:47:22 +00006706 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner7e4398742006-04-18 03:43:48 +00006707 // Shift the high parts up 16 bits.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006708 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006709 Neg16, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00006710 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
6711 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006712 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006713
Owen Anderson9f944592009-08-11 20:47:22 +00006714 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner7e4398742006-04-18 03:43:48 +00006715
Chris Lattner96d50482006-04-18 04:28:57 +00006716 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006717 LHS, RHS, Zero, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00006718 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006719 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006720 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006721
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006722 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006723 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson9f944592009-08-11 20:47:22 +00006724 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00006725 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006726
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006727 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006728 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson9f944592009-08-11 20:47:22 +00006729 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00006730 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006731
Bill Schmidt42995e82014-06-09 16:06:29 +00006732 // Merge the results together. Because vmuleub and vmuloub are
6733 // instructions with a big-endian bias, we must reverse the
6734 // element numbering and reverse the meaning of "odd" and "even"
6735 // when generating little endian code.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006736 int Ops[16];
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006737 for (unsigned i = 0; i != 8; ++i) {
Bill Schmidt42995e82014-06-09 16:06:29 +00006738 if (isLittleEndian) {
6739 Ops[i*2 ] = 2*i;
6740 Ops[i*2+1] = 2*i+16;
6741 } else {
6742 Ops[i*2 ] = 2*i+1;
6743 Ops[i*2+1] = 2*i+1+16;
6744 }
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006745 }
Bill Schmidt42995e82014-06-09 16:06:29 +00006746 if (isLittleEndian)
6747 return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops);
6748 else
6749 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner7e4398742006-04-18 03:43:48 +00006750 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006751 llvm_unreachable("Unknown mul to lower!");
Chris Lattner7e4398742006-04-18 03:43:48 +00006752 }
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006753}
6754
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006755/// LowerOperation - Provide custom lowering hooks for some operations.
6756///
Dan Gohman21cea8a2010-04-17 15:26:15 +00006757SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006758 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006759 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner4211ca92006-04-14 06:01:58 +00006760 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00006761 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006762 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackye3f15c982012-06-04 17:36:38 +00006763 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00006764 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006765 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sandsa0984362011-09-06 13:37:06 +00006766 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
6767 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006768 case ISD::VASTART:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006769 return LowerVASTART(Op, DAG, Subtarget);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006770
6771 case ISD::VAARG:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006772 return LowerVAARG(Op, DAG, Subtarget);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00006773
Roman Divackyc3825df2013-07-25 21:36:47 +00006774 case ISD::VACOPY:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006775 return LowerVACOPY(Op, DAG, Subtarget);
Roman Divackyc3825df2013-07-25 21:36:47 +00006776
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006777 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, Subtarget);
Chris Lattner43df5b32007-02-25 05:34:32 +00006778 case ISD::DYNAMIC_STACKALLOC:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006779 return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget);
Evan Cheng51096af2008-04-19 01:30:48 +00006780
Hal Finkel756810f2013-03-21 21:37:52 +00006781 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
6782 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
6783
Hal Finkel940ab932014-02-28 00:27:01 +00006784 case ISD::LOAD: return LowerLOAD(Op, DAG);
6785 case ISD::STORE: return LowerSTORE(Op, DAG);
6786 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006787 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen37bc85f2009-06-04 20:53:52 +00006788 case ISD::FP_TO_UINT:
6789 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Hal Finkeled844c42015-01-06 22:31:02 +00006790 SDLoc(Op));
Hal Finkelf6d45f22013-04-01 17:52:07 +00006791 case ISD::UINT_TO_FP:
6792 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman9ba4d762008-01-31 00:41:03 +00006793 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00006794
Chris Lattner4211ca92006-04-14 06:01:58 +00006795 // Lower 64-bit shifts.
Chris Lattner601b8652006-09-20 03:47:40 +00006796 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
6797 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
6798 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00006799
Chris Lattner4211ca92006-04-14 06:01:58 +00006800 // Vector-related lowering.
6801 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6802 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6803 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6804 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Hal Finkel5c0d1452014-03-30 13:22:59 +00006805 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006806 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006807
Hal Finkel25c19922013-05-15 21:37:41 +00006808 // For counter-based loop handling.
6809 case ISD::INTRINSIC_W_CHAIN: return SDValue();
6810
Chris Lattnerf6a81562007-12-08 06:59:59 +00006811 // Frame & Return address.
6812 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00006813 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnere675a082005-08-31 20:23:54 +00006814 }
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006815}
6816
Duncan Sands6ed40142008-12-01 11:39:25 +00006817void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
6818 SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006819 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006820 SDLoc dl(N);
Chris Lattner57ee7c62007-11-28 18:44:47 +00006821 switch (N->getOpcode()) {
Duncan Sands4068a7f2008-10-28 15:00:32 +00006822 default:
Craig Toppere55c5562012-02-07 02:50:20 +00006823 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkelbbdee932014-12-02 22:01:00 +00006824 case ISD::READCYCLECOUNTER: {
6825 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
6826 SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0));
6827
6828 Results.push_back(RTB);
6829 Results.push_back(RTB.getValue(1));
6830 Results.push_back(RTB.getValue(2));
6831 break;
6832 }
Hal Finkel25c19922013-05-15 21:37:41 +00006833 case ISD::INTRINSIC_W_CHAIN: {
6834 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
6835 Intrinsic::ppc_is_decremented_ctr_nonzero)
6836 break;
6837
6838 assert(N->getValueType(0) == MVT::i1 &&
6839 "Unexpected result type for CTR decrement intrinsic");
Matt Arsenault758659232013-05-18 00:21:46 +00006840 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
Hal Finkel25c19922013-05-15 21:37:41 +00006841 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
6842 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
6843 N->getOperand(1));
6844
6845 Results.push_back(NewInt);
6846 Results.push_back(NewInt.getValue(1));
6847 break;
6848 }
Roman Divacky4394e682011-06-28 15:30:42 +00006849 case ISD::VAARG: {
Eric Christophercccae792015-01-30 22:02:31 +00006850 if (!Subtarget.isSVR4ABI() || Subtarget.isPPC64())
Roman Divacky4394e682011-06-28 15:30:42 +00006851 return;
6852
6853 EVT VT = N->getValueType(0);
6854
6855 if (VT == MVT::i64) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006856 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget);
Roman Divacky4394e682011-06-28 15:30:42 +00006857
6858 Results.push_back(NewNode);
6859 Results.push_back(NewNode.getValue(1));
6860 }
6861 return;
6862 }
Duncan Sands6ed40142008-12-01 11:39:25 +00006863 case ISD::FP_ROUND_INREG: {
Owen Anderson9f944592009-08-11 20:47:22 +00006864 assert(N->getValueType(0) == MVT::ppcf128);
6865 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006866 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006867 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00006868 DAG.getIntPtrConstant(0));
Dale Johannesenf80493b2009-02-05 22:07:54 +00006869 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006870 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00006871 DAG.getIntPtrConstant(1));
6872
Ulrich Weigand874fc622013-03-26 10:56:22 +00006873 // Add the two halves of the long double in round-to-zero mode.
6874 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands6ed40142008-12-01 11:39:25 +00006875
6876 // We know the low half is about to be thrown away, so just use something
6877 // convenient.
Owen Anderson9f944592009-08-11 20:47:22 +00006878 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesenf80493b2009-02-05 22:07:54 +00006879 FPreg, FPreg));
Duncan Sands6ed40142008-12-01 11:39:25 +00006880 return;
Duncan Sands2a287912008-07-19 16:26:02 +00006881 }
Duncan Sands6ed40142008-12-01 11:39:25 +00006882 case ISD::FP_TO_SINT:
Bill Schmidt41221692013-07-09 18:50:20 +00006883 // LowerFP_TO_INT() can only handle f32 and f64.
6884 if (N->getOperand(0).getValueType() == MVT::ppcf128)
6885 return;
Dale Johannesen37bc85f2009-06-04 20:53:52 +00006886 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands6ed40142008-12-01 11:39:25 +00006887 return;
Chris Lattner57ee7c62007-11-28 18:44:47 +00006888 }
6889}
6890
6891
Chris Lattner4211ca92006-04-14 06:01:58 +00006892//===----------------------------------------------------------------------===//
6893// Other Lowering Code
6894//===----------------------------------------------------------------------===//
6895
Robin Morisset22129962014-09-23 20:46:49 +00006896static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) {
6897 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
6898 Function *Func = Intrinsic::getDeclaration(M, Id);
6899 return Builder.CreateCall(Func);
6900}
6901
6902// The mappings for emitLeading/TrailingFence is taken from
6903// http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
6904Instruction* PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
6905 AtomicOrdering Ord, bool IsStore,
6906 bool IsLoad) const {
6907 if (Ord == SequentiallyConsistent)
6908 return callIntrinsic(Builder, Intrinsic::ppc_sync);
6909 else if (isAtLeastRelease(Ord))
6910 return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
6911 else
6912 return nullptr;
6913}
6914
6915Instruction* PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
6916 AtomicOrdering Ord, bool IsStore,
6917 bool IsLoad) const {
6918 if (IsLoad && isAtLeastAcquire(Ord))
6919 return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
6920 // FIXME: this is too conservative, a dependent branch + isync is enough.
6921 // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and
6922 // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
6923 // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification.
6924 else
6925 return nullptr;
6926}
6927
Chris Lattner9b577f12005-08-26 21:23:58 +00006928MachineBasicBlock *
Dale Johannesend4eb0522008-08-25 22:34:37 +00006929PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman747e55b2009-02-07 16:15:20 +00006930 bool is64bit, unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006931 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christophercccae792015-01-30 22:02:31 +00006932 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Dale Johannesend4eb0522008-08-25 22:34:37 +00006933
6934 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6935 MachineFunction *F = BB->getParent();
6936 MachineFunction::iterator It = BB;
6937 ++It;
6938
6939 unsigned dest = MI->getOperand(0).getReg();
6940 unsigned ptrA = MI->getOperand(1).getReg();
6941 unsigned ptrB = MI->getOperand(2).getReg();
6942 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006943 DebugLoc dl = MI->getDebugLoc();
Dale Johannesend4eb0522008-08-25 22:34:37 +00006944
6945 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
6946 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6947 F->insert(It, loopMBB);
6948 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006949 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00006950 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00006951 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006952
6953 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006954 unsigned TmpReg = (!BinOpcode) ? incr :
Craig Topper61e88f42014-11-21 05:58:21 +00006955 RegInfo.createVirtualRegister( is64bit ? &PPC::G8RCRegClass
6956 : &PPC::GPRCRegClass);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006957
6958 // thisMBB:
6959 // ...
6960 // fallthrough --> loopMBB
6961 BB->addSuccessor(loopMBB);
6962
6963 // loopMBB:
6964 // l[wd]arx dest, ptr
6965 // add r0, dest, incr
6966 // st[wd]cx. r0, ptr
6967 // bne- loopMBB
6968 // fallthrough --> exitMBB
6969 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006970 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesend4eb0522008-08-25 22:34:37 +00006971 .addReg(ptrA).addReg(ptrB);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006972 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006973 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
6974 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesend4eb0522008-08-25 22:34:37 +00006975 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006976 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00006977 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006978 BB->addSuccessor(loopMBB);
6979 BB->addSuccessor(exitMBB);
6980
6981 // exitMBB:
6982 // ...
6983 BB = exitMBB;
6984 return BB;
6985}
6986
6987MachineBasicBlock *
Scott Michelcf0da6c2009-02-17 22:15:04 +00006988PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesena32affb2008-08-28 17:53:09 +00006989 MachineBasicBlock *BB,
6990 bool is8bit, // operation
Dan Gohman747e55b2009-02-07 16:15:20 +00006991 unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006992 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christophercccae792015-01-30 22:02:31 +00006993 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Dale Johannesena32affb2008-08-28 17:53:09 +00006994 // In 64 bit mode we have to use 64 bits for addresses, even though the
6995 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
6996 // registers without caring whether they're 32 or 64, but here we're
6997 // doing actual arithmetic on the addresses.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006998 bool is64bit = Subtarget.isPPC64();
Hal Finkelf70c41e2013-03-21 23:45:03 +00006999 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesena32affb2008-08-28 17:53:09 +00007000
7001 const BasicBlock *LLVM_BB = BB->getBasicBlock();
7002 MachineFunction *F = BB->getParent();
7003 MachineFunction::iterator It = BB;
7004 ++It;
7005
7006 unsigned dest = MI->getOperand(0).getReg();
7007 unsigned ptrA = MI->getOperand(1).getReg();
7008 unsigned ptrB = MI->getOperand(2).getReg();
7009 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00007010 DebugLoc dl = MI->getDebugLoc();
Dale Johannesena32affb2008-08-28 17:53:09 +00007011
7012 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
7013 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
7014 F->insert(It, loopMBB);
7015 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007016 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007017 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007018 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesena32affb2008-08-28 17:53:09 +00007019
7020 MachineRegisterInfo &RegInfo = F->getRegInfo();
Craig Topper61e88f42014-11-21 05:58:21 +00007021 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
7022 : &PPC::GPRCRegClass;
Dale Johannesena32affb2008-08-28 17:53:09 +00007023 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
7024 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
7025 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
7026 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
7027 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
7028 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
7029 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
7030 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
7031 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
7032 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007033 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00007034 unsigned Ptr1Reg;
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007035 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00007036
7037 // thisMBB:
7038 // ...
7039 // fallthrough --> loopMBB
7040 BB->addSuccessor(loopMBB);
7041
7042 // The 4-byte load must be aligned, while a char or short may be
7043 // anywhere in the word. Hence all this nasty bookkeeping code.
7044 // add ptr1, ptrA, ptrB [copy if ptrA==0]
7045 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00007046 // xori shift, shift1, 24 [16]
Dale Johannesena32affb2008-08-28 17:53:09 +00007047 // rlwinm ptr, ptr1, 0, 0, 29
7048 // slw incr2, incr, shift
7049 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
7050 // slw mask, mask2, shift
7051 // loopMBB:
Dale Johannesen340d2642008-08-30 00:08:53 +00007052 // lwarx tmpDest, ptr
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007053 // add tmp, tmpDest, incr2
7054 // andc tmp2, tmpDest, mask
Dale Johannesena32affb2008-08-28 17:53:09 +00007055 // and tmp3, tmp, mask
7056 // or tmp4, tmp3, tmp2
Dale Johannesen340d2642008-08-30 00:08:53 +00007057 // stwcx. tmp4, ptr
Dale Johannesena32affb2008-08-28 17:53:09 +00007058 // bne- loopMBB
7059 // fallthrough --> exitMBB
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007060 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007061 if (ptrA != ZeroReg) {
Dale Johannesena32affb2008-08-28 17:53:09 +00007062 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007063 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007064 .addReg(ptrA).addReg(ptrB);
7065 } else {
7066 Ptr1Reg = ptrB;
7067 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007068 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007069 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007070 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007071 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
7072 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007073 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007074 .addReg(Ptr1Reg).addImm(0).addImm(61);
7075 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00007076 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007077 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007078 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007079 .addReg(incr).addReg(ShiftReg);
7080 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007081 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesena32affb2008-08-28 17:53:09 +00007082 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00007083 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
7084 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesena32affb2008-08-28 17:53:09 +00007085 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007086 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007087 .addReg(Mask2Reg).addReg(ShiftReg);
7088
7089 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007090 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007091 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007092 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007093 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007094 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007095 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007096 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007097 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007098 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007099 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00007100 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidt3581cd42013-04-02 18:37:08 +00007101 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007102 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007103 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00007104 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesena32affb2008-08-28 17:53:09 +00007105 BB->addSuccessor(loopMBB);
7106 BB->addSuccessor(exitMBB);
7107
7108 // exitMBB:
7109 // ...
7110 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00007111 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
7112 .addReg(ShiftReg);
Dale Johannesena32affb2008-08-28 17:53:09 +00007113 return BB;
7114}
7115
Hal Finkel756810f2013-03-21 21:37:52 +00007116llvm::MachineBasicBlock*
7117PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
7118 MachineBasicBlock *MBB) const {
7119 DebugLoc DL = MI->getDebugLoc();
Eric Christophercccae792015-01-30 22:02:31 +00007120 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00007121
7122 MachineFunction *MF = MBB->getParent();
7123 MachineRegisterInfo &MRI = MF->getRegInfo();
7124
7125 const BasicBlock *BB = MBB->getBasicBlock();
7126 MachineFunction::iterator I = MBB;
7127 ++I;
7128
7129 // Memory Reference
7130 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
7131 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
7132
7133 unsigned DstReg = MI->getOperand(0).getReg();
7134 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
7135 assert(RC->hasType(MVT::i32) && "Invalid destination!");
7136 unsigned mainDstReg = MRI.createVirtualRegister(RC);
7137 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
7138
7139 MVT PVT = getPointerTy();
7140 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
7141 "Invalid Pointer Size!");
7142 // For v = setjmp(buf), we generate
7143 //
7144 // thisMBB:
7145 // SjLjSetup mainMBB
7146 // bl mainMBB
7147 // v_restore = 1
7148 // b sinkMBB
7149 //
7150 // mainMBB:
7151 // buf[LabelOffset] = LR
7152 // v_main = 0
7153 //
7154 // sinkMBB:
7155 // v = phi(main, restore)
7156 //
7157
7158 MachineBasicBlock *thisMBB = MBB;
7159 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
7160 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
7161 MF->insert(I, mainMBB);
7162 MF->insert(I, sinkMBB);
7163
7164 MachineInstrBuilder MIB;
7165
7166 // Transfer the remainder of BB and its successor edges to sinkMBB.
7167 sinkMBB->splice(sinkMBB->begin(), MBB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007168 std::next(MachineBasicBlock::iterator(MI)), MBB->end());
Hal Finkel756810f2013-03-21 21:37:52 +00007169 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
7170
7171 // Note that the structure of the jmp_buf used here is not compatible
7172 // with that used by libc, and is not designed to be. Specifically, it
7173 // stores only those 'reserved' registers that LLVM does not otherwise
7174 // understand how to spill. Also, by convention, by the time this
7175 // intrinsic is called, Clang has already stored the frame address in the
7176 // first slot of the buffer and stack address in the third. Following the
7177 // X86 target code, we'll store the jump address in the second slot. We also
7178 // need to save the TOC pointer (R2) to handle jumps between shared
7179 // libraries, and that will be stored in the fourth slot. The thread
7180 // identifier (R13) is not affected.
7181
7182 // thisMBB:
7183 const int64_t LabelOffset = 1 * PVT.getStoreSize();
7184 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00007185 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00007186
7187 // Prepare IP either in reg.
7188 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
7189 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
7190 unsigned BufReg = MI->getOperand(1).getReg();
7191
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007192 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) {
Hal Finkel756810f2013-03-21 21:37:52 +00007193 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
7194 .addReg(PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007195 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007196 .addReg(BufReg);
Hal Finkel756810f2013-03-21 21:37:52 +00007197 MIB.setMemRefs(MMOBegin, MMOEnd);
7198 }
7199
Hal Finkelf05d6c72013-07-17 23:50:51 +00007200 // Naked functions never have a base pointer, and so we use r1. For all
7201 // other functions, this decision must be delayed until during PEI.
7202 unsigned BaseReg;
7203 if (MF->getFunction()->getAttributes().hasAttribute(
7204 AttributeSet::FunctionIndex, Attribute::Naked))
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007205 BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
Hal Finkelf05d6c72013-07-17 23:50:51 +00007206 else
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007207 BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP;
Hal Finkelf05d6c72013-07-17 23:50:51 +00007208
7209 MIB = BuildMI(*thisMBB, MI, DL,
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007210 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW))
Eric Christophercccae792015-01-30 22:02:31 +00007211 .addReg(BaseReg)
7212 .addImm(BPOffset)
7213 .addReg(BufReg);
Hal Finkelf05d6c72013-07-17 23:50:51 +00007214 MIB.setMemRefs(MMOBegin, MMOEnd);
7215
Hal Finkel756810f2013-03-21 21:37:52 +00007216 // Setup
Hal Finkele5680b32013-04-04 22:55:54 +00007217 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Eric Christophercccae792015-01-30 22:02:31 +00007218 const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo();
Bill Wendling5e7656b2013-06-07 07:55:53 +00007219 MIB.addRegMask(TRI->getNoPreservedMask());
Hal Finkel756810f2013-03-21 21:37:52 +00007220
7221 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
7222
7223 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
7224 .addMBB(mainMBB);
7225 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
7226
7227 thisMBB->addSuccessor(mainMBB, /* weight */ 0);
7228 thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
7229
7230 // mainMBB:
7231 // mainDstReg = 0
Eric Christophercccae792015-01-30 22:02:31 +00007232 MIB =
7233 BuildMI(mainMBB, DL,
7234 TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
Hal Finkel756810f2013-03-21 21:37:52 +00007235
7236 // Store IP
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007237 if (Subtarget.isPPC64()) {
Hal Finkel756810f2013-03-21 21:37:52 +00007238 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
7239 .addReg(LabelReg)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007240 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007241 .addReg(BufReg);
7242 } else {
7243 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
7244 .addReg(LabelReg)
7245 .addImm(LabelOffset)
7246 .addReg(BufReg);
7247 }
7248
7249 MIB.setMemRefs(MMOBegin, MMOEnd);
7250
7251 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
7252 mainMBB->addSuccessor(sinkMBB);
7253
7254 // sinkMBB:
7255 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
7256 TII->get(PPC::PHI), DstReg)
7257 .addReg(mainDstReg).addMBB(mainMBB)
7258 .addReg(restoreDstReg).addMBB(thisMBB);
7259
7260 MI->eraseFromParent();
7261 return sinkMBB;
7262}
7263
7264MachineBasicBlock *
7265PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
7266 MachineBasicBlock *MBB) const {
7267 DebugLoc DL = MI->getDebugLoc();
Eric Christophercccae792015-01-30 22:02:31 +00007268 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00007269
7270 MachineFunction *MF = MBB->getParent();
7271 MachineRegisterInfo &MRI = MF->getRegInfo();
7272
7273 // Memory Reference
7274 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
7275 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
7276
7277 MVT PVT = getPointerTy();
7278 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
7279 "Invalid Pointer Size!");
7280
7281 const TargetRegisterClass *RC =
7282 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
7283 unsigned Tmp = MRI.createVirtualRegister(RC);
7284 // Since FP is only updated here but NOT referenced, it's treated as GPR.
7285 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
7286 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
Eric Christophercccae792015-01-30 22:02:31 +00007287 unsigned BP =
7288 (PVT == MVT::i64)
7289 ? PPC::X30
7290 : (Subtarget.isSVR4ABI() &&
7291 MF->getTarget().getRelocationModel() == Reloc::PIC_
7292 ? PPC::R29
7293 : PPC::R30);
Hal Finkel756810f2013-03-21 21:37:52 +00007294
7295 MachineInstrBuilder MIB;
7296
7297 const int64_t LabelOffset = 1 * PVT.getStoreSize();
7298 const int64_t SPOffset = 2 * PVT.getStoreSize();
7299 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00007300 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00007301
7302 unsigned BufReg = MI->getOperand(0).getReg();
7303
7304 // Reload FP (the jumped-to function may not have had a
7305 // frame pointer, and if so, then its r31 will be restored
7306 // as necessary).
7307 if (PVT == MVT::i64) {
7308 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
7309 .addImm(0)
7310 .addReg(BufReg);
7311 } else {
7312 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
7313 .addImm(0)
7314 .addReg(BufReg);
7315 }
7316 MIB.setMemRefs(MMOBegin, MMOEnd);
7317
7318 // Reload IP
7319 if (PVT == MVT::i64) {
7320 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007321 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007322 .addReg(BufReg);
7323 } else {
7324 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
7325 .addImm(LabelOffset)
7326 .addReg(BufReg);
7327 }
7328 MIB.setMemRefs(MMOBegin, MMOEnd);
7329
7330 // Reload SP
7331 if (PVT == MVT::i64) {
7332 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007333 .addImm(SPOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007334 .addReg(BufReg);
7335 } else {
7336 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
7337 .addImm(SPOffset)
7338 .addReg(BufReg);
7339 }
7340 MIB.setMemRefs(MMOBegin, MMOEnd);
7341
Hal Finkelf05d6c72013-07-17 23:50:51 +00007342 // Reload BP
7343 if (PVT == MVT::i64) {
7344 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
7345 .addImm(BPOffset)
7346 .addReg(BufReg);
7347 } else {
7348 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
7349 .addImm(BPOffset)
7350 .addReg(BufReg);
7351 }
7352 MIB.setMemRefs(MMOBegin, MMOEnd);
Hal Finkel756810f2013-03-21 21:37:52 +00007353
7354 // Reload TOC
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007355 if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) {
Hal Finkel756810f2013-03-21 21:37:52 +00007356 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00007357 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00007358 .addReg(BufReg);
7359
7360 MIB.setMemRefs(MMOBegin, MMOEnd);
7361 }
7362
7363 // Jump
7364 BuildMI(*MBB, MI, DL,
7365 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
7366 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
7367
7368 MI->eraseFromParent();
7369 return MBB;
7370}
7371
Dale Johannesena32affb2008-08-28 17:53:09 +00007372MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00007373PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00007374 MachineBasicBlock *BB) const {
Hal Finkel934361a2015-01-14 01:07:51 +00007375 if (MI->getOpcode() == TargetOpcode::STACKMAP ||
Hal Finkelaf519932015-01-19 07:20:27 +00007376 MI->getOpcode() == TargetOpcode::PATCHPOINT) {
7377 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI() &&
7378 MI->getOpcode() == TargetOpcode::PATCHPOINT) {
7379 // Call lowering should have added an r2 operand to indicate a dependence
7380 // on the TOC base pointer value. It can't however, because there is no
7381 // way to mark the dependence as implicit there, and so the stackmap code
7382 // will confuse it with a regular operand. Instead, add the dependence
7383 // here.
7384 MI->addOperand(MachineOperand::CreateReg(PPC::X2, false, true));
7385 }
7386
Hal Finkel934361a2015-01-14 01:07:51 +00007387 return emitPatchPoint(MI, BB);
Hal Finkelaf519932015-01-19 07:20:27 +00007388 }
Hal Finkel934361a2015-01-14 01:07:51 +00007389
Hal Finkel756810f2013-03-21 21:37:52 +00007390 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
7391 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
7392 return emitEHSjLjSetJmp(MI, BB);
7393 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
7394 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
7395 return emitEHSjLjLongJmp(MI, BB);
7396 }
7397
Eric Christophercccae792015-01-30 22:02:31 +00007398 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Evan Cheng32e376f2008-07-12 02:23:19 +00007399
7400 // To "insert" these instructions we actually have to insert their
7401 // control-flow patterns.
Chris Lattner9b577f12005-08-26 21:23:58 +00007402 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman3b460302008-07-07 23:14:23 +00007403 MachineFunction::iterator It = BB;
Chris Lattner9b577f12005-08-26 21:23:58 +00007404 ++It;
Evan Cheng32e376f2008-07-12 02:23:19 +00007405
Dan Gohman3b460302008-07-07 23:14:23 +00007406 MachineFunction *F = BB->getParent();
Evan Cheng32e376f2008-07-12 02:23:19 +00007407
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007408 if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
Eric Christophercccae792015-01-30 22:02:31 +00007409 MI->getOpcode() == PPC::SELECT_CC_I8 ||
7410 MI->getOpcode() == PPC::SELECT_I4 ||
7411 MI->getOpcode() == PPC::SELECT_I8)) {
Hal Finkeled6a2852013-04-05 23:29:01 +00007412 SmallVector<MachineOperand, 2> Cond;
Hal Finkel940ab932014-02-28 00:27:01 +00007413 if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7414 MI->getOpcode() == PPC::SELECT_CC_I8)
7415 Cond.push_back(MI->getOperand(4));
7416 else
7417 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
Hal Finkeled6a2852013-04-05 23:29:01 +00007418 Cond.push_back(MI->getOperand(1));
7419
Hal Finkel460e94d2012-06-22 23:10:08 +00007420 DebugLoc dl = MI->getDebugLoc();
Bill Wendling5e7656b2013-06-07 07:55:53 +00007421 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
7422 Cond, MI->getOperand(2).getReg(),
7423 MI->getOperand(3).getReg());
Hal Finkel460e94d2012-06-22 23:10:08 +00007424 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7425 MI->getOpcode() == PPC::SELECT_CC_I8 ||
7426 MI->getOpcode() == PPC::SELECT_CC_F4 ||
7427 MI->getOpcode() == PPC::SELECT_CC_F8 ||
Hal Finkel940ab932014-02-28 00:27:01 +00007428 MI->getOpcode() == PPC::SELECT_CC_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00007429 MI->getOpcode() == PPC::SELECT_CC_VSFRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007430 MI->getOpcode() == PPC::SELECT_CC_VSRC ||
Hal Finkel940ab932014-02-28 00:27:01 +00007431 MI->getOpcode() == PPC::SELECT_I4 ||
7432 MI->getOpcode() == PPC::SELECT_I8 ||
7433 MI->getOpcode() == PPC::SELECT_F4 ||
7434 MI->getOpcode() == PPC::SELECT_F8 ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007435 MI->getOpcode() == PPC::SELECT_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00007436 MI->getOpcode() == PPC::SELECT_VSFRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007437 MI->getOpcode() == PPC::SELECT_VSRC) {
Evan Cheng32e376f2008-07-12 02:23:19 +00007438 // The incoming instruction knows the destination vreg to set, the
7439 // condition code register to branch on, the true/false values to
7440 // select between, and a branch opcode to use.
7441
7442 // thisMBB:
7443 // ...
7444 // TrueVal = ...
7445 // cmpTY ccX, r1, r2
7446 // bCC copy1MBB
7447 // fallthrough --> copy0MBB
7448 MachineBasicBlock *thisMBB = BB;
7449 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7450 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007451 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00007452 F->insert(It, copy0MBB);
7453 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007454
7455 // Transfer the remainder of BB and its successor edges to sinkMBB.
7456 sinkMBB->splice(sinkMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007457 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007458 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7459
Evan Cheng32e376f2008-07-12 02:23:19 +00007460 // Next, add the true and fallthrough blocks as its successors.
7461 BB->addSuccessor(copy0MBB);
7462 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007463
Hal Finkel940ab932014-02-28 00:27:01 +00007464 if (MI->getOpcode() == PPC::SELECT_I4 ||
7465 MI->getOpcode() == PPC::SELECT_I8 ||
7466 MI->getOpcode() == PPC::SELECT_F4 ||
7467 MI->getOpcode() == PPC::SELECT_F8 ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007468 MI->getOpcode() == PPC::SELECT_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00007469 MI->getOpcode() == PPC::SELECT_VSFRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00007470 MI->getOpcode() == PPC::SELECT_VSRC) {
Hal Finkel940ab932014-02-28 00:27:01 +00007471 BuildMI(BB, dl, TII->get(PPC::BC))
7472 .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7473 } else {
7474 unsigned SelectPred = MI->getOperand(4).getImm();
7475 BuildMI(BB, dl, TII->get(PPC::BCC))
7476 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7477 }
Dan Gohman34396292010-07-06 20:24:04 +00007478
Evan Cheng32e376f2008-07-12 02:23:19 +00007479 // copy0MBB:
7480 // %FalseValue = ...
7481 // # fallthrough to sinkMBB
7482 BB = copy0MBB;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007483
Evan Cheng32e376f2008-07-12 02:23:19 +00007484 // Update machine-CFG edges
7485 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007486
Evan Cheng32e376f2008-07-12 02:23:19 +00007487 // sinkMBB:
7488 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7489 // ...
7490 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00007491 BuildMI(*BB, BB->begin(), dl,
7492 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng32e376f2008-07-12 02:23:19 +00007493 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
7494 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
Hal Finkelbbdee932014-12-02 22:01:00 +00007495 } else if (MI->getOpcode() == PPC::ReadTB) {
7496 // To read the 64-bit time-base register on a 32-bit target, we read the
7497 // two halves. Should the counter have wrapped while it was being read, we
7498 // need to try again.
7499 // ...
7500 // readLoop:
7501 // mfspr Rx,TBU # load from TBU
7502 // mfspr Ry,TB # load from TB
7503 // mfspr Rz,TBU # load from TBU
7504 // cmpw crX,Rx,Rz # check if ‘old’=’new’
7505 // bne readLoop # branch if they're not equal
7506 // ...
7507
7508 MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB);
7509 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
7510 DebugLoc dl = MI->getDebugLoc();
7511 F->insert(It, readMBB);
7512 F->insert(It, sinkMBB);
7513
7514 // Transfer the remainder of BB and its successor edges to sinkMBB.
7515 sinkMBB->splice(sinkMBB->begin(), BB,
7516 std::next(MachineBasicBlock::iterator(MI)), BB->end());
7517 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7518
7519 BB->addSuccessor(readMBB);
7520 BB = readMBB;
7521
7522 MachineRegisterInfo &RegInfo = F->getRegInfo();
7523 unsigned ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
7524 unsigned LoReg = MI->getOperand(0).getReg();
7525 unsigned HiReg = MI->getOperand(1).getReg();
7526
7527 BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269);
7528 BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268);
7529 BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269);
7530
7531 unsigned CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
7532
7533 BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg)
7534 .addReg(HiReg).addReg(ReadAgainReg);
7535 BuildMI(BB, dl, TII->get(PPC::BCC))
7536 .addImm(PPC::PRED_NE).addReg(CmpReg).addMBB(readMBB);
7537
7538 BB->addSuccessor(readMBB);
7539 BB->addSuccessor(sinkMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007540 }
Dale Johannesena32affb2008-08-28 17:53:09 +00007541 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
7542 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
7543 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
7544 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007545 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
7546 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
7547 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
7548 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007549
7550 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
7551 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
7552 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
7553 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007554 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
7555 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
7556 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
7557 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007558
7559 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
7560 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
7561 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
7562 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007563 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
7564 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
7565 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
7566 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007567
7568 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
7569 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
7570 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
7571 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007572 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
7573 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
7574 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
7575 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007576
7577 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007578 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND);
Dale Johannesena32affb2008-08-28 17:53:09 +00007579 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007580 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007581 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007582 BB = EmitAtomicBinary(MI, BB, false, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007583 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007584 BB = EmitAtomicBinary(MI, BB, true, PPC::NAND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007585
7586 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
7587 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
7588 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
7589 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007590 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
7591 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
7592 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
7593 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007594
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007595 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
7596 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
7597 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
7598 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
7599 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
7600 BB = EmitAtomicBinary(MI, BB, false, 0);
7601 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
7602 BB = EmitAtomicBinary(MI, BB, true, 0);
7603
Evan Cheng32e376f2008-07-12 02:23:19 +00007604 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
7605 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
7606 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
7607
7608 unsigned dest = MI->getOperand(0).getReg();
7609 unsigned ptrA = MI->getOperand(1).getReg();
7610 unsigned ptrB = MI->getOperand(2).getReg();
7611 unsigned oldval = MI->getOperand(3).getReg();
7612 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00007613 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00007614
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007615 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7616 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7617 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007618 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007619 F->insert(It, loop1MBB);
7620 F->insert(It, loop2MBB);
7621 F->insert(It, midMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007622 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007623 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007624 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007625 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007626
7627 // thisMBB:
7628 // ...
7629 // fallthrough --> loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007630 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007631
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007632 // loop1MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00007633 // l[wd]arx dest, ptr
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007634 // cmp[wd] dest, oldval
7635 // bne- midMBB
7636 // loop2MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00007637 // st[wd]cx. newval, ptr
7638 // bne- loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007639 // b exitBB
7640 // midMBB:
7641 // st[wd]cx. dest, ptr
7642 // exitBB:
7643 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007644 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng32e376f2008-07-12 02:23:19 +00007645 .addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007646 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng32e376f2008-07-12 02:23:19 +00007647 .addReg(oldval).addReg(dest);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007648 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007649 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7650 BB->addSuccessor(loop2MBB);
7651 BB->addSuccessor(midMBB);
7652
7653 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007654 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng32e376f2008-07-12 02:23:19 +00007655 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007656 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007657 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007658 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007659 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007660 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007661
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007662 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007663 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007664 .addReg(dest).addReg(ptrA).addReg(ptrB);
7665 BB->addSuccessor(exitMBB);
7666
Evan Cheng32e376f2008-07-12 02:23:19 +00007667 // exitMBB:
7668 // ...
7669 BB = exitMBB;
Dale Johannesen340d2642008-08-30 00:08:53 +00007670 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
7671 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
7672 // We must use 64-bit registers for addresses when targeting 64-bit,
7673 // since we're actually doing arithmetic on them. Other registers
7674 // can be 32-bit.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007675 bool is64bit = Subtarget.isPPC64();
Dale Johannesen340d2642008-08-30 00:08:53 +00007676 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
7677
7678 unsigned dest = MI->getOperand(0).getReg();
7679 unsigned ptrA = MI->getOperand(1).getReg();
7680 unsigned ptrB = MI->getOperand(2).getReg();
7681 unsigned oldval = MI->getOperand(3).getReg();
7682 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00007683 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen340d2642008-08-30 00:08:53 +00007684
7685 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7686 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7687 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
7688 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
7689 F->insert(It, loop1MBB);
7690 F->insert(It, loop2MBB);
7691 F->insert(It, midMBB);
7692 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007693 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007694 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007695 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen340d2642008-08-30 00:08:53 +00007696
7697 MachineRegisterInfo &RegInfo = F->getRegInfo();
Craig Topper61e88f42014-11-21 05:58:21 +00007698 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
7699 : &PPC::GPRCRegClass;
Dale Johannesen340d2642008-08-30 00:08:53 +00007700 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
7701 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
7702 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
7703 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
7704 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
7705 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
7706 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
7707 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
7708 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
7709 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
7710 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
7711 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
7712 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
7713 unsigned Ptr1Reg;
7714 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkelf70c41e2013-03-21 23:45:03 +00007715 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen340d2642008-08-30 00:08:53 +00007716 // thisMBB:
7717 // ...
7718 // fallthrough --> loopMBB
7719 BB->addSuccessor(loop1MBB);
7720
7721 // The 4-byte load must be aligned, while a char or short may be
7722 // anywhere in the word. Hence all this nasty bookkeeping code.
7723 // add ptr1, ptrA, ptrB [copy if ptrA==0]
7724 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00007725 // xori shift, shift1, 24 [16]
Dale Johannesen340d2642008-08-30 00:08:53 +00007726 // rlwinm ptr, ptr1, 0, 0, 29
7727 // slw newval2, newval, shift
7728 // slw oldval2, oldval,shift
7729 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
7730 // slw mask, mask2, shift
7731 // and newval3, newval2, mask
7732 // and oldval3, oldval2, mask
7733 // loop1MBB:
7734 // lwarx tmpDest, ptr
7735 // and tmp, tmpDest, mask
7736 // cmpw tmp, oldval3
7737 // bne- midMBB
7738 // loop2MBB:
7739 // andc tmp2, tmpDest, mask
7740 // or tmp4, tmp2, newval3
7741 // stwcx. tmp4, ptr
7742 // bne- loop1MBB
7743 // b exitBB
7744 // midMBB:
7745 // stwcx. tmpDest, ptr
7746 // exitBB:
7747 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007748 if (ptrA != ZeroReg) {
Dale Johannesen340d2642008-08-30 00:08:53 +00007749 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007750 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007751 .addReg(ptrA).addReg(ptrB);
7752 } else {
7753 Ptr1Reg = ptrB;
7754 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007755 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007756 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007757 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007758 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
7759 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007760 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007761 .addReg(Ptr1Reg).addImm(0).addImm(61);
7762 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00007763 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007764 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007765 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007766 .addReg(newval).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007767 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007768 .addReg(oldval).addReg(ShiftReg);
7769 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007770 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen340d2642008-08-30 00:08:53 +00007771 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00007772 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
7773 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
7774 .addReg(Mask3Reg).addImm(65535);
Dale Johannesen340d2642008-08-30 00:08:53 +00007775 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007776 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007777 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007778 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007779 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007780 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007781 .addReg(OldVal2Reg).addReg(MaskReg);
7782
7783 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007784 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007785 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007786 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
7787 .addReg(TmpDestReg).addReg(MaskReg);
7788 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesen340d2642008-08-30 00:08:53 +00007789 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007790 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00007791 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7792 BB->addSuccessor(loop2MBB);
7793 BB->addSuccessor(midMBB);
7794
7795 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007796 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
7797 .addReg(TmpDestReg).addReg(MaskReg);
7798 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
7799 .addReg(Tmp2Reg).addReg(NewVal3Reg);
7800 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007801 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007802 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00007803 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007804 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen340d2642008-08-30 00:08:53 +00007805 BB->addSuccessor(loop1MBB);
7806 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007807
Dale Johannesen340d2642008-08-30 00:08:53 +00007808 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007809 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007810 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00007811 BB->addSuccessor(exitMBB);
7812
7813 // exitMBB:
7814 // ...
7815 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00007816 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
7817 .addReg(ShiftReg);
Ulrich Weigand874fc622013-03-26 10:56:22 +00007818 } else if (MI->getOpcode() == PPC::FADDrtz) {
7819 // This pseudo performs an FADD with rounding mode temporarily forced
7820 // to round-to-zero. We emit this via custom inserter since the FPSCR
7821 // is not modeled at the SelectionDAG level.
7822 unsigned Dest = MI->getOperand(0).getReg();
7823 unsigned Src1 = MI->getOperand(1).getReg();
7824 unsigned Src2 = MI->getOperand(2).getReg();
7825 DebugLoc dl = MI->getDebugLoc();
7826
7827 MachineRegisterInfo &RegInfo = F->getRegInfo();
7828 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
7829
7830 // Save FPSCR value.
7831 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
7832
7833 // Set rounding mode to round-to-zero.
7834 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
7835 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
7836
7837 // Perform addition.
7838 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
7839
7840 // Restore FPSCR value.
Hal Finkel64202162015-01-15 01:00:53 +00007841 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg);
Hal Finkel940ab932014-02-28 00:27:01 +00007842 } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7843 MI->getOpcode() == PPC::ANDIo_1_GT_BIT ||
7844 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7845 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) {
7846 unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7847 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ?
7848 PPC::ANDIo8 : PPC::ANDIo;
7849 bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7850 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8);
7851
7852 MachineRegisterInfo &RegInfo = F->getRegInfo();
7853 unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ?
7854 &PPC::GPRCRegClass :
7855 &PPC::G8RCRegClass);
7856
7857 DebugLoc dl = MI->getDebugLoc();
7858 BuildMI(*BB, MI, dl, TII->get(Opcode), Dest)
7859 .addReg(MI->getOperand(1).getReg()).addImm(1);
7860 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY),
7861 MI->getOperand(0).getReg())
7862 .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT);
Dale Johannesen340d2642008-08-30 00:08:53 +00007863 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00007864 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng32e376f2008-07-12 02:23:19 +00007865 }
Chris Lattner9b577f12005-08-26 21:23:58 +00007866
Dan Gohman34396292010-07-06 20:24:04 +00007867 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner9b577f12005-08-26 21:23:58 +00007868 return BB;
7869}
7870
Chris Lattner4211ca92006-04-14 06:01:58 +00007871//===----------------------------------------------------------------------===//
7872// Target Optimization Hooks
7873//===----------------------------------------------------------------------===//
7874
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007875SDValue PPCTargetLowering::getRsqrtEstimate(SDValue Operand,
7876 DAGCombinerInfo &DCI,
Sanjay Patel957efc232014-10-24 17:02:16 +00007877 unsigned &RefinementSteps,
7878 bool &UseOneConstNR) const {
Sanjay Patelbdf1e382014-09-26 23:01:47 +00007879 EVT VT = Operand.getValueType();
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007880 if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) ||
Eric Christophercccae792015-01-30 22:02:31 +00007881 (VT == MVT::f64 && Subtarget.hasFRSQRTE()) ||
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007882 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7883 (VT == MVT::v2f64 && Subtarget.hasVSX())) {
Hal Finkel2e103312013-04-03 04:01:11 +00007884 // Convergence is quadratic, so we essentially double the number of digits
Sanjay Patelbdf1e382014-09-26 23:01:47 +00007885 // correct after every iteration. For both FRE and FRSQRTE, the minimum
7886 // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
7887 // 2^-14. IEEE float has 23 digits and double has 52 digits.
7888 RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00007889 if (VT.getScalarType() == MVT::f64)
Sanjay Patelbdf1e382014-09-26 23:01:47 +00007890 ++RefinementSteps;
Sanjay Patel957efc232014-10-24 17:02:16 +00007891 UseOneConstNR = true;
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007892 return DCI.DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand);
Hal Finkel2e103312013-04-03 04:01:11 +00007893 }
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007894 return SDValue();
7895}
7896
7897SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand,
7898 DAGCombinerInfo &DCI,
7899 unsigned &RefinementSteps) const {
7900 EVT VT = Operand.getValueType();
7901 if ((VT == MVT::f32 && Subtarget.hasFRES()) ||
Eric Christophercccae792015-01-30 22:02:31 +00007902 (VT == MVT::f64 && Subtarget.hasFRE()) ||
Sanjay Patel8fde95c2014-09-30 20:28:48 +00007903 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7904 (VT == MVT::v2f64 && Subtarget.hasVSX())) {
7905 // Convergence is quadratic, so we essentially double the number of digits
7906 // correct after every iteration. For both FRE and FRSQRTE, the minimum
7907 // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
7908 // 2^-14. IEEE float has 23 digits and double has 52 digits.
7909 RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
7910 if (VT.getScalarType() == MVT::f64)
7911 ++RefinementSteps;
7912 return DCI.DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand);
7913 }
7914 return SDValue();
Hal Finkel2e103312013-04-03 04:01:11 +00007915}
7916
Hal Finkel360f2132014-11-24 23:45:21 +00007917bool PPCTargetLowering::combineRepeatedFPDivisors(unsigned NumUsers) const {
7918 // Note: This functionality is used only when unsafe-fp-math is enabled, and
7919 // on cores with reciprocal estimates (which are used when unsafe-fp-math is
7920 // enabled for division), this functionality is redundant with the default
7921 // combiner logic (once the division -> reciprocal/multiply transformation
7922 // has taken place). As a result, this matters more for older cores than for
7923 // newer ones.
7924
7925 // Combine multiple FDIVs with the same divisor into multiple FMULs by the
7926 // reciprocal if there are two or more FDIVs (for embedded cores with only
7927 // one FP pipeline) for three or more FDIVs (for generic OOO cores).
7928 switch (Subtarget.getDarwinDirective()) {
7929 default:
7930 return NumUsers > 2;
7931 case PPC::DIR_440:
7932 case PPC::DIR_A2:
7933 case PPC::DIR_E500mc:
7934 case PPC::DIR_E5500:
7935 return NumUsers > 1;
7936 }
7937}
7938
Hal Finkel3604bf72014-08-01 01:02:01 +00007939static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base,
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007940 unsigned Bytes, int Dist,
7941 SelectionDAG &DAG) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007942 if (VT.getSizeInBits() / 8 != Bytes)
7943 return false;
7944
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007945 SDValue BaseLoc = Base->getBasePtr();
7946 if (Loc.getOpcode() == ISD::FrameIndex) {
7947 if (BaseLoc.getOpcode() != ISD::FrameIndex)
7948 return false;
7949 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7950 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
7951 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
7952 int FS = MFI->getObjectSize(FI);
7953 int BFS = MFI->getObjectSize(BFI);
7954 if (FS != BFS || FS != (int)Bytes) return false;
7955 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
7956 }
7957
7958 // Handle X+C
7959 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
7960 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
7961 return true;
7962
7963 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Craig Topper062a2ba2014-04-25 05:30:21 +00007964 const GlobalValue *GV1 = nullptr;
7965 const GlobalValue *GV2 = nullptr;
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007966 int64_t Offset1 = 0;
7967 int64_t Offset2 = 0;
7968 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
7969 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
7970 if (isGA1 && isGA2 && GV1 == GV2)
7971 return Offset1 == (Offset2 + Dist*Bytes);
7972 return false;
7973}
7974
Hal Finkel3604bf72014-08-01 01:02:01 +00007975// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
7976// not enforce equality of the chain operands.
7977static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base,
7978 unsigned Bytes, int Dist,
7979 SelectionDAG &DAG) {
7980 if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) {
7981 EVT VT = LS->getMemoryVT();
7982 SDValue Loc = LS->getBasePtr();
7983 return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG);
7984 }
7985
7986 if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
7987 EVT VT;
7988 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7989 default: return false;
7990 case Intrinsic::ppc_altivec_lvx:
7991 case Intrinsic::ppc_altivec_lvxl:
Bill Schmidt72954782014-11-12 04:19:40 +00007992 case Intrinsic::ppc_vsx_lxvw4x:
Hal Finkel3604bf72014-08-01 01:02:01 +00007993 VT = MVT::v4i32;
7994 break;
Bill Schmidt72954782014-11-12 04:19:40 +00007995 case Intrinsic::ppc_vsx_lxvd2x:
7996 VT = MVT::v2f64;
7997 break;
Hal Finkel3604bf72014-08-01 01:02:01 +00007998 case Intrinsic::ppc_altivec_lvebx:
7999 VT = MVT::i8;
8000 break;
8001 case Intrinsic::ppc_altivec_lvehx:
8002 VT = MVT::i16;
8003 break;
8004 case Intrinsic::ppc_altivec_lvewx:
8005 VT = MVT::i32;
8006 break;
8007 }
8008
8009 return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG);
8010 }
8011
8012 if (N->getOpcode() == ISD::INTRINSIC_VOID) {
8013 EVT VT;
8014 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
8015 default: return false;
8016 case Intrinsic::ppc_altivec_stvx:
8017 case Intrinsic::ppc_altivec_stvxl:
Bill Schmidt72954782014-11-12 04:19:40 +00008018 case Intrinsic::ppc_vsx_stxvw4x:
Hal Finkel3604bf72014-08-01 01:02:01 +00008019 VT = MVT::v4i32;
8020 break;
Bill Schmidt72954782014-11-12 04:19:40 +00008021 case Intrinsic::ppc_vsx_stxvd2x:
8022 VT = MVT::v2f64;
8023 break;
Hal Finkel3604bf72014-08-01 01:02:01 +00008024 case Intrinsic::ppc_altivec_stvebx:
8025 VT = MVT::i8;
8026 break;
8027 case Intrinsic::ppc_altivec_stvehx:
8028 VT = MVT::i16;
8029 break;
8030 case Intrinsic::ppc_altivec_stvewx:
8031 VT = MVT::i32;
8032 break;
8033 }
8034
8035 return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG);
8036 }
8037
8038 return false;
8039}
8040
Hal Finkel7d8a6912013-05-26 18:08:30 +00008041// Return true is there is a nearyby consecutive load to the one provided
8042// (regardless of alignment). We search up and down the chain, looking though
Matt Arsenault57e74d22014-07-29 00:02:40 +00008043// token factors and other loads (but nothing else). As a result, a true result
8044// indicates that it is safe to create a new consecutive load adjacent to the
8045// load provided.
Hal Finkel7d8a6912013-05-26 18:08:30 +00008046static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
8047 SDValue Chain = LD->getChain();
8048 EVT VT = LD->getMemoryVT();
8049
8050 SmallSet<SDNode *, 16> LoadRoots;
8051 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
8052 SmallSet<SDNode *, 16> Visited;
8053
8054 // First, search up the chain, branching to follow all token-factor operands.
8055 // If we find a consecutive load, then we're done, otherwise, record all
8056 // nodes just above the top-level loads and token factors.
8057 while (!Queue.empty()) {
8058 SDNode *ChainNext = Queue.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +00008059 if (!Visited.insert(ChainNext).second)
Hal Finkel7d8a6912013-05-26 18:08:30 +00008060 continue;
8061
Hal Finkel3604bf72014-08-01 01:02:01 +00008062 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00008063 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00008064 return true;
8065
8066 if (!Visited.count(ChainLD->getChain().getNode()))
8067 Queue.push_back(ChainLD->getChain().getNode());
8068 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
Craig Topper66e588b2014-06-29 00:40:57 +00008069 for (const SDUse &O : ChainNext->ops())
8070 if (!Visited.count(O.getNode()))
8071 Queue.push_back(O.getNode());
Hal Finkel7d8a6912013-05-26 18:08:30 +00008072 } else
8073 LoadRoots.insert(ChainNext);
8074 }
8075
8076 // Second, search down the chain, starting from the top-level nodes recorded
8077 // in the first phase. These top-level nodes are the nodes just above all
8078 // loads and token factors. Starting with their uses, recursively look though
8079 // all loads (just the chain uses) and token factors to find a consecutive
8080 // load.
8081 Visited.clear();
8082 Queue.clear();
8083
8084 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
8085 IE = LoadRoots.end(); I != IE; ++I) {
8086 Queue.push_back(*I);
8087
8088 while (!Queue.empty()) {
8089 SDNode *LoadRoot = Queue.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +00008090 if (!Visited.insert(LoadRoot).second)
Hal Finkel7d8a6912013-05-26 18:08:30 +00008091 continue;
8092
Hal Finkel3604bf72014-08-01 01:02:01 +00008093 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot))
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00008094 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00008095 return true;
8096
8097 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
8098 UE = LoadRoot->use_end(); UI != UE; ++UI)
Hal Finkel3604bf72014-08-01 01:02:01 +00008099 if (((isa<MemSDNode>(*UI) &&
8100 cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
Hal Finkel7d8a6912013-05-26 18:08:30 +00008101 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
8102 Queue.push_back(*UI);
8103 }
8104 }
8105
8106 return false;
8107}
8108
Hal Finkel940ab932014-02-28 00:27:01 +00008109SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N,
8110 DAGCombinerInfo &DCI) const {
8111 SelectionDAG &DAG = DCI.DAG;
8112 SDLoc dl(N);
8113
Eric Christophercccae792015-01-30 22:02:31 +00008114 assert(Subtarget.useCRBits() && "Expecting to be tracking CR bits");
Hal Finkel940ab932014-02-28 00:27:01 +00008115 // If we're tracking CR bits, we need to be careful that we don't have:
8116 // trunc(binary-ops(zext(x), zext(y)))
8117 // or
8118 // trunc(binary-ops(binary-ops(zext(x), zext(y)), ...)
8119 // such that we're unnecessarily moving things into GPRs when it would be
8120 // better to keep them in CR bits.
8121
8122 // Note that trunc here can be an actual i1 trunc, or can be the effective
8123 // truncation that comes from a setcc or select_cc.
8124 if (N->getOpcode() == ISD::TRUNCATE &&
8125 N->getValueType(0) != MVT::i1)
8126 return SDValue();
8127
8128 if (N->getOperand(0).getValueType() != MVT::i32 &&
8129 N->getOperand(0).getValueType() != MVT::i64)
8130 return SDValue();
8131
8132 if (N->getOpcode() == ISD::SETCC ||
8133 N->getOpcode() == ISD::SELECT_CC) {
8134 // If we're looking at a comparison, then we need to make sure that the
8135 // high bits (all except for the first) don't matter the result.
8136 ISD::CondCode CC =
8137 cast<CondCodeSDNode>(N->getOperand(
8138 N->getOpcode() == ISD::SETCC ? 2 : 4))->get();
8139 unsigned OpBits = N->getOperand(0).getValueSizeInBits();
8140
8141 if (ISD::isSignedIntSetCC(CC)) {
8142 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
8143 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
8144 return SDValue();
8145 } else if (ISD::isUnsignedIntSetCC(CC)) {
8146 if (!DAG.MaskedValueIsZero(N->getOperand(0),
8147 APInt::getHighBitsSet(OpBits, OpBits-1)) ||
8148 !DAG.MaskedValueIsZero(N->getOperand(1),
8149 APInt::getHighBitsSet(OpBits, OpBits-1)))
8150 return SDValue();
8151 } else {
8152 // This is neither a signed nor an unsigned comparison, just make sure
8153 // that the high bits are equal.
8154 APInt Op1Zero, Op1One;
8155 APInt Op2Zero, Op2One;
Jay Foada0653a32014-05-14 21:14:37 +00008156 DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One);
8157 DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One);
Hal Finkel940ab932014-02-28 00:27:01 +00008158
8159 // We don't really care about what is known about the first bit (if
8160 // anything), so clear it in all masks prior to comparing them.
8161 Op1Zero.clearBit(0); Op1One.clearBit(0);
8162 Op2Zero.clearBit(0); Op2One.clearBit(0);
8163
8164 if (Op1Zero != Op2Zero || Op1One != Op2One)
8165 return SDValue();
8166 }
8167 }
8168
8169 // We now know that the higher-order bits are irrelevant, we just need to
8170 // make sure that all of the intermediate operations are bit operations, and
8171 // all inputs are extensions.
8172 if (N->getOperand(0).getOpcode() != ISD::AND &&
8173 N->getOperand(0).getOpcode() != ISD::OR &&
8174 N->getOperand(0).getOpcode() != ISD::XOR &&
8175 N->getOperand(0).getOpcode() != ISD::SELECT &&
8176 N->getOperand(0).getOpcode() != ISD::SELECT_CC &&
8177 N->getOperand(0).getOpcode() != ISD::TRUNCATE &&
8178 N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND &&
8179 N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND &&
8180 N->getOperand(0).getOpcode() != ISD::ANY_EXTEND)
8181 return SDValue();
8182
8183 if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) &&
8184 N->getOperand(1).getOpcode() != ISD::AND &&
8185 N->getOperand(1).getOpcode() != ISD::OR &&
8186 N->getOperand(1).getOpcode() != ISD::XOR &&
8187 N->getOperand(1).getOpcode() != ISD::SELECT &&
8188 N->getOperand(1).getOpcode() != ISD::SELECT_CC &&
8189 N->getOperand(1).getOpcode() != ISD::TRUNCATE &&
8190 N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND &&
8191 N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND &&
8192 N->getOperand(1).getOpcode() != ISD::ANY_EXTEND)
8193 return SDValue();
8194
8195 SmallVector<SDValue, 4> Inputs;
8196 SmallVector<SDValue, 8> BinOps, PromOps;
8197 SmallPtrSet<SDNode *, 16> Visited;
8198
8199 for (unsigned i = 0; i < 2; ++i) {
8200 if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8201 N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8202 N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
8203 N->getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
8204 isa<ConstantSDNode>(N->getOperand(i)))
8205 Inputs.push_back(N->getOperand(i));
8206 else
8207 BinOps.push_back(N->getOperand(i));
8208
8209 if (N->getOpcode() == ISD::TRUNCATE)
8210 break;
8211 }
8212
8213 // Visit all inputs, collect all binary operations (and, or, xor and
8214 // select) that are all fed by extensions.
8215 while (!BinOps.empty()) {
8216 SDValue BinOp = BinOps.back();
8217 BinOps.pop_back();
8218
David Blaikie70573dc2014-11-19 07:49:26 +00008219 if (!Visited.insert(BinOp.getNode()).second)
Hal Finkel940ab932014-02-28 00:27:01 +00008220 continue;
8221
8222 PromOps.push_back(BinOp);
8223
8224 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
8225 // The condition of the select is not promoted.
8226 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
8227 continue;
8228 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
8229 continue;
8230
8231 if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8232 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8233 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
8234 BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
8235 isa<ConstantSDNode>(BinOp.getOperand(i))) {
8236 Inputs.push_back(BinOp.getOperand(i));
8237 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
8238 BinOp.getOperand(i).getOpcode() == ISD::OR ||
8239 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
8240 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
8241 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC ||
8242 BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
8243 BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8244 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8245 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) {
8246 BinOps.push_back(BinOp.getOperand(i));
8247 } else {
8248 // We have an input that is not an extension or another binary
8249 // operation; we'll abort this transformation.
8250 return SDValue();
8251 }
8252 }
8253 }
8254
8255 // Make sure that this is a self-contained cluster of operations (which
8256 // is not quite the same thing as saying that everything has only one
8257 // use).
8258 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8259 if (isa<ConstantSDNode>(Inputs[i]))
8260 continue;
8261
8262 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
8263 UE = Inputs[i].getNode()->use_end();
8264 UI != UE; ++UI) {
8265 SDNode *User = *UI;
8266 if (User != N && !Visited.count(User))
8267 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008268
8269 // Make sure that we're not going to promote the non-output-value
8270 // operand(s) or SELECT or SELECT_CC.
8271 // FIXME: Although we could sometimes handle this, and it does occur in
8272 // practice that one of the condition inputs to the select is also one of
8273 // the outputs, we currently can't deal with this.
8274 if (User->getOpcode() == ISD::SELECT) {
8275 if (User->getOperand(0) == Inputs[i])
8276 return SDValue();
8277 } else if (User->getOpcode() == ISD::SELECT_CC) {
8278 if (User->getOperand(0) == Inputs[i] ||
8279 User->getOperand(1) == Inputs[i])
8280 return SDValue();
8281 }
Hal Finkel940ab932014-02-28 00:27:01 +00008282 }
8283 }
8284
8285 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
8286 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
8287 UE = PromOps[i].getNode()->use_end();
8288 UI != UE; ++UI) {
8289 SDNode *User = *UI;
8290 if (User != N && !Visited.count(User))
8291 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008292
8293 // Make sure that we're not going to promote the non-output-value
8294 // operand(s) or SELECT or SELECT_CC.
8295 // FIXME: Although we could sometimes handle this, and it does occur in
8296 // practice that one of the condition inputs to the select is also one of
8297 // the outputs, we currently can't deal with this.
8298 if (User->getOpcode() == ISD::SELECT) {
8299 if (User->getOperand(0) == PromOps[i])
8300 return SDValue();
8301 } else if (User->getOpcode() == ISD::SELECT_CC) {
8302 if (User->getOperand(0) == PromOps[i] ||
8303 User->getOperand(1) == PromOps[i])
8304 return SDValue();
8305 }
Hal Finkel940ab932014-02-28 00:27:01 +00008306 }
8307 }
8308
8309 // Replace all inputs with the extension operand.
8310 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8311 // Constants may have users outside the cluster of to-be-promoted nodes,
8312 // and so we need to replace those as we do the promotions.
8313 if (isa<ConstantSDNode>(Inputs[i]))
8314 continue;
8315 else
8316 DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0));
8317 }
8318
8319 // Replace all operations (these are all the same, but have a different
8320 // (i1) return type). DAG.getNode will validate that the types of
8321 // a binary operator match, so go through the list in reverse so that
8322 // we've likely promoted both operands first. Any intermediate truncations or
8323 // extensions disappear.
8324 while (!PromOps.empty()) {
8325 SDValue PromOp = PromOps.back();
8326 PromOps.pop_back();
8327
8328 if (PromOp.getOpcode() == ISD::TRUNCATE ||
8329 PromOp.getOpcode() == ISD::SIGN_EXTEND ||
8330 PromOp.getOpcode() == ISD::ZERO_EXTEND ||
8331 PromOp.getOpcode() == ISD::ANY_EXTEND) {
8332 if (!isa<ConstantSDNode>(PromOp.getOperand(0)) &&
8333 PromOp.getOperand(0).getValueType() != MVT::i1) {
8334 // The operand is not yet ready (see comment below).
8335 PromOps.insert(PromOps.begin(), PromOp);
8336 continue;
8337 }
8338
8339 SDValue RepValue = PromOp.getOperand(0);
8340 if (isa<ConstantSDNode>(RepValue))
8341 RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue);
8342
8343 DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue);
8344 continue;
8345 }
8346
8347 unsigned C;
8348 switch (PromOp.getOpcode()) {
8349 default: C = 0; break;
8350 case ISD::SELECT: C = 1; break;
8351 case ISD::SELECT_CC: C = 2; break;
8352 }
8353
8354 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
8355 PromOp.getOperand(C).getValueType() != MVT::i1) ||
8356 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
8357 PromOp.getOperand(C+1).getValueType() != MVT::i1)) {
8358 // The to-be-promoted operands of this node have not yet been
8359 // promoted (this should be rare because we're going through the
8360 // list backward, but if one of the operands has several users in
8361 // this cluster of to-be-promoted nodes, it is possible).
8362 PromOps.insert(PromOps.begin(), PromOp);
8363 continue;
8364 }
8365
8366 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
8367 PromOp.getNode()->op_end());
8368
8369 // If there are any constant inputs, make sure they're replaced now.
8370 for (unsigned i = 0; i < 2; ++i)
8371 if (isa<ConstantSDNode>(Ops[C+i]))
8372 Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]);
8373
8374 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +00008375 DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops));
Hal Finkel940ab932014-02-28 00:27:01 +00008376 }
8377
8378 // Now we're left with the initial truncation itself.
8379 if (N->getOpcode() == ISD::TRUNCATE)
8380 return N->getOperand(0);
8381
8382 // Otherwise, this is a comparison. The operands to be compared have just
8383 // changed type (to i1), but everything else is the same.
8384 return SDValue(N, 0);
8385}
8386
8387SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N,
8388 DAGCombinerInfo &DCI) const {
8389 SelectionDAG &DAG = DCI.DAG;
8390 SDLoc dl(N);
8391
Hal Finkel940ab932014-02-28 00:27:01 +00008392 // If we're tracking CR bits, we need to be careful that we don't have:
8393 // zext(binary-ops(trunc(x), trunc(y)))
8394 // or
8395 // zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...)
8396 // such that we're unnecessarily moving things into CR bits that can more
8397 // efficiently stay in GPRs. Note that if we're not certain that the high
8398 // bits are set as required by the final extension, we still may need to do
8399 // some masking to get the proper behavior.
8400
Hal Finkel46043ed2014-03-01 21:36:57 +00008401 // This same functionality is important on PPC64 when dealing with
8402 // 32-to-64-bit extensions; these occur often when 32-bit values are used as
8403 // the return values of functions. Because it is so similar, it is handled
8404 // here as well.
8405
Hal Finkel940ab932014-02-28 00:27:01 +00008406 if (N->getValueType(0) != MVT::i32 &&
8407 N->getValueType(0) != MVT::i64)
8408 return SDValue();
8409
Eric Christophercccae792015-01-30 22:02:31 +00008410 if (!((N->getOperand(0).getValueType() == MVT::i1 && Subtarget.useCRBits()) ||
8411 (N->getOperand(0).getValueType() == MVT::i32 && Subtarget.isPPC64())))
Hal Finkel940ab932014-02-28 00:27:01 +00008412 return SDValue();
8413
8414 if (N->getOperand(0).getOpcode() != ISD::AND &&
8415 N->getOperand(0).getOpcode() != ISD::OR &&
8416 N->getOperand(0).getOpcode() != ISD::XOR &&
8417 N->getOperand(0).getOpcode() != ISD::SELECT &&
8418 N->getOperand(0).getOpcode() != ISD::SELECT_CC)
8419 return SDValue();
8420
8421 SmallVector<SDValue, 4> Inputs;
8422 SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps;
8423 SmallPtrSet<SDNode *, 16> Visited;
8424
8425 // Visit all inputs, collect all binary operations (and, or, xor and
8426 // select) that are all fed by truncations.
8427 while (!BinOps.empty()) {
8428 SDValue BinOp = BinOps.back();
8429 BinOps.pop_back();
8430
David Blaikie70573dc2014-11-19 07:49:26 +00008431 if (!Visited.insert(BinOp.getNode()).second)
Hal Finkel940ab932014-02-28 00:27:01 +00008432 continue;
8433
8434 PromOps.push_back(BinOp);
8435
8436 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
8437 // The condition of the select is not promoted.
8438 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
8439 continue;
8440 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
8441 continue;
8442
8443 if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
8444 isa<ConstantSDNode>(BinOp.getOperand(i))) {
8445 Inputs.push_back(BinOp.getOperand(i));
8446 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
8447 BinOp.getOperand(i).getOpcode() == ISD::OR ||
8448 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
8449 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
8450 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) {
8451 BinOps.push_back(BinOp.getOperand(i));
8452 } else {
8453 // We have an input that is not a truncation or another binary
8454 // operation; we'll abort this transformation.
8455 return SDValue();
8456 }
8457 }
8458 }
8459
Hal Finkel4104a1a2014-12-14 05:53:19 +00008460 // The operands of a select that must be truncated when the select is
8461 // promoted because the operand is actually part of the to-be-promoted set.
8462 DenseMap<SDNode *, EVT> SelectTruncOp[2];
8463
Hal Finkel940ab932014-02-28 00:27:01 +00008464 // Make sure that this is a self-contained cluster of operations (which
8465 // is not quite the same thing as saying that everything has only one
8466 // use).
8467 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8468 if (isa<ConstantSDNode>(Inputs[i]))
8469 continue;
8470
8471 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
8472 UE = Inputs[i].getNode()->use_end();
8473 UI != UE; ++UI) {
8474 SDNode *User = *UI;
8475 if (User != N && !Visited.count(User))
8476 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008477
Hal Finkel4104a1a2014-12-14 05:53:19 +00008478 // If we're going to promote the non-output-value operand(s) or SELECT or
8479 // SELECT_CC, record them for truncation.
Hal Finkel46043ed2014-03-01 21:36:57 +00008480 if (User->getOpcode() == ISD::SELECT) {
8481 if (User->getOperand(0) == Inputs[i])
Hal Finkel4104a1a2014-12-14 05:53:19 +00008482 SelectTruncOp[0].insert(std::make_pair(User,
8483 User->getOperand(0).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008484 } else if (User->getOpcode() == ISD::SELECT_CC) {
Hal Finkel4104a1a2014-12-14 05:53:19 +00008485 if (User->getOperand(0) == Inputs[i])
8486 SelectTruncOp[0].insert(std::make_pair(User,
8487 User->getOperand(0).getValueType()));
8488 if (User->getOperand(1) == Inputs[i])
8489 SelectTruncOp[1].insert(std::make_pair(User,
8490 User->getOperand(1).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008491 }
Hal Finkel940ab932014-02-28 00:27:01 +00008492 }
8493 }
8494
8495 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
8496 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
8497 UE = PromOps[i].getNode()->use_end();
8498 UI != UE; ++UI) {
8499 SDNode *User = *UI;
8500 if (User != N && !Visited.count(User))
8501 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008502
Hal Finkel4104a1a2014-12-14 05:53:19 +00008503 // If we're going to promote the non-output-value operand(s) or SELECT or
8504 // SELECT_CC, record them for truncation.
Hal Finkel46043ed2014-03-01 21:36:57 +00008505 if (User->getOpcode() == ISD::SELECT) {
8506 if (User->getOperand(0) == PromOps[i])
Hal Finkel4104a1a2014-12-14 05:53:19 +00008507 SelectTruncOp[0].insert(std::make_pair(User,
8508 User->getOperand(0).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008509 } else if (User->getOpcode() == ISD::SELECT_CC) {
Hal Finkel4104a1a2014-12-14 05:53:19 +00008510 if (User->getOperand(0) == PromOps[i])
8511 SelectTruncOp[0].insert(std::make_pair(User,
8512 User->getOperand(0).getValueType()));
8513 if (User->getOperand(1) == PromOps[i])
8514 SelectTruncOp[1].insert(std::make_pair(User,
8515 User->getOperand(1).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +00008516 }
Hal Finkel940ab932014-02-28 00:27:01 +00008517 }
8518 }
8519
Hal Finkel46043ed2014-03-01 21:36:57 +00008520 unsigned PromBits = N->getOperand(0).getValueSizeInBits();
Hal Finkel940ab932014-02-28 00:27:01 +00008521 bool ReallyNeedsExt = false;
8522 if (N->getOpcode() != ISD::ANY_EXTEND) {
8523 // If all of the inputs are not already sign/zero extended, then
8524 // we'll still need to do that at the end.
8525 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8526 if (isa<ConstantSDNode>(Inputs[i]))
8527 continue;
8528
8529 unsigned OpBits =
8530 Inputs[i].getOperand(0).getValueSizeInBits();
Hal Finkel46043ed2014-03-01 21:36:57 +00008531 assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
8532
Hal Finkel940ab932014-02-28 00:27:01 +00008533 if ((N->getOpcode() == ISD::ZERO_EXTEND &&
8534 !DAG.MaskedValueIsZero(Inputs[i].getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +00008535 APInt::getHighBitsSet(OpBits,
8536 OpBits-PromBits))) ||
Hal Finkel940ab932014-02-28 00:27:01 +00008537 (N->getOpcode() == ISD::SIGN_EXTEND &&
Hal Finkel46043ed2014-03-01 21:36:57 +00008538 DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) <
8539 (OpBits-(PromBits-1)))) {
Hal Finkel940ab932014-02-28 00:27:01 +00008540 ReallyNeedsExt = true;
8541 break;
8542 }
8543 }
8544 }
8545
8546 // Replace all inputs, either with the truncation operand, or a
8547 // truncation or extension to the final output type.
8548 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8549 // Constant inputs need to be replaced with the to-be-promoted nodes that
8550 // use them because they might have users outside of the cluster of
8551 // promoted nodes.
8552 if (isa<ConstantSDNode>(Inputs[i]))
8553 continue;
8554
8555 SDValue InSrc = Inputs[i].getOperand(0);
8556 if (Inputs[i].getValueType() == N->getValueType(0))
8557 DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc);
8558 else if (N->getOpcode() == ISD::SIGN_EXTEND)
8559 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8560 DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0)));
8561 else if (N->getOpcode() == ISD::ZERO_EXTEND)
8562 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8563 DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0)));
8564 else
8565 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8566 DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0)));
8567 }
8568
8569 // Replace all operations (these are all the same, but have a different
8570 // (promoted) return type). DAG.getNode will validate that the types of
8571 // a binary operator match, so go through the list in reverse so that
8572 // we've likely promoted both operands first.
8573 while (!PromOps.empty()) {
8574 SDValue PromOp = PromOps.back();
8575 PromOps.pop_back();
8576
8577 unsigned C;
8578 switch (PromOp.getOpcode()) {
8579 default: C = 0; break;
8580 case ISD::SELECT: C = 1; break;
8581 case ISD::SELECT_CC: C = 2; break;
8582 }
8583
8584 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
8585 PromOp.getOperand(C).getValueType() != N->getValueType(0)) ||
8586 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
8587 PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) {
8588 // The to-be-promoted operands of this node have not yet been
8589 // promoted (this should be rare because we're going through the
8590 // list backward, but if one of the operands has several users in
8591 // this cluster of to-be-promoted nodes, it is possible).
8592 PromOps.insert(PromOps.begin(), PromOp);
8593 continue;
8594 }
8595
Hal Finkel4104a1a2014-12-14 05:53:19 +00008596 // For SELECT and SELECT_CC nodes, we do a similar check for any
8597 // to-be-promoted comparison inputs.
8598 if (PromOp.getOpcode() == ISD::SELECT ||
8599 PromOp.getOpcode() == ISD::SELECT_CC) {
8600 if ((SelectTruncOp[0].count(PromOp.getNode()) &&
8601 PromOp.getOperand(0).getValueType() != N->getValueType(0)) ||
8602 (SelectTruncOp[1].count(PromOp.getNode()) &&
8603 PromOp.getOperand(1).getValueType() != N->getValueType(0))) {
8604 PromOps.insert(PromOps.begin(), PromOp);
8605 continue;
8606 }
8607 }
8608
Hal Finkel940ab932014-02-28 00:27:01 +00008609 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
8610 PromOp.getNode()->op_end());
8611
8612 // If this node has constant inputs, then they'll need to be promoted here.
8613 for (unsigned i = 0; i < 2; ++i) {
8614 if (!isa<ConstantSDNode>(Ops[C+i]))
8615 continue;
8616 if (Ops[C+i].getValueType() == N->getValueType(0))
8617 continue;
8618
8619 if (N->getOpcode() == ISD::SIGN_EXTEND)
8620 Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8621 else if (N->getOpcode() == ISD::ZERO_EXTEND)
8622 Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8623 else
8624 Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8625 }
8626
Hal Finkel4104a1a2014-12-14 05:53:19 +00008627 // If we've promoted the comparison inputs of a SELECT or SELECT_CC,
8628 // truncate them again to the original value type.
8629 if (PromOp.getOpcode() == ISD::SELECT ||
8630 PromOp.getOpcode() == ISD::SELECT_CC) {
8631 auto SI0 = SelectTruncOp[0].find(PromOp.getNode());
8632 if (SI0 != SelectTruncOp[0].end())
8633 Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]);
8634 auto SI1 = SelectTruncOp[1].find(PromOp.getNode());
8635 if (SI1 != SelectTruncOp[1].end())
8636 Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]);
8637 }
8638
Hal Finkel940ab932014-02-28 00:27:01 +00008639 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +00008640 DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops));
Hal Finkel940ab932014-02-28 00:27:01 +00008641 }
8642
8643 // Now we're left with the initial extension itself.
8644 if (!ReallyNeedsExt)
8645 return N->getOperand(0);
8646
Hal Finkel46043ed2014-03-01 21:36:57 +00008647 // To zero extend, just mask off everything except for the first bit (in the
8648 // i1 case).
Hal Finkel940ab932014-02-28 00:27:01 +00008649 if (N->getOpcode() == ISD::ZERO_EXTEND)
8650 return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +00008651 DAG.getConstant(APInt::getLowBitsSet(
8652 N->getValueSizeInBits(0), PromBits),
8653 N->getValueType(0)));
Hal Finkel940ab932014-02-28 00:27:01 +00008654
8655 assert(N->getOpcode() == ISD::SIGN_EXTEND &&
8656 "Invalid extension type");
8657 EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0));
8658 SDValue ShiftCst =
Hal Finkel46043ed2014-03-01 21:36:57 +00008659 DAG.getConstant(N->getValueSizeInBits(0)-PromBits, ShiftAmountTy);
Hal Finkel940ab932014-02-28 00:27:01 +00008660 return DAG.getNode(ISD::SRA, dl, N->getValueType(0),
8661 DAG.getNode(ISD::SHL, dl, N->getValueType(0),
8662 N->getOperand(0), ShiftCst), ShiftCst);
8663}
8664
Hal Finkel5efb9182015-01-06 06:01:57 +00008665SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N,
8666 DAGCombinerInfo &DCI) const {
8667 assert((N->getOpcode() == ISD::SINT_TO_FP ||
8668 N->getOpcode() == ISD::UINT_TO_FP) &&
8669 "Need an int -> FP conversion node here");
8670
8671 if (!Subtarget.has64BitSupport())
8672 return SDValue();
8673
8674 SelectionDAG &DAG = DCI.DAG;
8675 SDLoc dl(N);
8676 SDValue Op(N, 0);
8677
8678 // Don't handle ppc_fp128 here or i1 conversions.
8679 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
8680 return SDValue();
8681 if (Op.getOperand(0).getValueType() == MVT::i1)
8682 return SDValue();
8683
8684 // For i32 intermediate values, unfortunately, the conversion functions
8685 // leave the upper 32 bits of the value are undefined. Within the set of
8686 // scalar instructions, we have no method for zero- or sign-extending the
8687 // value. Thus, we cannot handle i32 intermediate values here.
8688 if (Op.getOperand(0).getValueType() == MVT::i32)
8689 return SDValue();
8690
8691 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
8692 "UINT_TO_FP is supported only with FPCVT");
8693
8694 // If we have FCFIDS, then use it when converting to single-precision.
8695 // Otherwise, convert to double-precision and then round.
Eric Christophercccae792015-01-30 22:02:31 +00008696 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
8697 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
8698 : PPCISD::FCFIDS)
8699 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
8700 : PPCISD::FCFID);
8701 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
8702 ? MVT::f32
8703 : MVT::f64;
Hal Finkel5efb9182015-01-06 06:01:57 +00008704
8705 // If we're converting from a float, to an int, and back to a float again,
8706 // then we don't need the store/load pair at all.
8707 if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT &&
8708 Subtarget.hasFPCVT()) ||
8709 (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) {
8710 SDValue Src = Op.getOperand(0).getOperand(0);
8711 if (Src.getValueType() == MVT::f32) {
8712 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
8713 DCI.AddToWorklist(Src.getNode());
8714 }
8715
8716 unsigned FCTOp =
8717 Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
8718 PPCISD::FCTIDUZ;
8719
8720 SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src);
8721 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp);
8722
8723 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) {
8724 FP = DAG.getNode(ISD::FP_ROUND, dl,
8725 MVT::f32, FP, DAG.getIntPtrConstant(0));
8726 DCI.AddToWorklist(FP.getNode());
8727 }
8728
8729 return FP;
8730 }
8731
8732 return SDValue();
8733}
8734
Bill Schmidtfae5d712014-12-09 16:35:51 +00008735// expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for
8736// builtins) into loads with swaps.
8737SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N,
8738 DAGCombinerInfo &DCI) const {
8739 SelectionDAG &DAG = DCI.DAG;
8740 SDLoc dl(N);
8741 SDValue Chain;
8742 SDValue Base;
8743 MachineMemOperand *MMO;
8744
8745 switch (N->getOpcode()) {
8746 default:
8747 llvm_unreachable("Unexpected opcode for little endian VSX load");
8748 case ISD::LOAD: {
8749 LoadSDNode *LD = cast<LoadSDNode>(N);
8750 Chain = LD->getChain();
8751 Base = LD->getBasePtr();
8752 MMO = LD->getMemOperand();
8753 // If the MMO suggests this isn't a load of a full vector, leave
8754 // things alone. For a built-in, we have to make the change for
8755 // correctness, so if there is a size problem that will be a bug.
8756 if (MMO->getSize() < 16)
8757 return SDValue();
8758 break;
8759 }
8760 case ISD::INTRINSIC_W_CHAIN: {
8761 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
8762 Chain = Intrin->getChain();
8763 Base = Intrin->getBasePtr();
8764 MMO = Intrin->getMemOperand();
8765 break;
8766 }
8767 }
8768
8769 MVT VecTy = N->getValueType(0).getSimpleVT();
8770 SDValue LoadOps[] = { Chain, Base };
8771 SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl,
8772 DAG.getVTList(VecTy, MVT::Other),
8773 LoadOps, VecTy, MMO);
8774 DCI.AddToWorklist(Load.getNode());
8775 Chain = Load.getValue(1);
8776 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
8777 DAG.getVTList(VecTy, MVT::Other), Chain, Load);
8778 DCI.AddToWorklist(Swap.getNode());
8779 return Swap;
8780}
8781
8782// expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for
8783// builtins) into stores with swaps.
8784SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N,
8785 DAGCombinerInfo &DCI) const {
8786 SelectionDAG &DAG = DCI.DAG;
8787 SDLoc dl(N);
8788 SDValue Chain;
8789 SDValue Base;
8790 unsigned SrcOpnd;
8791 MachineMemOperand *MMO;
8792
8793 switch (N->getOpcode()) {
8794 default:
8795 llvm_unreachable("Unexpected opcode for little endian VSX store");
8796 case ISD::STORE: {
8797 StoreSDNode *ST = cast<StoreSDNode>(N);
8798 Chain = ST->getChain();
8799 Base = ST->getBasePtr();
8800 MMO = ST->getMemOperand();
8801 SrcOpnd = 1;
8802 // If the MMO suggests this isn't a store of a full vector, leave
8803 // things alone. For a built-in, we have to make the change for
8804 // correctness, so if there is a size problem that will be a bug.
8805 if (MMO->getSize() < 16)
8806 return SDValue();
8807 break;
8808 }
8809 case ISD::INTRINSIC_VOID: {
8810 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
8811 Chain = Intrin->getChain();
8812 // Intrin->getBasePtr() oddly does not get what we want.
8813 Base = Intrin->getOperand(3);
8814 MMO = Intrin->getMemOperand();
8815 SrcOpnd = 2;
8816 break;
8817 }
8818 }
8819
8820 SDValue Src = N->getOperand(SrcOpnd);
8821 MVT VecTy = Src.getValueType().getSimpleVT();
8822 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
8823 DAG.getVTList(VecTy, MVT::Other), Chain, Src);
8824 DCI.AddToWorklist(Swap.getNode());
8825 Chain = Swap.getValue(1);
8826 SDValue StoreOps[] = { Chain, Swap, Base };
8827 SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl,
8828 DAG.getVTList(MVT::Other),
8829 StoreOps, VecTy, MMO);
8830 DCI.AddToWorklist(Store.getNode());
8831 return Store;
8832}
8833
Duncan Sandsdc2dac12008-11-24 14:53:14 +00008834SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
8835 DAGCombinerInfo &DCI) const {
Chris Lattnerf4184352006-03-01 04:57:39 +00008836 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008837 SDLoc dl(N);
Chris Lattnerf4184352006-03-01 04:57:39 +00008838 switch (N->getOpcode()) {
8839 default: break;
Chris Lattner3c48ea52006-09-19 05:22:59 +00008840 case PPCISD::SHL:
8841 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008842 if (C->isNullValue()) // 0 << V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008843 return N->getOperand(0);
8844 }
8845 break;
8846 case PPCISD::SRL:
8847 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008848 if (C->isNullValue()) // 0 >>u V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008849 return N->getOperand(0);
8850 }
8851 break;
8852 case PPCISD::SRA:
8853 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008854 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008855 C->isAllOnesValue()) // -1 >>s V -> -1.
8856 return N->getOperand(0);
8857 }
8858 break;
Hal Finkel940ab932014-02-28 00:27:01 +00008859 case ISD::SIGN_EXTEND:
8860 case ISD::ZERO_EXTEND:
8861 case ISD::ANY_EXTEND:
8862 return DAGCombineExtBoolTrunc(N, DCI);
8863 case ISD::TRUNCATE:
8864 case ISD::SETCC:
8865 case ISD::SELECT_CC:
8866 return DAGCombineTruncBoolExt(N, DCI);
Chris Lattnerf4184352006-03-01 04:57:39 +00008867 case ISD::SINT_TO_FP:
Hal Finkel5efb9182015-01-06 06:01:57 +00008868 case ISD::UINT_TO_FP:
8869 return combineFPToIntToFP(N, DCI);
Bill Schmidtfae5d712014-12-09 16:35:51 +00008870 case ISD::STORE: {
Chris Lattner27f53452006-03-01 05:50:56 +00008871 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
Eric Christophercccae792015-01-30 22:02:31 +00008872 if (Subtarget.hasSTFIWX() && !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner27f53452006-03-01 05:50:56 +00008873 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson9f944592009-08-11 20:47:22 +00008874 N->getOperand(1).getValueType() == MVT::i32 &&
8875 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008876 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00008877 if (Val.getValueType() == MVT::f32) {
8878 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008879 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008880 }
Owen Anderson9f944592009-08-11 20:47:22 +00008881 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008882 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008883
Hal Finkel60c75102013-04-01 15:37:53 +00008884 SDValue Ops[] = {
8885 N->getOperand(0), Val, N->getOperand(2),
8886 DAG.getValueType(N->getOperand(1).getValueType())
8887 };
8888
8889 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +00008890 DAG.getVTList(MVT::Other), Ops,
Hal Finkel60c75102013-04-01 15:37:53 +00008891 cast<StoreSDNode>(N)->getMemoryVT(),
8892 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greiff304a7a2008-08-28 21:40:38 +00008893 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008894 return Val;
8895 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008896
Chris Lattnera7976d32006-07-10 20:56:58 +00008897 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman28328db2009-09-25 00:57:30 +00008898 if (cast<StoreSDNode>(N)->isUnindexed() &&
8899 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00008900 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson9f944592009-08-11 20:47:22 +00008901 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkel31d29562013-03-28 19:25:55 +00008902 N->getOperand(1).getValueType() == MVT::i16 ||
Eric Christophercccae792015-01-30 22:02:31 +00008903 (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00008904 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008905 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnera7976d32006-07-10 20:56:58 +00008906 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson9f944592009-08-11 20:47:22 +00008907 if (BSwapOp.getValueType() == MVT::i16)
8908 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnera7976d32006-07-10 20:56:58 +00008909
Dan Gohman48b185d2009-09-25 20:36:54 +00008910 SDValue Ops[] = {
8911 N->getOperand(0), BSwapOp, N->getOperand(2),
8912 DAG.getValueType(N->getOperand(1).getValueType())
8913 };
8914 return
8915 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00008916 Ops, cast<StoreSDNode>(N)->getMemoryVT(),
Dan Gohman48b185d2009-09-25 20:36:54 +00008917 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00008918 }
Bill Schmidtfae5d712014-12-09 16:35:51 +00008919
8920 // For little endian, VSX stores require generating xxswapd/lxvd2x.
8921 EVT VT = N->getOperand(1).getValueType();
8922 if (VT.isSimple()) {
8923 MVT StoreVT = VT.getSimpleVT();
Eric Christophercccae792015-01-30 22:02:31 +00008924 if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
Bill Schmidtfae5d712014-12-09 16:35:51 +00008925 (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 ||
8926 StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32))
8927 return expandVSXStoreForLE(N, DCI);
8928 }
Chris Lattnera7976d32006-07-10 20:56:58 +00008929 break;
Bill Schmidtfae5d712014-12-09 16:35:51 +00008930 }
Hal Finkelcf2e9082013-05-24 23:00:14 +00008931 case ISD::LOAD: {
8932 LoadSDNode *LD = cast<LoadSDNode>(N);
8933 EVT VT = LD->getValueType(0);
Bill Schmidtfae5d712014-12-09 16:35:51 +00008934
8935 // For little endian, VSX loads require generating lxvd2x/xxswapd.
8936 if (VT.isSimple()) {
8937 MVT LoadVT = VT.getSimpleVT();
Eric Christophercccae792015-01-30 22:02:31 +00008938 if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
Bill Schmidtfae5d712014-12-09 16:35:51 +00008939 (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 ||
8940 LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32))
8941 return expandVSXLoadForLE(N, DCI);
8942 }
8943
Hal Finkelcf2e9082013-05-24 23:00:14 +00008944 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
8945 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
Eric Christophercccae792015-01-30 22:02:31 +00008946 if (ISD::isNON_EXTLoad(N) && VT.isVector() && Subtarget.hasAltivec() &&
Bill Schmidt2d1128a2014-10-17 15:13:38 +00008947 // P8 and later hardware should just use LOAD.
Eric Christophercccae792015-01-30 22:02:31 +00008948 !Subtarget.hasP8Vector() && (VT == MVT::v16i8 || VT == MVT::v8i16 ||
8949 VT == MVT::v4i32 || VT == MVT::v4f32) &&
Hal Finkelcf2e9082013-05-24 23:00:14 +00008950 LD->getAlignment() < ABIAlignment) {
8951 // This is a type-legal unaligned Altivec load.
8952 SDValue Chain = LD->getChain();
8953 SDValue Ptr = LD->getBasePtr();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008954 bool isLittleEndian = Subtarget.isLittleEndian();
Hal Finkelcf2e9082013-05-24 23:00:14 +00008955
8956 // This implements the loading of unaligned vectors as described in
8957 // the venerable Apple Velocity Engine overview. Specifically:
8958 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
8959 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
8960 //
8961 // The general idea is to expand a sequence of one or more unaligned
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008962 // loads into an alignment-based permutation-control instruction (lvsl
8963 // or lvsr), a series of regular vector loads (which always truncate
8964 // their input address to an aligned address), and a series of
8965 // permutations. The results of these permutations are the requested
8966 // loaded values. The trick is that the last "extra" load is not taken
8967 // from the address you might suspect (sizeof(vector) bytes after the
8968 // last requested load), but rather sizeof(vector) - 1 bytes after the
8969 // last requested vector. The point of this is to avoid a page fault if
8970 // the base address happened to be aligned. This works because if the
8971 // base address is aligned, then adding less than a full vector length
8972 // will cause the last vector in the sequence to be (re)loaded.
8973 // Otherwise, the next vector will be fetched as you might suspect was
8974 // necessary.
Hal Finkelcf2e9082013-05-24 23:00:14 +00008975
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008976 // We might be able to reuse the permutation generation from
Hal Finkelcf2e9082013-05-24 23:00:14 +00008977 // a different base address offset from this one by an aligned amount.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008978 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
8979 // optimization later.
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008980 Intrinsic::ID Intr = (isLittleEndian ?
8981 Intrinsic::ppc_altivec_lvsr :
8982 Intrinsic::ppc_altivec_lvsl);
8983 SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, MVT::v16i8);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008984
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008985 // Create the new MMO for the new base load. It is like the original MMO,
8986 // but represents an area in memory almost twice the vector size centered
8987 // on the original address. If the address is unaligned, we might start
8988 // reading up to (sizeof(vector)-1) bytes below the address of the
8989 // original unaligned load.
Hal Finkelcf2e9082013-05-24 23:00:14 +00008990 MachineFunction &MF = DAG.getMachineFunction();
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008991 MachineMemOperand *BaseMMO =
8992 MF.getMachineMemOperand(LD->getMemOperand(),
8993 -LD->getMemoryVT().getStoreSize()+1,
8994 2*LD->getMemoryVT().getStoreSize()-1);
8995
8996 // Create the new base load.
8997 SDValue LDXIntID = DAG.getTargetConstant(Intrinsic::ppc_altivec_lvx,
8998 getPointerTy());
8999 SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr };
9000 SDValue BaseLoad =
9001 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
9002 DAG.getVTList(MVT::v4i32, MVT::Other),
9003 BaseLoadOps, MVT::v4i32, BaseMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +00009004
9005 // Note that the value of IncOffset (which is provided to the next
9006 // load's pointer info offset value, and thus used to calculate the
9007 // alignment), and the value of IncValue (which is actually used to
9008 // increment the pointer value) are different! This is because we
9009 // require the next load to appear to be aligned, even though it
9010 // is actually offset from the base pointer by a lesser amount.
9011 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel7d8a6912013-05-26 18:08:30 +00009012 int IncValue = IncOffset;
9013
9014 // Walk (both up and down) the chain looking for another load at the real
9015 // (aligned) offset (the alignment of the other load does not matter in
9016 // this case). If found, then do not use the offset reduction trick, as
9017 // that will prevent the loads from being later combined (as they would
9018 // otherwise be duplicates).
9019 if (!findConsecutiveLoad(LD, DAG))
9020 --IncValue;
9021
Hal Finkelcf2e9082013-05-24 23:00:14 +00009022 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
9023 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
9024
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00009025 MachineMemOperand *ExtraMMO =
9026 MF.getMachineMemOperand(LD->getMemOperand(),
9027 1, 2*LD->getMemoryVT().getStoreSize()-1);
9028 SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr };
Hal Finkelcf2e9082013-05-24 23:00:14 +00009029 SDValue ExtraLoad =
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00009030 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
9031 DAG.getVTList(MVT::v4i32, MVT::Other),
9032 ExtraLoadOps, MVT::v4i32, ExtraMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +00009033
9034 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
9035 BaseLoad.getValue(1), ExtraLoad.getValue(1));
9036
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00009037 // Because vperm has a big-endian bias, we must reverse the order
9038 // of the input vectors and complement the permute control vector
9039 // when generating little endian code. We have already handled the
9040 // latter by using lvsr instead of lvsl, so just reverse BaseLoad
9041 // and ExtraLoad here.
9042 SDValue Perm;
9043 if (isLittleEndian)
9044 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
9045 ExtraLoad, BaseLoad, PermCntl, DAG, dl);
9046 else
9047 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
9048 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
Hal Finkelcf2e9082013-05-24 23:00:14 +00009049
9050 if (VT != MVT::v4i32)
9051 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
9052
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00009053 // The output of the permutation is our loaded result, the TokenFactor is
9054 // our new chain.
9055 DCI.CombineTo(N, Perm, TF);
Hal Finkelcf2e9082013-05-24 23:00:14 +00009056 return SDValue(N, 0);
9057 }
9058 }
9059 break;
Eric Christophercccae792015-01-30 22:02:31 +00009060 case ISD::INTRINSIC_WO_CHAIN: {
9061 bool isLittleEndian = Subtarget.isLittleEndian();
9062 Intrinsic::ID Intr = (isLittleEndian ? Intrinsic::ppc_altivec_lvsr
9063 : Intrinsic::ppc_altivec_lvsl);
9064 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() == Intr &&
9065 N->getOperand(1)->getOpcode() == ISD::ADD) {
9066 SDValue Add = N->getOperand(1);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00009067
Eric Christophercccae792015-01-30 22:02:31 +00009068 if (DAG.MaskedValueIsZero(
9069 Add->getOperand(1),
9070 APInt::getAllOnesValue(4 /* 16 byte alignment */)
9071 .zext(
9072 Add.getValueType().getScalarType().getSizeInBits()))) {
9073 SDNode *BasePtr = Add->getOperand(0).getNode();
9074 for (SDNode::use_iterator UI = BasePtr->use_begin(),
9075 UE = BasePtr->use_end();
9076 UI != UE; ++UI) {
9077 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
9078 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
9079 Intr) {
9080 // We've found another LVSL/LVSR, and this address is an aligned
9081 // multiple of that one. The results will be the same, so use the
9082 // one we've just found instead.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00009083
Eric Christophercccae792015-01-30 22:02:31 +00009084 return SDValue(*UI, 0);
9085 }
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00009086 }
9087 }
9088 }
9089 }
Hal Finkelc3cfbf82013-09-13 20:09:02 +00009090
9091 break;
Bill Schmidtfae5d712014-12-09 16:35:51 +00009092 case ISD::INTRINSIC_W_CHAIN: {
9093 // For little endian, VSX loads require generating lxvd2x/xxswapd.
Eric Christophercccae792015-01-30 22:02:31 +00009094 if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
Bill Schmidtfae5d712014-12-09 16:35:51 +00009095 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9096 default:
9097 break;
9098 case Intrinsic::ppc_vsx_lxvw4x:
9099 case Intrinsic::ppc_vsx_lxvd2x:
9100 return expandVSXLoadForLE(N, DCI);
9101 }
9102 }
9103 break;
9104 }
9105 case ISD::INTRINSIC_VOID: {
9106 // For little endian, VSX stores require generating xxswapd/stxvd2x.
Eric Christophercccae792015-01-30 22:02:31 +00009107 if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
Bill Schmidtfae5d712014-12-09 16:35:51 +00009108 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9109 default:
9110 break;
9111 case Intrinsic::ppc_vsx_stxvw4x:
9112 case Intrinsic::ppc_vsx_stxvd2x:
9113 return expandVSXStoreForLE(N, DCI);
9114 }
9115 }
9116 break;
9117 }
Chris Lattnera7976d32006-07-10 20:56:58 +00009118 case ISD::BSWAP:
9119 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greiff304a7a2008-08-28 21:40:38 +00009120 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnera7976d32006-07-10 20:56:58 +00009121 N->getOperand(0).hasOneUse() &&
Hal Finkel31d29562013-03-28 19:25:55 +00009122 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
Eric Christophercccae792015-01-30 22:02:31 +00009123 (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00009124 N->getValueType(0) == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009125 SDValue Load = N->getOperand(0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00009126 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnera7976d32006-07-10 20:56:58 +00009127 // Create the byte-swapping load.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009128 SDValue Ops[] = {
Evan Chenge71fe34d2006-10-09 20:57:25 +00009129 LD->getChain(), // Chain
9130 LD->getBasePtr(), // Ptr
Chris Lattnerd66f14e2006-08-11 17:18:05 +00009131 DAG.getValueType(N->getValueType(0)) // VT
9132 };
Dan Gohman48b185d2009-09-25 20:36:54 +00009133 SDValue BSLoad =
9134 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkel31d29562013-03-28 19:25:55 +00009135 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
9136 MVT::i64 : MVT::i32, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00009137 Ops, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00009138
Scott Michelcf0da6c2009-02-17 22:15:04 +00009139 // If this is an i16 load, insert the truncate.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009140 SDValue ResVal = BSLoad;
Owen Anderson9f944592009-08-11 20:47:22 +00009141 if (N->getValueType(0) == MVT::i16)
9142 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009143
Chris Lattnera7976d32006-07-10 20:56:58 +00009144 // First, combine the bswap away. This makes the value produced by the
9145 // load dead.
9146 DCI.CombineTo(N, ResVal);
9147
9148 // Next, combine the load away, we give it a bogus result value but a real
9149 // chain result. The result value is dead because the bswap is dead.
Gabor Greiff304a7a2008-08-28 21:40:38 +00009150 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00009151
Chris Lattnera7976d32006-07-10 20:56:58 +00009152 // Return N so it doesn't get rechecked!
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009153 return SDValue(N, 0);
Chris Lattnera7976d32006-07-10 20:56:58 +00009154 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009155
Chris Lattner27f53452006-03-01 05:50:56 +00009156 break;
Chris Lattnerd4058a52006-03-31 06:02:07 +00009157 case PPCISD::VCMP: {
9158 // If a VCMPo node already exists with exactly the same operands as this
9159 // node, use its result instead of this node (VCMPo computes both a CR6 and
9160 // a normal output).
9161 //
9162 if (!N->getOperand(0).hasOneUse() &&
9163 !N->getOperand(1).hasOneUse() &&
9164 !N->getOperand(2).hasOneUse()) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00009165
Chris Lattnerd4058a52006-03-31 06:02:07 +00009166 // Scan all of the users of the LHS, looking for VCMPo's that match.
Craig Topper062a2ba2014-04-25 05:30:21 +00009167 SDNode *VCMPoNode = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009168
Gabor Greiff304a7a2008-08-28 21:40:38 +00009169 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattnerd4058a52006-03-31 06:02:07 +00009170 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
9171 UI != E; ++UI)
Dan Gohman91e5dcb2008-07-27 20:43:25 +00009172 if (UI->getOpcode() == PPCISD::VCMPo &&
9173 UI->getOperand(1) == N->getOperand(1) &&
9174 UI->getOperand(2) == N->getOperand(2) &&
9175 UI->getOperand(0) == N->getOperand(0)) {
9176 VCMPoNode = *UI;
Chris Lattnerd4058a52006-03-31 06:02:07 +00009177 break;
9178 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009179
Chris Lattner518834c2006-04-18 18:28:22 +00009180 // If there is no VCMPo node, or if the flag value has a single use, don't
9181 // transform this.
9182 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
9183 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009184
9185 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner518834c2006-04-18 18:28:22 +00009186 // chain, this transformation is more complex. Note that multiple things
9187 // could use the value result, which we should ignore.
Craig Topper062a2ba2014-04-25 05:30:21 +00009188 SDNode *FlagUser = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009189 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Craig Topper062a2ba2014-04-25 05:30:21 +00009190 FlagUser == nullptr; ++UI) {
Chris Lattner518834c2006-04-18 18:28:22 +00009191 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman91e5dcb2008-07-27 20:43:25 +00009192 SDNode *User = *UI;
Chris Lattner518834c2006-04-18 18:28:22 +00009193 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009194 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner518834c2006-04-18 18:28:22 +00009195 FlagUser = User;
9196 break;
9197 }
9198 }
9199 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009200
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00009201 // If the user is a MFOCRF instruction, we know this is safe.
9202 // Otherwise we give up for right now.
9203 if (FlagUser->getOpcode() == PPCISD::MFOCRF)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009204 return SDValue(VCMPoNode, 0);
Chris Lattnerd4058a52006-03-31 06:02:07 +00009205 }
9206 break;
9207 }
Hal Finkel940ab932014-02-28 00:27:01 +00009208 case ISD::BRCOND: {
9209 SDValue Cond = N->getOperand(1);
9210 SDValue Target = N->getOperand(2);
9211
9212 if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9213 cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() ==
9214 Intrinsic::ppc_is_decremented_ctr_nonzero) {
9215
9216 // We now need to make the intrinsic dead (it cannot be instruction
9217 // selected).
9218 DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0));
9219 assert(Cond.getNode()->hasOneUse() &&
9220 "Counter decrement has more than one use");
9221
9222 return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other,
9223 N->getOperand(0), Target);
9224 }
9225 }
9226 break;
Chris Lattner9754d142006-04-18 17:59:36 +00009227 case ISD::BR_CC: {
9228 // If this is a branch on an altivec predicate comparison, lower this so
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00009229 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This
Chris Lattner9754d142006-04-18 17:59:36 +00009230 // lowering is done pre-legalize, because the legalizer lowers the predicate
9231 // compare down to code that is difficult to reassemble.
9232 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009233 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkel25c19922013-05-15 21:37:41 +00009234
9235 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
9236 // value. If so, pass-through the AND to get to the intrinsic.
9237 if (LHS.getOpcode() == ISD::AND &&
9238 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9239 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
9240 Intrinsic::ppc_is_decremented_ctr_nonzero &&
9241 isa<ConstantSDNode>(LHS.getOperand(1)) &&
9242 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
9243 isZero())
9244 LHS = LHS.getOperand(0);
9245
9246 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9247 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
9248 Intrinsic::ppc_is_decremented_ctr_nonzero &&
9249 isa<ConstantSDNode>(RHS)) {
9250 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
9251 "Counter decrement comparison is not EQ or NE");
9252
9253 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
9254 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
9255 (CC == ISD::SETNE && !Val);
9256
9257 // We now need to make the intrinsic dead (it cannot be instruction
9258 // selected).
9259 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
9260 assert(LHS.getNode()->hasOneUse() &&
9261 "Counter decrement has more than one use");
9262
9263 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
9264 N->getOperand(0), N->getOperand(4));
9265 }
9266
Chris Lattner9754d142006-04-18 17:59:36 +00009267 int CompareOpc;
9268 bool isDot;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009269
Chris Lattner9754d142006-04-18 17:59:36 +00009270 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
9271 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
9272 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
9273 assert(isDot && "Can't compare against a vector result!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00009274
Chris Lattner9754d142006-04-18 17:59:36 +00009275 // If this is a comparison against something other than 0/1, then we know
9276 // that the condition is never/always true.
Dan Gohmaneffb8942008-09-12 16:56:44 +00009277 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00009278 if (Val != 0 && Val != 1) {
9279 if (CC == ISD::SETEQ) // Cond never true, remove branch.
9280 return N->getOperand(0);
9281 // Always !=, turn it into an unconditional branch.
Owen Anderson9f944592009-08-11 20:47:22 +00009282 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner9754d142006-04-18 17:59:36 +00009283 N->getOperand(0), N->getOperand(4));
9284 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009285
Chris Lattner9754d142006-04-18 17:59:36 +00009286 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009287
Chris Lattner9754d142006-04-18 17:59:36 +00009288 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009289 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00009290 LHS.getOperand(2), // LHS of compare
9291 LHS.getOperand(3), // RHS of compare
Owen Anderson9f944592009-08-11 20:47:22 +00009292 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00009293 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00009294 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +00009295 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009296
Chris Lattner9754d142006-04-18 17:59:36 +00009297 // Unpack the result based on how the target uses it.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009298 PPC::Predicate CompOpc;
Dan Gohmaneffb8942008-09-12 16:56:44 +00009299 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner9754d142006-04-18 17:59:36 +00009300 default: // Can't happen, don't crash on invalid number though.
9301 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009302 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner9754d142006-04-18 17:59:36 +00009303 break;
9304 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009305 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner9754d142006-04-18 17:59:36 +00009306 break;
9307 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009308 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner9754d142006-04-18 17:59:36 +00009309 break;
9310 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00009311 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner9754d142006-04-18 17:59:36 +00009312 break;
9313 }
9314
Owen Anderson9f944592009-08-11 20:47:22 +00009315 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
9316 DAG.getConstant(CompOpc, MVT::i32),
9317 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner9754d142006-04-18 17:59:36 +00009318 N->getOperand(4), CompNode.getValue(1));
9319 }
9320 break;
9321 }
Chris Lattnerf4184352006-03-01 04:57:39 +00009322 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009323
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009324 return SDValue();
Chris Lattnerf4184352006-03-01 04:57:39 +00009325}
9326
Hal Finkel13d104b2014-12-11 18:37:52 +00009327SDValue
9328PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
9329 SelectionDAG &DAG,
9330 std::vector<SDNode *> *Created) const {
9331 // fold (sdiv X, pow2)
9332 EVT VT = N->getValueType(0);
Hal Finkel04b16b52014-12-23 08:38:50 +00009333 if (VT == MVT::i64 && !Subtarget.isPPC64())
9334 return SDValue();
Hal Finkel13d104b2014-12-11 18:37:52 +00009335 if ((VT != MVT::i32 && VT != MVT::i64) ||
9336 !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
9337 return SDValue();
9338
9339 SDLoc DL(N);
9340 SDValue N0 = N->getOperand(0);
9341
9342 bool IsNegPow2 = (-Divisor).isPowerOf2();
9343 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros();
9344 SDValue ShiftAmt = DAG.getConstant(Lg2, VT);
9345
9346 SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt);
9347 if (Created)
9348 Created->push_back(Op.getNode());
9349
9350 if (IsNegPow2) {
9351 Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), Op);
9352 if (Created)
9353 Created->push_back(Op.getNode());
9354 }
9355
9356 return Op;
9357}
9358
Chris Lattner4211ca92006-04-14 06:01:58 +00009359//===----------------------------------------------------------------------===//
9360// Inline Assembly Support
9361//===----------------------------------------------------------------------===//
9362
Jay Foada0653a32014-05-14 21:14:37 +00009363void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
9364 APInt &KnownZero,
9365 APInt &KnownOne,
9366 const SelectionDAG &DAG,
9367 unsigned Depth) const {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00009368 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerc5287c02006-04-02 06:26:07 +00009369 switch (Op.getOpcode()) {
9370 default: break;
Chris Lattnera7976d32006-07-10 20:56:58 +00009371 case PPCISD::LBRX: {
9372 // lhbrx is known to have the top bits cleared out.
Dan Gohmana5fc0352009-09-27 23:17:47 +00009373 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnera7976d32006-07-10 20:56:58 +00009374 KnownZero = 0xFFFF0000;
9375 break;
9376 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00009377 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmaneffb8942008-09-12 16:56:44 +00009378 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerc5287c02006-04-02 06:26:07 +00009379 default: break;
9380 case Intrinsic::ppc_altivec_vcmpbfp_p:
9381 case Intrinsic::ppc_altivec_vcmpeqfp_p:
9382 case Intrinsic::ppc_altivec_vcmpequb_p:
9383 case Intrinsic::ppc_altivec_vcmpequh_p:
9384 case Intrinsic::ppc_altivec_vcmpequw_p:
9385 case Intrinsic::ppc_altivec_vcmpgefp_p:
9386 case Intrinsic::ppc_altivec_vcmpgtfp_p:
9387 case Intrinsic::ppc_altivec_vcmpgtsb_p:
9388 case Intrinsic::ppc_altivec_vcmpgtsh_p:
9389 case Intrinsic::ppc_altivec_vcmpgtsw_p:
9390 case Intrinsic::ppc_altivec_vcmpgtub_p:
9391 case Intrinsic::ppc_altivec_vcmpgtuh_p:
9392 case Intrinsic::ppc_altivec_vcmpgtuw_p:
9393 KnownZero = ~1U; // All bits but the low one are known to be zero.
9394 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009395 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00009396 }
9397 }
9398}
9399
Hal Finkel57725662015-01-03 17:58:24 +00009400unsigned PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const {
9401 switch (Subtarget.getDarwinDirective()) {
9402 default: break;
9403 case PPC::DIR_970:
9404 case PPC::DIR_PWR4:
9405 case PPC::DIR_PWR5:
9406 case PPC::DIR_PWR5X:
9407 case PPC::DIR_PWR6:
9408 case PPC::DIR_PWR6X:
9409 case PPC::DIR_PWR7:
9410 case PPC::DIR_PWR8: {
9411 if (!ML)
9412 break;
9413
Eric Christophercccae792015-01-30 22:02:31 +00009414 const PPCInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel57725662015-01-03 17:58:24 +00009415
9416 // For small loops (between 5 and 8 instructions), align to a 32-byte
9417 // boundary so that the entire loop fits in one instruction-cache line.
9418 uint64_t LoopSize = 0;
9419 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I)
9420 for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J)
9421 LoopSize += TII->GetInstSizeInBytes(J);
9422
9423 if (LoopSize > 16 && LoopSize <= 32)
9424 return 5;
9425
9426 break;
9427 }
9428 }
9429
9430 return TargetLowering::getPrefLoopAlignment(ML);
9431}
Chris Lattnerc5287c02006-04-02 06:26:07 +00009432
Chris Lattnerd6855142007-03-25 02:14:49 +00009433/// getConstraintType - Given a constraint, return the type of
Chris Lattner203b2f12006-02-07 20:16:30 +00009434/// constraint it is for this target.
Scott Michelcf0da6c2009-02-17 22:15:04 +00009435PPCTargetLowering::ConstraintType
Chris Lattnerd6855142007-03-25 02:14:49 +00009436PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
9437 if (Constraint.size() == 1) {
9438 switch (Constraint[0]) {
9439 default: break;
9440 case 'b':
9441 case 'r':
9442 case 'f':
9443 case 'v':
9444 case 'y':
9445 return C_RegisterClass;
Hal Finkel4f24c622012-11-05 18:18:42 +00009446 case 'Z':
9447 // FIXME: While Z does indicate a memory constraint, it specifically
9448 // indicates an r+r address (used in conjunction with the 'y' modifier
9449 // in the replacement string). Currently, we're forcing the base
9450 // register to be r0 in the asm printer (which is interpreted as zero)
9451 // and forming the complete address in the second register. This is
9452 // suboptimal.
9453 return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +00009454 }
Hal Finkel6aca2372014-03-02 18:23:39 +00009455 } else if (Constraint == "wc") { // individual CR bits.
9456 return C_RegisterClass;
Hal Finkel27774d92014-03-13 07:58:58 +00009457 } else if (Constraint == "wa" || Constraint == "wd" ||
9458 Constraint == "wf" || Constraint == "ws") {
9459 return C_RegisterClass; // VSX registers.
Chris Lattnerd6855142007-03-25 02:14:49 +00009460 }
9461 return TargetLowering::getConstraintType(Constraint);
Chris Lattner203b2f12006-02-07 20:16:30 +00009462}
9463
John Thompsone8360b72010-10-29 17:29:13 +00009464/// Examine constraint type and operand type and determine a weight value.
9465/// This object must already have been set up with the operand type
9466/// and the current alternative constraint selected.
9467TargetLowering::ConstraintWeight
9468PPCTargetLowering::getSingleConstraintMatchWeight(
9469 AsmOperandInfo &info, const char *constraint) const {
9470 ConstraintWeight weight = CW_Invalid;
9471 Value *CallOperandVal = info.CallOperandVal;
9472 // If we don't have a value, we can't do a match,
9473 // but allow it at the lowest weight.
Craig Topper062a2ba2014-04-25 05:30:21 +00009474 if (!CallOperandVal)
John Thompsone8360b72010-10-29 17:29:13 +00009475 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +00009476 Type *type = CallOperandVal->getType();
Hal Finkel6aca2372014-03-02 18:23:39 +00009477
John Thompsone8360b72010-10-29 17:29:13 +00009478 // Look at the constraint type.
Hal Finkel6aca2372014-03-02 18:23:39 +00009479 if (StringRef(constraint) == "wc" && type->isIntegerTy(1))
9480 return CW_Register; // an individual CR bit.
Hal Finkel27774d92014-03-13 07:58:58 +00009481 else if ((StringRef(constraint) == "wa" ||
9482 StringRef(constraint) == "wd" ||
9483 StringRef(constraint) == "wf") &&
9484 type->isVectorTy())
9485 return CW_Register;
9486 else if (StringRef(constraint) == "ws" && type->isDoubleTy())
9487 return CW_Register;
Hal Finkel6aca2372014-03-02 18:23:39 +00009488
John Thompsone8360b72010-10-29 17:29:13 +00009489 switch (*constraint) {
9490 default:
9491 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
9492 break;
9493 case 'b':
9494 if (type->isIntegerTy())
9495 weight = CW_Register;
9496 break;
9497 case 'f':
9498 if (type->isFloatTy())
9499 weight = CW_Register;
9500 break;
9501 case 'd':
9502 if (type->isDoubleTy())
9503 weight = CW_Register;
9504 break;
9505 case 'v':
9506 if (type->isVectorTy())
9507 weight = CW_Register;
9508 break;
9509 case 'y':
9510 weight = CW_Register;
9511 break;
Hal Finkel4f24c622012-11-05 18:18:42 +00009512 case 'Z':
9513 weight = CW_Memory;
9514 break;
John Thompsone8360b72010-10-29 17:29:13 +00009515 }
9516 return weight;
9517}
9518
Scott Michelcf0da6c2009-02-17 22:15:04 +00009519std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner584a11a2006-11-02 01:44:04 +00009520PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier295bd432013-06-22 18:37:38 +00009521 MVT VT) const {
Chris Lattner01513612006-01-31 19:20:21 +00009522 if (Constraint.size() == 1) {
Chris Lattner584a11a2006-11-02 01:44:04 +00009523 // GCC RS6000 Constraint Letters
9524 switch (Constraint[0]) {
9525 case 'b': // R1-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009526 if (VT == MVT::i64 && Subtarget.isPPC64())
Hal Finkel638a9fa2013-03-19 18:51:05 +00009527 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
9528 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009529 case 'r': // R0-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009530 if (VT == MVT::i64 && Subtarget.isPPC64())
Craig Topperabadc662012-04-20 06:31:50 +00009531 return std::make_pair(0U, &PPC::G8RCRegClass);
9532 return std::make_pair(0U, &PPC::GPRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009533 case 'f':
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00009534 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperabadc662012-04-20 06:31:50 +00009535 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00009536 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperabadc662012-04-20 06:31:50 +00009537 return std::make_pair(0U, &PPC::F8RCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009538 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009539 case 'v':
Craig Topperabadc662012-04-20 06:31:50 +00009540 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00009541 case 'y': // crrc
Craig Topperabadc662012-04-20 06:31:50 +00009542 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00009543 }
Hal Finkel6aca2372014-03-02 18:23:39 +00009544 } else if (Constraint == "wc") { // an individual CR bit.
9545 return std::make_pair(0U, &PPC::CRBITRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +00009546 } else if (Constraint == "wa" || Constraint == "wd" ||
Hal Finkel19be5062014-03-29 05:29:01 +00009547 Constraint == "wf") {
Hal Finkel27774d92014-03-13 07:58:58 +00009548 return std::make_pair(0U, &PPC::VSRCRegClass);
Hal Finkel19be5062014-03-29 05:29:01 +00009549 } else if (Constraint == "ws") {
9550 return std::make_pair(0U, &PPC::VSFRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00009551 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009552
Hal Finkelb176acb2013-08-03 12:25:10 +00009553 std::pair<unsigned, const TargetRegisterClass*> R =
9554 TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
9555
9556 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
9557 // (which we call X[0-9]+). If a 64-bit value has been requested, and a
9558 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
9559 // register.
9560 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
9561 // the AsmName field from *RegisterInfo.td, then this would not be necessary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009562 if (R.first && VT == MVT::i64 && Subtarget.isPPC64() &&
Hal Finkelb176acb2013-08-03 12:25:10 +00009563 PPC::GPRCRegClass.contains(R.first)) {
Eric Christophercccae792015-01-30 22:02:31 +00009564 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
Hal Finkelb176acb2013-08-03 12:25:10 +00009565 return std::make_pair(TRI->getMatchingSuperReg(R.first,
Hal Finkelb3ca00d2013-08-14 20:05:04 +00009566 PPC::sub_32, &PPC::G8RCRegClass),
Hal Finkelb176acb2013-08-03 12:25:10 +00009567 &PPC::G8RCRegClass);
9568 }
9569
Hal Finkelaa10b3c2014-12-08 22:54:22 +00009570 // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same.
9571 if (!R.second && StringRef("{cc}").equals_lower(Constraint)) {
9572 R.first = PPC::CR0;
9573 R.second = &PPC::CRRCRegClass;
9574 }
9575
Hal Finkelb176acb2013-08-03 12:25:10 +00009576 return R;
Chris Lattner01513612006-01-31 19:20:21 +00009577}
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009578
Chris Lattner584a11a2006-11-02 01:44:04 +00009579
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009580/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesence97d552010-06-25 21:55:36 +00009581/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher0713a9d2011-06-08 23:55:35 +00009582void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +00009583 std::string &Constraint,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009584 std::vector<SDValue>&Ops,
Chris Lattner724539c2008-04-26 23:02:14 +00009585 SelectionDAG &DAG) const {
Craig Topper062a2ba2014-04-25 05:30:21 +00009586 SDValue Result;
Eric Christopher0713a9d2011-06-08 23:55:35 +00009587
Eric Christopherde9399b2011-06-02 23:16:42 +00009588 // Only support length 1 constraints.
9589 if (Constraint.length() > 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +00009590
Eric Christopherde9399b2011-06-02 23:16:42 +00009591 char Letter = Constraint[0];
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009592 switch (Letter) {
9593 default: break;
9594 case 'I':
9595 case 'J':
9596 case 'K':
9597 case 'L':
9598 case 'M':
9599 case 'N':
9600 case 'O':
9601 case 'P': {
Chris Lattner0b7472d2007-05-15 01:31:05 +00009602 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009603 if (!CST) return; // Must be an immediate to match.
Hal Finkelc91fc112014-12-03 09:37:50 +00009604 int64_t Value = CST->getSExtValue();
9605 EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative
9606 // numbers are printed as such.
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009607 switch (Letter) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009608 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009609 case 'I': // "I" is a signed 16-bit constant.
Hal Finkelc91fc112014-12-03 09:37:50 +00009610 if (isInt<16>(Value))
9611 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009612 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009613 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
Hal Finkelc91fc112014-12-03 09:37:50 +00009614 if (isShiftedUInt<16, 16>(Value))
9615 Result = DAG.getTargetConstant(Value, TCVT);
9616 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009617 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Hal Finkelc91fc112014-12-03 09:37:50 +00009618 if (isShiftedInt<16, 16>(Value))
9619 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009620 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009621 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Hal Finkelc91fc112014-12-03 09:37:50 +00009622 if (isUInt<16>(Value))
9623 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009624 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009625 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009626 if (Value > 31)
Hal Finkelc91fc112014-12-03 09:37:50 +00009627 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009628 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009629 case 'N': // "N" is a positive constant that is an exact power of two.
Hal Finkelc91fc112014-12-03 09:37:50 +00009630 if (Value > 0 && isPowerOf2_64(Value))
9631 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009632 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009633 case 'O': // "O" is the constant zero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009634 if (Value == 0)
Hal Finkelc91fc112014-12-03 09:37:50 +00009635 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009636 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009637 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Hal Finkelc91fc112014-12-03 09:37:50 +00009638 if (isInt<16>(-Value))
9639 Result = DAG.getTargetConstant(Value, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +00009640 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009641 }
9642 break;
9643 }
9644 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009645
Gabor Greiff304a7a2008-08-28 21:40:38 +00009646 if (Result.getNode()) {
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009647 Ops.push_back(Result);
9648 return;
9649 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009650
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009651 // Handle standard constraint letters.
Eric Christopherde9399b2011-06-02 23:16:42 +00009652 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009653}
Evan Cheng2dd2c652006-03-13 23:20:37 +00009654
Chris Lattner1eb94d92007-03-30 23:15:24 +00009655// isLegalAddressingMode - Return true if the addressing mode represented
9656// by AM is legal for this target, for a load/store of the specified type.
Scott Michelcf0da6c2009-02-17 22:15:04 +00009657bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattner229907c2011-07-18 04:54:35 +00009658 Type *Ty) const {
Chris Lattner1eb94d92007-03-30 23:15:24 +00009659 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelcf0da6c2009-02-17 22:15:04 +00009660
Chris Lattner1eb94d92007-03-30 23:15:24 +00009661 // PPC allows a sign-extended 16-bit immediate field.
9662 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
9663 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009664
Chris Lattner1eb94d92007-03-30 23:15:24 +00009665 // No global is ever allowed as a base.
9666 if (AM.BaseGV)
9667 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009668
9669 // PPC only support r+r,
Chris Lattner1eb94d92007-03-30 23:15:24 +00009670 switch (AM.Scale) {
9671 case 0: // "r+i" or just "i", depending on HasBaseReg.
9672 break;
9673 case 1:
9674 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
9675 return false;
9676 // Otherwise we have r+r or r+i.
9677 break;
9678 case 2:
9679 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
9680 return false;
9681 // Allow 2*r as r+r.
9682 break;
Chris Lattner19ccd622007-04-09 22:10:05 +00009683 default:
9684 // No other scales are supported.
9685 return false;
Chris Lattner1eb94d92007-03-30 23:15:24 +00009686 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009687
Chris Lattner1eb94d92007-03-30 23:15:24 +00009688 return true;
9689}
9690
Dan Gohman21cea8a2010-04-17 15:26:15 +00009691SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
9692 SelectionDAG &DAG) const {
Evan Cheng168ced92010-05-22 01:47:14 +00009693 MachineFunction &MF = DAG.getMachineFunction();
9694 MachineFrameInfo *MFI = MF.getFrameInfo();
9695 MFI->setReturnAddressIsTaken(true);
9696
Bill Wendling908bf812014-01-06 00:43:20 +00009697 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00009698 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00009699
Andrew Trickef9de2a2013-05-25 02:42:55 +00009700 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009701 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattnerf6a81562007-12-08 06:59:59 +00009702
Dale Johannesen81bfca72010-05-03 22:59:34 +00009703 // Make sure the function does not optimize away the store of the RA to
9704 // the stack.
Chris Lattnerf6a81562007-12-08 06:59:59 +00009705 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009706 FuncInfo->setLRStoreRequired();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009707 bool isPPC64 = Subtarget.isPPC64();
9708 bool isDarwinABI = Subtarget.isDarwinABI();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009709
9710 if (Depth > 0) {
9711 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9712 SDValue Offset =
Wesley Peck527da1b2010-11-23 03:31:01 +00009713
Anton Korobeynikov2f931282011-01-10 12:39:04 +00009714 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI),
Dale Johannesen81bfca72010-05-03 22:59:34 +00009715 isPPC64? MVT::i64 : MVT::i32);
9716 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
9717 DAG.getNode(ISD::ADD, dl, getPointerTy(),
9718 FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009719 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009720 }
Chris Lattnerf6a81562007-12-08 06:59:59 +00009721
Chris Lattnerf6a81562007-12-08 06:59:59 +00009722 // Just load the return address off the stack.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009723 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009724 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009725 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Chris Lattnerf6a81562007-12-08 06:59:59 +00009726}
9727
Dan Gohman21cea8a2010-04-17 15:26:15 +00009728SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
9729 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00009730 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009731 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00009732
Owen Anderson53aa7a92009-08-10 22:56:29 +00009733 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00009734 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009735
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00009736 MachineFunction &MF = DAG.getMachineFunction();
9737 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009738 MFI->setFrameAddressIsTaken(true);
Hal Finkelaa03c032013-03-21 19:03:19 +00009739
9740 // Naked functions never have a frame pointer, and so we use r1. For all
9741 // other functions, this decision must be delayed until during PEI.
9742 unsigned FrameReg;
9743 if (MF.getFunction()->getAttributes().hasAttribute(
9744 AttributeSet::FunctionIndex, Attribute::Naked))
9745 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
9746 else
9747 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
9748
Dale Johannesen81bfca72010-05-03 22:59:34 +00009749 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
9750 PtrVT);
9751 while (Depth--)
9752 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009753 FrameAddr, MachinePointerInfo(), false, false,
9754 false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009755 return FrameAddr;
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00009756}
Dan Gohmanc14e5222008-10-21 03:41:46 +00009757
Hal Finkel0d8db462014-05-11 19:29:11 +00009758// FIXME? Maybe this could be a TableGen attribute on some registers and
9759// this table could be generated automatically from RegInfo.
9760unsigned PPCTargetLowering::getRegisterByName(const char* RegName,
9761 EVT VT) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009762 bool isPPC64 = Subtarget.isPPC64();
9763 bool isDarwinABI = Subtarget.isDarwinABI();
Hal Finkel0d8db462014-05-11 19:29:11 +00009764
9765 if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) ||
9766 (!isPPC64 && VT != MVT::i32))
9767 report_fatal_error("Invalid register global variable type");
9768
9769 bool is64Bit = isPPC64 && VT == MVT::i64;
9770 unsigned Reg = StringSwitch<unsigned>(RegName)
9771 .Case("r1", is64Bit ? PPC::X1 : PPC::R1)
9772 .Case("r2", isDarwinABI ? 0 : (is64Bit ? PPC::X2 : PPC::R2))
9773 .Case("r13", (!isPPC64 && isDarwinABI) ? 0 :
9774 (is64Bit ? PPC::X13 : PPC::R13))
9775 .Default(0);
9776
9777 if (Reg)
9778 return Reg;
9779 report_fatal_error("Invalid register name global variable");
9780}
9781
Dan Gohmanc14e5222008-10-21 03:41:46 +00009782bool
9783PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
9784 // The PowerPC target isn't yet aware of offsets.
9785 return false;
9786}
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009787
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009788bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
9789 const CallInst &I,
9790 unsigned Intrinsic) const {
9791
9792 switch (Intrinsic) {
9793 case Intrinsic::ppc_altivec_lvx:
9794 case Intrinsic::ppc_altivec_lvxl:
9795 case Intrinsic::ppc_altivec_lvebx:
9796 case Intrinsic::ppc_altivec_lvehx:
Bill Schmidt72954782014-11-12 04:19:40 +00009797 case Intrinsic::ppc_altivec_lvewx:
9798 case Intrinsic::ppc_vsx_lxvd2x:
9799 case Intrinsic::ppc_vsx_lxvw4x: {
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009800 EVT VT;
9801 switch (Intrinsic) {
9802 case Intrinsic::ppc_altivec_lvebx:
9803 VT = MVT::i8;
9804 break;
9805 case Intrinsic::ppc_altivec_lvehx:
9806 VT = MVT::i16;
9807 break;
9808 case Intrinsic::ppc_altivec_lvewx:
9809 VT = MVT::i32;
9810 break;
Bill Schmidt72954782014-11-12 04:19:40 +00009811 case Intrinsic::ppc_vsx_lxvd2x:
9812 VT = MVT::v2f64;
9813 break;
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009814 default:
9815 VT = MVT::v4i32;
9816 break;
9817 }
9818
9819 Info.opc = ISD::INTRINSIC_W_CHAIN;
9820 Info.memVT = VT;
9821 Info.ptrVal = I.getArgOperand(0);
9822 Info.offset = -VT.getStoreSize()+1;
9823 Info.size = 2*VT.getStoreSize()-1;
9824 Info.align = 1;
9825 Info.vol = false;
9826 Info.readMem = true;
9827 Info.writeMem = false;
9828 return true;
9829 }
9830 case Intrinsic::ppc_altivec_stvx:
9831 case Intrinsic::ppc_altivec_stvxl:
9832 case Intrinsic::ppc_altivec_stvebx:
9833 case Intrinsic::ppc_altivec_stvehx:
Bill Schmidt72954782014-11-12 04:19:40 +00009834 case Intrinsic::ppc_altivec_stvewx:
9835 case Intrinsic::ppc_vsx_stxvd2x:
9836 case Intrinsic::ppc_vsx_stxvw4x: {
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009837 EVT VT;
9838 switch (Intrinsic) {
9839 case Intrinsic::ppc_altivec_stvebx:
9840 VT = MVT::i8;
9841 break;
9842 case Intrinsic::ppc_altivec_stvehx:
9843 VT = MVT::i16;
9844 break;
9845 case Intrinsic::ppc_altivec_stvewx:
9846 VT = MVT::i32;
9847 break;
Bill Schmidt72954782014-11-12 04:19:40 +00009848 case Intrinsic::ppc_vsx_stxvd2x:
9849 VT = MVT::v2f64;
9850 break;
Hal Finkel46ef7ce2014-08-13 01:15:40 +00009851 default:
9852 VT = MVT::v4i32;
9853 break;
9854 }
9855
9856 Info.opc = ISD::INTRINSIC_VOID;
9857 Info.memVT = VT;
9858 Info.ptrVal = I.getArgOperand(1);
9859 Info.offset = -VT.getStoreSize()+1;
9860 Info.size = 2*VT.getStoreSize()-1;
9861 Info.align = 1;
9862 Info.vol = false;
9863 Info.readMem = false;
9864 Info.writeMem = true;
9865 return true;
9866 }
9867 default:
9868 break;
9869 }
9870
9871 return false;
9872}
9873
Evan Chengd9929f02010-04-01 20:10:42 +00009874/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng61399372010-04-02 19:36:14 +00009875/// and store operations as a result of memset, memcpy, and memmove
9876/// lowering. If DstAlign is zero that means it's safe to destination
9877/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
9878/// means there isn't a need to check it against alignment requirement,
Evan Cheng962711e2012-12-12 02:34:41 +00009879/// probably because the source does not need to be loaded. If 'IsMemset' is
9880/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
9881/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
9882/// source is constant so it does not need to be loaded.
Dan Gohman148c69a2010-04-16 20:11:05 +00009883/// It returns EVT::Other if the type should be determined using generic
9884/// target-independent logic.
Evan Cheng43cd9e32010-04-01 06:04:33 +00009885EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
9886 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00009887 bool IsMemset, bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00009888 bool MemcpyStrSrc,
Dan Gohman148c69a2010-04-16 20:11:05 +00009889 MachineFunction &MF) const {
Eric Christopherd90a8742014-06-12 22:38:20 +00009890 if (Subtarget.isPPC64()) {
Owen Anderson9f944592009-08-11 20:47:22 +00009891 return MVT::i64;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009892 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00009893 return MVT::i32;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009894 }
9895}
Hal Finkel88ed4e32012-04-01 19:23:08 +00009896
Hal Finkel34974ed2014-04-12 21:52:38 +00009897/// \brief Returns true if it is beneficial to convert a load of a constant
9898/// to just the constant itself.
9899bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
9900 Type *Ty) const {
9901 assert(Ty->isIntegerTy());
9902
9903 unsigned BitSize = Ty->getPrimitiveSizeInBits();
9904 if (BitSize == 0 || BitSize > 64)
9905 return false;
9906 return true;
9907}
9908
9909bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
9910 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9911 return false;
9912 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9913 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
9914 return NumBits1 == 64 && NumBits2 == 32;
9915}
9916
9917bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
9918 if (!VT1.isInteger() || !VT2.isInteger())
9919 return false;
9920 unsigned NumBits1 = VT1.getSizeInBits();
9921 unsigned NumBits2 = VT2.getSizeInBits();
9922 return NumBits1 == 64 && NumBits2 == 32;
9923}
9924
Hal Finkel5d5d1532015-01-10 08:21:59 +00009925bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
9926 // Generally speaking, zexts are not free, but they are free when they can be
9927 // folded with other operations.
9928 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) {
9929 EVT MemVT = LD->getMemoryVT();
9930 if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 ||
9931 (Subtarget.isPPC64() && MemVT == MVT::i32)) &&
9932 (LD->getExtensionType() == ISD::NON_EXTLOAD ||
9933 LD->getExtensionType() == ISD::ZEXTLOAD))
9934 return true;
9935 }
9936
9937 // FIXME: Add other cases...
9938 // - 32-bit shifts with a zext to i64
9939 // - zext after ctlz, bswap, etc.
9940 // - zext after and by a constant mask
9941
9942 return TargetLowering::isZExtFree(Val, VT2);
9943}
9944
Olivier Sallenave32509692015-01-13 15:06:36 +00009945bool PPCTargetLowering::isFPExtFree(EVT VT) const {
9946 assert(VT.isFloatingPoint());
9947 return true;
9948}
9949
Hal Finkel34974ed2014-04-12 21:52:38 +00009950bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
9951 return isInt<16>(Imm) || isUInt<16>(Imm);
9952}
9953
9954bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
9955 return isInt<16>(Imm) || isUInt<16>(Imm);
9956}
9957
Matt Arsenault6f2a5262014-07-27 17:46:40 +00009958bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
9959 unsigned,
9960 unsigned,
9961 bool *Fast) const {
Hal Finkel8d7fbc92013-03-15 15:27:13 +00009962 if (DisablePPCUnaligned)
9963 return false;
9964
9965 // PowerPC supports unaligned memory access for simple non-vector types.
9966 // Although accessing unaligned addresses is not as efficient as accessing
9967 // aligned addresses, it is generally more efficient than manual expansion,
9968 // and generally only traps for software emulation when crossing page
9969 // boundaries.
9970
9971 if (!VT.isSimple())
9972 return false;
9973
Hal Finkel6e28e6a2014-03-26 19:39:09 +00009974 if (VT.getSimpleVT().isVector()) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009975 if (Subtarget.hasVSX()) {
Bill Schmidt2d1128a2014-10-17 15:13:38 +00009976 if (VT != MVT::v2f64 && VT != MVT::v2i64 &&
9977 VT != MVT::v4f32 && VT != MVT::v4i32)
Hal Finkel6e28e6a2014-03-26 19:39:09 +00009978 return false;
9979 } else {
9980 return false;
9981 }
9982 }
Hal Finkel8d7fbc92013-03-15 15:27:13 +00009983
9984 if (VT == MVT::ppcf128)
9985 return false;
9986
9987 if (Fast)
9988 *Fast = true;
9989
9990 return true;
9991}
9992
Stephen Lin73de7bf2013-07-09 18:16:56 +00009993bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
9994 VT = VT.getScalarType();
9995
Hal Finkel0a479ae2012-06-22 00:49:52 +00009996 if (!VT.isSimple())
9997 return false;
9998
9999 switch (VT.getSimpleVT().SimpleTy) {
10000 case MVT::f32:
10001 case MVT::f64:
Hal Finkel0a479ae2012-06-22 00:49:52 +000010002 return true;
10003 default:
10004 break;
10005 }
10006
10007 return false;
10008}
10009
Hal Finkel934361a2015-01-14 01:07:51 +000010010const MCPhysReg *
10011PPCTargetLowering::getScratchRegisters(CallingConv::ID) const {
10012 // LR is a callee-save register, but we must treat it as clobbered by any call
10013 // site. Hence we include LR in the scratch registers, which are in turn added
10014 // as implicit-defs for stackmaps and patchpoints. The same reasoning applies
10015 // to CTR, which is used by any indirect call.
10016 static const MCPhysReg ScratchRegs[] = {
Hal Finkelc19805a2015-01-17 03:57:34 +000010017 PPC::X12, PPC::LR8, PPC::CTR8, 0
Hal Finkel934361a2015-01-14 01:07:51 +000010018 };
10019
10020 return ScratchRegs;
10021}
10022
Hal Finkelb4240ca2014-03-31 17:48:16 +000010023bool
10024PPCTargetLowering::shouldExpandBuildVectorWithShuffles(
10025 EVT VT , unsigned DefinedValues) const {
10026 if (VT == MVT::v2i64)
10027 return false;
10028
10029 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
10030}
10031
Hal Finkel88ed4e32012-04-01 19:23:08 +000010032Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +000010033 if (DisableILPPref || Subtarget.enableMachineScheduler())
Hal Finkel4e9f1a82012-06-10 19:32:29 +000010034 return TargetLowering::getSchedulingPreference(N);
Hal Finkel88ed4e32012-04-01 19:23:08 +000010035
Hal Finkel4e9f1a82012-06-10 19:32:29 +000010036 return Sched::ILP;
Hal Finkel88ed4e32012-04-01 19:23:08 +000010037}
10038
Bill Schmidt0cf702f2013-07-30 00:50:39 +000010039// Create a fast isel object.
10040FastISel *
10041PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
10042 const TargetLibraryInfo *LibInfo) const {
10043 return PPC::createFastISel(FuncInfo, LibInfo);
10044}