blob: 6f649dc0da8f5768bde7700ab5aacb84d85b9cdd [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"
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +000022#include "llvm/ADT/Statistic.h"
Hal Finkel0d8db462014-05-11 19:29:11 +000023#include "llvm/ADT/StringSwitch.h"
Eric Christopher89958332014-05-31 00:07:32 +000024#include "llvm/ADT/Triple.h"
Chris Lattner4f2e4e02007-03-06 00:59:59 +000025#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000026#include "llvm/CodeGen/MachineFrameInfo.h"
27#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner9b577f12005-08-26 21:23:58 +000028#include "llvm/CodeGen/MachineInstrBuilder.h"
Hal Finkel57725662015-01-03 17:58:24 +000029#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000031#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000032#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/CallingConv.h"
34#include "llvm/IR/Constants.h"
35#include "llvm/IR/DerivedTypes.h"
36#include "llvm/IR/Function.h"
37#include "llvm/IR/Intrinsics.h"
Chris Lattnerce645542006-11-10 02:08:47 +000038#include "llvm/Support/CommandLine.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000039#include "llvm/Support/ErrorHandling.h"
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +000040#include "llvm/Support/Format.h"
Craig Topperb25fda92012-03-17 18:46:09 +000041#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000042#include "llvm/Support/raw_ostream.h"
Craig Topperb25fda92012-03-17 18:46:09 +000043#include "llvm/Target/TargetOptions.h"
Kit Bartond4eb73c2015-05-05 16:10:44 +000044
Chris Lattnerf22556d2005-08-16 17:14:42 +000045using namespace llvm;
46
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +000047#define DEBUG_TYPE "ppc-lowering"
48
Hal Finkel595817e2012-06-04 02:21:00 +000049static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
50cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
Chris Lattnerce645542006-11-10 02:08:47 +000051
Hal Finkel4e9f1a82012-06-10 19:32:29 +000052static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
53cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
54
Hal Finkel8d7fbc92013-03-15 15:27:13 +000055static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
56cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
57
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +000058static cl::opt<bool> DisableSCO("disable-ppc-sco",
59cl::desc("disable sibling call optimization on ppc"), cl::Hidden);
60
61STATISTIC(NumTailCalls, "Number of tail calls");
62STATISTIC(NumSiblingCalls, "Number of sibling calls");
63
Hal Finkel940ab932014-02-28 00:27:01 +000064// FIXME: Remove this once the bug has been fixed!
65extern cl::opt<bool> ANDIGlueBug;
66
Eric Christophercccae792015-01-30 22:02:31 +000067PPCTargetLowering::PPCTargetLowering(const PPCTargetMachine &TM,
68 const PPCSubtarget &STI)
69 : TargetLowering(TM), Subtarget(STI) {
Chris Lattnera028e7a2005-09-27 22:18:25 +000070 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikov3b7c2572006-12-10 23:12:42 +000071 setUseUnderscoreSetJmp(true);
72 setUseUnderscoreLongJmp(true);
Scott Michelcf0da6c2009-02-17 22:15:04 +000073
Chris Lattnerd10babf2010-10-10 18:34:00 +000074 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
75 // arguments are at least 4/8 bytes aligned.
Eric Christopherb1aaebe2014-06-12 22:38:18 +000076 bool isPPC64 = Subtarget.isPPC64();
Evan Cheng39e90022012-07-02 22:39:56 +000077 setMinStackArgumentAlignment(isPPC64 ? 8:4);
Wesley Peck527da1b2010-11-23 03:31:01 +000078
Chris Lattnerf22556d2005-08-16 17:14:42 +000079 // Set up the register classes.
Craig Topperabadc662012-04-20 06:31:50 +000080 addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
Petar Jovanovic280f7102015-12-14 17:57:33 +000081 if (!Subtarget.useSoftFloat()) {
82 addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
83 addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
84 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000085
Evan Cheng5d9fd972006-10-04 00:56:09 +000086 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +000087 for (MVT VT : MVT::integer_valuetypes()) {
88 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
89 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand);
90 }
Duncan Sands95d46ef2008-01-23 20:39:46 +000091
Owen Anderson9f944592009-08-11 20:47:22 +000092 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +000093
Chris Lattnerc9fa36d2006-11-10 23:58:45 +000094 // PowerPC has pre-inc load and store's.
Owen Anderson9f944592009-08-11 20:47:22 +000095 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
96 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
97 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
98 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
99 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
Hal Finkel65d1cbf2015-02-05 18:42:53 +0000100 setIndexedLoadAction(ISD::PRE_INC, MVT::f32, Legal);
101 setIndexedLoadAction(ISD::PRE_INC, MVT::f64, Legal);
Owen Anderson9f944592009-08-11 20:47:22 +0000102 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
103 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
104 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
105 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
106 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
Hal Finkel65d1cbf2015-02-05 18:42:53 +0000107 setIndexedStoreAction(ISD::PRE_INC, MVT::f32, Legal);
108 setIndexedStoreAction(ISD::PRE_INC, MVT::f64, Legal);
Evan Cheng36a8fbf2006-11-09 19:11:50 +0000109
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000110 if (Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000111 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
112
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000113 if (isPPC64 || Subtarget.hasFPCVT()) {
Hal Finkel6a56b212014-03-05 22:14:00 +0000114 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
115 AddPromotedToType (ISD::SINT_TO_FP, MVT::i1,
116 isPPC64 ? MVT::i64 : MVT::i32);
117 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +0000118 AddPromotedToType(ISD::UINT_TO_FP, MVT::i1,
119 isPPC64 ? MVT::i64 : MVT::i32);
Hal Finkel6a56b212014-03-05 22:14:00 +0000120 } else {
121 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom);
122 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom);
123 }
Hal Finkel940ab932014-02-28 00:27:01 +0000124
125 // PowerPC does not support direct load / store of condition registers
126 setOperationAction(ISD::LOAD, MVT::i1, Custom);
127 setOperationAction(ISD::STORE, MVT::i1, Custom);
128
129 // FIXME: Remove this once the ANDI glue bug is fixed:
130 if (ANDIGlueBug)
131 setOperationAction(ISD::TRUNCATE, MVT::i1, Custom);
132
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000133 for (MVT VT : MVT::integer_valuetypes()) {
134 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
135 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote);
136 setTruncStoreAction(VT, MVT::i1, Expand);
137 }
Hal Finkel940ab932014-02-28 00:27:01 +0000138
139 addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass);
140 }
141
Dale Johannesen666323e2007-10-10 01:01:31 +0000142 // This is used in the ppcf128->int sequence. Note it has different semantics
143 // from FP_ROUND: that rounds to nearest, this rounds to zero.
Owen Anderson9f944592009-08-11 20:47:22 +0000144 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesenf864ac92007-10-06 01:24:11 +0000145
Roman Divacky1faf5b02012-08-16 18:19:29 +0000146 // We do not currently implement these libm ops for PowerPC.
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000147 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
148 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand);
149 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
150 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand);
151 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
Bill Schmidt92e26642013-04-03 13:05:44 +0000152 setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000153
Chris Lattnerf22556d2005-08-16 17:14:42 +0000154 // PowerPC has no SREM/UREM instructions
Owen Anderson9f944592009-08-11 20:47:22 +0000155 setOperationAction(ISD::SREM, MVT::i32, Expand);
156 setOperationAction(ISD::UREM, MVT::i32, Expand);
157 setOperationAction(ISD::SREM, MVT::i64, Expand);
158 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman71f0d7d2007-10-08 17:28:24 +0000159
160 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson9f944592009-08-11 20:47:22 +0000161 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
162 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
163 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
164 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
165 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
166 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
167 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
168 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000169
Dan Gohman482732a2007-10-11 23:21:31 +0000170 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson9f944592009-08-11 20:47:22 +0000171 setOperationAction(ISD::FSIN , MVT::f64, Expand);
172 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000173 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000174 setOperationAction(ISD::FREM , MVT::f64, Expand);
175 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000176 setOperationAction(ISD::FMA , MVT::f64, Legal);
Owen Anderson9f944592009-08-11 20:47:22 +0000177 setOperationAction(ISD::FSIN , MVT::f32, Expand);
178 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000179 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000180 setOperationAction(ISD::FREM , MVT::f32, Expand);
181 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000182 setOperationAction(ISD::FMA , MVT::f32, Legal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +0000183
Owen Anderson9f944592009-08-11 20:47:22 +0000184 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000185
Chris Lattnerf22556d2005-08-16 17:14:42 +0000186 // If we're enabling GP optimizations, use hardware square root
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000187 if (!Subtarget.hasFSQRT() &&
Eric Christophercccae792015-01-30 22:02:31 +0000188 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTE() &&
189 Subtarget.hasFRE()))
Owen Anderson9f944592009-08-11 20:47:22 +0000190 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Hal Finkel2e103312013-04-03 04:01:11 +0000191
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000192 if (!Subtarget.hasFSQRT() &&
Eric Christophercccae792015-01-30 22:02:31 +0000193 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTES() &&
194 Subtarget.hasFRES()))
Owen Anderson9f944592009-08-11 20:47:22 +0000195 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000196
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000197 if (Subtarget.hasFCPSGN()) {
Hal Finkeldbc78e12013-08-19 05:01:02 +0000198 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
199 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
200 } else {
201 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
202 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
203 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000204
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000205 if (Subtarget.hasFPRND()) {
Hal Finkelc20a08d2013-03-29 08:57:48 +0000206 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
207 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
208 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000209 setOperationAction(ISD::FROUND, MVT::f64, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000210
211 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
212 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
213 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000214 setOperationAction(ISD::FROUND, MVT::f32, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000215 }
216
Nate Begeman2fba8a32006-01-14 03:14:10 +0000217 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson9f944592009-08-11 20:47:22 +0000218 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000219 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000220 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
221 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000222 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000223 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000224 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
225 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000226
Hal Finkelfa7057a2016-03-29 01:36:01 +0000227 if (Subtarget.hasPOPCNTD() == PPCSubtarget::POPCNTD_Fast) {
Hal Finkel290376d2013-04-01 15:58:15 +0000228 setOperationAction(ISD::CTPOP, MVT::i32 , Legal);
Hal Finkela4d07482013-03-28 13:29:47 +0000229 setOperationAction(ISD::CTPOP, MVT::i64 , Legal);
230 } else {
231 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
232 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
233 }
234
Nate Begeman1b8121b2006-01-11 21:21:00 +0000235 // PowerPC does not have ROTR
Owen Anderson9f944592009-08-11 20:47:22 +0000236 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
237 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000238
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000239 if (!Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000240 // PowerPC does not have Select
241 setOperationAction(ISD::SELECT, MVT::i32, Expand);
242 setOperationAction(ISD::SELECT, MVT::i64, Expand);
243 setOperationAction(ISD::SELECT, MVT::f32, Expand);
244 setOperationAction(ISD::SELECT, MVT::f64, Expand);
245 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000246
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000247 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson9f944592009-08-11 20:47:22 +0000248 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
249 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begemana162f202006-01-31 08:17:29 +0000250
Nate Begeman7e7f4392006-02-01 07:19:44 +0000251 // PowerPC wants to optimize integer setcc a bit
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000252 if (!Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000253 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000254
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000255 // PowerPC does not have BRCOND which requires SetCC
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000256 if (!Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000257 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Cheng0d41d192006-10-30 08:02:39 +0000258
Owen Anderson9f944592009-08-11 20:47:22 +0000259 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000260
Chris Lattnerda2e04c2005-08-31 21:09:52 +0000261 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson9f944592009-08-11 20:47:22 +0000262 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000263
Jim Laskey6267b2c2005-08-17 00:40:22 +0000264 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson9f944592009-08-11 20:47:22 +0000265 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
266 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskey6267b2c2005-08-17 00:40:22 +0000267
Nemanja Ivanovic5ebc92d2016-03-24 13:40:33 +0000268 if (Subtarget.hasDirectMove() && isPPC64) {
Nemanja Ivanovic89224762015-12-15 14:50:34 +0000269 setOperationAction(ISD::BITCAST, MVT::f32, Legal);
270 setOperationAction(ISD::BITCAST, MVT::i32, Legal);
271 setOperationAction(ISD::BITCAST, MVT::i64, Legal);
272 setOperationAction(ISD::BITCAST, MVT::f64, Legal);
273 } else {
274 setOperationAction(ISD::BITCAST, MVT::f32, Expand);
275 setOperationAction(ISD::BITCAST, MVT::i32, Expand);
276 setOperationAction(ISD::BITCAST, MVT::i64, Expand);
277 setOperationAction(ISD::BITCAST, MVT::f64, Expand);
278 }
Chris Lattnerc46fc242005-12-23 05:13:35 +0000279
Chris Lattner84b49d52006-04-28 21:56:10 +0000280 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson9f944592009-08-11 20:47:22 +0000281 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskeye0008e22007-02-22 14:56:36 +0000282
Hal Finkel1996f3d2013-03-27 19:10:42 +0000283 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Hal Finkel756810f2013-03-21 21:37:52 +0000284 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
285 // support continuation, user-level threading, and etc.. As a result, no
286 // other SjLj exception interfaces are implemented and please don't build
287 // your own exception handling based on them.
288 // LLVM/Clang supports zero-cost DWARF exception handling.
289 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
290 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000291
292 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman4e56db62005-12-10 02:36:00 +0000293 // appropriate instructions to materialize the address.
Owen Anderson9f944592009-08-11 20:47:22 +0000294 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
295 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000296 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000297 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
298 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
299 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
300 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000301 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000302 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
303 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000304
Nate Begemanf69d13b2008-08-11 17:36:31 +0000305 // TRAP is legal.
Owen Anderson9f944592009-08-11 20:47:22 +0000306 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling95e1af22008-09-17 00:30:57 +0000307
308 // TRAMPOLINE is custom lowered.
Duncan Sandsa0984362011-09-06 13:37:06 +0000309 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
310 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Bill Wendling95e1af22008-09-17 00:30:57 +0000311
Nate Begemane74795c2006-01-25 18:21:52 +0000312 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson9f944592009-08-11 20:47:22 +0000313 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000314
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000315 if (Subtarget.isSVR4ABI()) {
Evan Cheng39e90022012-07-02 22:39:56 +0000316 if (isPPC64) {
Hal Finkele44eb282012-03-24 03:53:55 +0000317 // VAARG always uses double-word chunks, so promote anything smaller.
318 setOperationAction(ISD::VAARG, MVT::i1, Promote);
319 AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
320 setOperationAction(ISD::VAARG, MVT::i8, Promote);
321 AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
322 setOperationAction(ISD::VAARG, MVT::i16, Promote);
323 AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
324 setOperationAction(ISD::VAARG, MVT::i32, Promote);
325 AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
326 setOperationAction(ISD::VAARG, MVT::Other, Expand);
327 } else {
328 // VAARG is custom lowered with the 32-bit SVR4 ABI.
329 setOperationAction(ISD::VAARG, MVT::Other, Custom);
330 setOperationAction(ISD::VAARG, MVT::i64, Custom);
331 }
Roman Divacky4394e682011-06-28 15:30:42 +0000332 } else
Owen Anderson9f944592009-08-11 20:47:22 +0000333 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000334
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000335 if (Subtarget.isSVR4ABI() && !isPPC64)
Roman Divackyc3825df2013-07-25 21:36:47 +0000336 // VACOPY is custom lowered with the 32-bit SVR4 ABI.
337 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
338 else
339 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
340
Chris Lattner5bd514d2006-01-15 09:02:48 +0000341 // Use the default implementation.
Owen Anderson9f944592009-08-11 20:47:22 +0000342 setOperationAction(ISD::VAEND , MVT::Other, Expand);
343 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
344 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
345 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
346 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Yury Gribovd7dbb662015-12-01 11:40:55 +0000347 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, MVT::i32, Custom);
348 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, MVT::i64, Custom);
Chris Lattnerab4df8342006-10-18 01:18:48 +0000349
Chris Lattner6961fc72006-03-26 10:06:40 +0000350 // We want to custom lower some of our intrinsics.
Owen Anderson9f944592009-08-11 20:47:22 +0000351 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000352
Hal Finkel25c19922013-05-15 21:37:41 +0000353 // To handle counter-based loop conditions.
354 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
355
Dale Johannesen160be0f2008-11-07 22:54:33 +0000356 // Comparisons that require checking two conditions.
Owen Anderson9f944592009-08-11 20:47:22 +0000357 setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
358 setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
359 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
360 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
361 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
362 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
363 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
364 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
365 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
366 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
367 setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
368 setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000369
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000370 if (Subtarget.has64BitSupport()) {
Nate Begeman0b71e002005-10-18 00:28:58 +0000371 // They also have instructions for converting between i64 and fp.
Owen Anderson9f944592009-08-11 20:47:22 +0000372 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
373 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
374 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
375 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Dale Johannesen37bc85f2009-06-04 20:53:52 +0000376 // This is just the low 32 bits of a (signed) fp->i64 conversion.
377 // We cannot do this with Promote because i64 is not a legal type.
Owen Anderson9f944592009-08-11 20:47:22 +0000378 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000379
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000380 if (Subtarget.hasLFIWAX() || Subtarget.isPPC64())
Hal Finkele53429a2013-03-31 01:58:02 +0000381 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begeman762bf802005-10-25 23:48:36 +0000382 } else {
Chris Lattner595088a2005-11-17 07:30:41 +0000383 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson9f944592009-08-11 20:47:22 +0000384 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begemane74dfbb2005-10-18 00:56:42 +0000385 }
386
Hal Finkelf6d45f22013-04-01 17:52:07 +0000387 // With the instructions enabled under FPCVT, we can do everything.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000388 if (Subtarget.hasFPCVT()) {
389 if (Subtarget.has64BitSupport()) {
Hal Finkelf6d45f22013-04-01 17:52:07 +0000390 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
391 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
392 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
393 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
394 }
395
396 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
397 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
398 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
399 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
400 }
401
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000402 if (Subtarget.use64BitRegs()) {
Chris Lattnerb1935762007-10-19 04:08:28 +0000403 // 64-bit PowerPC implementations can support i64 types directly
Craig Topperabadc662012-04-20 06:31:50 +0000404 addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
Nate Begeman0b71e002005-10-18 00:28:58 +0000405 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson9f944592009-08-11 20:47:22 +0000406 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman8d2ead22008-03-07 20:36:53 +0000407 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000408 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
409 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
410 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman0b71e002005-10-18 00:28:58 +0000411 } else {
Chris Lattnerb1935762007-10-19 04:08:28 +0000412 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000413 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
414 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
415 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000416 }
Evan Cheng19264272006-03-01 01:11:20 +0000417
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000418 if (Subtarget.hasAltivec()) {
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000419 // First set operation action for all vector types to expand. Then we
420 // will selectively turn on ones that can be effectively codegen'd.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000421 for (MVT VT : MVT::vector_valuetypes()) {
Chris Lattner06a21ba2006-04-16 01:37:57 +0000422 // add/sub are legal for all supported vector VT's.
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +0000423 setOperationAction(ISD::ADD, VT, Legal);
424 setOperationAction(ISD::SUB, VT, Legal);
425
Bill Schmidt433b1c32015-02-05 15:24:47 +0000426 // Vector instructions introduced in P8
Kit Bartond4eb73c2015-05-05 16:10:44 +0000427 if (Subtarget.hasP8Altivec() && (VT.SimpleTy != MVT::v1i128)) {
Bill Schmidtfe88b182015-02-03 21:58:23 +0000428 setOperationAction(ISD::CTPOP, VT, Legal);
Bill Schmidt433b1c32015-02-05 15:24:47 +0000429 setOperationAction(ISD::CTLZ, VT, Legal);
430 }
431 else {
Bill Schmidtfe88b182015-02-03 21:58:23 +0000432 setOperationAction(ISD::CTPOP, VT, Expand);
Bill Schmidt433b1c32015-02-05 15:24:47 +0000433 setOperationAction(ISD::CTLZ, VT, Expand);
434 }
Bill Schmidtfe88b182015-02-03 21:58:23 +0000435
Chris Lattner95c7adc2006-04-04 17:25:31 +0000436 // We promote all shuffles to v16i8.
Duncan Sands13237ac2008-06-06 12:08:01 +0000437 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000438 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattner06a21ba2006-04-16 01:37:57 +0000439
440 // We promote all non-typed operations to v4i32.
Duncan Sands13237ac2008-06-06 12:08:01 +0000441 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000442 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000443 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000444 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000445 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000446 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000447 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000448 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000449 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000450 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Hal Finkela2cdbce2015-08-30 22:12:50 +0000451 setOperationAction(ISD::SELECT_CC, VT, Promote);
452 AddPromotedToType (ISD::SELECT_CC, VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000453 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000454 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000455
Chris Lattner06a21ba2006-04-16 01:37:57 +0000456 // No other operations are legal.
Duncan Sands13237ac2008-06-06 12:08:01 +0000457 setOperationAction(ISD::MUL , VT, Expand);
458 setOperationAction(ISD::SDIV, VT, Expand);
459 setOperationAction(ISD::SREM, VT, Expand);
460 setOperationAction(ISD::UDIV, VT, Expand);
461 setOperationAction(ISD::UREM, VT, Expand);
462 setOperationAction(ISD::FDIV, VT, Expand);
Hal Finkele3930222013-07-08 17:30:25 +0000463 setOperationAction(ISD::FREM, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000464 setOperationAction(ISD::FNEG, VT, Expand);
Craig Topperc8a2adf2012-11-15 08:02:19 +0000465 setOperationAction(ISD::FSQRT, VT, Expand);
466 setOperationAction(ISD::FLOG, VT, Expand);
467 setOperationAction(ISD::FLOG10, VT, Expand);
468 setOperationAction(ISD::FLOG2, VT, Expand);
469 setOperationAction(ISD::FEXP, VT, Expand);
470 setOperationAction(ISD::FEXP2, VT, Expand);
471 setOperationAction(ISD::FSIN, VT, Expand);
472 setOperationAction(ISD::FCOS, VT, Expand);
473 setOperationAction(ISD::FABS, VT, Expand);
474 setOperationAction(ISD::FPOWI, VT, Expand);
Craig Topperc4343f22012-11-14 08:11:25 +0000475 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper61d04572012-11-15 06:51:10 +0000476 setOperationAction(ISD::FCEIL, VT, Expand);
477 setOperationAction(ISD::FTRUNC, VT, Expand);
478 setOperationAction(ISD::FRINT, VT, Expand);
479 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000480 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
481 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
482 setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
Ulrich Weigand51eccec2014-08-04 13:27:12 +0000483 setOperationAction(ISD::MULHU, VT, Expand);
484 setOperationAction(ISD::MULHS, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000485 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
486 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
487 setOperationAction(ISD::UDIVREM, VT, Expand);
488 setOperationAction(ISD::SDIVREM, VT, Expand);
489 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
490 setOperationAction(ISD::FPOW, VT, Expand);
Benjamin Kramerf3ad2352014-05-19 13:12:38 +0000491 setOperationAction(ISD::BSWAP, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000492 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000493 setOperationAction(ISD::CTTZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000494 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
Benjamin Kramerc5071462012-12-19 15:49:14 +0000495 setOperationAction(ISD::VSELECT, VT, Expand);
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000496 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
Nemanja Ivanovic74e31bc2015-12-02 10:36:24 +0000497 setOperationAction(ISD::ROTL, VT, Expand);
498 setOperationAction(ISD::ROTR, VT, Expand);
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000499
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000500 for (MVT InnerVT : MVT::vector_valuetypes()) {
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000501 setTruncStoreAction(VT, InnerVT, Expand);
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000502 setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
503 setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
504 setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
505 }
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000506 }
507
Chris Lattner95c7adc2006-04-04 17:25:31 +0000508 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
509 // with merges, splats, etc.
Owen Anderson9f944592009-08-11 20:47:22 +0000510 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner95c7adc2006-04-04 17:25:31 +0000511
Owen Anderson9f944592009-08-11 20:47:22 +0000512 setOperationAction(ISD::AND , MVT::v4i32, Legal);
513 setOperationAction(ISD::OR , MVT::v4i32, Legal);
514 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
515 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
Hal Finkel940ab932014-02-28 00:27:01 +0000516 setOperationAction(ISD::SELECT, MVT::v4i32,
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000517 Subtarget.useCRBits() ? Legal : Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000518 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
Adhemerval Zanella5c6e0842012-10-08 17:27:24 +0000519 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
520 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
521 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
522 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
Adhemerval Zanellabdface52012-11-15 20:56:03 +0000523 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
524 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
525 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
526 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000527
Craig Topperabadc662012-04-20 06:31:50 +0000528 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
529 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
530 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
531 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000532
Owen Anderson9f944592009-08-11 20:47:22 +0000533 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000534 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
Hal Finkel2e103312013-04-03 04:01:11 +0000535
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000536 if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) {
Hal Finkel2e103312013-04-03 04:01:11 +0000537 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
538 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
539 }
540
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +0000541 if (Subtarget.hasP8Altivec())
Kit Barton20d39812015-03-10 19:49:38 +0000542 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
543 else
544 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000545
Owen Anderson9f944592009-08-11 20:47:22 +0000546 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
547 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnera8713b12006-03-20 01:53:53 +0000548
Owen Anderson9f944592009-08-11 20:47:22 +0000549 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
550 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000551
Owen Anderson9f944592009-08-11 20:47:22 +0000552 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
553 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
554 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
555 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Adhemerval Zanella56775e02012-10-30 13:50:19 +0000556
557 // Altivec does not contain unordered floating-point compare instructions
558 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
559 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
Hal Finkel21ada792013-07-08 20:00:03 +0000560 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand);
561 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
Hal Finkel27774d92014-03-13 07:58:58 +0000562
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000563 if (Subtarget.hasVSX()) {
Hal Finkel27774d92014-03-13 07:58:58 +0000564 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal);
Nemanja Ivanovicd3896572015-10-09 11:12:18 +0000565 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
566 if (Subtarget.hasP8Vector()) {
Nemanja Ivanovic1c39ca62015-08-13 17:40:44 +0000567 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Legal);
Nemanja Ivanovicd3896572015-10-09 11:12:18 +0000568 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Legal);
569 }
Nemanja Ivanovic5ebc92d2016-03-24 13:40:33 +0000570 if (Subtarget.hasDirectMove() && isPPC64) {
Nemanja Ivanovic1c39ca62015-08-13 17:40:44 +0000571 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Legal);
572 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Legal);
573 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Legal);
Nemanja Ivanovicbe5f0c02015-11-02 14:01:11 +0000574 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i64, Legal);
Nemanja Ivanovicd3896572015-10-09 11:12:18 +0000575 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Legal);
576 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Legal);
577 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Legal);
578 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nemanja Ivanovic1c39ca62015-08-13 17:40:44 +0000579 }
Hal Finkel82569b62014-03-27 22:22:48 +0000580 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
Hal Finkel27774d92014-03-13 07:58:58 +0000581
582 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
583 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
584 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
585 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
586 setOperationAction(ISD::FROUND, MVT::v2f64, Legal);
587
588 setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
589
590 setOperationAction(ISD::MUL, MVT::v2f64, Legal);
591 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
592
593 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
594 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
595
Hal Finkel732f0f72014-03-26 12:49:28 +0000596 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
597 setOperationAction(ISD::VSELECT, MVT::v8i16, Legal);
598 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
599 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
600 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
601
Hal Finkel27774d92014-03-13 07:58:58 +0000602 // Share the Altivec comparison restrictions.
603 setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand);
604 setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand);
Hal Finkel27774d92014-03-13 07:58:58 +0000605 setCondCodeAction(ISD::SETO, MVT::v2f64, Expand);
606 setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand);
607
Hal Finkel9281c9a2014-03-26 18:26:30 +0000608 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
609 setOperationAction(ISD::STORE, MVT::v2f64, Legal);
610
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000611 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal);
612
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +0000613 if (Subtarget.hasP8Vector())
614 addRegisterClass(MVT::f32, &PPC::VSSRCRegClass);
615
Hal Finkel19be5062014-03-29 05:29:01 +0000616 addRegisterClass(MVT::f64, &PPC::VSFRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +0000617
Bill Schmidt54cced52015-07-16 21:14:07 +0000618 addRegisterClass(MVT::v4i32, &PPC::VSRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +0000619 addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass);
620 addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass);
Hal Finkela6c8b512014-03-26 16:12:58 +0000621
Kit Barton0cfa7b72015-03-03 19:55:45 +0000622 if (Subtarget.hasP8Altivec()) {
Kit Bartone48b1e12015-03-05 16:24:38 +0000623 setOperationAction(ISD::SHL, MVT::v2i64, Legal);
624 setOperationAction(ISD::SRA, MVT::v2i64, Legal);
625 setOperationAction(ISD::SRL, MVT::v2i64, Legal);
626
Kit Barton0cfa7b72015-03-03 19:55:45 +0000627 setOperationAction(ISD::SETCC, MVT::v2i64, Legal);
628 }
629 else {
Kit Bartone48b1e12015-03-05 16:24:38 +0000630 setOperationAction(ISD::SHL, MVT::v2i64, Expand);
631 setOperationAction(ISD::SRA, MVT::v2i64, Expand);
632 setOperationAction(ISD::SRL, MVT::v2i64, Expand);
633
Kit Barton0cfa7b72015-03-03 19:55:45 +0000634 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
635
636 // VSX v2i64 only supports non-arithmetic operations.
637 setOperationAction(ISD::ADD, MVT::v2i64, Expand);
638 setOperationAction(ISD::SUB, MVT::v2i64, Expand);
639 }
Hal Finkel777c9dd2014-03-29 16:04:40 +0000640
Hal Finkel9281c9a2014-03-26 18:26:30 +0000641 setOperationAction(ISD::LOAD, MVT::v2i64, Promote);
642 AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64);
643 setOperationAction(ISD::STORE, MVT::v2i64, Promote);
644 AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64);
645
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000646 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal);
647
Hal Finkel7279f4b2014-03-26 19:13:54 +0000648 setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal);
649 setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal);
650 setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal);
651 setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal);
652
Hal Finkel5c0d1452014-03-30 13:22:59 +0000653 // Vector operation legalization checks the result type of
654 // SIGN_EXTEND_INREG, overall legalization checks the inner type.
655 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal);
656 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal);
657 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
658 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
659
Kit Barton915c5ec2016-02-26 21:59:44 +0000660 setOperationAction(ISD::FNEG, MVT::v4f32, Legal);
661 setOperationAction(ISD::FNEG, MVT::v2f64, Legal);
Kit Bartona1d6a6f2016-03-09 17:48:01 +0000662 setOperationAction(ISD::FABS, MVT::v4f32, Legal);
663 setOperationAction(ISD::FABS, MVT::v2f64, Legal);
Kit Barton915c5ec2016-02-26 21:59:44 +0000664
Hal Finkela6c8b512014-03-26 16:12:58 +0000665 addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +0000666 }
Bill Schmidtfe88b182015-02-03 21:58:23 +0000667
Kit Bartond4eb73c2015-05-05 16:10:44 +0000668 if (Subtarget.hasP8Altivec()) {
Bill Schmidtfe88b182015-02-03 21:58:23 +0000669 addRegisterClass(MVT::v2i64, &PPC::VRRCRegClass);
Kit Bartond4eb73c2015-05-05 16:10:44 +0000670 addRegisterClass(MVT::v1i128, &PPC::VRRCRegClass);
671 }
Nate Begeman3e7db9c2005-11-29 08:17:20 +0000672 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000673
Hal Finkelc93a9a22015-02-25 01:06:45 +0000674 if (Subtarget.hasQPX()) {
675 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
676 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
677 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
678 setOperationAction(ISD::FREM, MVT::v4f64, Expand);
679
680 setOperationAction(ISD::FCOPYSIGN, MVT::v4f64, Legal);
681 setOperationAction(ISD::FGETSIGN, MVT::v4f64, Expand);
682
683 setOperationAction(ISD::LOAD , MVT::v4f64, Custom);
684 setOperationAction(ISD::STORE , MVT::v4f64, Custom);
685
686 setTruncStoreAction(MVT::v4f64, MVT::v4f32, Custom);
687 setLoadExtAction(ISD::EXTLOAD, MVT::v4f64, MVT::v4f32, Custom);
688
689 if (!Subtarget.useCRBits())
690 setOperationAction(ISD::SELECT, MVT::v4f64, Expand);
691 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
692
693 setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f64, Legal);
694 setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f64, Expand);
695 setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f64, Expand);
696 setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f64, Expand);
697 setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f64, Custom);
698 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f64, Legal);
699 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
700
701 setOperationAction(ISD::FP_TO_SINT , MVT::v4f64, Legal);
702 setOperationAction(ISD::FP_TO_UINT , MVT::v4f64, Expand);
703
704 setOperationAction(ISD::FP_ROUND , MVT::v4f32, Legal);
705 setOperationAction(ISD::FP_ROUND_INREG , MVT::v4f32, Expand);
706 setOperationAction(ISD::FP_EXTEND, MVT::v4f64, Legal);
707
708 setOperationAction(ISD::FNEG , MVT::v4f64, Legal);
709 setOperationAction(ISD::FABS , MVT::v4f64, Legal);
710 setOperationAction(ISD::FSIN , MVT::v4f64, Expand);
711 setOperationAction(ISD::FCOS , MVT::v4f64, Expand);
712 setOperationAction(ISD::FPOWI , MVT::v4f64, Expand);
713 setOperationAction(ISD::FPOW , MVT::v4f64, Expand);
714 setOperationAction(ISD::FLOG , MVT::v4f64, Expand);
715 setOperationAction(ISD::FLOG2 , MVT::v4f64, Expand);
716 setOperationAction(ISD::FLOG10 , MVT::v4f64, Expand);
717 setOperationAction(ISD::FEXP , MVT::v4f64, Expand);
718 setOperationAction(ISD::FEXP2 , MVT::v4f64, Expand);
719
720 setOperationAction(ISD::FMINNUM, MVT::v4f64, Legal);
721 setOperationAction(ISD::FMAXNUM, MVT::v4f64, Legal);
722
723 setIndexedLoadAction(ISD::PRE_INC, MVT::v4f64, Legal);
724 setIndexedStoreAction(ISD::PRE_INC, MVT::v4f64, Legal);
725
726 addRegisterClass(MVT::v4f64, &PPC::QFRCRegClass);
727
728 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
729 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
730 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
731 setOperationAction(ISD::FREM, MVT::v4f32, Expand);
732
733 setOperationAction(ISD::FCOPYSIGN, MVT::v4f32, Legal);
734 setOperationAction(ISD::FGETSIGN, MVT::v4f32, Expand);
735
736 setOperationAction(ISD::LOAD , MVT::v4f32, Custom);
737 setOperationAction(ISD::STORE , MVT::v4f32, Custom);
738
739 if (!Subtarget.useCRBits())
740 setOperationAction(ISD::SELECT, MVT::v4f32, Expand);
741 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
742
743 setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f32, Legal);
744 setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f32, Expand);
745 setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f32, Expand);
746 setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f32, Expand);
747 setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f32, Custom);
748 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Legal);
749 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
750
751 setOperationAction(ISD::FP_TO_SINT , MVT::v4f32, Legal);
752 setOperationAction(ISD::FP_TO_UINT , MVT::v4f32, Expand);
753
754 setOperationAction(ISD::FNEG , MVT::v4f32, Legal);
755 setOperationAction(ISD::FABS , MVT::v4f32, Legal);
756 setOperationAction(ISD::FSIN , MVT::v4f32, Expand);
757 setOperationAction(ISD::FCOS , MVT::v4f32, Expand);
758 setOperationAction(ISD::FPOWI , MVT::v4f32, Expand);
759 setOperationAction(ISD::FPOW , MVT::v4f32, Expand);
760 setOperationAction(ISD::FLOG , MVT::v4f32, Expand);
761 setOperationAction(ISD::FLOG2 , MVT::v4f32, Expand);
762 setOperationAction(ISD::FLOG10 , MVT::v4f32, Expand);
763 setOperationAction(ISD::FEXP , MVT::v4f32, Expand);
764 setOperationAction(ISD::FEXP2 , MVT::v4f32, Expand);
765
766 setOperationAction(ISD::FMINNUM, MVT::v4f32, Legal);
767 setOperationAction(ISD::FMAXNUM, MVT::v4f32, Legal);
768
769 setIndexedLoadAction(ISD::PRE_INC, MVT::v4f32, Legal);
770 setIndexedStoreAction(ISD::PRE_INC, MVT::v4f32, Legal);
771
772 addRegisterClass(MVT::v4f32, &PPC::QSRCRegClass);
773
774 setOperationAction(ISD::AND , MVT::v4i1, Legal);
775 setOperationAction(ISD::OR , MVT::v4i1, Legal);
776 setOperationAction(ISD::XOR , MVT::v4i1, Legal);
777
778 if (!Subtarget.useCRBits())
779 setOperationAction(ISD::SELECT, MVT::v4i1, Expand);
780 setOperationAction(ISD::VSELECT, MVT::v4i1, Legal);
781
782 setOperationAction(ISD::LOAD , MVT::v4i1, Custom);
783 setOperationAction(ISD::STORE , MVT::v4i1, Custom);
784
785 setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4i1, Custom);
786 setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4i1, Expand);
787 setOperationAction(ISD::CONCAT_VECTORS , MVT::v4i1, Expand);
788 setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4i1, Expand);
789 setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4i1, Custom);
790 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i1, Expand);
791 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i1, Custom);
792
793 setOperationAction(ISD::SINT_TO_FP, MVT::v4i1, Custom);
794 setOperationAction(ISD::UINT_TO_FP, MVT::v4i1, Custom);
795
796 addRegisterClass(MVT::v4i1, &PPC::QBRCRegClass);
797
798 setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
799 setOperationAction(ISD::FCEIL, MVT::v4f64, Legal);
800 setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
801 setOperationAction(ISD::FROUND, MVT::v4f64, Legal);
802
803 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
804 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
805 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
806 setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
807
808 setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Expand);
809 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
810
811 // These need to set FE_INEXACT, and so cannot be vectorized here.
812 setOperationAction(ISD::FRINT, MVT::v4f64, Expand);
813 setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
814
815 if (TM.Options.UnsafeFPMath) {
816 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
817 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
818
819 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
820 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
821 } else {
822 setOperationAction(ISD::FDIV, MVT::v4f64, Expand);
823 setOperationAction(ISD::FSQRT, MVT::v4f64, Expand);
824
825 setOperationAction(ISD::FDIV, MVT::v4f32, Expand);
826 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
827 }
828 }
829
Hal Finkel01fa7702014-12-03 00:19:17 +0000830 if (Subtarget.has64BitSupport())
Hal Finkel322e41a2012-04-01 20:08:17 +0000831 setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
Hal Finkel01fa7702014-12-03 00:19:17 +0000832
833 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, isPPC64 ? Legal : Custom);
Hal Finkel322e41a2012-04-01 20:08:17 +0000834
Robin Morissete1ca44b2014-10-02 22:27:07 +0000835 if (!isPPC64) {
836 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
837 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
838 }
Eli Friedman7dfa7912011-08-29 18:23:02 +0000839
Duncan Sands8d6e2e12008-11-23 15:47:28 +0000840 setBooleanContents(ZeroOrOneBooleanContent);
Hal Finkelc93a9a22015-02-25 01:06:45 +0000841
842 if (Subtarget.hasAltivec()) {
843 // Altivec instructions set fields to all zeros or all ones.
844 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
845 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000846
Joerg Sonnenbergerb5459e62014-07-24 22:20:10 +0000847 if (!isPPC64) {
848 // These libcalls are not available in 32-bit.
849 setLibcallName(RTLIB::SHL_I128, nullptr);
850 setLibcallName(RTLIB::SRL_I128, nullptr);
851 setLibcallName(RTLIB::SRA_I128, nullptr);
852 }
853
Joseph Tremouletf748c892015-11-07 01:11:31 +0000854 setStackPointerRegisterToSaveRestore(isPPC64 ? PPC::X1 : PPC::R1);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000855
Chris Lattnerf4184352006-03-01 04:57:39 +0000856 // We have target-specific dag combine patterns for the following nodes:
857 setTargetDAGCombine(ISD::SINT_TO_FP);
Hal Finkel5efb9182015-01-06 06:01:57 +0000858 if (Subtarget.hasFPCVT())
859 setTargetDAGCombine(ISD::UINT_TO_FP);
Hal Finkelcf2e9082013-05-24 23:00:14 +0000860 setTargetDAGCombine(ISD::LOAD);
Chris Lattner27f53452006-03-01 05:50:56 +0000861 setTargetDAGCombine(ISD::STORE);
Chris Lattner9754d142006-04-18 17:59:36 +0000862 setTargetDAGCombine(ISD::BR_CC);
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000863 if (Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000864 setTargetDAGCombine(ISD::BRCOND);
Chris Lattnera7976d32006-07-10 20:56:58 +0000865 setTargetDAGCombine(ISD::BSWAP);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +0000866 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
Bill Schmidtfae5d712014-12-09 16:35:51 +0000867 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
868 setTargetDAGCombine(ISD::INTRINSIC_VOID);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000869
Hal Finkel46043ed2014-03-01 21:36:57 +0000870 setTargetDAGCombine(ISD::SIGN_EXTEND);
871 setTargetDAGCombine(ISD::ZERO_EXTEND);
872 setTargetDAGCombine(ISD::ANY_EXTEND);
873
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000874 if (Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000875 setTargetDAGCombine(ISD::TRUNCATE);
876 setTargetDAGCombine(ISD::SETCC);
877 setTargetDAGCombine(ISD::SELECT_CC);
878 }
879
Hal Finkel2e103312013-04-03 04:01:11 +0000880 // Use reciprocal estimates.
881 if (TM.Options.UnsafeFPMath) {
882 setTargetDAGCombine(ISD::FDIV);
883 setTargetDAGCombine(ISD::FSQRT);
884 }
885
Dale Johannesen10432e52007-10-19 00:59:18 +0000886 // Darwin long double math library functions have $LDBL128 appended.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000887 if (Subtarget.isDarwin()) {
Duncan Sands53c954f2008-01-10 10:28:30 +0000888 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000889 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
890 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands53c954f2008-01-10 10:28:30 +0000891 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
892 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesenda2d8062008-09-04 00:47:13 +0000893 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
894 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
895 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
896 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
897 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000898 }
899
Hal Finkel940ab932014-02-28 00:27:01 +0000900 // With 32 condition bits, we don't need to sink (and duplicate) compares
901 // aggressively in CodeGenPrep.
Hal Finkel7a0516e2015-02-12 01:02:52 +0000902 if (Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000903 setHasMultipleConditionRegisters();
Hal Finkel7a0516e2015-02-12 01:02:52 +0000904 setJumpIsExpensive();
905 }
Hal Finkel940ab932014-02-28 00:27:01 +0000906
Hal Finkel65298572011-10-17 18:53:03 +0000907 setMinFunctionAlignment(2);
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000908 if (Subtarget.isDarwin())
Hal Finkel65298572011-10-17 18:53:03 +0000909 setPrefFunctionAlignment(4);
Eli Friedman2518f832011-05-06 20:34:06 +0000910
Hal Finkeld73bfba2015-01-03 14:58:25 +0000911 switch (Subtarget.getDarwinDirective()) {
912 default: break;
913 case PPC::DIR_970:
914 case PPC::DIR_A2:
915 case PPC::DIR_E500mc:
916 case PPC::DIR_E5500:
917 case PPC::DIR_PWR4:
918 case PPC::DIR_PWR5:
919 case PPC::DIR_PWR5X:
920 case PPC::DIR_PWR6:
921 case PPC::DIR_PWR6X:
922 case PPC::DIR_PWR7:
923 case PPC::DIR_PWR8:
924 setPrefFunctionAlignment(4);
925 setPrefLoopAlignment(4);
926 break;
927 }
928
Eli Friedman30a49e92011-08-03 21:06:02 +0000929
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000930 if (Subtarget.enableMachineScheduler())
Hal Finkel21442b22013-09-11 23:05:25 +0000931 setSchedulingPreference(Sched::Source);
932 else
933 setSchedulingPreference(Sched::Hybrid);
Hal Finkel6f0ae782011-11-22 16:21:04 +0000934
Eric Christopher23a3a7c2015-02-26 00:00:24 +0000935 computeRegisterProperties(STI.getRegisterInfo());
Hal Finkel742b5352012-08-28 16:12:39 +0000936
Hal Finkeld73bfba2015-01-03 14:58:25 +0000937 // The Freescale cores do better with aggressive inlining of memcpy and
938 // friends. GCC uses same threshold of 128 bytes (= 32 word stores).
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000939 if (Subtarget.getDarwinDirective() == PPC::DIR_E500mc ||
940 Subtarget.getDarwinDirective() == PPC::DIR_E5500) {
Jim Grosbach341ad3e2013-02-20 21:13:59 +0000941 MaxStoresPerMemset = 32;
942 MaxStoresPerMemsetOptSize = 16;
943 MaxStoresPerMemcpy = 32;
944 MaxStoresPerMemcpyOptSize = 8;
945 MaxStoresPerMemmove = 32;
946 MaxStoresPerMemmoveOptSize = 8;
Hal Finkel5c3cacf2015-02-27 19:58:28 +0000947 } else if (Subtarget.getDarwinDirective() == PPC::DIR_A2) {
948 // The A2 also benefits from (very) aggressive inlining of memcpy and
949 // friends. The overhead of a the function call, even when warm, can be
950 // over one hundred cycles.
951 MaxStoresPerMemset = 128;
952 MaxStoresPerMemcpy = 128;
953 MaxStoresPerMemmove = 128;
Hal Finkel742b5352012-08-28 16:12:39 +0000954 }
Chris Lattnerf22556d2005-08-16 17:14:42 +0000955}
956
Hal Finkel262a2242013-09-12 23:20:06 +0000957/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
958/// the desired ByVal argument alignment.
Pete Cooper2e201472015-07-27 17:15:24 +0000959static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign,
Hal Finkel262a2242013-09-12 23:20:06 +0000960 unsigned MaxMaxAlign) {
961 if (MaxAlign == MaxMaxAlign)
962 return;
Pete Cooper2e201472015-07-27 17:15:24 +0000963 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Hal Finkel262a2242013-09-12 23:20:06 +0000964 if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256)
965 MaxAlign = 32;
966 else if (VTy->getBitWidth() >= 128 && MaxAlign < 16)
967 MaxAlign = 16;
Pete Cooper2e201472015-07-27 17:15:24 +0000968 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Hal Finkel262a2242013-09-12 23:20:06 +0000969 unsigned EltAlign = 0;
970 getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign);
971 if (EltAlign > MaxAlign)
972 MaxAlign = EltAlign;
Pete Cooper2e201472015-07-27 17:15:24 +0000973 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
974 for (auto *EltTy : STy->elements()) {
Hal Finkel262a2242013-09-12 23:20:06 +0000975 unsigned EltAlign = 0;
Pete Cooper0debbdc2015-07-24 18:55:49 +0000976 getMaxByValAlign(EltTy, EltAlign, MaxMaxAlign);
Hal Finkel262a2242013-09-12 23:20:06 +0000977 if (EltAlign > MaxAlign)
978 MaxAlign = EltAlign;
979 if (MaxAlign == MaxMaxAlign)
980 break;
981 }
982 }
983}
984
Dale Johannesencbde4c22008-02-28 22:31:51 +0000985/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
986/// function arguments in the caller parameter area.
Mehdi Amini5c183d52015-07-09 02:09:28 +0000987unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty,
988 const DataLayout &DL) const {
Dale Johannesencbde4c22008-02-28 22:31:51 +0000989 // Darwin passes everything on 4 byte boundary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000990 if (Subtarget.isDarwin())
Dale Johannesencbde4c22008-02-28 22:31:51 +0000991 return 4;
Roman Divackyb9663cc2012-04-02 15:49:30 +0000992
993 // 16byte and wider vectors are passed on 16byte boundary.
Roman Divackyb9663cc2012-04-02 15:49:30 +0000994 // The rest is 8 on PPC64 and 4 on PPC32 boundary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000995 unsigned Align = Subtarget.isPPC64() ? 8 : 4;
996 if (Subtarget.hasAltivec() || Subtarget.hasQPX())
997 getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16);
Hal Finkel262a2242013-09-12 23:20:06 +0000998 return Align;
Dale Johannesencbde4c22008-02-28 22:31:51 +0000999}
1000
Petar Jovanovic280f7102015-12-14 17:57:33 +00001001bool PPCTargetLowering::useSoftFloat() const {
1002 return Subtarget.useSoftFloat();
1003}
1004
Chris Lattner347ed8a2006-01-09 23:52:17 +00001005const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
Matthias Braund04893f2015-05-07 21:33:59 +00001006 switch ((PPCISD::NodeType)Opcode) {
1007 case PPCISD::FIRST_NUMBER: break;
Evan Cheng32e376f2008-07-12 02:23:19 +00001008 case PPCISD::FSEL: return "PPCISD::FSEL";
1009 case PPCISD::FCFID: return "PPCISD::FCFID";
Hal Finkel3fe09ea2015-01-06 07:02:15 +00001010 case PPCISD::FCFIDU: return "PPCISD::FCFIDU";
1011 case PPCISD::FCFIDS: return "PPCISD::FCFIDS";
1012 case PPCISD::FCFIDUS: return "PPCISD::FCFIDUS";
Evan Cheng32e376f2008-07-12 02:23:19 +00001013 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
1014 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Hal Finkel3fe09ea2015-01-06 07:02:15 +00001015 case PPCISD::FCTIDUZ: return "PPCISD::FCTIDUZ";
1016 case PPCISD::FCTIWUZ: return "PPCISD::FCTIWUZ";
Hal Finkel2e103312013-04-03 04:01:11 +00001017 case PPCISD::FRE: return "PPCISD::FRE";
1018 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE";
Evan Cheng32e376f2008-07-12 02:23:19 +00001019 case PPCISD::STFIWX: return "PPCISD::STFIWX";
1020 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
1021 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
1022 case PPCISD::VPERM: return "PPCISD::VPERM";
Hal Finkel4edc66b2015-01-03 01:16:37 +00001023 case PPCISD::CMPB: return "PPCISD::CMPB";
Evan Cheng32e376f2008-07-12 02:23:19 +00001024 case PPCISD::Hi: return "PPCISD::Hi";
1025 case PPCISD::Lo: return "PPCISD::Lo";
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001026 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY";
Evan Cheng32e376f2008-07-12 02:23:19 +00001027 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
Yury Gribovd7dbb662015-12-01 11:40:55 +00001028 case PPCISD::DYNAREAOFFSET: return "PPCISD::DYNAREAOFFSET";
Evan Cheng32e376f2008-07-12 02:23:19 +00001029 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
1030 case PPCISD::SRL: return "PPCISD::SRL";
1031 case PPCISD::SRA: return "PPCISD::SRA";
1032 case PPCISD::SHL: return "PPCISD::SHL";
Matthias Braund04893f2015-05-07 21:33:59 +00001033 case PPCISD::SRA_ADDZE: return "PPCISD::SRA_ADDZE";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00001034 case PPCISD::CALL: return "PPCISD::CALL";
1035 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP";
Evan Cheng32e376f2008-07-12 02:23:19 +00001036 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00001037 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Hal Finkelfc096c92014-12-23 22:29:40 +00001038 case PPCISD::BCTRL_LOAD_TOC: return "PPCISD::BCTRL_LOAD_TOC";
Evan Cheng32e376f2008-07-12 02:23:19 +00001039 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkelbbdee932014-12-02 22:01:00 +00001040 case PPCISD::READ_TIME_BASE: return "PPCISD::READ_TIME_BASE";
Hal Finkel756810f2013-03-21 21:37:52 +00001041 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
1042 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00001043 case PPCISD::MFOCRF: return "PPCISD::MFOCRF";
Nemanja Ivanovicc38b5312015-04-11 10:40:42 +00001044 case PPCISD::MFVSR: return "PPCISD::MFVSR";
1045 case PPCISD::MTVSRA: return "PPCISD::MTVSRA";
1046 case PPCISD::MTVSRZ: return "PPCISD::MTVSRZ";
Matthias Braund04893f2015-05-07 21:33:59 +00001047 case PPCISD::ANDIo_1_EQ_BIT: return "PPCISD::ANDIo_1_EQ_BIT";
1048 case PPCISD::ANDIo_1_GT_BIT: return "PPCISD::ANDIo_1_GT_BIT";
Evan Cheng32e376f2008-07-12 02:23:19 +00001049 case PPCISD::VCMP: return "PPCISD::VCMP";
1050 case PPCISD::VCMPo: return "PPCISD::VCMPo";
1051 case PPCISD::LBRX: return "PPCISD::LBRX";
1052 case PPCISD::STBRX: return "PPCISD::STBRX";
Hal Finkel3fe09ea2015-01-06 07:02:15 +00001053 case PPCISD::LFIWAX: return "PPCISD::LFIWAX";
1054 case PPCISD::LFIWZX: return "PPCISD::LFIWZX";
Matthias Braund04893f2015-05-07 21:33:59 +00001055 case PPCISD::LXVD2X: return "PPCISD::LXVD2X";
1056 case PPCISD::STXVD2X: return "PPCISD::STXVD2X";
Evan Cheng32e376f2008-07-12 02:23:19 +00001057 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkel25c19922013-05-15 21:37:41 +00001058 case PPCISD::BDNZ: return "PPCISD::BDNZ";
1059 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng32e376f2008-07-12 02:23:19 +00001060 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng32e376f2008-07-12 02:23:19 +00001061 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng32e376f2008-07-12 02:23:19 +00001062 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel5ab37802012-08-28 02:10:27 +00001063 case PPCISD::CR6SET: return "PPCISD::CR6SET";
1064 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Roman Divacky32143e22013-12-20 18:08:54 +00001065 case PPCISD::PPC32_GOT: return "PPCISD::PPC32_GOT";
Matthias Braund04893f2015-05-07 21:33:59 +00001066 case PPCISD::PPC32_PICGOT: return "PPCISD::PPC32_PICGOT";
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +00001067 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
1068 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001069 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001070 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
1071 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
Bill Schmidt82f1c772015-02-10 19:09:05 +00001072 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR";
1073 case PPCISD::ADDI_TLSGD_L_ADDR: return "PPCISD::ADDI_TLSGD_L_ADDR";
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001074 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
1075 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
Bill Schmidt82f1c772015-02-10 19:09:05 +00001076 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR";
1077 case PPCISD::ADDI_TLSLD_L_ADDR: return "PPCISD::ADDI_TLSLD_L_ADDR";
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001078 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
1079 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L";
Bill Schmidt51e79512013-02-20 15:50:31 +00001080 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT";
Bill Schmidta87a7e22013-05-14 19:35:45 +00001081 case PPCISD::SC: return "PPCISD::SC";
Bill Schmidte26236e2015-05-22 16:44:10 +00001082 case PPCISD::CLRBHRB: return "PPCISD::CLRBHRB";
1083 case PPCISD::MFBHRBE: return "PPCISD::MFBHRBE";
1084 case PPCISD::RFEBB: return "PPCISD::RFEBB";
Matthias Braund04893f2015-05-07 21:33:59 +00001085 case PPCISD::XXSWAPD: return "PPCISD::XXSWAPD";
Hal Finkelc93a9a22015-02-25 01:06:45 +00001086 case PPCISD::QVFPERM: return "PPCISD::QVFPERM";
1087 case PPCISD::QVGPCI: return "PPCISD::QVGPCI";
1088 case PPCISD::QVALIGNI: return "PPCISD::QVALIGNI";
1089 case PPCISD::QVESPLATI: return "PPCISD::QVESPLATI";
1090 case PPCISD::QBFLT: return "PPCISD::QBFLT";
1091 case PPCISD::QVLFSb: return "PPCISD::QVLFSb";
Chris Lattner347ed8a2006-01-09 23:52:17 +00001092 }
Matthias Braund04893f2015-05-07 21:33:59 +00001093 return nullptr;
Chris Lattner347ed8a2006-01-09 23:52:17 +00001094}
1095
Mehdi Amini44ede332015-07-09 02:09:04 +00001096EVT PPCTargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &C,
1097 EVT VT) const {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +00001098 if (!VT.isVector())
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001099 return Subtarget.useCRBits() ? MVT::i1 : MVT::i32;
Hal Finkelc93a9a22015-02-25 01:06:45 +00001100
1101 if (Subtarget.hasQPX())
1102 return EVT::getVectorVT(C, MVT::i1, VT.getVectorNumElements());
1103
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +00001104 return VT.changeVectorElementTypeToInteger();
Scott Michela6729e82008-03-10 15:42:14 +00001105}
1106
Hal Finkel62ac7362014-09-19 11:42:56 +00001107bool PPCTargetLowering::enableAggressiveFMAFusion(EVT VT) const {
1108 assert(VT.isFloatingPoint() && "Non-floating-point FMA?");
1109 return true;
1110}
1111
Chris Lattner4211ca92006-04-14 06:01:58 +00001112//===----------------------------------------------------------------------===//
1113// Node matching predicates, for use by the tblgen matching code.
1114//===----------------------------------------------------------------------===//
1115
Chris Lattner7f1fa8e2005-08-26 17:36:52 +00001116/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001117static bool isFloatingPointZero(SDValue Op) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +00001118 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001119 return CFP->getValueAPF().isZero();
Gabor Greiff304a7a2008-08-28 21:40:38 +00001120 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +00001121 // Maybe this has already been legalized into the constant pool?
1122 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001123 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001124 return CFP->getValueAPF().isZero();
Chris Lattner7f1fa8e2005-08-26 17:36:52 +00001125 }
1126 return false;
1127}
1128
Chris Lattnere8b83b42006-04-06 17:23:16 +00001129/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
1130/// true if Op is undef or if it matches the specified value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001131static bool isConstantOrUndef(int Op, int Val) {
1132 return Op < 0 || Op == Val;
Chris Lattnere8b83b42006-04-06 17:23:16 +00001133}
1134
1135/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
1136/// VPKUHUM instruction.
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001137/// The ShuffleKind distinguishes between big-endian operations with
1138/// two different inputs (0), either-endian operations with two identical
Bill Schmidt5ed84cd2015-05-16 01:02:12 +00001139/// inputs (1), and little-endian operations with two different inputs (2).
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001140/// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1141bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
Bill Schmidtf910a062014-06-10 14:35:01 +00001142 SelectionDAG &DAG) {
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001143 bool IsLE = DAG.getDataLayout().isLittleEndian();
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001144 if (ShuffleKind == 0) {
Eric Christopherd9134482014-08-04 21:25:23 +00001145 if (IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001146 return false;
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001147 for (unsigned i = 0; i != 16; ++i)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001148 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001149 return false;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001150 } else if (ShuffleKind == 2) {
Eric Christopherd9134482014-08-04 21:25:23 +00001151 if (!IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001152 return false;
1153 for (unsigned i = 0; i != 16; ++i)
1154 if (!isConstantOrUndef(N->getMaskElt(i), i*2))
1155 return false;
1156 } else if (ShuffleKind == 1) {
Eric Christopherd9134482014-08-04 21:25:23 +00001157 unsigned j = IsLE ? 0 : 1;
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001158 for (unsigned i = 0; i != 8; ++i)
Bill Schmidtf910a062014-06-10 14:35:01 +00001159 if (!isConstantOrUndef(N->getMaskElt(i), i*2+j) ||
1160 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j))
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001161 return false;
1162 }
Chris Lattner1d338192006-04-06 18:26:28 +00001163 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +00001164}
1165
1166/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
1167/// VPKUWUM instruction.
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001168/// The ShuffleKind distinguishes between big-endian operations with
1169/// two different inputs (0), either-endian operations with two identical
Bill Schmidt5ed84cd2015-05-16 01:02:12 +00001170/// inputs (1), and little-endian operations with two different inputs (2).
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001171/// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1172bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
Bill Schmidtf910a062014-06-10 14:35:01 +00001173 SelectionDAG &DAG) {
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001174 bool IsLE = DAG.getDataLayout().isLittleEndian();
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001175 if (ShuffleKind == 0) {
Eric Christopherd9134482014-08-04 21:25:23 +00001176 if (IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001177 return false;
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001178 for (unsigned i = 0; i != 16; i += 2)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001179 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
1180 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001181 return false;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001182 } else if (ShuffleKind == 2) {
Eric Christopherd9134482014-08-04 21:25:23 +00001183 if (!IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001184 return false;
1185 for (unsigned i = 0; i != 16; i += 2)
1186 if (!isConstantOrUndef(N->getMaskElt(i ), i*2) ||
1187 !isConstantOrUndef(N->getMaskElt(i+1), i*2+1))
1188 return false;
1189 } else if (ShuffleKind == 1) {
Eric Christopherd9134482014-08-04 21:25:23 +00001190 unsigned j = IsLE ? 0 : 2;
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001191 for (unsigned i = 0; i != 8; i += 2)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00001192 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+j) ||
1193 !isConstantOrUndef(N->getMaskElt(i+1), i*2+j+1) ||
1194 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j) ||
1195 !isConstantOrUndef(N->getMaskElt(i+9), i*2+j+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001196 return false;
1197 }
Chris Lattner1d338192006-04-06 18:26:28 +00001198 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +00001199}
1200
Bill Schmidt5ed84cd2015-05-16 01:02:12 +00001201/// isVPKUDUMShuffleMask - Return true if this is the shuffle mask for a
Bill Schmidte13ac912015-05-21 20:48:49 +00001202/// VPKUDUM instruction, AND the VPKUDUM instruction exists for the
1203/// current subtarget.
1204///
Bill Schmidt5ed84cd2015-05-16 01:02:12 +00001205/// The ShuffleKind distinguishes between big-endian operations with
1206/// two different inputs (0), either-endian operations with two identical
1207/// inputs (1), and little-endian operations with two different inputs (2).
1208/// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1209bool PPC::isVPKUDUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
1210 SelectionDAG &DAG) {
Bill Schmidte13ac912015-05-21 20:48:49 +00001211 const PPCSubtarget& Subtarget =
1212 static_cast<const PPCSubtarget&>(DAG.getSubtarget());
1213 if (!Subtarget.hasP8Vector())
1214 return false;
1215
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001216 bool IsLE = DAG.getDataLayout().isLittleEndian();
Bill Schmidt5ed84cd2015-05-16 01:02:12 +00001217 if (ShuffleKind == 0) {
1218 if (IsLE)
1219 return false;
1220 for (unsigned i = 0; i != 16; i += 4)
1221 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+4) ||
1222 !isConstantOrUndef(N->getMaskElt(i+1), i*2+5) ||
1223 !isConstantOrUndef(N->getMaskElt(i+2), i*2+6) ||
1224 !isConstantOrUndef(N->getMaskElt(i+3), i*2+7))
1225 return false;
1226 } else if (ShuffleKind == 2) {
1227 if (!IsLE)
1228 return false;
1229 for (unsigned i = 0; i != 16; i += 4)
1230 if (!isConstantOrUndef(N->getMaskElt(i ), i*2) ||
1231 !isConstantOrUndef(N->getMaskElt(i+1), i*2+1) ||
1232 !isConstantOrUndef(N->getMaskElt(i+2), i*2+2) ||
1233 !isConstantOrUndef(N->getMaskElt(i+3), i*2+3))
1234 return false;
1235 } else if (ShuffleKind == 1) {
1236 unsigned j = IsLE ? 0 : 4;
1237 for (unsigned i = 0; i != 8; i += 4)
1238 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+j) ||
1239 !isConstantOrUndef(N->getMaskElt(i+1), i*2+j+1) ||
1240 !isConstantOrUndef(N->getMaskElt(i+2), i*2+j+2) ||
1241 !isConstantOrUndef(N->getMaskElt(i+3), i*2+j+3) ||
1242 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j) ||
1243 !isConstantOrUndef(N->getMaskElt(i+9), i*2+j+1) ||
1244 !isConstantOrUndef(N->getMaskElt(i+10), i*2+j+2) ||
1245 !isConstantOrUndef(N->getMaskElt(i+11), i*2+j+3))
1246 return false;
1247 }
1248 return true;
1249}
1250
Chris Lattnerf38e0332006-04-06 22:02:42 +00001251/// isVMerge - Common function, used to match vmrg* shuffles.
1252///
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001253static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnerf38e0332006-04-06 22:02:42 +00001254 unsigned LHSStart, unsigned RHSStart) {
Hal Finkeldf3e34d2014-03-26 22:58:37 +00001255 if (N->getValueType(0) != MVT::v16i8)
1256 return false;
Chris Lattnerd1dcb522006-04-06 21:11:54 +00001257 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
1258 "Unsupported merge size!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00001259
Chris Lattnerd1dcb522006-04-06 21:11:54 +00001260 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
1261 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001262 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +00001263 LHSStart+j+i*UnitSize) ||
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001264 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +00001265 RHSStart+j+i*UnitSize))
Chris Lattnerd1dcb522006-04-06 21:11:54 +00001266 return false;
1267 }
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001268 return true;
Chris Lattnerf38e0332006-04-06 22:02:42 +00001269}
1270
1271/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
Bill Schmidtf910a062014-06-10 14:35:01 +00001272/// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes).
NAKAMURA Takumi84965032015-09-22 11:14:12 +00001273/// The ShuffleKind distinguishes between big-endian merges with two
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001274/// different inputs (0), either-endian merges with two identical inputs (1),
1275/// and little-endian merges with two different inputs (2). For the latter,
1276/// the input operands are swapped (see PPCInstrAltivec.td).
Wesley Peck527da1b2010-11-23 03:31:01 +00001277bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001278 unsigned ShuffleKind, SelectionDAG &DAG) {
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001279 if (DAG.getDataLayout().isLittleEndian()) {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001280 if (ShuffleKind == 1) // unary
1281 return isVMerge(N, UnitSize, 0, 0);
1282 else if (ShuffleKind == 2) // swapped
Bill Schmidtf910a062014-06-10 14:35:01 +00001283 return isVMerge(N, UnitSize, 0, 16);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001284 else
1285 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +00001286 } else {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001287 if (ShuffleKind == 1) // unary
1288 return isVMerge(N, UnitSize, 8, 8);
1289 else if (ShuffleKind == 0) // normal
Bill Schmidtf910a062014-06-10 14:35:01 +00001290 return isVMerge(N, UnitSize, 8, 24);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001291 else
1292 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +00001293 }
Chris Lattnerd1dcb522006-04-06 21:11:54 +00001294}
1295
1296/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
Bill Schmidtf910a062014-06-10 14:35:01 +00001297/// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes).
NAKAMURA Takumi84965032015-09-22 11:14:12 +00001298/// The ShuffleKind distinguishes between big-endian merges with two
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001299/// different inputs (0), either-endian merges with two identical inputs (1),
1300/// and little-endian merges with two different inputs (2). For the latter,
1301/// the input operands are swapped (see PPCInstrAltivec.td).
Wesley Peck527da1b2010-11-23 03:31:01 +00001302bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001303 unsigned ShuffleKind, SelectionDAG &DAG) {
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001304 if (DAG.getDataLayout().isLittleEndian()) {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001305 if (ShuffleKind == 1) // unary
1306 return isVMerge(N, UnitSize, 8, 8);
1307 else if (ShuffleKind == 2) // swapped
Bill Schmidtf910a062014-06-10 14:35:01 +00001308 return isVMerge(N, UnitSize, 8, 24);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001309 else
1310 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +00001311 } else {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001312 if (ShuffleKind == 1) // unary
1313 return isVMerge(N, UnitSize, 0, 0);
1314 else if (ShuffleKind == 0) // normal
Bill Schmidtf910a062014-06-10 14:35:01 +00001315 return isVMerge(N, UnitSize, 0, 16);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00001316 else
1317 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +00001318 }
Chris Lattnerd1dcb522006-04-06 21:11:54 +00001319}
1320
Kit Barton13894c72015-06-25 15:17:40 +00001321/**
1322 * \brief Common function used to match vmrgew and vmrgow shuffles
1323 *
1324 * The indexOffset determines whether to look for even or odd words in
1325 * the shuffle mask. This is based on the of the endianness of the target
1326 * machine.
1327 * - Little Endian:
1328 * - Use offset of 0 to check for odd elements
1329 * - Use offset of 4 to check for even elements
1330 * - Big Endian:
1331 * - Use offset of 0 to check for even elements
1332 * - Use offset of 4 to check for odd elements
1333 * A detailed description of the vector element ordering for little endian and
NAKAMURA Takumi520b45d2015-06-25 23:38:44 +00001334 * big endian can be found at
1335 * http://www.ibm.com/developerworks/library/l-ibm-xl-c-cpp-compiler/index.html
Kit Barton13894c72015-06-25 15:17:40 +00001336 * Targeting your applications - what little endian and big endian IBM XL C/C++
NAKAMURA Takumi520b45d2015-06-25 23:38:44 +00001337 * compiler differences mean to you
Kit Barton13894c72015-06-25 15:17:40 +00001338 *
1339 * The mask to the shuffle vector instruction specifies the indices of the
1340 * elements from the two input vectors to place in the result. The elements are
1341 * numbered in array-access order, starting with the first vector. These vectors
1342 * are always of type v16i8, thus each vector will contain 16 elements of size
NAKAMURA Takumi520b45d2015-06-25 23:38:44 +00001343 * 8. More info on the shuffle vector can be found in the
1344 * http://llvm.org/docs/LangRef.html#shufflevector-instruction
1345 * Language Reference.
Kit Barton13894c72015-06-25 15:17:40 +00001346 *
1347 * The RHSStartValue indicates whether the same input vectors are used (unary)
1348 * or two different input vectors are used, based on the following:
1349 * - If the instruction uses the same vector for both inputs, the range of the
1350 * indices will be 0 to 15. In this case, the RHSStart value passed should
1351 * be 0.
1352 * - If the instruction has two different vectors then the range of the
1353 * indices will be 0 to 31. In this case, the RHSStart value passed should
1354 * be 16 (indices 0-15 specify elements in the first vector while indices 16
1355 * to 31 specify elements in the second vector).
1356 *
1357 * \param[in] N The shuffle vector SD Node to analyze
1358 * \param[in] IndexOffset Specifies whether to look for even or odd elements
1359 * \param[in] RHSStartValue Specifies the starting index for the righthand input
1360 * vector to the shuffle_vector instruction
1361 * \return true iff this shuffle vector represents an even or odd word merge
1362 */
1363static bool isVMerge(ShuffleVectorSDNode *N, unsigned IndexOffset,
1364 unsigned RHSStartValue) {
1365 if (N->getValueType(0) != MVT::v16i8)
1366 return false;
1367
1368 for (unsigned i = 0; i < 2; ++i)
1369 for (unsigned j = 0; j < 4; ++j)
1370 if (!isConstantOrUndef(N->getMaskElt(i*4+j),
1371 i*RHSStartValue+j+IndexOffset) ||
1372 !isConstantOrUndef(N->getMaskElt(i*4+j+8),
1373 i*RHSStartValue+j+IndexOffset+8))
1374 return false;
1375 return true;
1376}
1377
1378/**
1379 * \brief Determine if the specified shuffle mask is suitable for the vmrgew or
1380 * vmrgow instructions.
1381 *
1382 * \param[in] N The shuffle vector SD Node to analyze
1383 * \param[in] CheckEven Check for an even merge (true) or an odd merge (false)
1384 * \param[in] ShuffleKind Identify the type of merge:
1385 * - 0 = big-endian merge with two different inputs;
1386 * - 1 = either-endian merge with two identical inputs;
1387 * - 2 = little-endian merge with two different inputs (inputs are swapped for
1388 * little-endian merges).
1389 * \param[in] DAG The current SelectionDAG
NAKAMURA Takumi84965032015-09-22 11:14:12 +00001390 * \return true iff this shuffle mask
Kit Barton13894c72015-06-25 15:17:40 +00001391 */
1392bool PPC::isVMRGEOShuffleMask(ShuffleVectorSDNode *N, bool CheckEven,
1393 unsigned ShuffleKind, SelectionDAG &DAG) {
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001394 if (DAG.getDataLayout().isLittleEndian()) {
Kit Barton13894c72015-06-25 15:17:40 +00001395 unsigned indexOffset = CheckEven ? 4 : 0;
1396 if (ShuffleKind == 1) // Unary
1397 return isVMerge(N, indexOffset, 0);
1398 else if (ShuffleKind == 2) // swapped
1399 return isVMerge(N, indexOffset, 16);
1400 else
1401 return false;
1402 }
1403 else {
1404 unsigned indexOffset = CheckEven ? 0 : 4;
1405 if (ShuffleKind == 1) // Unary
1406 return isVMerge(N, indexOffset, 0);
1407 else if (ShuffleKind == 0) // Normal
1408 return isVMerge(N, indexOffset, 16);
1409 else
1410 return false;
1411 }
1412 return false;
1413}
Chris Lattnerd1dcb522006-04-06 21:11:54 +00001414
Chris Lattner1d338192006-04-06 18:26:28 +00001415/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
1416/// amount, otherwise return -1.
NAKAMURA Takumi84965032015-09-22 11:14:12 +00001417/// The ShuffleKind distinguishes between big-endian operations with two
Bill Schmidt42a69362014-08-05 20:47:25 +00001418/// different inputs (0), either-endian operations with two identical inputs
1419/// (1), and little-endian operations with two different inputs (2). For the
1420/// latter, the input operands are swapped (see PPCInstrAltivec.td).
1421int PPC::isVSLDOIShuffleMask(SDNode *N, unsigned ShuffleKind,
1422 SelectionDAG &DAG) {
Hal Finkeldf3e34d2014-03-26 22:58:37 +00001423 if (N->getValueType(0) != MVT::v16i8)
Hal Finkela775e512014-04-08 19:00:27 +00001424 return -1;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001425
1426 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Wesley Peck527da1b2010-11-23 03:31:01 +00001427
Chris Lattner1d338192006-04-06 18:26:28 +00001428 // Find the first non-undef value in the shuffle mask.
1429 unsigned i;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001430 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattner1d338192006-04-06 18:26:28 +00001431 /*search*/;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001432
Chris Lattner1d338192006-04-06 18:26:28 +00001433 if (i == 16) return -1; // all undef.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001434
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001435 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattner1d338192006-04-06 18:26:28 +00001436 // numbered from this value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001437 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattner1d338192006-04-06 18:26:28 +00001438 if (ShiftAmt < i) return -1;
Chris Lattnere8b83b42006-04-06 17:23:16 +00001439
Bill Schmidtf04e9982014-08-04 23:21:01 +00001440 ShiftAmt -= i;
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001441 bool isLE = DAG.getDataLayout().isLittleEndian();
Bill Schmidtf910a062014-06-10 14:35:01 +00001442
Bill Schmidt42a69362014-08-05 20:47:25 +00001443 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) {
Bill Schmidtf04e9982014-08-04 23:21:01 +00001444 // Check the rest of the elements to see if they are consecutive.
1445 for (++i; i != 16; ++i)
1446 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1447 return -1;
Bill Schmidt42a69362014-08-05 20:47:25 +00001448 } else if (ShuffleKind == 1) {
Bill Schmidtf04e9982014-08-04 23:21:01 +00001449 // Check the rest of the elements to see if they are consecutive.
1450 for (++i; i != 16; ++i)
1451 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
1452 return -1;
Bill Schmidt42a69362014-08-05 20:47:25 +00001453 } else
1454 return -1;
1455
Bill Schmidt1e77bb12015-07-15 15:45:30 +00001456 if (isLE)
Bill Schmidt42a69362014-08-05 20:47:25 +00001457 ShiftAmt = 16 - ShiftAmt;
Bill Schmidtf04e9982014-08-04 23:21:01 +00001458
Chris Lattner1d338192006-04-06 18:26:28 +00001459 return ShiftAmt;
1460}
Chris Lattnerffc47562006-03-20 06:33:01 +00001461
1462/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
1463/// specifies a splat of a single element that is suitable for input to
1464/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001465bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson9f944592009-08-11 20:47:22 +00001466 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner95c7adc2006-04-04 17:25:31 +00001467 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001468
Bill Schmidt42ddd712015-07-29 14:31:57 +00001469 // The consecutive indices need to specify an element, not part of two
1470 // different elements. So abandon ship early if this isn't the case.
1471 if (N->getMaskElt(0) % EltSize != 0)
1472 return false;
1473
Chris Lattnera8fbb6d2006-03-20 06:37:44 +00001474 // This is a splat operation if each element of the permute is the same, and
1475 // if the value doesn't reference the second vector.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001476 unsigned ElementBase = N->getMaskElt(0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001477
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001478 // FIXME: Handle UNDEF elements too!
1479 if (ElementBase >= 16)
Chris Lattner95c7adc2006-04-04 17:25:31 +00001480 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001481
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001482 // Check that the indices are consecutive, in the case of a multi-byte element
1483 // splatted with a v16i8 mask.
1484 for (unsigned i = 1; i != EltSize; ++i)
1485 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner95c7adc2006-04-04 17:25:31 +00001486 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001487
Chris Lattner95c7adc2006-04-04 17:25:31 +00001488 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001489 if (N->getMaskElt(i) < 0) continue;
Chris Lattner95c7adc2006-04-04 17:25:31 +00001490 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001491 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner95c7adc2006-04-04 17:25:31 +00001492 return false;
Chris Lattnera8fbb6d2006-03-20 06:37:44 +00001493 }
Chris Lattner95c7adc2006-04-04 17:25:31 +00001494 return true;
Chris Lattnerffc47562006-03-20 06:33:01 +00001495}
1496
1497/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
1498/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Bill Schmidtf910a062014-06-10 14:35:01 +00001499unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize,
1500 SelectionDAG &DAG) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001501 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1502 assert(isSplatShuffleMask(SVOp, EltSize));
Mehdi Aminia749f2a2015-07-09 02:09:52 +00001503 if (DAG.getDataLayout().isLittleEndian())
Bill Schmidtf910a062014-06-10 14:35:01 +00001504 return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize);
1505 else
1506 return SVOp->getMaskElt(0) / EltSize;
Chris Lattnerffc47562006-03-20 06:33:01 +00001507}
1508
Chris Lattner74cf9ff2006-04-12 17:37:20 +00001509/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattnerd71a1f92006-04-08 06:46:53 +00001510/// by using a vspltis[bhw] instruction of the specified element size, return
1511/// the constant being splatted. The ByteSize field indicates the number of
1512/// bytes of each element [124] -> [bhw].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001513SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001514 SDValue OpVal(nullptr, 0);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001515
1516 // If ByteSize of the splat is bigger than the element size of the
1517 // build_vector, then we have a case where we are checking for a splat where
1518 // multiple elements of the buildvector are folded together into a single
1519 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
1520 unsigned EltSize = 16/N->getNumOperands();
1521 if (EltSize < ByteSize) {
1522 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001523 SDValue UniquedVals[4];
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001524 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelcf0da6c2009-02-17 22:15:04 +00001525
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001526 // See if all of the elements in the buildvector agree across.
1527 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Sanjay Patel57195842016-03-14 17:28:46 +00001528 if (N->getOperand(i).isUndef()) continue;
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001529 // If the element isn't a constant, bail fully out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001530 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001531
Scott Michelcf0da6c2009-02-17 22:15:04 +00001532
Craig Topper062a2ba2014-04-25 05:30:21 +00001533 if (!UniquedVals[i&(Multiple-1)].getNode())
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001534 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
1535 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001536 return SDValue(); // no match.
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001537 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001538
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001539 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
1540 // either constant or undef values that are identical for each chunk. See
1541 // if these chunks can form into a larger vspltis*.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001542
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001543 // Check to see if all of the leading entries are either 0 or -1. If
1544 // neither, then this won't fit into the immediate field.
1545 bool LeadingZero = true;
1546 bool LeadingOnes = true;
1547 for (unsigned i = 0; i != Multiple-1; ++i) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001548 if (!UniquedVals[i].getNode()) continue; // Must have been undefs.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001549
Artyom Skrobov314ee042015-11-25 19:41:11 +00001550 LeadingZero &= isNullConstant(UniquedVals[i]);
1551 LeadingOnes &= isAllOnesConstant(UniquedVals[i]);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001552 }
1553 // Finally, check the least significant entry.
1554 if (LeadingZero) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001555 if (!UniquedVals[Multiple-1].getNode())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001556 return DAG.getTargetConstant(0, SDLoc(N), MVT::i32); // 0,0,0,undef
Dan Gohmaneffb8942008-09-12 16:56:44 +00001557 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001558 if (Val < 16) // 0,0,0,4 -> vspltisw(4)
1559 return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001560 }
1561 if (LeadingOnes) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001562 if (!UniquedVals[Multiple-1].getNode())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001563 return DAG.getTargetConstant(~0U, SDLoc(N), MVT::i32); // -1,-1,-1,undef
Dan Gohman6e054832008-09-26 21:54:37 +00001564 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001565 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001566 return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001567 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001568
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001569 return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001570 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001571
Chris Lattner2771e2c2006-03-25 06:12:06 +00001572 // Check to see if this buildvec has a single non-undef value in its elements.
1573 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Sanjay Patel57195842016-03-14 17:28:46 +00001574 if (N->getOperand(i).isUndef()) continue;
Craig Topper062a2ba2014-04-25 05:30:21 +00001575 if (!OpVal.getNode())
Chris Lattner2771e2c2006-03-25 06:12:06 +00001576 OpVal = N->getOperand(i);
1577 else if (OpVal != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001578 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001579 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001580
Craig Topper062a2ba2014-04-25 05:30:21 +00001581 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001582
Eli Friedman9c6ab1a2009-05-24 02:03:36 +00001583 unsigned ValSizeInBytes = EltSize;
Nate Begeman1b392872006-03-28 04:15:58 +00001584 uint64_t Value = 0;
Chris Lattner2771e2c2006-03-25 06:12:06 +00001585 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001586 Value = CN->getZExtValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001587 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson9f944592009-08-11 20:47:22 +00001588 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001589 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner2771e2c2006-03-25 06:12:06 +00001590 }
1591
1592 // If the splat value is larger than the element value, then we can never do
1593 // this splat. The only case that we could fit the replicated bits into our
1594 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001595 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001596
Benjamin Kramerb4b51502015-03-25 16:49:59 +00001597 // If the element value is larger than the splat value, check if it consists
1598 // of a repeated bit pattern of size ByteSize.
1599 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
1600 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001601
1602 // Properly sign extend the value.
Richard Smith228e6d42012-08-24 23:29:28 +00001603 int MaskVal = SignExtend32(Value, ByteSize * 8);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001604
Evan Chengb1ddc982006-03-26 09:52:32 +00001605 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001606 if (MaskVal == 0) return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001607
Chris Lattnerd71a1f92006-04-08 06:46:53 +00001608 // Finally, if this value fits in a 5 bit sext field, return it
Richard Smith228e6d42012-08-24 23:29:28 +00001609 if (SignExtend32<5>(MaskVal) == MaskVal)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001610 return DAG.getTargetConstant(MaskVal, SDLoc(N), MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001611 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001612}
1613
Hal Finkelc93a9a22015-02-25 01:06:45 +00001614/// isQVALIGNIShuffleMask - If this is a qvaligni shuffle mask, return the shift
1615/// amount, otherwise return -1.
1616int PPC::isQVALIGNIShuffleMask(SDNode *N) {
1617 EVT VT = N->getValueType(0);
1618 if (VT != MVT::v4f64 && VT != MVT::v4f32 && VT != MVT::v4i1)
1619 return -1;
1620
1621 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1622
1623 // Find the first non-undef value in the shuffle mask.
1624 unsigned i;
1625 for (i = 0; i != 4 && SVOp->getMaskElt(i) < 0; ++i)
1626 /*search*/;
1627
1628 if (i == 4) return -1; // all undef.
1629
1630 // Otherwise, check to see if the rest of the elements are consecutively
1631 // numbered from this value.
1632 unsigned ShiftAmt = SVOp->getMaskElt(i);
1633 if (ShiftAmt < i) return -1;
1634 ShiftAmt -= i;
1635
1636 // Check the rest of the elements to see if they are consecutive.
1637 for (++i; i != 4; ++i)
1638 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1639 return -1;
1640
1641 return ShiftAmt;
1642}
1643
Chris Lattner4211ca92006-04-14 06:01:58 +00001644//===----------------------------------------------------------------------===//
Chris Lattnera801fced2006-11-08 02:15:41 +00001645// Addressing Mode Selection
1646//===----------------------------------------------------------------------===//
1647
1648/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
1649/// or 64-bit immediate, and if the value can be accurately represented as a
1650/// sign extension from a 16-bit value. If so, this returns true and the
1651/// immediate.
1652static bool isIntS16Immediate(SDNode *N, short &Imm) {
Adam Nemet571eb5f2014-05-20 17:20:34 +00001653 if (!isa<ConstantSDNode>(N))
Chris Lattnera801fced2006-11-08 02:15:41 +00001654 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001655
Dan Gohmaneffb8942008-09-12 16:56:44 +00001656 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson9f944592009-08-11 20:47:22 +00001657 if (N->getValueType(0) == MVT::i32)
Dan Gohmaneffb8942008-09-12 16:56:44 +00001658 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001659 else
Dan Gohmaneffb8942008-09-12 16:56:44 +00001660 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001661}
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001662static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001663 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnera801fced2006-11-08 02:15:41 +00001664}
1665
Chris Lattnera801fced2006-11-08 02:15:41 +00001666/// SelectAddressRegReg - Given the specified addressed, check to see if it
1667/// can be represented as an indexed [r+r] operation. Returns false if it
1668/// can be more efficiently represented with [r+imm].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001669bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1670 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001671 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001672 short imm = 0;
1673 if (N.getOpcode() == ISD::ADD) {
1674 if (isIntS16Immediate(N.getOperand(1), imm))
1675 return false; // r+i
1676 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1677 return false; // r+i
Scott Michelcf0da6c2009-02-17 22:15:04 +00001678
Chris Lattnera801fced2006-11-08 02:15:41 +00001679 Base = N.getOperand(0);
1680 Index = N.getOperand(1);
1681 return true;
1682 } else if (N.getOpcode() == ISD::OR) {
1683 if (isIntS16Immediate(N.getOperand(1), imm))
1684 return false; // r+i can fold it if we can.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001685
Chris Lattnera801fced2006-11-08 02:15:41 +00001686 // If this is an or of disjoint bitfields, we can codegen this as an add
1687 // (for better address arithmetic) if the LHS and RHS of the OR are provably
1688 // disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001689 APInt LHSKnownZero, LHSKnownOne;
1690 APInt RHSKnownZero, RHSKnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001691 DAG.computeKnownBits(N.getOperand(0),
1692 LHSKnownZero, LHSKnownOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001693
Dan Gohmanf19609a2008-02-27 01:23:58 +00001694 if (LHSKnownZero.getBoolValue()) {
Jay Foada0653a32014-05-14 21:14:37 +00001695 DAG.computeKnownBits(N.getOperand(1),
1696 RHSKnownZero, RHSKnownOne);
Chris Lattnera801fced2006-11-08 02:15:41 +00001697 // If all of the bits are known zero on the LHS or RHS, the add won't
1698 // carry.
Dan Gohman26854f22008-02-27 21:12:32 +00001699 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001700 Base = N.getOperand(0);
1701 Index = N.getOperand(1);
1702 return true;
1703 }
1704 }
1705 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001706
Chris Lattnera801fced2006-11-08 02:15:41 +00001707 return false;
1708}
1709
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001710// If we happen to be doing an i64 load or store into a stack slot that has
1711// less than a 4-byte alignment, then the frame-index elimination may need to
1712// use an indexed load or store instruction (because the offset may not be a
1713// multiple of 4). The extra register needed to hold the offset comes from the
1714// register scavenger, and it is possible that the scavenger will need to use
1715// an emergency spill slot. As a result, we need to make sure that a spill slot
1716// is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1717// stack slot.
1718static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1719 // FIXME: This does not handle the LWA case.
1720 if (VT != MVT::i64)
1721 return;
1722
Hal Finkel7ab3db52013-07-10 15:29:01 +00001723 // NOTE: We'll exclude negative FIs here, which come from argument
1724 // lowering, because there are no known test cases triggering this problem
1725 // using packed structures (or similar). We can remove this exclusion if
1726 // we find such a test case. The reason why this is so test-case driven is
1727 // because this entire 'fixup' is only to prevent crashes (from the
1728 // register scavenger) on not-really-valid inputs. For example, if we have:
1729 // %a = alloca i1
1730 // %b = bitcast i1* %a to i64*
1731 // store i64* a, i64 b
1732 // then the store should really be marked as 'align 1', but is not. If it
1733 // were marked as 'align 1' then the indexed form would have been
1734 // instruction-selected initially, and the problem this 'fixup' is preventing
1735 // won't happen regardless.
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001736 if (FrameIdx < 0)
1737 return;
1738
1739 MachineFunction &MF = DAG.getMachineFunction();
1740 MachineFrameInfo *MFI = MF.getFrameInfo();
1741
1742 unsigned Align = MFI->getObjectAlignment(FrameIdx);
1743 if (Align >= 4)
1744 return;
1745
1746 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1747 FuncInfo->setHasNonRISpills();
1748}
1749
Chris Lattnera801fced2006-11-08 02:15:41 +00001750/// Returns true if the address N can be represented by a base register plus
1751/// a signed 16-bit displacement [r+imm], and if it is not better
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001752/// represented as reg+reg. If Aligned is true, only accept displacements
1753/// suitable for STD and friends, i.e. multiples of 4.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001754bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman02b93132009-01-15 16:29:45 +00001755 SDValue &Base,
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001756 SelectionDAG &DAG,
1757 bool Aligned) const {
Dale Johannesenab8e4422009-02-06 19:16:40 +00001758 // FIXME dl should come from parent load or store, not from address
Andrew Trickef9de2a2013-05-25 02:42:55 +00001759 SDLoc dl(N);
Chris Lattnera801fced2006-11-08 02:15:41 +00001760 // If this can be more profitably realized as r+r, fail.
1761 if (SelectAddressRegReg(N, Disp, Base, DAG))
1762 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001763
Chris Lattnera801fced2006-11-08 02:15:41 +00001764 if (N.getOpcode() == ISD::ADD) {
1765 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001766 if (isIntS16Immediate(N.getOperand(1), imm) &&
1767 (!Aligned || (imm & 3) == 0)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001768 Disp = DAG.getTargetConstant(imm, dl, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001769 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1770 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001771 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001772 } else {
1773 Base = N.getOperand(0);
1774 }
1775 return true; // [r+i]
1776 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1777 // Match LOAD (ADD (X, Lo(G))).
Gabor Greifc8a9abe2012-04-20 11:41:38 +00001778 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnera801fced2006-11-08 02:15:41 +00001779 && "Cannot handle constant offsets yet!");
1780 Disp = N.getOperand(1).getOperand(0); // The global address.
1781 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
Roman Divackye3f15c982012-06-04 17:36:38 +00001782 Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
Chris Lattnera801fced2006-11-08 02:15:41 +00001783 Disp.getOpcode() == ISD::TargetConstantPool ||
1784 Disp.getOpcode() == ISD::TargetJumpTable);
1785 Base = N.getOperand(0);
1786 return true; // [&g+r]
1787 }
1788 } else if (N.getOpcode() == ISD::OR) {
1789 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001790 if (isIntS16Immediate(N.getOperand(1), imm) &&
1791 (!Aligned || (imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001792 // If this is an or of disjoint bitfields, we can codegen this as an add
1793 // (for better address arithmetic) if the LHS and RHS of the OR are
1794 // provably disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001795 APInt LHSKnownZero, LHSKnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001796 DAG.computeKnownBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
Bill Wendling63061832008-03-24 23:16:37 +00001797
Dan Gohmanf19609a2008-02-27 01:23:58 +00001798 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001799 // If all of the bits are known zero on the LHS or RHS, the add won't
1800 // carry.
Ulrich Weigand55a96652014-07-20 22:26:40 +00001801 if (FrameIndexSDNode *FI =
1802 dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1803 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1804 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1805 } else {
1806 Base = N.getOperand(0);
1807 }
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001808 Disp = DAG.getTargetConstant(imm, dl, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001809 return true;
1810 }
1811 }
1812 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1813 // Loading from a constant address.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001814
Chris Lattnera801fced2006-11-08 02:15:41 +00001815 // If this address fits entirely in a 16-bit sext immediate field, codegen
1816 // this as "d, 0"
1817 short Imm;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001818 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001819 Disp = DAG.getTargetConstant(Imm, dl, CN->getValueType(0));
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001820 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
Hal Finkelf70c41e2013-03-21 23:45:03 +00001821 CN->getValueType(0));
Chris Lattnera801fced2006-11-08 02:15:41 +00001822 return true;
1823 }
Chris Lattner4a9c0bb2007-02-17 06:44:03 +00001824
1825 // Handle 32-bit sext immediates with LIS + addr mode.
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001826 if ((CN->getValueType(0) == MVT::i32 ||
1827 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1828 (!Aligned || (CN->getZExtValue() & 3) == 0)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001829 int Addr = (int)CN->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001830
Chris Lattnera801fced2006-11-08 02:15:41 +00001831 // Otherwise, break this down into an LIS + disp.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001832 Disp = DAG.getTargetConstant((short)Addr, dl, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001833
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001834 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, dl,
1835 MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +00001836 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dan Gohman32f71d72009-09-25 18:54:59 +00001837 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnera801fced2006-11-08 02:15:41 +00001838 return true;
1839 }
1840 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001841
Mehdi Amini44ede332015-07-09 02:09:04 +00001842 Disp = DAG.getTargetConstant(0, dl, getPointerTy(DAG.getDataLayout()));
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001843 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001844 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001845 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1846 } else
Chris Lattnera801fced2006-11-08 02:15:41 +00001847 Base = N;
1848 return true; // [r+0]
1849}
1850
1851/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1852/// represented as an indexed [r+r] operation.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001853bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1854 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001855 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001856 // Check to see if we can easily represent this as an [r+r] address. This
1857 // will fail if it thinks that the address is more profitably represented as
1858 // reg+imm, e.g. where imm = 0.
1859 if (SelectAddressRegReg(N, Base, Index, DAG))
1860 return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001861
Chris Lattnera801fced2006-11-08 02:15:41 +00001862 // If the operand is an addition, always emit this as [r+r], since this is
1863 // better (for code size, and execution, as the memop does the add for free)
1864 // than emitting an explicit add.
1865 if (N.getOpcode() == ISD::ADD) {
1866 Base = N.getOperand(0);
1867 Index = N.getOperand(1);
1868 return true;
1869 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001870
Chris Lattnera801fced2006-11-08 02:15:41 +00001871 // Otherwise, do it the hard way, using R0 as the base register.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001872 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
Hal Finkelf70c41e2013-03-21 23:45:03 +00001873 N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001874 Index = N;
1875 return true;
1876}
1877
Chris Lattnera801fced2006-11-08 02:15:41 +00001878/// getPreIndexedAddressParts - returns true by value, base pointer and
1879/// offset pointer and addressing mode by reference if the node's address
1880/// can be legally represented as pre-indexed load / store address.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001881bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1882 SDValue &Offset,
Evan Chengb1500072006-11-09 17:55:04 +00001883 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +00001884 SelectionDAG &DAG) const {
Hal Finkel595817e2012-06-04 02:21:00 +00001885 if (DisablePPCPreinc) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001886
Ulrich Weigande90b0222013-03-22 14:58:48 +00001887 bool isLoad = true;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001888 SDValue Ptr;
Owen Anderson53aa7a92009-08-10 22:56:29 +00001889 EVT VT;
Hal Finkelb09680b2013-03-18 23:00:58 +00001890 unsigned Alignment;
Chris Lattnera801fced2006-11-08 02:15:41 +00001891 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1892 Ptr = LD->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001893 VT = LD->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001894 Alignment = LD->getAlignment();
Chris Lattnera801fced2006-11-08 02:15:41 +00001895 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner68371252006-11-14 01:38:31 +00001896 Ptr = ST->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001897 VT = ST->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001898 Alignment = ST->getAlignment();
Ulrich Weigande90b0222013-03-22 14:58:48 +00001899 isLoad = false;
Chris Lattnera801fced2006-11-08 02:15:41 +00001900 } else
1901 return false;
1902
Hal Finkelc93a9a22015-02-25 01:06:45 +00001903 // PowerPC doesn't have preinc load/store instructions for vectors (except
1904 // for QPX, which does have preinc r+r forms).
1905 if (VT.isVector()) {
1906 if (!Subtarget.hasQPX() || (VT != MVT::v4f64 && VT != MVT::v4f32)) {
1907 return false;
1908 } else if (SelectAddressRegRegOnly(Ptr, Offset, Base, DAG)) {
1909 AM = ISD::PRE_INC;
1910 return true;
1911 }
1912 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001913
Ulrich Weigande90b0222013-03-22 14:58:48 +00001914 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1915
1916 // Common code will reject creating a pre-inc form if the base pointer
1917 // is a frame index, or if N is a store and the base pointer is either
1918 // the same as or a predecessor of the value being stored. Check for
1919 // those situations here, and try with swapped Base/Offset instead.
1920 bool Swap = false;
1921
1922 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1923 Swap = true;
1924 else if (!isLoad) {
1925 SDValue Val = cast<StoreSDNode>(N)->getValue();
1926 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1927 Swap = true;
1928 }
1929
1930 if (Swap)
1931 std::swap(Base, Offset);
1932
Hal Finkelca542be2012-06-20 15:43:03 +00001933 AM = ISD::PRE_INC;
1934 return true;
Hal Finkel1cc27e42012-06-19 02:34:32 +00001935 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001936
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001937 // LDU/STU can only handle immediates that are a multiple of 4.
Owen Anderson9f944592009-08-11 20:47:22 +00001938 if (VT != MVT::i64) {
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001939 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
Chris Lattner474b5b72006-11-15 19:55:13 +00001940 return false;
1941 } else {
Hal Finkelb09680b2013-03-18 23:00:58 +00001942 // LDU/STU need an address with at least 4-byte alignment.
1943 if (Alignment < 4)
1944 return false;
1945
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001946 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
Chris Lattner474b5b72006-11-15 19:55:13 +00001947 return false;
1948 }
Chris Lattnerb314b152006-11-11 00:08:42 +00001949
Chris Lattnerb314b152006-11-11 00:08:42 +00001950 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner474b5b72006-11-15 19:55:13 +00001951 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1952 // sext i32 to i64 when addr mode is r+i.
Owen Anderson9f944592009-08-11 20:47:22 +00001953 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerb314b152006-11-11 00:08:42 +00001954 LD->getExtensionType() == ISD::SEXTLOAD &&
1955 isa<ConstantSDNode>(Offset))
1956 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001957 }
1958
Chris Lattnerce645542006-11-10 02:08:47 +00001959 AM = ISD::PRE_INC;
1960 return true;
Chris Lattnera801fced2006-11-08 02:15:41 +00001961}
1962
1963//===----------------------------------------------------------------------===//
Chris Lattner4211ca92006-04-14 06:01:58 +00001964// LowerOperation implementation
1965//===----------------------------------------------------------------------===//
1966
Chris Lattneredb9d842010-11-15 02:46:57 +00001967/// GetLabelAccessInfo - Return true if we should reference labels using a
1968/// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
Eric Christophercccae792015-01-30 22:02:31 +00001969static bool GetLabelAccessInfo(const TargetMachine &TM,
1970 const PPCSubtarget &Subtarget,
1971 unsigned &HiOpFlags, unsigned &LoOpFlags,
Craig Topper062a2ba2014-04-25 05:30:21 +00001972 const GlobalValue *GV = nullptr) {
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001973 HiOpFlags = PPCII::MO_HA;
1974 LoOpFlags = PPCII::MO_LO;
Wesley Peck527da1b2010-11-23 03:31:01 +00001975
Hal Finkel3ee2af72014-07-18 23:29:49 +00001976 // Don't use the pic base if not in PIC relocation model.
1977 bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
1978
Chris Lattnerdd6df842010-11-15 03:13:19 +00001979 if (isPIC) {
1980 HiOpFlags |= PPCII::MO_PIC_FLAG;
1981 LoOpFlags |= PPCII::MO_PIC_FLAG;
1982 }
1983
1984 // If this is a reference to a global value that requires a non-lazy-ptr, make
1985 // sure that instruction lowering adds it.
Eric Christophere8dbfe12015-02-13 22:23:04 +00001986 if (GV && Subtarget.hasLazyResolverStub(GV)) {
Chris Lattnerdd6df842010-11-15 03:13:19 +00001987 HiOpFlags |= PPCII::MO_NLP_FLAG;
1988 LoOpFlags |= PPCII::MO_NLP_FLAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00001989
Chris Lattnerdd6df842010-11-15 03:13:19 +00001990 if (GV->hasHiddenVisibility()) {
1991 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1992 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1993 }
1994 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001995
Chris Lattneredb9d842010-11-15 02:46:57 +00001996 return isPIC;
1997}
1998
1999static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
2000 SelectionDAG &DAG) {
Daniel Jasper48e93f72015-04-28 13:38:35 +00002001 SDLoc DL(HiPart);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002002 EVT PtrVT = HiPart.getValueType();
2003 SDValue Zero = DAG.getConstant(0, DL, PtrVT);
Chris Lattneredb9d842010-11-15 02:46:57 +00002004
2005 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
2006 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
Wesley Peck527da1b2010-11-23 03:31:01 +00002007
Chris Lattneredb9d842010-11-15 02:46:57 +00002008 // With PIC, the first instruction is actually "GR+hi(&G)".
2009 if (isPIC)
2010 Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
2011 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
Wesley Peck527da1b2010-11-23 03:31:01 +00002012
Chris Lattneredb9d842010-11-15 02:46:57 +00002013 // Generate non-pic code that has direct accesses to the constant pool.
2014 // The address of the global is just (hi(&g)+lo(&g)).
2015 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
2016}
2017
Hal Finkele6698d52015-02-01 15:03:28 +00002018static void setUsesTOCBasePtr(MachineFunction &MF) {
2019 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2020 FuncInfo->setUsesTOCBasePtr();
2021}
2022
2023static void setUsesTOCBasePtr(SelectionDAG &DAG) {
2024 setUsesTOCBasePtr(DAG.getMachineFunction());
2025}
2026
Hal Finkelcf599212015-02-25 21:36:59 +00002027static SDValue getTOCEntry(SelectionDAG &DAG, SDLoc dl, bool Is64Bit,
2028 SDValue GA) {
2029 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
2030 SDValue Reg = Is64Bit ? DAG.getRegister(PPC::X2, VT) :
2031 DAG.getNode(PPCISD::GlobalBaseReg, dl, VT);
2032
2033 SDValue Ops[] = { GA, Reg };
Alex Lorenze40c8a22015-08-11 23:09:45 +00002034 return DAG.getMemIntrinsicNode(
2035 PPCISD::TOC_ENTRY, dl, DAG.getVTList(VT, MVT::Other), Ops, VT,
2036 MachinePointerInfo::getGOT(DAG.getMachineFunction()), 0, false, true,
2037 false, 0);
Hal Finkelcf599212015-02-25 21:36:59 +00002038}
2039
Scott Michelcf0da6c2009-02-17 22:15:04 +00002040SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002041 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002042 EVT PtrVT = Op.getValueType();
Chris Lattner4211ca92006-04-14 06:01:58 +00002043 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002044 const Constant *C = CP->getConstVal();
Chris Lattner4211ca92006-04-14 06:01:58 +00002045
Roman Divackyace47072012-08-24 16:26:02 +00002046 // 64-bit SVR4 ABI code is always position-independent.
2047 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002048 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00002049 setUsesTOCBasePtr(DAG);
Roman Divackyace47072012-08-24 16:26:02 +00002050 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Hal Finkelcf599212015-02-25 21:36:59 +00002051 return getTOCEntry(DAG, SDLoc(CP), true, GA);
Roman Divackyace47072012-08-24 16:26:02 +00002052 }
2053
Chris Lattneredb9d842010-11-15 02:46:57 +00002054 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00002055 bool isPIC =
2056 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00002057
2058 if (isPIC && Subtarget.isSVR4ABI()) {
2059 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(),
2060 PPCII::MO_PIC_FLAG);
Hal Finkelcf599212015-02-25 21:36:59 +00002061 return getTOCEntry(DAG, SDLoc(CP), false, GA);
Hal Finkel3ee2af72014-07-18 23:29:49 +00002062 }
2063
Chris Lattneredb9d842010-11-15 02:46:57 +00002064 SDValue CPIHi =
2065 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
2066 SDValue CPILo =
2067 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
2068 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00002069}
2070
Dan Gohman21cea8a2010-04-17 15:26:15 +00002071SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002072 EVT PtrVT = Op.getValueType();
Nate Begeman4ca2ea52006-04-22 18:53:45 +00002073 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peck527da1b2010-11-23 03:31:01 +00002074
Roman Divackyace47072012-08-24 16:26:02 +00002075 // 64-bit SVR4 ABI code is always position-independent.
2076 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002077 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00002078 setUsesTOCBasePtr(DAG);
Roman Divackyace47072012-08-24 16:26:02 +00002079 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Hal Finkelcf599212015-02-25 21:36:59 +00002080 return getTOCEntry(DAG, SDLoc(JT), true, GA);
Roman Divackyace47072012-08-24 16:26:02 +00002081 }
2082
Chris Lattneredb9d842010-11-15 02:46:57 +00002083 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00002084 bool isPIC =
2085 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00002086
2087 if (isPIC && Subtarget.isSVR4ABI()) {
2088 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
2089 PPCII::MO_PIC_FLAG);
Hal Finkelcf599212015-02-25 21:36:59 +00002090 return getTOCEntry(DAG, SDLoc(GA), false, GA);
Hal Finkel3ee2af72014-07-18 23:29:49 +00002091 }
2092
Chris Lattneredb9d842010-11-15 02:46:57 +00002093 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
2094 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
2095 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio09d73c02007-07-11 17:19:51 +00002096}
2097
Dan Gohman21cea8a2010-04-17 15:26:15 +00002098SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
2099 SelectionDAG &DAG) const {
Bob Wilsonf84f7102009-11-04 21:31:18 +00002100 EVT PtrVT = Op.getValueType();
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00002101 BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op);
2102 const BlockAddress *BA = BASDN->getBlockAddress();
Bob Wilsonf84f7102009-11-04 21:31:18 +00002103
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00002104 // 64-bit SVR4 ABI code is always position-independent.
2105 // The actual BlockAddress is stored in the TOC.
2106 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00002107 setUsesTOCBasePtr(DAG);
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00002108 SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset());
Hal Finkelcf599212015-02-25 21:36:59 +00002109 return getTOCEntry(DAG, SDLoc(BASDN), true, GA);
Ulrich Weigandc8c2ea22014-10-31 10:33:14 +00002110 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002111
Chris Lattneredb9d842010-11-15 02:46:57 +00002112 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00002113 bool isPIC =
2114 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
Michael Liaoabb87d42012-09-12 21:43:09 +00002115 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
2116 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattneredb9d842010-11-15 02:46:57 +00002117 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
2118}
2119
Roman Divackye3f15c982012-06-04 17:36:38 +00002120SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
2121 SelectionDAG &DAG) const {
2122
Bill Schmidtbdae03f2013-09-17 20:22:05 +00002123 // FIXME: TLS addresses currently use medium model code sequences,
2124 // which is the most useful form. Eventually support for small and
2125 // large models could be added if users need it, at the cost of
2126 // additional complexity.
Roman Divackye3f15c982012-06-04 17:36:38 +00002127 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chih-Hung Hsieh1e859582015-07-28 16:24:05 +00002128 if (DAG.getTarget().Options.EmulatedTLS)
2129 return LowerToTLSEmulatedModel(GA, DAG);
2130
Andrew Trickef9de2a2013-05-25 02:42:55 +00002131 SDLoc dl(GA);
Roman Divackye3f15c982012-06-04 17:36:38 +00002132 const GlobalValue *GV = GA->getGlobal();
Mehdi Amini44ede332015-07-09 02:09:04 +00002133 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002134 bool is64bit = Subtarget.isPPC64();
Justin Hibbitsa88b6052014-11-12 15:16:30 +00002135 const Module *M = DAG.getMachineFunction().getFunction()->getParent();
2136 PICLevel::Level picLevel = M->getPICLevel();
Roman Divackye3f15c982012-06-04 17:36:38 +00002137
Bill Schmidtca4a0c92012-12-04 16:18:08 +00002138 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackye3f15c982012-06-04 17:36:38 +00002139
Bill Schmidtca4a0c92012-12-04 16:18:08 +00002140 if (Model == TLSModel::LocalExec) {
2141 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00002142 PPCII::MO_TPREL_HA);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00002143 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00002144 PPCII::MO_TPREL_LO);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00002145 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
2146 is64bit ? MVT::i64 : MVT::i32);
2147 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
2148 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
2149 }
Roman Divackye3f15c982012-06-04 17:36:38 +00002150
Bill Schmidtc56f1d32012-12-11 20:30:11 +00002151 if (Model == TLSModel::InitialExec) {
Bill Schmidt732eb912012-12-13 18:45:54 +00002152 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Ulrich Weigand5b427592013-07-05 12:22:36 +00002153 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
2154 PPCII::MO_TLS);
Roman Divacky32143e22013-12-20 18:08:54 +00002155 SDValue GOTPtr;
2156 if (is64bit) {
Hal Finkele6698d52015-02-01 15:03:28 +00002157 setUsesTOCBasePtr(DAG);
Roman Divacky32143e22013-12-20 18:08:54 +00002158 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2159 GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
2160 PtrVT, GOTReg, TGA);
2161 } else
2162 GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +00002163 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
Roman Divacky32143e22013-12-20 18:08:54 +00002164 PtrVT, TGA, GOTPtr);
Ulrich Weigand5b427592013-07-05 12:22:36 +00002165 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00002166 }
Bill Schmidtca4a0c92012-12-04 16:18:08 +00002167
Bill Schmidtc56f1d32012-12-11 20:30:11 +00002168 if (Model == TLSModel::GeneralDynamic) {
Bill Schmidt82f1c772015-02-10 19:09:05 +00002169 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Hal Finkel7c8ae532014-07-25 17:47:22 +00002170 SDValue GOTPtr;
2171 if (is64bit) {
Hal Finkele6698d52015-02-01 15:03:28 +00002172 setUsesTOCBasePtr(DAG);
Hal Finkel7c8ae532014-07-25 17:47:22 +00002173 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2174 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
2175 GOTReg, TGA);
2176 } else {
Justin Hibbitsa88b6052014-11-12 15:16:30 +00002177 if (picLevel == PICLevel::Small)
2178 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
2179 else
2180 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
Hal Finkel7c8ae532014-07-25 17:47:22 +00002181 }
Bill Schmidt82f1c772015-02-10 19:09:05 +00002182 return DAG.getNode(PPCISD::ADDI_TLSGD_L_ADDR, dl, PtrVT,
2183 GOTPtr, TGA, TGA);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00002184 }
2185
Bill Schmidt24b8dd62012-12-12 19:29:35 +00002186 if (Model == TLSModel::LocalDynamic) {
Bill Schmidt82f1c772015-02-10 19:09:05 +00002187 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Hal Finkel7c8ae532014-07-25 17:47:22 +00002188 SDValue GOTPtr;
2189 if (is64bit) {
Hal Finkele6698d52015-02-01 15:03:28 +00002190 setUsesTOCBasePtr(DAG);
Hal Finkel7c8ae532014-07-25 17:47:22 +00002191 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2192 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
2193 GOTReg, TGA);
2194 } else {
Justin Hibbitsa88b6052014-11-12 15:16:30 +00002195 if (picLevel == PICLevel::Small)
2196 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
2197 else
2198 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
Hal Finkel7c8ae532014-07-25 17:47:22 +00002199 }
Bill Schmidt82f1c772015-02-10 19:09:05 +00002200 SDValue TLSAddr = DAG.getNode(PPCISD::ADDI_TLSLD_L_ADDR, dl,
2201 PtrVT, GOTPtr, TGA, TGA);
2202 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl,
2203 PtrVT, TLSAddr, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00002204 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
2205 }
2206
2207 llvm_unreachable("Unknown TLS model!");
Roman Divackye3f15c982012-06-04 17:36:38 +00002208}
2209
Chris Lattneredb9d842010-11-15 02:46:57 +00002210SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
2211 SelectionDAG &DAG) const {
2212 EVT PtrVT = Op.getValueType();
2213 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002214 SDLoc DL(GSDN);
Chris Lattneredb9d842010-11-15 02:46:57 +00002215 const GlobalValue *GV = GSDN->getGlobal();
2216
Chris Lattneredb9d842010-11-15 02:46:57 +00002217 // 64-bit SVR4 ABI code is always position-independent.
2218 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002219 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Hal Finkele6698d52015-02-01 15:03:28 +00002220 setUsesTOCBasePtr(DAG);
Chris Lattneredb9d842010-11-15 02:46:57 +00002221 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
Hal Finkelcf599212015-02-25 21:36:59 +00002222 return getTOCEntry(DAG, DL, true, GA);
Chris Lattneredb9d842010-11-15 02:46:57 +00002223 }
2224
Chris Lattnerdd6df842010-11-15 03:13:19 +00002225 unsigned MOHiFlag, MOLoFlag;
Eric Christophercccae792015-01-30 22:02:31 +00002226 bool isPIC =
2227 GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag, GV);
Chris Lattneredb9d842010-11-15 02:46:57 +00002228
Hal Finkel3ee2af72014-07-18 23:29:49 +00002229 if (isPIC && Subtarget.isSVR4ABI()) {
2230 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT,
2231 GSDN->getOffset(),
2232 PPCII::MO_PIC_FLAG);
Hal Finkelcf599212015-02-25 21:36:59 +00002233 return getTOCEntry(DAG, DL, false, GA);
Hal Finkel3ee2af72014-07-18 23:29:49 +00002234 }
2235
Chris Lattnerdd6df842010-11-15 03:13:19 +00002236 SDValue GAHi =
2237 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
2238 SDValue GALo =
2239 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peck527da1b2010-11-23 03:31:01 +00002240
Chris Lattnerdd6df842010-11-15 03:13:19 +00002241 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00002242
Chris Lattnerdd6df842010-11-15 03:13:19 +00002243 // If the global reference is actually to a non-lazy-pointer, we have to do an
2244 // extra load to get the address of the global.
2245 if (MOHiFlag & PPCII::MO_NLP_FLAG)
2246 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002247 false, false, false, 0);
Chris Lattnerdd6df842010-11-15 03:13:19 +00002248 return Ptr;
Chris Lattner4211ca92006-04-14 06:01:58 +00002249}
2250
Dan Gohman21cea8a2010-04-17 15:26:15 +00002251SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00002252 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002253 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002254
Hal Finkel777c9dd2014-03-29 16:04:40 +00002255 if (Op.getValueType() == MVT::v2i64) {
2256 // When the operands themselves are v2i64 values, we need to do something
2257 // special because VSX has no underlying comparison operations for these.
2258 if (Op.getOperand(0).getValueType() == MVT::v2i64) {
2259 // Equality can be handled by casting to the legal type for Altivec
2260 // comparisons, everything else needs to be expanded.
2261 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
2262 return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
2263 DAG.getSetCC(dl, MVT::v4i32,
2264 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)),
2265 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)),
2266 CC));
2267 }
2268
2269 return SDValue();
2270 }
2271
2272 // We handle most of these in the usual way.
2273 return Op;
2274 }
2275
Chris Lattner4211ca92006-04-14 06:01:58 +00002276 // If we're comparing for equality to zero, expose the fact that this is
2277 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
2278 // fold the new nodes.
2279 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2280 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002281 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002282 SDValue Zext = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00002283 if (VT.bitsLT(MVT::i32)) {
2284 VT = MVT::i32;
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00002285 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00002286 }
Duncan Sands13237ac2008-06-06 12:08:01 +00002287 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00002288 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
2289 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002290 DAG.getConstant(Log2b, dl, MVT::i32));
Owen Anderson9f944592009-08-11 20:47:22 +00002291 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner4211ca92006-04-14 06:01:58 +00002292 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002293 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner4211ca92006-04-14 06:01:58 +00002294 // optimized. FIXME: revisit this when we can custom lower all setcc
2295 // optimizations.
2296 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002297 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00002298 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002299
Chris Lattner4211ca92006-04-14 06:01:58 +00002300 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattner97ff46b2006-11-14 05:28:08 +00002301 // by xor'ing the rhs with the lhs, which is faster than setting a
2302 // condition register, reading it back out, and masking the correct bit. The
2303 // normal approach here uses sub to do this instead of xor. Using xor exposes
2304 // the result to other bit-twiddling opportunities.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002305 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00002306 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002307 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002308 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner4211ca92006-04-14 06:01:58 +00002309 Op.getOperand(1));
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002310 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, dl, LHSVT), CC);
Chris Lattner4211ca92006-04-14 06:01:58 +00002311 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002312 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00002313}
2314
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002315SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002316 const PPCSubtarget &Subtarget) const {
Roman Divacky4394e682011-06-28 15:30:42 +00002317 SDNode *Node = Op.getNode();
2318 EVT VT = Node->getValueType(0);
Mehdi Amini44ede332015-07-09 02:09:04 +00002319 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Roman Divacky4394e682011-06-28 15:30:42 +00002320 SDValue InChain = Node->getOperand(0);
2321 SDValue VAListPtr = Node->getOperand(1);
2322 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002323 SDLoc dl(Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002324
Roman Divacky4394e682011-06-28 15:30:42 +00002325 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
2326
2327 // gpr_index
2328 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
2329 VAListPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00002330 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00002331 InChain = GprIndex.getValue(1);
2332
2333 if (VT == MVT::i64) {
2334 // Check if GprIndex is even
2335 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002336 DAG.getConstant(1, dl, MVT::i32));
Roman Divacky4394e682011-06-28 15:30:42 +00002337 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002338 DAG.getConstant(0, dl, MVT::i32), ISD::SETNE);
Roman Divacky4394e682011-06-28 15:30:42 +00002339 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002340 DAG.getConstant(1, dl, MVT::i32));
Roman Divacky4394e682011-06-28 15:30:42 +00002341 // Align GprIndex to be even if it isn't
2342 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
2343 GprIndex);
2344 }
2345
2346 // fpr index is 1 byte after gpr
2347 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002348 DAG.getConstant(1, dl, MVT::i32));
Roman Divacky4394e682011-06-28 15:30:42 +00002349
2350 // fpr
2351 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
2352 FprPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00002353 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00002354 InChain = FprIndex.getValue(1);
2355
2356 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002357 DAG.getConstant(8, dl, MVT::i32));
Roman Divacky4394e682011-06-28 15:30:42 +00002358
2359 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002360 DAG.getConstant(4, dl, MVT::i32));
Roman Divacky4394e682011-06-28 15:30:42 +00002361
2362 // areas
2363 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002364 MachinePointerInfo(), false, false,
2365 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00002366 InChain = OverflowArea.getValue(1);
2367
2368 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002369 MachinePointerInfo(), false, false,
2370 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00002371 InChain = RegSaveArea.getValue(1);
2372
2373 // select overflow_area if index > 8
2374 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002375 DAG.getConstant(8, dl, MVT::i32), ISD::SETLT);
Roman Divacky4394e682011-06-28 15:30:42 +00002376
Roman Divacky4394e682011-06-28 15:30:42 +00002377 // adjustment constant gpr_index * 4/8
2378 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
2379 VT.isInteger() ? GprIndex : FprIndex,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002380 DAG.getConstant(VT.isInteger() ? 4 : 8, dl,
Roman Divacky4394e682011-06-28 15:30:42 +00002381 MVT::i32));
2382
2383 // OurReg = RegSaveArea + RegConstant
2384 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
2385 RegConstant);
2386
2387 // Floating types are 32 bytes into RegSaveArea
2388 if (VT.isFloatingPoint())
2389 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002390 DAG.getConstant(32, dl, MVT::i32));
Roman Divacky4394e682011-06-28 15:30:42 +00002391
2392 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
2393 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
2394 VT.isInteger() ? GprIndex : FprIndex,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002395 DAG.getConstant(VT == MVT::i64 ? 2 : 1, dl,
Roman Divacky4394e682011-06-28 15:30:42 +00002396 MVT::i32));
2397
2398 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
2399 VT.isInteger() ? VAListPtr : FprPtr,
2400 MachinePointerInfo(SV),
2401 MVT::i8, false, false, 0);
2402
2403 // determine if we should load from reg_save_area or overflow_area
2404 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
2405
2406 // increase overflow_area by 4/8 if gpr/fpr > 8
2407 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
2408 DAG.getConstant(VT.isInteger() ? 4 : 8,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002409 dl, MVT::i32));
Roman Divacky4394e682011-06-28 15:30:42 +00002410
2411 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
2412 OverflowAreaPlusN);
2413
2414 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
2415 OverflowAreaPtr,
2416 MachinePointerInfo(),
2417 MVT::i32, false, false, 0);
2418
NAKAMURA Takumi8ad54e02012-08-30 15:52:23 +00002419 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002420 false, false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002421}
2422
Roman Divackyc3825df2013-07-25 21:36:47 +00002423SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
2424 const PPCSubtarget &Subtarget) const {
2425 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
2426
2427 // We have to copy the entire va_list struct:
2428 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
2429 return DAG.getMemcpy(Op.getOperand(0), Op,
2430 Op.getOperand(1), Op.getOperand(2),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002431 DAG.getConstant(12, SDLoc(Op), MVT::i32), 8, false, true,
2432 false, MachinePointerInfo(), MachinePointerInfo());
Roman Divackyc3825df2013-07-25 21:36:47 +00002433}
2434
Duncan Sandsa0984362011-09-06 13:37:06 +00002435SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
2436 SelectionDAG &DAG) const {
2437 return Op.getOperand(0);
2438}
2439
2440SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
2441 SelectionDAG &DAG) const {
Bill Wendling95e1af22008-09-17 00:30:57 +00002442 SDValue Chain = Op.getOperand(0);
2443 SDValue Trmp = Op.getOperand(1); // trampoline
2444 SDValue FPtr = Op.getOperand(2); // nested function
2445 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickef9de2a2013-05-25 02:42:55 +00002446 SDLoc dl(Op);
Bill Wendling95e1af22008-09-17 00:30:57 +00002447
Mehdi Amini44ede332015-07-09 02:09:04 +00002448 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Owen Anderson9f944592009-08-11 20:47:22 +00002449 bool isPPC64 = (PtrVT == MVT::i64);
Mehdi Aminia749f2a2015-07-09 02:09:52 +00002450 Type *IntPtrTy = DAG.getDataLayout().getIntPtrType(*DAG.getContext());
Bill Wendling95e1af22008-09-17 00:30:57 +00002451
Scott Michelcf0da6c2009-02-17 22:15:04 +00002452 TargetLowering::ArgListTy Args;
Bill Wendling95e1af22008-09-17 00:30:57 +00002453 TargetLowering::ArgListEntry Entry;
2454
2455 Entry.Ty = IntPtrTy;
2456 Entry.Node = Trmp; Args.push_back(Entry);
2457
2458 // TrampSize == (isPPC64 ? 48 : 40);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002459 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00002460 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling95e1af22008-09-17 00:30:57 +00002461 Args.push_back(Entry);
2462
2463 Entry.Node = FPtr; Args.push_back(Entry);
2464 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002465
Bill Wendling95e1af22008-09-17 00:30:57 +00002466 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002467 TargetLowering::CallLoweringInfo CLI(DAG);
2468 CLI.setDebugLoc(dl).setChain(Chain)
2469 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002470 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
2471 std::move(Args), 0);
Bill Wendling95e1af22008-09-17 00:30:57 +00002472
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002473 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Duncan Sandsa0984362011-09-06 13:37:06 +00002474 return CallResult.second;
Bill Wendling95e1af22008-09-17 00:30:57 +00002475}
2476
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002477SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002478 const PPCSubtarget &Subtarget) const {
Dan Gohman31ae5862010-04-17 14:41:14 +00002479 MachineFunction &MF = DAG.getMachineFunction();
2480 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2481
Andrew Trickef9de2a2013-05-25 02:42:55 +00002482 SDLoc dl(Op);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002483
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002484 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002485 // vastart just stores the address of the VarArgsFrameIndex slot into the
2486 // memory location argument.
Mehdi Amini44ede332015-07-09 02:09:04 +00002487 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Dan Gohman31ae5862010-04-17 14:41:14 +00002488 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002489 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner676c61d2010-09-21 18:41:36 +00002490 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2491 MachinePointerInfo(SV),
David Greene87a5abe2010-02-15 16:56:53 +00002492 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002493 }
2494
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002495 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002496 // We suppose the given va_list is already allocated.
2497 //
2498 // typedef struct {
2499 // char gpr; /* index into the array of 8 GPRs
2500 // * stored in the register save area
2501 // * gpr=0 corresponds to r3,
2502 // * gpr=1 to r4, etc.
2503 // */
2504 // char fpr; /* index into the array of 8 FPRs
2505 // * stored in the register save area
2506 // * fpr=0 corresponds to f1,
2507 // * fpr=1 to f2, etc.
2508 // */
2509 // char *overflow_arg_area;
2510 // /* location on stack that holds
2511 // * the next overflow argument
2512 // */
2513 // char *reg_save_area;
2514 // /* where r3:r10 and f1:f8 (if saved)
2515 // * are stored
2516 // */
2517 // } va_list[1];
2518
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002519 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), dl, MVT::i32);
2520 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), dl, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002521
Mehdi Amini44ede332015-07-09 02:09:04 +00002522 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Scott Michelcf0da6c2009-02-17 22:15:04 +00002523
Dan Gohman31ae5862010-04-17 14:41:14 +00002524 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
2525 PtrVT);
2526 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
2527 PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002528
Duncan Sands13237ac2008-06-06 12:08:01 +00002529 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002530 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, dl, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002531
Duncan Sands13237ac2008-06-06 12:08:01 +00002532 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002533 SDValue ConstStackOffset = DAG.getConstant(StackOffset, dl, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002534
2535 uint64_t FPROffset = 1;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002536 SDValue ConstFPROffset = DAG.getConstant(FPROffset, dl, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002537
Dan Gohman2d489b52008-02-06 22:27:42 +00002538 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002539
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002540 // Store first byte : number of int regs
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002541 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattner6963c1f2010-09-21 17:42:31 +00002542 Op.getOperand(1),
2543 MachinePointerInfo(SV),
2544 MVT::i8, false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002545 uint64_t nextOffset = FPROffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002546 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002547 ConstFPROffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002548
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002549 // Store second byte : number of float regs
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002550 SDValue secondStore =
Chris Lattner6963c1f2010-09-21 17:42:31 +00002551 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
2552 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene87a5abe2010-02-15 16:56:53 +00002553 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002554 nextOffset += StackOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002555 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002556
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002557 // Store second word : arguments given on stack
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002558 SDValue thirdStore =
Chris Lattner676c61d2010-09-21 18:41:36 +00002559 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
2560 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002561 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002562 nextOffset += FrameOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002563 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002564
2565 // Store third word : arguments given in registers
Chris Lattner676c61d2010-09-21 18:41:36 +00002566 return DAG.getStore(thirdStore, dl, FR, nextPtr,
2567 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002568 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002569
Chris Lattner4211ca92006-04-14 06:01:58 +00002570}
2571
Chris Lattner4f2e4e02007-03-06 00:59:59 +00002572#include "PPCGenCallingConv.inc"
2573
NAKAMURA Takumi84965032015-09-22 11:14:12 +00002574// Function whose sole purpose is to kill compiler warnings
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002575// stemming from unused functions included from PPCGenCallingConv.inc.
2576CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
Bill Schmidt8470b0f2013-08-30 22:18:55 +00002577 return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002578}
2579
Bill Schmidt230b4512013-06-12 16:39:22 +00002580bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
2581 CCValAssign::LocInfo &LocInfo,
2582 ISD::ArgFlagsTy &ArgFlags,
2583 CCState &State) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002584 return true;
2585}
2586
Bill Schmidt230b4512013-06-12 16:39:22 +00002587bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
2588 MVT &LocVT,
2589 CCValAssign::LocInfo &LocInfo,
2590 ISD::ArgFlagsTy &ArgFlags,
2591 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002592 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002593 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2594 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2595 };
2596 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002597
Tim Northover3b6b7ca2015-02-21 02:11:17 +00002598 unsigned RegNum = State.getFirstUnallocated(ArgRegs);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002599
2600 // Skip one register if the first unallocated register has an even register
2601 // number and there are still argument registers available which have not been
2602 // allocated yet. RegNum is actually an index into ArgRegs, which means we
2603 // need to skip a register if RegNum is odd.
2604 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
2605 State.AllocateReg(ArgRegs[RegNum]);
2606 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002607
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002608 // Always return false here, as this function only makes sure that the first
2609 // unallocated register has an odd register number and does not actually
2610 // allocate a register for the current argument.
2611 return false;
2612}
2613
Bill Schmidt230b4512013-06-12 16:39:22 +00002614bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
2615 MVT &LocVT,
2616 CCValAssign::LocInfo &LocInfo,
2617 ISD::ArgFlagsTy &ArgFlags,
2618 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002619 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002620 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2621 PPC::F8
2622 };
2623
2624 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002625
Tim Northover3b6b7ca2015-02-21 02:11:17 +00002626 unsigned RegNum = State.getFirstUnallocated(ArgRegs);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002627
2628 // If there is only one Floating-point register left we need to put both f64
2629 // values of a split ppc_fp128 value on the stack.
2630 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
2631 State.AllocateReg(ArgRegs[RegNum]);
2632 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002633
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002634 // Always return false here, as this function only makes sure that the two f64
2635 // values a ppc_fp128 value is split into are both passed in registers or both
2636 // passed on the stack and does not actually allocate a register for the
2637 // current argument.
2638 return false;
2639}
2640
Benjamin Kramer7149aab2015-03-01 18:09:56 +00002641/// FPR - The set of FP registers that should be allocated for arguments,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002642/// on Darwin.
Benjamin Kramer7149aab2015-03-01 18:09:56 +00002643static const MCPhysReg FPR[] = {PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5,
2644 PPC::F6, PPC::F7, PPC::F8, PPC::F9, PPC::F10,
2645 PPC::F11, PPC::F12, PPC::F13};
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002646
Benjamin Kramer7149aab2015-03-01 18:09:56 +00002647/// QFPR - The set of QPX registers that should be allocated for arguments.
2648static const MCPhysReg QFPR[] = {
2649 PPC::QF1, PPC::QF2, PPC::QF3, PPC::QF4, PPC::QF5, PPC::QF6, PPC::QF7,
2650 PPC::QF8, PPC::QF9, PPC::QF10, PPC::QF11, PPC::QF12, PPC::QF13};
Hal Finkelc93a9a22015-02-25 01:06:45 +00002651
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002652/// CalculateStackSlotSize - Calculates the size reserved for this argument on
2653/// the stack.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002654static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002655 unsigned PtrByteSize) {
Hal Finkel940ab932014-02-28 00:27:01 +00002656 unsigned ArgSize = ArgVT.getStoreSize();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002657 if (Flags.isByVal())
2658 ArgSize = Flags.getByValSize();
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002659
2660 // Round up to multiples of the pointer size, except for array members,
2661 // which are always packed.
2662 if (!Flags.isInConsecutiveRegs())
2663 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002664
2665 return ArgSize;
2666}
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002667
2668/// CalculateStackSlotAlignment - Calculates the alignment of this argument
2669/// on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002670static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT,
2671 ISD::ArgFlagsTy Flags,
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002672 unsigned PtrByteSize) {
2673 unsigned Align = PtrByteSize;
2674
2675 // Altivec parameters are padded to a 16 byte boundary.
2676 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2677 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
Kit Bartond4eb73c2015-05-05 16:10:44 +00002678 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 ||
2679 ArgVT == MVT::v1i128)
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002680 Align = 16;
Hal Finkelc93a9a22015-02-25 01:06:45 +00002681 // QPX vector types stored in double-precision are padded to a 32 byte
2682 // boundary.
2683 else if (ArgVT == MVT::v4f64 || ArgVT == MVT::v4i1)
2684 Align = 32;
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002685
2686 // ByVal parameters are aligned as requested.
2687 if (Flags.isByVal()) {
2688 unsigned BVAlign = Flags.getByValAlign();
2689 if (BVAlign > PtrByteSize) {
2690 if (BVAlign % PtrByteSize != 0)
2691 llvm_unreachable(
2692 "ByVal alignment is not a multiple of the pointer size");
2693
2694 Align = BVAlign;
2695 }
2696 }
2697
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002698 // Array members are always packed to their original alignment.
2699 if (Flags.isInConsecutiveRegs()) {
2700 // If the array member was split into multiple registers, the first
2701 // needs to be aligned to the size of the full type. (Except for
2702 // ppcf128, which is only aligned as its f64 components.)
2703 if (Flags.isSplit() && OrigVT != MVT::ppcf128)
2704 Align = OrigVT.getStoreSize();
2705 else
2706 Align = ArgVT.getStoreSize();
2707 }
2708
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002709 return Align;
2710}
2711
Ulrich Weigand8658f172014-07-20 23:43:15 +00002712/// CalculateStackSlotUsed - Return whether this argument will use its
2713/// stack slot (instead of being passed in registers). ArgOffset,
2714/// AvailableFPRs, and AvailableVRs must hold the current argument
2715/// position, and will be updated to account for this argument.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002716static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT,
2717 ISD::ArgFlagsTy Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00002718 unsigned PtrByteSize,
2719 unsigned LinkageSize,
2720 unsigned ParamAreaSize,
2721 unsigned &ArgOffset,
2722 unsigned &AvailableFPRs,
Hal Finkelc93a9a22015-02-25 01:06:45 +00002723 unsigned &AvailableVRs, bool HasQPX) {
Ulrich Weigand8658f172014-07-20 23:43:15 +00002724 bool UseMemory = false;
2725
2726 // Respect alignment of argument on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002727 unsigned Align =
2728 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigand8658f172014-07-20 23:43:15 +00002729 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2730 // If there's no space left in the argument save area, we must
2731 // use memory (this check also catches zero-sized arguments).
2732 if (ArgOffset >= LinkageSize + ParamAreaSize)
2733 UseMemory = true;
2734
2735 // Allocate argument on the stack.
2736 ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002737 if (Flags.isInConsecutiveRegsLast())
2738 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand8658f172014-07-20 23:43:15 +00002739 // If we overran the argument save area, we must use memory
2740 // (this check catches arguments passed partially in memory)
2741 if (ArgOffset > LinkageSize + ParamAreaSize)
2742 UseMemory = true;
2743
2744 // However, if the argument is actually passed in an FPR or a VR,
2745 // we don't use memory after all.
2746 if (!Flags.isByVal()) {
Hal Finkelc93a9a22015-02-25 01:06:45 +00002747 if (ArgVT == MVT::f32 || ArgVT == MVT::f64 ||
2748 // QPX registers overlap with the scalar FP registers.
2749 (HasQPX && (ArgVT == MVT::v4f32 ||
2750 ArgVT == MVT::v4f64 ||
2751 ArgVT == MVT::v4i1)))
Ulrich Weigand8658f172014-07-20 23:43:15 +00002752 if (AvailableFPRs > 0) {
2753 --AvailableFPRs;
2754 return false;
2755 }
2756 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2757 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
Kit Bartond4eb73c2015-05-05 16:10:44 +00002758 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 ||
2759 ArgVT == MVT::v1i128)
Ulrich Weigand8658f172014-07-20 23:43:15 +00002760 if (AvailableVRs > 0) {
2761 --AvailableVRs;
2762 return false;
2763 }
2764 }
2765
2766 return UseMemory;
2767}
2768
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002769/// EnsureStackAlignment - Round stack frame size up from NumBytes to
2770/// ensure minimum alignment required for target.
Eric Christophercccae792015-01-30 22:02:31 +00002771static unsigned EnsureStackAlignment(const PPCFrameLowering *Lowering,
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002772 unsigned NumBytes) {
Eric Christophercccae792015-01-30 22:02:31 +00002773 unsigned TargetAlign = Lowering->getStackAlignment();
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002774 unsigned AlignMask = TargetAlign - 1;
2775 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2776 return NumBytes;
2777}
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002778
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002779SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002780PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002781 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002782 const SmallVectorImpl<ISD::InputArg>
2783 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002784 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002785 SmallVectorImpl<SDValue> &InVals)
2786 const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002787 if (Subtarget.isSVR4ABI()) {
2788 if (Subtarget.isPPC64())
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002789 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
2790 dl, DAG, InVals);
2791 else
2792 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
2793 dl, DAG, InVals);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002794 } else {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002795 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
2796 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002797 }
2798}
2799
2800SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002801PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002802 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002803 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002804 const SmallVectorImpl<ISD::InputArg>
2805 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002806 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002807 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002808
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002809 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002810 // +-----------------------------------+
2811 // +--> | Back chain |
2812 // | +-----------------------------------+
2813 // | | Floating-point register save area |
2814 // | +-----------------------------------+
2815 // | | General register save area |
2816 // | +-----------------------------------+
2817 // | | CR save word |
2818 // | +-----------------------------------+
2819 // | | VRSAVE save word |
2820 // | +-----------------------------------+
2821 // | | Alignment padding |
2822 // | +-----------------------------------+
2823 // | | Vector register save area |
2824 // | +-----------------------------------+
2825 // | | Local variable space |
2826 // | +-----------------------------------+
2827 // | | Parameter list area |
2828 // | +-----------------------------------+
2829 // | | LR save word |
2830 // | +-----------------------------------+
2831 // SP--> +--- | Back chain |
2832 // +-----------------------------------+
2833 //
2834 // Specifications:
2835 // System V Application Binary Interface PowerPC Processor Supplement
2836 // AltiVec Technology Programming Interface Manual
Wesley Peck527da1b2010-11-23 03:31:01 +00002837
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002838 MachineFunction &MF = DAG.getMachineFunction();
2839 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002840 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002841
Mehdi Amini44ede332015-07-09 02:09:04 +00002842 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002843 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002844 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2845 (CallConv == CallingConv::Fast));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002846 unsigned PtrByteSize = 4;
2847
2848 // Assign locations to all of the incoming arguments.
2849 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002850 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2851 *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002852
2853 // Reserve space for the linkage area on the stack.
Eric Christophera4ae2132015-02-13 22:22:57 +00002854 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002855 CCInfo.AllocateStack(LinkageSize, PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002856
Bill Schmidtef17c142013-02-06 17:33:58 +00002857 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peck527da1b2010-11-23 03:31:01 +00002858
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002859 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2860 CCValAssign &VA = ArgLocs[i];
Wesley Peck527da1b2010-11-23 03:31:01 +00002861
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002862 // Arguments stored in registers.
2863 if (VA.isRegLoc()) {
Craig Topper760b1342012-02-22 05:59:10 +00002864 const TargetRegisterClass *RC;
Owen Anderson53aa7a92009-08-10 22:56:29 +00002865 EVT ValVT = VA.getValVT();
Wesley Peck527da1b2010-11-23 03:31:01 +00002866
Owen Anderson9f944592009-08-11 20:47:22 +00002867 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002868 default:
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002869 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Hal Finkel940ab932014-02-28 00:27:01 +00002870 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00002871 case MVT::i32:
Craig Topperabadc662012-04-20 06:31:50 +00002872 RC = &PPC::GPRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002873 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002874 case MVT::f32:
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00002875 if (Subtarget.hasP8Vector())
2876 RC = &PPC::VSSRCRegClass;
2877 else
2878 RC = &PPC::F4RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002879 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002880 case MVT::f64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002881 if (Subtarget.hasVSX())
Hal Finkel19be5062014-03-29 05:29:01 +00002882 RC = &PPC::VSFRCRegClass;
2883 else
2884 RC = &PPC::F8RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002885 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002886 case MVT::v16i8:
2887 case MVT::v8i16:
2888 case MVT::v4i32:
Hal Finkel7811c612014-03-28 19:58:11 +00002889 RC = &PPC::VRRCRegClass;
2890 break;
Hal Finkelc93a9a22015-02-25 01:06:45 +00002891 case MVT::v4f32:
2892 RC = Subtarget.hasQPX() ? &PPC::QSRCRegClass : &PPC::VRRCRegClass;
2893 break;
Hal Finkel27774d92014-03-13 07:58:58 +00002894 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00002895 case MVT::v2i64:
Hal Finkel7811c612014-03-28 19:58:11 +00002896 RC = &PPC::VSHRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002897 break;
Hal Finkelc93a9a22015-02-25 01:06:45 +00002898 case MVT::v4f64:
2899 RC = &PPC::QFRCRegClass;
2900 break;
2901 case MVT::v4i1:
2902 RC = &PPC::QBRCRegClass;
2903 break;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002904 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002905
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002906 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00002907 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Hal Finkel940ab932014-02-28 00:27:01 +00002908 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg,
2909 ValVT == MVT::i1 ? MVT::i32 : ValVT);
2910
2911 if (ValVT == MVT::i1)
2912 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002913
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002914 InVals.push_back(ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002915 } else {
2916 // Argument stored in memory.
2917 assert(VA.isMemLoc());
2918
Hal Finkel940ab932014-02-28 00:27:01 +00002919 unsigned ArgSize = VA.getLocVT().getStoreSize();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002920 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Cheng0664a672010-07-03 00:40:23 +00002921 isImmutable);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002922
2923 // Create load nodes to retrieve arguments from the stack.
2924 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002925 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2926 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002927 false, false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002928 }
2929 }
2930
2931 // Assign locations to all of the incoming aggregate by value arguments.
2932 // Aggregates passed by value are stored in the local variable space of the
2933 // caller's stack frame, right above the parameter list area.
2934 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002935 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Eric Christopherb5217502014-08-06 18:45:26 +00002936 ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002937
2938 // Reserve stack space for the allocations in CCInfo.
2939 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2940
Bill Schmidtef17c142013-02-06 17:33:58 +00002941 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002942
2943 // Area that is at least reserved in the caller of this function.
2944 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002945 MinReservedArea = std::max(MinReservedArea, LinkageSize);
Wesley Peck527da1b2010-11-23 03:31:01 +00002946
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002947 // Set the size that is at least reserved in caller of this function. Tail
2948 // call optimized function's reserved stack space needs to be aligned so that
2949 // taking the difference between two stack areas will result in an aligned
2950 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00002951 MinReservedArea =
2952 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002953 FuncInfo->setMinReservedArea(MinReservedArea);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002954
2955 SmallVector<SDValue, 8> MemOps;
Wesley Peck527da1b2010-11-23 03:31:01 +00002956
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002957 // If the function takes variable number of arguments, make a frame index for
2958 // the start of the first vararg value... for expansion of llvm.va_start.
2959 if (isVarArg) {
Craig Topper840beec2014-04-04 05:16:06 +00002960 static const MCPhysReg GPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002961 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2962 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2963 };
2964 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2965
Craig Topper840beec2014-04-04 05:16:06 +00002966 static const MCPhysReg FPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002967 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2968 PPC::F8
2969 };
Joerg Sonnenbergereb8655a2014-08-08 16:46:10 +00002970 unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
Petar Jovanovic280f7102015-12-14 17:57:33 +00002971
2972 if (Subtarget.useSoftFloat())
2973 NumFPArgRegs = 0;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002974
Tim Northover3b6b7ca2015-02-21 02:11:17 +00002975 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs));
2976 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002977
2978 // Make room for NumGPArgRegs and NumFPArgRegs.
2979 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Craig Topper7ff15922014-09-10 04:51:36 +00002980 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002981
Dan Gohman31ae5862010-04-17 14:41:14 +00002982 FuncInfo->setVarArgsStackOffset(
2983 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002984 CCInfo.getNextStackOffset(), true));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002985
Dan Gohman31ae5862010-04-17 14:41:14 +00002986 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2987 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002988
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002989 // The fixed integer arguments of a variadic function are stored to the
2990 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2991 // the result of va_next.
2992 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2993 // Get an existing live-in vreg, or add a new one.
2994 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2995 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002996 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002997
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002998 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002999 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3000 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003001 MemOps.push_back(Store);
3002 // Increment the address by four for the next argument to store
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003003 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003004 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3005 }
3006
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003007 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
3008 // is set.
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003009 // The double arguments are stored to the VarArgsFrameIndex
3010 // on the stack.
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00003011 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
3012 // Get an existing live-in vreg, or add a new one.
3013 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
3014 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00003015 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003016
Owen Anderson9f944592009-08-11 20:47:22 +00003017 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner676c61d2010-09-21 18:41:36 +00003018 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3019 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003020 MemOps.push_back(Store);
3021 // Increment the address by eight for the next argument to store
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003022 SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8, dl,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003023 PtrVT);
3024 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3025 }
3026 }
3027
3028 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003029 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003030
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003031 return Chain;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003032}
3033
Bill Schmidt57d6de52012-10-23 15:51:16 +00003034// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3035// value to MVT::i64 and then truncate to the correct register size.
3036SDValue
3037PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
3038 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003039 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00003040 if (Flags.isSExt())
3041 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
3042 DAG.getValueType(ObjectVT));
3043 else if (Flags.isZExt())
3044 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
3045 DAG.getValueType(ObjectVT));
Matt Arsenault758659232013-05-18 00:21:46 +00003046
Hal Finkel940ab932014-02-28 00:27:01 +00003047 return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal);
Bill Schmidt57d6de52012-10-23 15:51:16 +00003048}
3049
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003050SDValue
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003051PPCTargetLowering::LowerFormalArguments_64SVR4(
3052 SDValue Chain,
3053 CallingConv::ID CallConv, bool isVarArg,
3054 const SmallVectorImpl<ISD::InputArg>
3055 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003056 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003057 SmallVectorImpl<SDValue> &InVals) const {
3058 // TODO: add description of PPC stack frame format, or at least some docs.
3059 //
Ulrich Weigand8658f172014-07-20 23:43:15 +00003060 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00003061 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003062 MachineFunction &MF = DAG.getMachineFunction();
3063 MachineFrameInfo *MFI = MF.getFrameInfo();
3064 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
3065
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003066 assert(!(CallConv == CallingConv::Fast && isVarArg) &&
3067 "fastcc not supported on varargs functions");
3068
Mehdi Amini44ede332015-07-09 02:09:04 +00003069 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003070 // Potential tail calls could cause overwriting of argument stack slots.
3071 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3072 (CallConv == CallingConv::Fast));
3073 unsigned PtrByteSize = 8;
Eric Christophera4ae2132015-02-13 22:22:57 +00003074 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003075
Craig Topper840beec2014-04-04 05:16:06 +00003076 static const MCPhysReg GPR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003077 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3078 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3079 };
Craig Topper840beec2014-04-04 05:16:06 +00003080 static const MCPhysReg VR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003081 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3082 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3083 };
Craig Topper840beec2014-04-04 05:16:06 +00003084 static const MCPhysReg VSRH[] = {
Hal Finkel7811c612014-03-28 19:58:11 +00003085 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
3086 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
3087 };
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003088
3089 const unsigned Num_GPR_Regs = array_lengthof(GPR);
3090 const unsigned Num_FPR_Regs = 13;
3091 const unsigned Num_VR_Regs = array_lengthof(VR);
Hal Finkelc93a9a22015-02-25 01:06:45 +00003092 const unsigned Num_QFPR_Regs = Num_FPR_Regs;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003093
Ulrich Weigand8658f172014-07-20 23:43:15 +00003094 // Do a first pass over the arguments to determine whether the ABI
3095 // guarantees that our caller has allocated the parameter save area
3096 // on its stack frame. In the ELFv1 ABI, this is always the case;
3097 // in the ELFv2 ABI, it is true if this is a vararg function or if
3098 // any parameter is located in a stack slot.
3099
3100 bool HasParameterArea = !isELFv2ABI || isVarArg;
3101 unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize;
3102 unsigned NumBytes = LinkageSize;
3103 unsigned AvailableFPRs = Num_FPR_Regs;
3104 unsigned AvailableVRs = Num_VR_Regs;
Hal Finkel965cea52015-07-12 00:37:44 +00003105 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3106 if (Ins[i].Flags.isNest())
3107 continue;
3108
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003109 if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00003110 PtrByteSize, LinkageSize, ParamAreaSize,
Hal Finkelc93a9a22015-02-25 01:06:45 +00003111 NumBytes, AvailableFPRs, AvailableVRs,
3112 Subtarget.hasQPX()))
Ulrich Weigand8658f172014-07-20 23:43:15 +00003113 HasParameterArea = true;
Hal Finkel965cea52015-07-12 00:37:44 +00003114 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003115
3116 // Add DAG nodes to load the arguments or copy them out of registers. On
3117 // entry to a function on PPC, the arguments start after the linkage area,
3118 // although the first ones are often in registers.
3119
Ulrich Weigand8658f172014-07-20 23:43:15 +00003120 unsigned ArgOffset = LinkageSize;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003121 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Hal Finkelc93a9a22015-02-25 01:06:45 +00003122 unsigned &QFPR_idx = FPR_idx;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003123 SmallVector<SDValue, 8> MemOps;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003124 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt6631e942013-02-20 17:31:41 +00003125 unsigned CurArgIdx = 0;
3126 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003127 SDValue ArgVal;
3128 bool needsLoad = false;
3129 EVT ObjectVT = Ins[ArgNo].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003130 EVT OrigVT = Ins[ArgNo].ArgVT;
Hal Finkel940ab932014-02-28 00:27:01 +00003131 unsigned ObjSize = ObjectVT.getStoreSize();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003132 unsigned ArgSize = ObjSize;
3133 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Andrew Trick05938a52015-02-16 18:10:47 +00003134 if (Ins[ArgNo].isOrigArg()) {
3135 std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx);
3136 CurArgIdx = Ins[ArgNo].getOrigArgIndex();
3137 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003138 // We re-align the argument offset for each argument, except when using the
3139 // fast calling convention, when we need to make sure we do that only when
3140 // we'll actually use a stack slot.
3141 unsigned CurArgOffset, Align;
3142 auto ComputeArgOffset = [&]() {
3143 /* Respect alignment of argument on the stack. */
3144 Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize);
3145 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
3146 CurArgOffset = ArgOffset;
3147 };
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003148
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003149 if (CallConv != CallingConv::Fast) {
3150 ComputeArgOffset();
3151
3152 /* Compute GPR index associated with argument offset. */
3153 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
3154 GPR_idx = std::min(GPR_idx, Num_GPR_Regs);
3155 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003156
3157 // FIXME the codegen can be much improved in some cases.
3158 // We do not have to keep everything in memory.
3159 if (Flags.isByVal()) {
Andrew Trick05938a52015-02-16 18:10:47 +00003160 assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit");
3161
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003162 if (CallConv == CallingConv::Fast)
3163 ComputeArgOffset();
3164
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003165 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
3166 ObjSize = Flags.getByValSize();
3167 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt9953cf22012-10-31 01:15:05 +00003168 // Empty aggregate parameters do not take up registers. Examples:
3169 // struct { } a;
3170 // union { } b;
3171 // int c[0];
3172 // etc. However, we have to provide a place-holder in InVals, so
3173 // pretend we have an 8-byte item at the current address for that
3174 // purpose.
3175 if (!ObjSize) {
3176 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
3177 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3178 InVals.push_back(FIN);
3179 continue;
3180 }
Hal Finkel262a2242013-09-12 23:20:06 +00003181
Ulrich Weigand24195972014-07-20 22:36:52 +00003182 // Create a stack object covering all stack doublewords occupied
Ulrich Weigand8658f172014-07-20 23:43:15 +00003183 // by the argument. If the argument is (fully or partially) on
3184 // the stack, or if the argument is fully in registers but the
3185 // caller has allocated the parameter save anyway, we can refer
3186 // directly to the caller's stack frame. Otherwise, create a
3187 // local copy in our own frame.
3188 int FI;
3189 if (HasParameterArea ||
3190 ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize)
Hal Finkel41a55ad2014-08-16 00:17:05 +00003191 FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false, true);
Ulrich Weigand8658f172014-07-20 23:43:15 +00003192 else
3193 FI = MFI->CreateStackObject(ArgSize, Align, false);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003194 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00003195
Ulrich Weigand24195972014-07-20 22:36:52 +00003196 // Handle aggregates smaller than 8 bytes.
3197 if (ObjSize < PtrByteSize) {
3198 // The value of the object is its address, which differs from the
3199 // address of the enclosing doubleword on big-endian systems.
3200 SDValue Arg = FIN;
3201 if (!isLittleEndian) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003202 SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, dl, PtrVT);
Ulrich Weigand24195972014-07-20 22:36:52 +00003203 Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff);
3204 }
3205 InVals.push_back(Arg);
3206
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003207 if (GPR_idx != Num_GPR_Regs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003208 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003209 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00003210 SDValue Store;
3211
3212 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
3213 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
3214 (ObjSize == 2 ? MVT::i16 : MVT::i32));
Ulrich Weigand24195972014-07-20 22:36:52 +00003215 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg,
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00003216 MachinePointerInfo(&*FuncArg), ObjType,
3217 false, false, 0);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00003218 } else {
3219 // For sizes that don't fit a truncating store (3, 5, 6, 7),
3220 // store the whole register as-is to the parameter save area
Ulrich Weigand24195972014-07-20 22:36:52 +00003221 // slot.
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00003222 Store =
3223 DAG.getStore(Val.getValue(1), dl, Val, FIN,
3224 MachinePointerInfo(&*FuncArg), false, false, 0);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00003225 }
3226
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003227 MemOps.push_back(Store);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003228 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00003229 // Whether we copied from a register or not, advance the offset
3230 // into the parameter save area by a full doubleword.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003231 ArgOffset += PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003232 continue;
3233 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00003234
Ulrich Weigand24195972014-07-20 22:36:52 +00003235 // The value of the object is its address, which is the address of
3236 // its first stack doubleword.
3237 InVals.push_back(FIN);
3238
3239 // Store whatever pieces of the object are in registers to memory.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003240 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
Ulrich Weigand24195972014-07-20 22:36:52 +00003241 if (GPR_idx == Num_GPR_Regs)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003242 break;
Ulrich Weigand24195972014-07-20 22:36:52 +00003243
3244 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3245 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3246 SDValue Addr = FIN;
3247 if (j) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003248 SDValue Off = DAG.getConstant(j, dl, PtrVT);
Ulrich Weigand24195972014-07-20 22:36:52 +00003249 Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003250 }
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00003251 SDValue Store =
3252 DAG.getStore(Val.getValue(1), dl, Val, Addr,
3253 MachinePointerInfo(&*FuncArg, j), false, false, 0);
Ulrich Weigand24195972014-07-20 22:36:52 +00003254 MemOps.push_back(Store);
3255 ++GPR_idx;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003256 }
Ulrich Weigand24195972014-07-20 22:36:52 +00003257 ArgOffset += ArgSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003258 continue;
3259 }
3260
3261 switch (ObjectVT.getSimpleVT().SimpleTy) {
3262 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel940ab932014-02-28 00:27:01 +00003263 case MVT::i1:
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003264 case MVT::i32:
3265 case MVT::i64:
Hal Finkel965cea52015-07-12 00:37:44 +00003266 if (Flags.isNest()) {
3267 // The 'nest' parameter, if any, is passed in R11.
3268 unsigned VReg = MF.addLiveIn(PPC::X11, &PPC::G8RCRegClass);
3269 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3270
3271 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
3272 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
3273
3274 break;
3275 }
3276
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003277 // These can be scalar arguments or elements of an integer array type
3278 // passed directly. Clang may use those instead of "byval" aggregate
3279 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003280 if (GPR_idx != Num_GPR_Regs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003281 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003282 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3283
Hal Finkel940ab932014-02-28 00:27:01 +00003284 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003285 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3286 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00003287 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003288 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003289 if (CallConv == CallingConv::Fast)
3290 ComputeArgOffset();
3291
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003292 needsLoad = true;
3293 ArgSize = PtrByteSize;
3294 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003295 if (CallConv != CallingConv::Fast || needsLoad)
3296 ArgOffset += 8;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003297 break;
3298
3299 case MVT::f32:
3300 case MVT::f64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003301 // These can be scalar arguments or elements of a float array type
3302 // passed directly. The latter are used to implement ELFv2 homogenous
3303 // float aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003304 if (FPR_idx != Num_FPR_Regs) {
3305 unsigned VReg;
3306
3307 if (ObjectVT == MVT::f32)
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00003308 VReg = MF.addLiveIn(FPR[FPR_idx],
3309 Subtarget.hasP8Vector()
3310 ? &PPC::VSSRCRegClass
3311 : &PPC::F4RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003312 else
Eric Christophercccae792015-01-30 22:02:31 +00003313 VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX()
3314 ? &PPC::VSFRCRegClass
3315 : &PPC::F8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003316
3317 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3318 ++FPR_idx;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003319 } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) {
Hal Finkel8ea446b2015-01-18 14:31:10 +00003320 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
3321 // once we support fp <-> gpr moves.
3322
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003323 // This can only ever happen in the presence of f32 array types,
3324 // since otherwise we never run out of FPRs before running out
3325 // of GPRs.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003326 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003327 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3328
3329 if (ObjectVT == MVT::f32) {
3330 if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0))
3331 ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003332 DAG.getConstant(32, dl, MVT::i32));
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003333 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
3334 }
3335
3336 ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003337 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003338 if (CallConv == CallingConv::Fast)
3339 ComputeArgOffset();
3340
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003341 needsLoad = true;
3342 }
3343
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003344 // When passing an array of floats, the array occupies consecutive
3345 // space in the argument area; only round up to the next doubleword
3346 // at the end of the array. Otherwise, each float takes 8 bytes.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003347 if (CallConv != CallingConv::Fast || needsLoad) {
3348 ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize;
3349 ArgOffset += ArgSize;
3350 if (Flags.isInConsecutiveRegsLast())
3351 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3352 }
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003353 break;
3354 case MVT::v4f32:
3355 case MVT::v4i32:
3356 case MVT::v8i16:
3357 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00003358 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00003359 case MVT::v2i64:
Kit Bartond4eb73c2015-05-05 16:10:44 +00003360 case MVT::v1i128:
Hal Finkelc93a9a22015-02-25 01:06:45 +00003361 if (!Subtarget.hasQPX()) {
Ulrich Weigand85d5df22014-07-21 00:13:26 +00003362 // These can be scalar arguments or elements of a vector array type
3363 // passed directly. The latter are used to implement ELFv2 homogenous
3364 // vector aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003365 if (VR_idx != Num_VR_Regs) {
Hal Finkel7811c612014-03-28 19:58:11 +00003366 unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ?
3367 MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) :
3368 MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003369 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003370 ++VR_idx;
3371 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003372 if (CallConv == CallingConv::Fast)
3373 ComputeArgOffset();
3374
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003375 needsLoad = true;
3376 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00003377 if (CallConv != CallingConv::Fast || needsLoad)
3378 ArgOffset += 16;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003379 break;
Hal Finkelc93a9a22015-02-25 01:06:45 +00003380 } // not QPX
3381
3382 assert(ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 &&
3383 "Invalid QPX parameter type");
3384 /* fall through */
3385
3386 case MVT::v4f64:
3387 case MVT::v4i1:
3388 // QPX vectors are treated like their scalar floating-point subregisters
3389 // (except that they're larger).
3390 unsigned Sz = ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 ? 16 : 32;
3391 if (QFPR_idx != Num_QFPR_Regs) {
3392 const TargetRegisterClass *RC;
3393 switch (ObjectVT.getSimpleVT().SimpleTy) {
3394 case MVT::v4f64: RC = &PPC::QFRCRegClass; break;
3395 case MVT::v4f32: RC = &PPC::QSRCRegClass; break;
3396 default: RC = &PPC::QBRCRegClass; break;
3397 }
3398
3399 unsigned VReg = MF.addLiveIn(QFPR[QFPR_idx], RC);
3400 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3401 ++QFPR_idx;
3402 } else {
3403 if (CallConv == CallingConv::Fast)
3404 ComputeArgOffset();
3405 needsLoad = true;
3406 }
3407 if (CallConv != CallingConv::Fast || needsLoad)
3408 ArgOffset += Sz;
3409 break;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003410 }
3411
3412 // We need to load the argument to a virtual register if we determined
3413 // above that we ran out of physical registers of the appropriate type.
3414 if (needsLoad) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00003415 if (ObjSize < ArgSize && !isLittleEndian)
3416 CurArgOffset += ArgSize - ObjSize;
3417 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003418 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3419 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
3420 false, false, false, 0);
3421 }
3422
3423 InVals.push_back(ArgVal);
3424 }
3425
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003426 // Area that is at least reserved in the caller of this function.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00003427 unsigned MinReservedArea;
Ulrich Weigand8658f172014-07-20 23:43:15 +00003428 if (HasParameterArea)
3429 MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize);
3430 else
3431 MinReservedArea = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003432
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003433 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00003434 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003435 // taking the difference between two stack areas will result in an aligned
3436 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00003437 MinReservedArea =
3438 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003439 FuncInfo->setMinReservedArea(MinReservedArea);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003440
3441 // If the function takes variable number of arguments, make a frame index for
3442 // the start of the first vararg value... for expansion of llvm.va_start.
3443 if (isVarArg) {
3444 int Depth = ArgOffset;
3445
3446 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt57d6de52012-10-23 15:51:16 +00003447 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003448 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
3449
3450 // If this function is vararg, store any remaining integer argument regs
3451 // to their spots on the stack so that they may be loaded by deferencing the
3452 // result of va_next.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00003453 for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
3454 GPR_idx < Num_GPR_Regs; ++GPR_idx) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003455 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3456 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3457 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3458 MachinePointerInfo(), false, false, 0);
3459 MemOps.push_back(Store);
3460 // Increment the address by four for the next argument to store
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003461 SDValue PtrOff = DAG.getConstant(PtrByteSize, dl, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003462 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3463 }
3464 }
3465
3466 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003467 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003468
3469 return Chain;
3470}
3471
3472SDValue
3473PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003474 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003475 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003476 const SmallVectorImpl<ISD::InputArg>
3477 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003478 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003479 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003480 // TODO: add description of PPC stack frame format, or at least some docs.
3481 //
3482 MachineFunction &MF = DAG.getMachineFunction();
3483 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00003484 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003485
Mehdi Amini44ede332015-07-09 02:09:04 +00003486 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Owen Anderson9f944592009-08-11 20:47:22 +00003487 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003488 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003489 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3490 (CallConv == CallingConv::Fast));
Jim Laskeyf4e2e002006-11-28 14:53:52 +00003491 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Eric Christophera4ae2132015-02-13 22:22:57 +00003492 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00003493 unsigned ArgOffset = LinkageSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003494 // Area that is at least reserved in caller of this function.
3495 unsigned MinReservedArea = ArgOffset;
3496
Craig Topper840beec2014-04-04 05:16:06 +00003497 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003498 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
3499 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
3500 };
Craig Topper840beec2014-04-04 05:16:06 +00003501 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00003502 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3503 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3504 };
Craig Topper840beec2014-04-04 05:16:06 +00003505 static const MCPhysReg VR[] = {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003506 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3507 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3508 };
Chris Lattnerec78cad2006-06-26 22:48:35 +00003509
Owen Andersone2f23a32007-09-07 04:06:50 +00003510 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003511 const unsigned Num_FPR_Regs = 13;
Owen Andersone2f23a32007-09-07 04:06:50 +00003512 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey48850c12006-11-16 22:43:37 +00003513
3514 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003515
Craig Topper840beec2014-04-04 05:16:06 +00003516 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003517
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003518 // In 32-bit non-varargs functions, the stack space for vectors is after the
3519 // stack space for non-vectors. We do not use this space unless we have
3520 // too many vectors to fit in registers, something that only occurs in
Scott Michelcf0da6c2009-02-17 22:15:04 +00003521 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003522 // that out...for the pathological case, compute VecArgOffset as the
3523 // start of the vector parameter area. Computing VecArgOffset is the
3524 // entire point of the following loop.
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003525 unsigned VecArgOffset = ArgOffset;
3526 if (!isVarArg && !isPPC64) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003527 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003528 ++ArgNo) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003529 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003530 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003531
Duncan Sandsd97eea32008-03-21 09:14:45 +00003532 if (Flags.isByVal()) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003533 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer084b9f42012-01-20 14:42:32 +00003534 unsigned ObjSize = Flags.getByValSize();
Scott Michelcf0da6c2009-02-17 22:15:04 +00003535 unsigned ArgSize =
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003536 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3537 VecArgOffset += ArgSize;
3538 continue;
3539 }
3540
Owen Anderson9f944592009-08-11 20:47:22 +00003541 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003542 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003543 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003544 case MVT::i32:
3545 case MVT::f32:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003546 VecArgOffset += 4;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003547 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003548 case MVT::i64: // PPC64
3549 case MVT::f64:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003550 // FIXME: We are guaranteed to be !isPPC64 at this point.
3551 // Does MVT::i64 apply?
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003552 VecArgOffset += 8;
3553 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003554 case MVT::v4f32:
3555 case MVT::v4i32:
3556 case MVT::v8i16:
3557 case MVT::v16i8:
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003558 // Nothing to do, we're only looking at Nonvector args here.
3559 break;
3560 }
3561 }
3562 }
3563 // We've found where the vector parameter area in memory is. Skip the
3564 // first 12 parameters; these don't use that memory.
3565 VecArgOffset = ((VecArgOffset+15)/16)*16;
3566 VecArgOffset += 12*16;
3567
Chris Lattner4302e8f2006-05-16 18:18:50 +00003568 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey48850c12006-11-16 22:43:37 +00003569 // entry to a function on PPC, the arguments start after the linkage area,
3570 // although the first ones are often in registers.
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00003571
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003572 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003573 unsigned nAltivecParamsAtEnd = 0;
Roman Divackyca103892012-09-24 20:47:19 +00003574 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt38b6cb52013-05-08 17:22:33 +00003575 unsigned CurArgIdx = 0;
3576 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003577 SDValue ArgVal;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003578 bool needsLoad = false;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003579 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands13237ac2008-06-06 12:08:01 +00003580 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey152671f2006-11-29 13:37:09 +00003581 unsigned ArgSize = ObjSize;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003582 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Andrew Trick05938a52015-02-16 18:10:47 +00003583 if (Ins[ArgNo].isOrigArg()) {
3584 std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx);
3585 CurArgIdx = Ins[ArgNo].getOrigArgIndex();
3586 }
Chris Lattner318f0d22006-05-16 18:51:52 +00003587 unsigned CurArgOffset = ArgOffset;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003588
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003589 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00003590 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
3591 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003592 if (isVarArg || isPPC64) {
3593 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003594 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003595 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003596 PtrByteSize);
3597 } else nAltivecParamsAtEnd++;
3598 } else
3599 // Calculate min reserved area.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003600 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003601 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003602 PtrByteSize);
3603
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003604 // FIXME the codegen can be much improved in some cases.
3605 // We do not have to keep everything in memory.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003606 if (Flags.isByVal()) {
Andrew Trick05938a52015-02-16 18:10:47 +00003607 assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit");
3608
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003609 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003610 ObjSize = Flags.getByValSize();
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003611 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003612 // Objects of size 1 and 2 are right justified, everything else is
3613 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen21a8f142008-03-08 01:41:42 +00003614 if (ObjSize==1 || ObjSize==2) {
3615 CurArgOffset = CurArgOffset + (4 - ObjSize);
3616 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003617 // The value of the object is its address.
Hal Finkel41a55ad2014-08-16 00:17:05 +00003618 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, false, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003619 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003620 InVals.push_back(FIN);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003621 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen21a8f142008-03-08 01:41:42 +00003622 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003623 unsigned VReg;
3624 if (isPPC64)
3625 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3626 else
3627 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003628 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt57d6de52012-10-23 15:51:16 +00003629 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003630 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00003631 MachinePointerInfo(&*FuncArg),
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003632 ObjType, false, false, 0);
Dale Johannesen21a8f142008-03-08 01:41:42 +00003633 MemOps.push_back(Store);
3634 ++GPR_idx;
Dale Johannesen21a8f142008-03-08 01:41:42 +00003635 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003636
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003637 ArgOffset += PtrByteSize;
Wesley Peck527da1b2010-11-23 03:31:01 +00003638
Dale Johannesen21a8f142008-03-08 01:41:42 +00003639 continue;
3640 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003641 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3642 // Store whatever pieces of the object are in registers
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003643 // to memory. ArgOffset will be the address of the beginning
3644 // of the object.
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003645 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003646 unsigned VReg;
3647 if (isPPC64)
3648 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3649 else
3650 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Cheng0664a672010-07-03 00:40:23 +00003651 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003652 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003653 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00003654 SDValue Store =
3655 DAG.getStore(Val.getValue(1), dl, Val, FIN,
3656 MachinePointerInfo(&*FuncArg, j), false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003657 MemOps.push_back(Store);
3658 ++GPR_idx;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003659 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003660 } else {
3661 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
3662 break;
3663 }
3664 }
3665 continue;
3666 }
3667
Owen Anderson9f944592009-08-11 20:47:22 +00003668 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003669 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003670 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003671 case MVT::i32:
Bill Wendling968f32c2008-03-07 20:49:02 +00003672 if (!isPPC64) {
Bill Wendling968f32c2008-03-07 20:49:02 +00003673 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003674 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003675 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Hal Finkel7f908e82014-03-06 00:45:19 +00003676
3677 if (ObjectVT == MVT::i1)
3678 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal);
3679
Bill Wendling968f32c2008-03-07 20:49:02 +00003680 ++GPR_idx;
3681 } else {
3682 needsLoad = true;
3683 ArgSize = PtrByteSize;
3684 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003685 // All int arguments reserve stack space in the Darwin ABI.
3686 ArgOffset += PtrByteSize;
Bill Wendling968f32c2008-03-07 20:49:02 +00003687 break;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003688 }
Bill Wendling968f32c2008-03-07 20:49:02 +00003689 // FALLTHROUGH
Owen Anderson9f944592009-08-11 20:47:22 +00003690 case MVT::i64: // PPC64
Chris Lattnerec78cad2006-06-26 22:48:35 +00003691 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003692 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003693 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling968f32c2008-03-07 20:49:02 +00003694
Hal Finkel940ab932014-02-28 00:27:01 +00003695 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Wendling968f32c2008-03-07 20:49:02 +00003696 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson9f944592009-08-11 20:47:22 +00003697 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00003698 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling968f32c2008-03-07 20:49:02 +00003699
Chris Lattnerec78cad2006-06-26 22:48:35 +00003700 ++GPR_idx;
3701 } else {
3702 needsLoad = true;
Evan Cheng0f0aee22008-07-24 08:17:07 +00003703 ArgSize = PtrByteSize;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003704 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003705 // All int arguments reserve stack space in the Darwin ABI.
3706 ArgOffset += 8;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003707 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003708
Owen Anderson9f944592009-08-11 20:47:22 +00003709 case MVT::f32:
3710 case MVT::f64:
Chris Lattner318f0d22006-05-16 18:51:52 +00003711 // Every 4 bytes of argument space consumes one of the GPRs available for
3712 // argument passing.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003713 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003714 ++GPR_idx;
Chris Lattner2cca3852006-11-18 01:57:19 +00003715 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003716 ++GPR_idx;
Chris Lattner318f0d22006-05-16 18:51:52 +00003717 }
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003718 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003719 unsigned VReg;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003720
Owen Anderson9f944592009-08-11 20:47:22 +00003721 if (ObjectVT == MVT::f32)
Devang Patelf3292b22011-02-21 23:21:26 +00003722 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003723 else
Devang Patelf3292b22011-02-21 23:21:26 +00003724 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003725
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003726 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003727 ++FPR_idx;
3728 } else {
3729 needsLoad = true;
3730 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003731
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003732 // All FP arguments reserve stack space in the Darwin ABI.
3733 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003734 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003735 case MVT::v4f32:
3736 case MVT::v4i32:
3737 case MVT::v8i16:
3738 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00003739 // Note that vector arguments in registers don't reserve stack space,
3740 // except in varargs functions.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003741 if (VR_idx != Num_VR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003742 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003743 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesenb28456e2008-03-12 00:22:17 +00003744 if (isVarArg) {
3745 while ((ArgOffset % 16) != 0) {
3746 ArgOffset += PtrByteSize;
3747 if (GPR_idx != Num_GPR_Regs)
3748 GPR_idx++;
3749 }
3750 ArgOffset += 16;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003751 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesenb28456e2008-03-12 00:22:17 +00003752 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003753 ++VR_idx;
3754 } else {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003755 if (!isVarArg && !isPPC64) {
3756 // Vectors go after all the nonvectors.
3757 CurArgOffset = VecArgOffset;
3758 VecArgOffset += 16;
3759 } else {
3760 // Vectors are aligned.
3761 ArgOffset = ((ArgOffset+15)/16)*16;
3762 CurArgOffset = ArgOffset;
3763 ArgOffset += 16;
Dale Johannesen0d982562008-03-12 00:49:20 +00003764 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003765 needsLoad = true;
3766 }
3767 break;
3768 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003769
Chris Lattner4302e8f2006-05-16 18:18:50 +00003770 // We need to load the argument to a virtual register if we determined above
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003771 // that we ran out of physical registers of the appropriate type.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003772 if (needsLoad) {
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003773 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003774 CurArgOffset + (ArgSize - ObjSize),
Evan Cheng0664a672010-07-03 00:40:23 +00003775 isImmutable);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003776 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00003777 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003778 false, false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003779 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003780
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003781 InVals.push_back(ArgVal);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003782 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003783
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003784 // Allow for Altivec parameters at the end, if needed.
3785 if (nAltivecParamsAtEnd) {
3786 MinReservedArea = ((MinReservedArea+15)/16)*16;
3787 MinReservedArea += 16*nAltivecParamsAtEnd;
3788 }
3789
3790 // Area that is at least reserved in the caller of this function.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00003791 MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003792
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003793 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00003794 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003795 // taking the difference between two stack areas will result in an aligned
3796 // stack.
Eric Christophercccae792015-01-30 22:02:31 +00003797 MinReservedArea =
3798 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003799 FuncInfo->setMinReservedArea(MinReservedArea);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003800
Chris Lattner4302e8f2006-05-16 18:18:50 +00003801 // If the function takes variable number of arguments, make a frame index for
3802 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003803 if (isVarArg) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003804 int Depth = ArgOffset;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003805
Dan Gohman31ae5862010-04-17 14:41:14 +00003806 FuncInfo->setVarArgsFrameIndex(
3807 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00003808 Depth, true));
Dan Gohman31ae5862010-04-17 14:41:14 +00003809 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003810
Chris Lattner4302e8f2006-05-16 18:18:50 +00003811 // If this function is vararg, store any remaining integer argument regs
3812 // to their spots on the stack so that they may be loaded by deferencing the
3813 // result of va_next.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003814 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattner2cca3852006-11-18 01:57:19 +00003815 unsigned VReg;
Wesley Peck527da1b2010-11-23 03:31:01 +00003816
Chris Lattner2cca3852006-11-18 01:57:19 +00003817 if (isPPC64)
Devang Patelf3292b22011-02-21 23:21:26 +00003818 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003819 else
Devang Patelf3292b22011-02-21 23:21:26 +00003820 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003821
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003822 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00003823 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3824 MachinePointerInfo(), false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003825 MemOps.push_back(Store);
3826 // Increment the address by four for the next argument to store
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003827 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT);
Dale Johannesen679073b2009-02-04 02:34:38 +00003828 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003829 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003830 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003831
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003832 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003833 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003834
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003835 return Chain;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003836}
3837
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003838/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003839/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesen86dcae12009-11-24 01:09:07 +00003840static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003841 unsigned ParamSize) {
3842
Dale Johannesen86dcae12009-11-24 01:09:07 +00003843 if (!isTailCall) return 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003844
3845 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
3846 unsigned CallerMinReservedArea = FI->getMinReservedArea();
3847 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
3848 // Remember only if the new adjustement is bigger.
3849 if (SPDiff < FI->getTailCallSPDelta())
3850 FI->setTailCallSPDelta(SPDiff);
3851
3852 return SPDiff;
3853}
3854
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00003855static bool isFunctionGlobalAddress(SDValue Callee);
3856
3857static bool
3858resideInSameModule(SDValue Callee, Reloc::Model RelMod) {
3859 // If !G, Callee can be an external symbol.
3860 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
3861 if (!G) return false;
3862
3863 const GlobalValue *GV = G->getGlobal();
3864
3865 if (GV->isDeclaration()) return false;
3866
3867 switch(GV->getLinkage()) {
3868 default: llvm_unreachable("unknow linkage type");
3869 case GlobalValue::AvailableExternallyLinkage:
3870 case GlobalValue::ExternalWeakLinkage:
3871 return false;
3872
3873 // Callee with weak linkage is allowed if it has hidden or protected
3874 // visibility
3875 case GlobalValue::LinkOnceAnyLinkage:
3876 case GlobalValue::LinkOnceODRLinkage: // e.g. c++ inline functions
3877 case GlobalValue::WeakAnyLinkage:
3878 case GlobalValue::WeakODRLinkage: // e.g. c++ template instantiation
3879 if (GV->hasDefaultVisibility())
3880 return false;
3881
3882 case GlobalValue::ExternalLinkage:
3883 case GlobalValue::InternalLinkage:
3884 case GlobalValue::PrivateLinkage:
3885 break;
3886 }
3887
3888 // With '-fPIC', calling default visiblity function need insert 'nop' after
3889 // function call, no matter that function resides in same module or not, so
3890 // we treat it as in different module.
3891 if (RelMod == Reloc::PIC_ && GV->hasDefaultVisibility())
3892 return false;
3893
3894 return true;
3895}
3896
3897static bool
3898needStackSlotPassParameters(const PPCSubtarget &Subtarget,
3899 const SmallVectorImpl<ISD::OutputArg> &Outs) {
3900 assert(Subtarget.isSVR4ABI() && Subtarget.isPPC64());
3901
3902 const unsigned PtrByteSize = 8;
3903 const unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
3904
3905 static const MCPhysReg GPR[] = {
3906 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3907 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3908 };
3909 static const MCPhysReg VR[] = {
3910 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3911 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3912 };
3913
3914 const unsigned NumGPRs = array_lengthof(GPR);
3915 const unsigned NumFPRs = 13;
3916 const unsigned NumVRs = array_lengthof(VR);
3917 const unsigned ParamAreaSize = NumGPRs * PtrByteSize;
3918
3919 unsigned NumBytes = LinkageSize;
3920 unsigned AvailableFPRs = NumFPRs;
3921 unsigned AvailableVRs = NumVRs;
3922
3923 for (const ISD::OutputArg& Param : Outs) {
3924 if (Param.Flags.isNest()) continue;
3925
3926 if (CalculateStackSlotUsed(Param.VT, Param.ArgVT, Param.Flags,
3927 PtrByteSize, LinkageSize, ParamAreaSize,
3928 NumBytes, AvailableFPRs, AvailableVRs,
3929 Subtarget.hasQPX()))
3930 return true;
3931 }
3932 return false;
3933}
3934
3935static bool
3936hasSameArgumentList(const Function *CallerFn, ImmutableCallSite *CS) {
3937 if (CS->arg_size() != CallerFn->getArgumentList().size())
3938 return false;
3939
3940 ImmutableCallSite::arg_iterator CalleeArgIter = CS->arg_begin();
3941 ImmutableCallSite::arg_iterator CalleeArgEnd = CS->arg_end();
3942 Function::const_arg_iterator CallerArgIter = CallerFn->arg_begin();
3943
3944 for (; CalleeArgIter != CalleeArgEnd; ++CalleeArgIter, ++CallerArgIter) {
3945 const Value* CalleeArg = *CalleeArgIter;
3946 const Value* CallerArg = &(*CallerArgIter);
3947 if (CalleeArg == CallerArg)
3948 continue;
3949
3950 // e.g. @caller([4 x i64] %a, [4 x i64] %b) {
3951 // tail call @callee([4 x i64] undef, [4 x i64] %b)
3952 // }
3953 // 1st argument of callee is undef and has the same type as caller.
3954 if (CalleeArg->getType() == CallerArg->getType() &&
3955 isa<UndefValue>(CalleeArg))
3956 continue;
3957
3958 return false;
3959 }
3960
3961 return true;
3962}
3963
3964bool
3965PPCTargetLowering::IsEligibleForTailCallOptimization_64SVR4(
3966 SDValue Callee,
3967 CallingConv::ID CalleeCC,
3968 ImmutableCallSite *CS,
3969 bool isVarArg,
3970 const SmallVectorImpl<ISD::OutputArg> &Outs,
3971 const SmallVectorImpl<ISD::InputArg> &Ins,
3972 SelectionDAG& DAG) const {
3973 bool TailCallOpt = getTargetMachine().Options.GuaranteedTailCallOpt;
3974
3975 if (DisableSCO && !TailCallOpt) return false;
3976
3977 // Variadic argument functions are not supported.
3978 if (isVarArg) return false;
3979
3980 MachineFunction &MF = DAG.getMachineFunction();
3981 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
3982
3983 // Tail or Sibling call optimization (TCO/SCO) needs callee and caller has
3984 // the same calling convention
3985 if (CallerCC != CalleeCC) return false;
3986
3987 // SCO support C calling convention
3988 if (CalleeCC != CallingConv::Fast && CalleeCC != CallingConv::C)
3989 return false;
3990
3991 // Functions containing by val parameters are not supported.
3992 if (std::any_of(Ins.begin(), Ins.end(),
3993 [](const ISD::InputArg& IA) { return IA.Flags.isByVal(); }))
3994 return false;
3995
3996 // No TCO/SCO on indirect call because Caller have to restore its TOC
3997 if (!isFunctionGlobalAddress(Callee) &&
3998 !isa<ExternalSymbolSDNode>(Callee))
3999 return false;
4000
4001 // Check if Callee resides in the same module, because for now, PPC64 SVR4 ABI
4002 // (ELFv1/ELFv2) doesn't allow tail calls to a symbol resides in another
4003 // module.
4004 // ref: https://bugzilla.mozilla.org/show_bug.cgi?id=973977
4005 if (!resideInSameModule(Callee, getTargetMachine().getRelocationModel()))
4006 return false;
4007
4008 // TCO allows altering callee ABI, so we don't have to check further.
4009 if (CalleeCC == CallingConv::Fast && TailCallOpt)
4010 return true;
4011
4012 if (DisableSCO) return false;
4013
4014 // If callee use the same argument list that caller is using, then we can
4015 // apply SCO on this case. If it is not, then we need to check if callee needs
4016 // stack for passing arguments.
4017 if (!hasSameArgumentList(MF.getFunction(), CS) &&
4018 needStackSlotPassParameters(Subtarget, Outs)) {
4019 return false;
4020 }
4021
4022 return true;
4023}
4024
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004025/// IsEligibleForTailCallOptimization - Check whether the call is eligible
4026/// for tail call optimization. Targets which want to do tail call
4027/// optimization should implement this function.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004028bool
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004029PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004030 CallingConv::ID CalleeCC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004031 bool isVarArg,
4032 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004033 SelectionDAG& DAG) const {
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004034 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng25217ff2010-01-29 23:05:56 +00004035 return false;
4036
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004037 // Variable argument functions are not supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004038 if (isVarArg)
Dan Gohmaneffb8942008-09-12 16:56:44 +00004039 return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004040
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004041 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel68c5f472009-09-02 08:44:58 +00004042 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004043 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
4044 // Functions containing by val parameters are not supported.
4045 for (unsigned i = 0; i != Ins.size(); i++) {
4046 ISD::ArgFlagsTy Flags = Ins[i].Flags;
4047 if (Flags.isByVal()) return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004048 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004049
Alp Tokerf907b892013-12-05 05:44:44 +00004050 // Non-PIC/GOT tail calls are supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004051 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
4052 return true;
4053
4054 // At the moment we can only do local tail calls (in same module, hidden
4055 // or protected) if we are generating PIC.
4056 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
4057 return G->getGlobal()->hasHiddenVisibility()
4058 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004059 }
4060
4061 return false;
4062}
4063
Chris Lattnereb755fc2006-05-17 19:00:46 +00004064/// isCallCompatibleAddress - Return the immediate to use if the specified
4065/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004066static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnereb755fc2006-05-17 19:00:46 +00004067 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
Craig Topper062a2ba2014-04-25 05:30:21 +00004068 if (!C) return nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004069
Dan Gohmaneffb8942008-09-12 16:56:44 +00004070 int Addr = C->getZExtValue();
Chris Lattnereb755fc2006-05-17 19:00:46 +00004071 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith228e6d42012-08-24 23:29:28 +00004072 SignExtend32<26>(Addr) != Addr)
Craig Topper062a2ba2014-04-25 05:30:21 +00004073 return nullptr; // Top 6 bits have to be sext of immediate.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004074
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004075 return DAG.getConstant((int)C->getZExtValue() >> 2, SDLoc(Op),
Mehdi Amini44ede332015-07-09 02:09:04 +00004076 DAG.getTargetLoweringInfo().getPointerTy(
4077 DAG.getDataLayout())).getNode();
Chris Lattnereb755fc2006-05-17 19:00:46 +00004078}
4079
Dan Gohmand78c4002008-05-13 00:00:25 +00004080namespace {
4081
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004082struct TailCallArgumentInfo {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004083 SDValue Arg;
4084 SDValue FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004085 int FrameIdx;
4086
4087 TailCallArgumentInfo() : FrameIdx(0) {}
4088};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00004089}
Dan Gohmand78c4002008-05-13 00:00:25 +00004090
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004091/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
4092static void
4093StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00004094 SDValue Chain,
Craig Topperb94011f2013-07-14 04:42:23 +00004095 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
4096 SmallVectorImpl<SDValue> &MemOpChains,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004097 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004098 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004099 SDValue Arg = TailCallArgs[i].Arg;
4100 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004101 int FI = TailCallArgs[i].FrameIdx;
4102 // Store relative to framepointer.
Alex Lorenze40c8a22015-08-11 23:09:45 +00004103 MemOpChains.push_back(DAG.getStore(
4104 Chain, dl, Arg, FIN,
4105 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), false,
4106 false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004107 }
4108}
4109
4110/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
4111/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004112static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004113 MachineFunction &MF,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004114 SDValue Chain,
4115 SDValue OldRetAddr,
4116 SDValue OldFP,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004117 int SPDiff,
4118 bool isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004119 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004120 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004121 if (SPDiff) {
4122 // Calculate the new stack slot for the return address.
4123 int SlotSize = isPPC64 ? 8 : 4;
Eric Christopherdc3a8a42015-02-13 00:39:38 +00004124 const PPCFrameLowering *FL =
4125 MF.getSubtarget<PPCSubtarget>().getFrameLowering();
4126 int NewRetAddrLoc = SPDiff + FL->getReturnSaveOffset();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004127 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Cheng0664a672010-07-03 00:40:23 +00004128 NewRetAddrLoc, true);
Owen Anderson9f944592009-08-11 20:47:22 +00004129 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004130 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Alex Lorenze40c8a22015-08-11 23:09:45 +00004131 Chain = DAG.getStore(
4132 Chain, dl, OldRetAddr, NewRetAddrFrIdx,
4133 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), NewRetAddr),
4134 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004135
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00004136 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
4137 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004138 if (isDarwinABI) {
Eric Christopherdc3a8a42015-02-13 00:39:38 +00004139 int NewFPLoc = SPDiff + FL->getFramePointerSaveOffset();
David Greene1fbe0542009-11-12 20:49:22 +00004140 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Cheng0664a672010-07-03 00:40:23 +00004141 true);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004142 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
Alex Lorenze40c8a22015-08-11 23:09:45 +00004143 Chain = DAG.getStore(
4144 Chain, dl, OldFP, NewFramePtrIdx,
4145 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), NewFPIdx),
4146 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004147 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004148 }
4149 return Chain;
4150}
4151
4152/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
4153/// the position of the argument.
4154static void
4155CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004156 SDValue Arg, int SPDiff, unsigned ArgOffset,
Craig Topperb94011f2013-07-14 04:42:23 +00004157 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004158 int Offset = ArgOffset + SPDiff;
Duncan Sands13237ac2008-06-06 12:08:01 +00004159 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Cheng0664a672010-07-03 00:40:23 +00004160 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson9f944592009-08-11 20:47:22 +00004161 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004162 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004163 TailCallArgumentInfo Info;
4164 Info.Arg = Arg;
4165 Info.FrameIdxOp = FIN;
4166 Info.FrameIdx = FI;
4167 TailCallArguments.push_back(Info);
4168}
4169
4170/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
4171/// stack slot. Returns the chain as result and the loaded frame pointers in
4172/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004173SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen021052a2009-02-04 20:06:27 +00004174 int SPDiff,
4175 SDValue Chain,
4176 SDValue &LROpOut,
4177 SDValue &FPOpOut,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004178 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004179 SDLoc dl) const {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004180 if (SPDiff) {
4181 // Load the LR and FP stack slot for later adjusting.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00004182 EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004183 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00004184 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004185 false, false, false, 0);
Gabor Greiff304a7a2008-08-28 21:40:38 +00004186 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peck527da1b2010-11-23 03:31:01 +00004187
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00004188 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
4189 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004190 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004191 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00004192 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004193 false, false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004194 Chain = SDValue(FPOpOut.getNode(), 1);
4195 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004196 }
4197 return Chain;
4198}
4199
Dale Johannesen85d41a12008-03-04 23:17:14 +00004200/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelcf0da6c2009-02-17 22:15:04 +00004201/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen85d41a12008-03-04 23:17:14 +00004202/// specified by the specific parameter attribute. The copy will be passed as
4203/// a byval function parameter.
4204/// Sometimes what we are copying is the end of a larger object, the part that
4205/// does not fit in registers.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004206static SDValue
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004207CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sandsd97eea32008-03-21 09:14:45 +00004208 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004209 SDLoc dl) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004210 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
Dale Johannesen85263882009-02-04 01:17:06 +00004211 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Krzysztof Parzyszeka46c36b2015-04-13 17:16:45 +00004212 false, false, false, MachinePointerInfo(),
Nick Lewyckyaad475b2014-04-15 07:22:52 +00004213 MachinePointerInfo());
Dale Johannesen85d41a12008-03-04 23:17:14 +00004214}
Chris Lattner43df5b32007-02-25 05:34:32 +00004215
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004216/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
4217/// tail calls.
4218static void
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004219LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
4220 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004221 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00004222 bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
4223 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004224 SDLoc dl) {
Mehdi Amini44ede332015-07-09 02:09:04 +00004225 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004226 if (!isTailCall) {
4227 if (isVector) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004228 SDValue StackPtr;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004229 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00004230 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004231 else
Owen Anderson9f944592009-08-11 20:47:22 +00004232 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00004233 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004234 DAG.getConstant(ArgOffset, dl, PtrVT));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004235 }
Chris Lattner676c61d2010-09-21 18:41:36 +00004236 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
4237 MachinePointerInfo(), false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004238 // Calculate and remember argument location.
4239 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
4240 TailCallArguments);
4241}
4242
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004243static
4244void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004245 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004246 SDValue LROp, SDValue FPOp, bool isDarwinABI,
Craig Topperb94011f2013-07-14 04:42:23 +00004247 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004248 MachineFunction &MF = DAG.getMachineFunction();
4249
4250 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
4251 // might overwrite each other in case of tail call optimization.
4252 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00004253 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004254 InFlag = SDValue();
4255 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
4256 MemOpChains2, dl);
4257 if (!MemOpChains2.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004258 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004259
4260 // Store the return address to the appropriate stack slot.
4261 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
4262 isPPC64, isDarwinABI, dl);
4263
4264 // Emit callseq_end just before tailcall node.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004265 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4266 DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004267 InFlag = Chain.getValue(1);
4268}
4269
Hal Finkel87deb0b2015-01-12 04:34:47 +00004270// Is this global address that of a function that can be called by name? (as
4271// opposed to something that must hold a descriptor for an indirect call).
4272static bool isFunctionGlobalAddress(SDValue Callee) {
4273 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
4274 if (Callee.getOpcode() == ISD::GlobalTLSAddress ||
4275 Callee.getOpcode() == ISD::TargetGlobalTLSAddress)
4276 return false;
4277
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00004278 return G->getGlobal()->getValueType()->isFunctionTy();
Hal Finkel87deb0b2015-01-12 04:34:47 +00004279 }
4280
4281 return false;
4282}
4283
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004284static
4285unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004286 SDValue &Chain, SDValue CallSeqStart, SDLoc dl, int SPDiff,
Hal Finkel965cea52015-07-12 00:37:44 +00004287 bool isTailCall, bool IsPatchPoint, bool hasNest,
Craig Topperb94011f2013-07-14 04:42:23 +00004288 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
4289 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004290 ImmutableCallSite *CS, const PPCSubtarget &Subtarget) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004291
Eric Christopherb1aaebe2014-06-12 22:38:18 +00004292 bool isPPC64 = Subtarget.isPPC64();
4293 bool isSVR4ABI = Subtarget.isSVR4ABI();
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004294 bool isELFv2ABI = Subtarget.isELFv2ABI();
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004295
Mehdi Amini44ede332015-07-09 02:09:04 +00004296 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Owen Anderson9f944592009-08-11 20:47:22 +00004297 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004298 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004299
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00004300 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004301
Torok Edwin31e90d22010-08-04 20:47:44 +00004302 bool needIndirectCall = true;
Ulrich Weigand9aa09ef2014-06-18 16:14:04 +00004303 if (!isSVR4ABI || !isPPC64)
4304 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
4305 // If this is an absolute destination address, use the munged value.
4306 Callee = SDValue(Dest, 0);
4307 needIndirectCall = false;
4308 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004309
Hal Finkel87deb0b2015-01-12 04:34:47 +00004310 if (isFunctionGlobalAddress(Callee)) {
4311 GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee);
4312 // A call to a TLS address is actually an indirect call to a
4313 // thread-specific pointer.
Eric Christopher79cc1e32014-09-02 22:28:02 +00004314 unsigned OpFlags = 0;
4315 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
4316 (Subtarget.getTargetTriple().isMacOSX() &&
4317 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
Peter Collingbourne6a9d1772015-07-05 20:52:35 +00004318 !G->getGlobal()->isStrongDefinitionForLinker()) ||
Eric Christopher79cc1e32014-09-02 22:28:02 +00004319 (Subtarget.isTargetELF() && !isPPC64 &&
4320 !G->getGlobal()->hasLocalLinkage() &&
4321 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
4322 // PC-relative references to external symbols should go through $stub,
4323 // unless we're building with the leopard linker or later, which
4324 // automatically synthesizes these stubs.
4325 OpFlags = PPCII::MO_PLT_OR_STUB;
Eric Christopherb9fd9ed2014-08-07 22:02:54 +00004326 }
Eric Christopher79cc1e32014-09-02 22:28:02 +00004327
4328 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
4329 // every direct call is) turn it into a TargetGlobalAddress /
4330 // TargetExternalSymbol node so that legalize doesn't hack it.
4331 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
4332 Callee.getValueType(), 0, OpFlags);
4333 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00004334 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004335
Torok Edwin31e90d22010-08-04 20:47:44 +00004336 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004337 unsigned char OpFlags = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00004338
Hal Finkel3ee2af72014-07-18 23:29:49 +00004339 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
4340 (Subtarget.getTargetTriple().isMacOSX() &&
4341 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) ||
4342 (Subtarget.isTargetELF() && !isPPC64 &&
Justin Hibbits17744c12015-01-10 07:50:31 +00004343 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004344 // PC-relative references to external symbols should go through $stub,
4345 // unless we're building with the leopard linker or later, which
4346 // automatically synthesizes these stubs.
Hal Finkel3ee2af72014-07-18 23:29:49 +00004347 OpFlags = PPCII::MO_PLT_OR_STUB;
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004348 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004349
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004350 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
4351 OpFlags);
4352 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00004353 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004354
Hal Finkel934361a2015-01-14 01:07:51 +00004355 if (IsPatchPoint) {
4356 // We'll form an invalid direct call when lowering a patchpoint; the full
4357 // sequence for an indirect call is complicated, and many of the
4358 // instructions introduced might have side effects (and, thus, can't be
4359 // removed later). The call itself will be removed as soon as the
4360 // argument/return lowering is complete, so the fact that it has the wrong
4361 // kind of operands should not really matter.
4362 needIndirectCall = false;
4363 }
4364
Torok Edwin31e90d22010-08-04 20:47:44 +00004365 if (needIndirectCall) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004366 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
4367 // to do the call, we can't use PPCISD::CALL.
4368 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller79fef932009-12-18 13:00:15 +00004369
Hal Finkel63fb9282015-01-13 18:25:05 +00004370 if (isSVR4ABI && isPPC64 && !isELFv2ABI) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00004371 // Function pointers in the 64-bit SVR4 ABI do not point to the function
4372 // entry point, but to the function descriptor (the function entry point
4373 // address is part of the function descriptor though).
4374 // The function descriptor is a three doubleword structure with the
4375 // following fields: function entry point, TOC base address and
4376 // environment pointer.
4377 // Thus for a call through a function pointer, the following actions need
4378 // to be performed:
4379 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt57d6de52012-10-23 15:51:16 +00004380 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller79fef932009-12-18 13:00:15 +00004381 // 2. Load the address of the function entry point from the function
4382 // descriptor.
4383 // 3. Load the TOC of the callee from the function descriptor into r2.
4384 // 4. Load the environment pointer from the function descriptor into
4385 // r11.
4386 // 5. Branch to the function entry point address.
4387 // 6. On return of the callee, the TOC of the caller needs to be
4388 // restored (this is done in FinishCall()).
4389 //
Hal Finkele2ab0f12015-01-15 21:17:34 +00004390 // The loads are scheduled at the beginning of the call sequence, and the
4391 // register copies are flagged together to ensure that no other
Tilmann Scheller79fef932009-12-18 13:00:15 +00004392 // operations can be scheduled in between. E.g. without flagging the
Hal Finkele2ab0f12015-01-15 21:17:34 +00004393 // copies together, a TOC access in the caller could be scheduled between
4394 // the assignment of the callee TOC and the branch to the callee, which
Tilmann Scheller79fef932009-12-18 13:00:15 +00004395 // results in the TOC access going through the TOC of the callee instead
4396 // of going through the TOC of the caller, which leads to incorrect code.
4397
4398 // Load the address of the function entry point from the function
4399 // descriptor.
Hal Finkele2ab0f12015-01-15 21:17:34 +00004400 SDValue LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-1);
4401 if (LDChain.getValueType() == MVT::Glue)
4402 LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-2);
4403
4404 bool LoadsInv = Subtarget.hasInvariantFunctionDescriptors();
4405
4406 MachinePointerInfo MPI(CS ? CS->getCalledValue() : nullptr);
4407 SDValue LoadFuncPtr = DAG.getLoad(MVT::i64, dl, LDChain, Callee, MPI,
4408 false, false, LoadsInv, 8);
Tilmann Scheller79fef932009-12-18 13:00:15 +00004409
4410 // Load environment pointer into r11.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004411 SDValue PtrOff = DAG.getIntPtrConstant(16, dl);
Tilmann Scheller79fef932009-12-18 13:00:15 +00004412 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
Hal Finkele2ab0f12015-01-15 21:17:34 +00004413 SDValue LoadEnvPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddPtr,
4414 MPI.getWithOffset(16), false, false,
4415 LoadsInv, 8);
4416
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004417 SDValue TOCOff = DAG.getIntPtrConstant(8, dl);
Hal Finkele2ab0f12015-01-15 21:17:34 +00004418 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff);
4419 SDValue TOCPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddTOC,
4420 MPI.getWithOffset(8), false, false,
4421 LoadsInv, 8);
4422
Hal Finkele6698d52015-02-01 15:03:28 +00004423 setUsesTOCBasePtr(DAG);
Hal Finkele2ab0f12015-01-15 21:17:34 +00004424 SDValue TOCVal = DAG.getCopyToReg(Chain, dl, PPC::X2, TOCPtr,
4425 InFlag);
4426 Chain = TOCVal.getValue(0);
4427 InFlag = TOCVal.getValue(1);
Tilmann Scheller79fef932009-12-18 13:00:15 +00004428
Hal Finkel965cea52015-07-12 00:37:44 +00004429 // If the function call has an explicit 'nest' parameter, it takes the
4430 // place of the environment pointer.
4431 if (!hasNest) {
4432 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
4433 InFlag);
Hal Finkele2ab0f12015-01-15 21:17:34 +00004434
Hal Finkel965cea52015-07-12 00:37:44 +00004435 Chain = EnvVal.getValue(0);
4436 InFlag = EnvVal.getValue(1);
4437 }
Tilmann Scheller79fef932009-12-18 13:00:15 +00004438
Tilmann Scheller79fef932009-12-18 13:00:15 +00004439 MTCTROps[0] = Chain;
4440 MTCTROps[1] = LoadFuncPtr;
4441 MTCTROps[2] = InFlag;
4442 }
4443
Hal Finkel63fb9282015-01-13 18:25:05 +00004444 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys,
4445 makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
4446 InFlag = Chain.getValue(1);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004447
4448 NodeTys.clear();
Owen Anderson9f944592009-08-11 20:47:22 +00004449 NodeTys.push_back(MVT::Other);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00004450 NodeTys.push_back(MVT::Glue);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004451 Ops.push_back(Chain);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00004452 CallOpc = PPCISD::BCTRL;
Craig Topper062a2ba2014-04-25 05:30:21 +00004453 Callee.setNode(nullptr);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00004454 // Add use of X11 (holding environment pointer)
Hal Finkel965cea52015-07-12 00:37:44 +00004455 if (isSVR4ABI && isPPC64 && !isELFv2ABI && !hasNest)
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00004456 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004457 // Add CTR register as callee so a bctr can be emitted later.
4458 if (isTailCall)
Roman Divackya4a59ae2011-06-03 15:47:49 +00004459 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004460 }
4461
4462 // If this is a direct call, pass the chain and the callee.
4463 if (Callee.getNode()) {
4464 Ops.push_back(Chain);
4465 Ops.push_back(Callee);
4466 }
4467 // If this is a tail call add stack pointer delta.
4468 if (isTailCall)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004469 Ops.push_back(DAG.getConstant(SPDiff, dl, MVT::i32));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004470
4471 // Add argument registers to the end of the list so that they are known live
4472 // into the call.
4473 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
4474 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
4475 RegsToPass[i].second.getValueType()));
4476
Hal Finkelaf519932015-01-19 07:20:27 +00004477 // All calls, in both the ELF V1 and V2 ABIs, need the TOC register live
4478 // into the call.
Hal Finkele6698d52015-02-01 15:03:28 +00004479 if (isSVR4ABI && isPPC64 && !IsPatchPoint) {
4480 setUsesTOCBasePtr(DAG);
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004481 Ops.push_back(DAG.getRegister(PPC::X2, PtrVT));
Hal Finkele6698d52015-02-01 15:03:28 +00004482 }
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004483
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004484 return CallOpc;
4485}
4486
Roman Divacky76293062012-09-18 16:47:58 +00004487static
4488bool isLocalCall(const SDValue &Callee)
4489{
4490 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Peter Collingbourne6a9d1772015-07-05 20:52:35 +00004491 return G->getGlobal()->isStrongDefinitionForLinker();
Roman Divacky76293062012-09-18 16:47:58 +00004492 return false;
4493}
4494
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004495SDValue
4496PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004497 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004498 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004499 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004500 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004501
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004502 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00004503 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
4504 *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004505 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004506
4507 // Copy all of the result registers out of their specified physreg.
4508 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
4509 CCValAssign &VA = RVLocs[i];
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004510 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00004511
4512 SDValue Val = DAG.getCopyFromReg(Chain, dl,
4513 VA.getLocReg(), VA.getLocVT(), InFlag);
4514 Chain = Val.getValue(1);
4515 InFlag = Val.getValue(2);
4516
4517 switch (VA.getLocInfo()) {
4518 default: llvm_unreachable("Unknown loc info!");
4519 case CCValAssign::Full: break;
4520 case CCValAssign::AExt:
4521 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4522 break;
4523 case CCValAssign::ZExt:
4524 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
4525 DAG.getValueType(VA.getValVT()));
4526 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4527 break;
4528 case CCValAssign::SExt:
4529 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
4530 DAG.getValueType(VA.getValVT()));
4531 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4532 break;
4533 }
4534
4535 InVals.push_back(Val);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004536 }
4537
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004538 return Chain;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004539}
4540
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004541SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00004542PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Hal Finkel934361a2015-01-14 01:07:51 +00004543 bool isTailCall, bool isVarArg, bool IsPatchPoint,
Hal Finkel965cea52015-07-12 00:37:44 +00004544 bool hasNest, SelectionDAG &DAG,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004545 SmallVector<std::pair<unsigned, SDValue>, 8>
4546 &RegsToPass,
4547 SDValue InFlag, SDValue Chain,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004548 SDValue CallSeqStart, SDValue &Callee,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004549 int SPDiff, unsigned NumBytes,
4550 const SmallVectorImpl<ISD::InputArg> &Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004551 SmallVectorImpl<SDValue> &InVals,
4552 ImmutableCallSite *CS) const {
Ulrich Weigand8658f172014-07-20 23:43:15 +00004553
Owen Anderson53aa7a92009-08-10 22:56:29 +00004554 std::vector<EVT> NodeTys;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004555 SmallVector<SDValue, 8> Ops;
Hal Finkele2ab0f12015-01-15 21:17:34 +00004556 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, CallSeqStart, dl,
Hal Finkel965cea52015-07-12 00:37:44 +00004557 SPDiff, isTailCall, IsPatchPoint, hasNest,
4558 RegsToPass, Ops, NodeTys, CS, Subtarget);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004559
Hal Finkel5ab37802012-08-28 02:10:27 +00004560 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
Eric Christopherb1aaebe2014-06-12 22:38:18 +00004561 if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64())
Hal Finkel5ab37802012-08-28 02:10:27 +00004562 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
4563
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004564 // When performing tail call optimization the callee pops its arguments off
4565 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky8da87162013-02-21 20:05:00 +00004566 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004567 int BytesCalleePops =
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004568 (CallConv == CallingConv::Fast &&
4569 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004570
Roman Divackyef21be22012-03-06 16:41:49 +00004571 // Add a register mask operand representing the call-preserved registers.
Eric Christophercccae792015-01-30 22:02:31 +00004572 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
Eric Christopher9deb75d2015-03-11 22:42:13 +00004573 const uint32_t *Mask =
4574 TRI->getCallPreservedMask(DAG.getMachineFunction(), CallConv);
Roman Divackyef21be22012-03-06 16:41:49 +00004575 assert(Mask && "Missing call preserved mask for calling convention");
4576 Ops.push_back(DAG.getRegisterMask(Mask));
4577
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004578 if (InFlag.getNode())
4579 Ops.push_back(InFlag);
4580
4581 // Emit tail call.
4582 if (isTailCall) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004583 assert(((Callee.getOpcode() == ISD::Register &&
4584 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
4585 Callee.getOpcode() == ISD::TargetExternalSymbol ||
4586 Callee.getOpcode() == ISD::TargetGlobalAddress ||
4587 isa<ConstantSDNode>(Callee)) &&
4588 "Expecting an global address, external symbol, absolute value or register");
4589
Arnold Schwaighoferdc271142015-05-09 00:10:25 +00004590 DAG.getMachineFunction().getFrameInfo()->setHasTailCall();
Craig Topper48d114b2014-04-26 18:35:24 +00004591 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004592 }
4593
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00004594 // Add a NOP immediately after the branch instruction when using the 64-bit
4595 // SVR4 ABI. At link time, if caller and callee are in a different module and
4596 // thus have a different TOC, the call will be replaced with a call to a stub
4597 // function which saves the current TOC, loads the TOC of the callee and
4598 // branches to the callee. The NOP will be replaced with a load instruction
4599 // which restores the TOC of the caller from the TOC save slot of the current
4600 // stack frame. If caller and callee belong to the same module (and have the
4601 // same TOC), the NOP will remain unchanged.
Hal Finkel51861b42012-03-31 14:45:15 +00004602
Hal Finkel934361a2015-01-14 01:07:51 +00004603 if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64() &&
4604 !IsPatchPoint) {
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00004605 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00004606 // This is a call through a function pointer.
4607 // Restore the caller TOC from the save area into R2.
4608 // See PrepareCall() for more information about calls through function
4609 // pointers in the 64-bit SVR4 ABI.
4610 // We are using a target-specific load with r2 hard coded, because the
4611 // result of a target-independent load would never go directly into r2,
4612 // since r2 is a reserved register (which prevents the register allocator
4613 // from allocating it), resulting in an additional register being
4614 // allocated and an unnecessary move instruction being generated.
Hal Finkelfc096c92014-12-23 22:29:40 +00004615 CallOpc = PPCISD::BCTRL_LOAD_TOC;
4616
Mehdi Amini44ede332015-07-09 02:09:04 +00004617 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Hal Finkelfc096c92014-12-23 22:29:40 +00004618 SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT);
Eric Christopher736d39e2015-02-13 00:39:36 +00004619 unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004620 SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset, dl);
Hal Finkelfc096c92014-12-23 22:29:40 +00004621 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff);
4622
4623 // The address needs to go after the chain input but before the flag (or
4624 // any other variadic arguments).
4625 Ops.insert(std::next(Ops.begin()), AddTOC);
Bill Schmidtcea15962013-09-26 17:09:28 +00004626 } else if ((CallOpc == PPCISD::CALL) &&
4627 (!isLocalCall(Callee) ||
Bill Schmidt82f1c772015-02-10 19:09:05 +00004628 DAG.getTarget().getRelocationModel() == Reloc::PIC_))
Roman Divacky76293062012-09-18 16:47:58 +00004629 // Otherwise insert NOP for non-local calls.
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00004630 CallOpc = PPCISD::CALL_NOP;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00004631 }
4632
Craig Topper48d114b2014-04-26 18:35:24 +00004633 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
Hal Finkel51861b42012-03-31 14:45:15 +00004634 InFlag = Chain.getValue(1);
4635
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004636 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4637 DAG.getIntPtrConstant(BytesCalleePops, dl, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00004638 InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004639 if (!Ins.empty())
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004640 InFlag = Chain.getValue(1);
4641
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004642 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
4643 Ins, dl, DAG, InVals);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004644}
4645
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004646SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00004647PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004648 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00004649 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +00004650 SDLoc &dl = CLI.DL;
4651 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
4652 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
4653 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00004654 SDValue Chain = CLI.Chain;
4655 SDValue Callee = CLI.Callee;
4656 bool &isTailCall = CLI.IsTailCall;
4657 CallingConv::ID CallConv = CLI.CallConv;
4658 bool isVarArg = CLI.IsVarArg;
Hal Finkel934361a2015-01-14 01:07:51 +00004659 bool IsPatchPoint = CLI.IsPatchPoint;
Hal Finkele2ab0f12015-01-15 21:17:34 +00004660 ImmutableCallSite *CS = CLI.CS;
Justin Holewinskiaa583972012-05-25 16:35:28 +00004661
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00004662 if (isTailCall) {
4663 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64())
4664 isTailCall =
4665 IsEligibleForTailCallOptimization_64SVR4(Callee, CallConv, CS,
4666 isVarArg, Outs, Ins, DAG);
4667 else
4668 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
4669 Ins, DAG);
4670 if (isTailCall) {
4671 ++NumTailCalls;
4672 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
4673 ++NumSiblingCalls;
4674
4675 assert(isa<GlobalAddressSDNode>(Callee) &&
4676 "Callee should be an llvm::Function object.");
4677 DEBUG(
4678 const GlobalValue *GV = cast<GlobalAddressSDNode>(Callee)->getGlobal();
4679 const unsigned Width = 80 - strlen("TCO caller: ")
4680 - strlen(", callee linkage: 0, 0");
4681 dbgs() << "TCO caller: "
4682 << left_justify(DAG.getMachineFunction().getName(), Width)
4683 << ", callee linkage: "
4684 << GV->getVisibility() << ", " << GV->getLinkage() << "\n"
4685 );
4686 }
4687 }
Evan Cheng67a69dd2010-01-27 00:07:07 +00004688
Hal Finkele2ab0f12015-01-15 21:17:34 +00004689 if (!isTailCall && CS && CS->isMustTailCall())
Reid Kleckner5772b772014-04-24 20:14:34 +00004690 report_fatal_error("failed to perform tail call elimination on a call "
4691 "site marked musttail");
4692
Eric Christopherb1aaebe2014-06-12 22:38:18 +00004693 if (Subtarget.isSVR4ABI()) {
4694 if (Subtarget.isPPC64())
Bill Schmidt57d6de52012-10-23 15:51:16 +00004695 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004696 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004697 dl, DAG, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004698 else
4699 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004700 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004701 dl, DAG, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004702 }
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004703
Bill Schmidt57d6de52012-10-23 15:51:16 +00004704 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004705 isTailCall, IsPatchPoint, Outs, OutVals, Ins,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004706 dl, DAG, InVals, CS);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004707}
4708
4709SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004710PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
4711 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004712 bool isTailCall, bool IsPatchPoint,
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004713 const SmallVectorImpl<ISD::OutputArg> &Outs,
4714 const SmallVectorImpl<SDValue> &OutVals,
4715 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004716 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004717 SmallVectorImpl<SDValue> &InVals,
4718 ImmutableCallSite *CS) const {
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004719 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00004720 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004721
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004722 assert((CallConv == CallingConv::C ||
4723 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004724
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004725 unsigned PtrByteSize = 4;
4726
4727 MachineFunction &MF = DAG.getMachineFunction();
4728
4729 // Mark this function as potentially containing a function that contains a
4730 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4731 // and restoring the callers stack pointer in this functions epilog. This is
4732 // done because by tail calling the called function might overwrite the value
4733 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004734 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4735 CallConv == CallingConv::Fast)
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004736 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peck527da1b2010-11-23 03:31:01 +00004737
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004738 // Count how many bytes are to be pushed on the stack, including the linkage
4739 // area, parameter list area and the part of the local variable space which
4740 // contains copies of aggregates which are passed by value.
4741
4742 // Assign locations to all of the outgoing arguments.
4743 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00004744 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
4745 *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004746
4747 // Reserve space for the linkage area on the stack.
Eric Christophera4ae2132015-02-13 22:22:57 +00004748 CCInfo.AllocateStack(Subtarget.getFrameLowering()->getLinkageSize(),
Ulrich Weigand8658f172014-07-20 23:43:15 +00004749 PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004750
4751 if (isVarArg) {
4752 // Handle fixed and variable vector arguments differently.
4753 // Fixed vector arguments go into registers as long as registers are
4754 // available. Variable vector arguments always go into memory.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004755 unsigned NumArgs = Outs.size();
Wesley Peck527da1b2010-11-23 03:31:01 +00004756
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004757 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00004758 MVT ArgVT = Outs[i].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004759 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004760 bool Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00004761
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004762 if (Outs[i].IsFixed) {
Bill Schmidtef17c142013-02-06 17:33:58 +00004763 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
4764 CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004765 } else {
Bill Schmidtef17c142013-02-06 17:33:58 +00004766 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
4767 ArgFlags, CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004768 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004769
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004770 if (Result) {
Torok Edwinfb8d6d52009-07-08 20:53:28 +00004771#ifndef NDEBUG
Chris Lattner13626022009-08-23 06:03:38 +00004772 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sandsf5dda012010-11-03 11:35:31 +00004773 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwinfb8d6d52009-07-08 20:53:28 +00004774#endif
Craig Toppere73658d2014-04-28 04:05:08 +00004775 llvm_unreachable(nullptr);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004776 }
4777 }
4778 } else {
4779 // All arguments are treated the same.
Bill Schmidtef17c142013-02-06 17:33:58 +00004780 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004781 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004782
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004783 // Assign locations to all of the outgoing aggregate by value arguments.
4784 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00004785 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Eric Christopherb5217502014-08-06 18:45:26 +00004786 ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004787
4788 // Reserve stack space for the allocations in CCInfo.
4789 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
4790
Bill Schmidtef17c142013-02-06 17:33:58 +00004791 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004792
4793 // Size of the linkage area, parameter list area and the part of the local
4794 // space variable where copies of aggregates which are passed by value are
4795 // stored.
4796 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004797
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004798 // Calculate by how many bytes the stack has to be adjusted in case of tail
4799 // call optimization.
4800 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4801
4802 // Adjust the stack pointer for the new arguments...
4803 // These operations are automatically eliminated by the prolog/epilog pass
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004804 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00004805 dl);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004806 SDValue CallSeqStart = Chain;
4807
4808 // Load the return address and frame pointer so it can be moved somewhere else
4809 // later.
4810 SDValue LROp, FPOp;
4811 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
4812 dl);
4813
4814 // Set up a copy of the stack pointer for use loading and storing any
4815 // arguments that may not fit in the registers available for argument
4816 // passing.
Owen Anderson9f944592009-08-11 20:47:22 +00004817 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peck527da1b2010-11-23 03:31:01 +00004818
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004819 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4820 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4821 SmallVector<SDValue, 8> MemOpChains;
4822
Roman Divacky71038e72011-08-30 17:04:16 +00004823 bool seenFloatArg = false;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004824 // Walk the register/memloc assignments, inserting copies/loads.
4825 for (unsigned i = 0, j = 0, e = ArgLocs.size();
4826 i != e;
4827 ++i) {
4828 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004829 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004830 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peck527da1b2010-11-23 03:31:01 +00004831
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004832 if (Flags.isByVal()) {
4833 // Argument is an aggregate which is passed by value, thus we need to
4834 // create a copy of it in the local variable space of the current stack
4835 // frame (which is the stack frame of the caller) and pass the address of
4836 // this copy to the callee.
4837 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
4838 CCValAssign &ByValVA = ByValArgLocs[j++];
4839 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peck527da1b2010-11-23 03:31:01 +00004840
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004841 // Memory reserved in the local variable space of the callers stack frame.
4842 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004843
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004844 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
Mehdi Amini44ede332015-07-09 02:09:04 +00004845 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()),
4846 StackPtr, PtrOff);
Wesley Peck527da1b2010-11-23 03:31:01 +00004847
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004848 // Create a copy of the argument in the local area of the current
4849 // stack frame.
4850 SDValue MemcpyCall =
4851 CreateCopyOfByValArgument(Arg, PtrOff,
4852 CallSeqStart.getNode()->getOperand(0),
4853 Flags, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00004854
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004855 // This must go outside the CALLSEQ_START..END.
4856 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004857 CallSeqStart.getNode()->getOperand(1),
4858 SDLoc(MemcpyCall));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004859 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4860 NewCallSeqStart.getNode());
4861 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peck527da1b2010-11-23 03:31:01 +00004862
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004863 // Pass the address of the aggregate copy on the stack either in a
4864 // physical register or in the parameter list area of the current stack
4865 // frame to the callee.
4866 Arg = PtrOff;
4867 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004868
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004869 if (VA.isRegLoc()) {
Hal Finkel2a9d3182014-03-06 00:23:33 +00004870 if (Arg.getValueType() == MVT::i1)
4871 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg);
4872
Roman Divacky71038e72011-08-30 17:04:16 +00004873 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004874 // Put argument in a physical register.
4875 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
4876 } else {
4877 // Put argument in the parameter list area of the current stack frame.
4878 assert(VA.isMemLoc());
4879 unsigned LocMemOffset = VA.getLocMemOffset();
4880
4881 if (!isTailCall) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004882 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
Mehdi Amini44ede332015-07-09 02:09:04 +00004883 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()),
4884 StackPtr, PtrOff);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004885
4886 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner676c61d2010-09-21 18:41:36 +00004887 MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00004888 false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004889 } else {
4890 // Calculate and remember argument location.
4891 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
4892 TailCallArguments);
4893 }
4894 }
4895 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004896
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004897 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004898 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Wesley Peck527da1b2010-11-23 03:31:01 +00004899
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004900 // Build a sequence of copy-to-reg nodes chained together with token chain
4901 // and flag operands which copy the outgoing args into the appropriate regs.
4902 SDValue InFlag;
4903 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4904 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4905 RegsToPass[i].second, InFlag);
4906 InFlag = Chain.getValue(1);
4907 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004908
Hal Finkel5ab37802012-08-28 02:10:27 +00004909 // Set CR bit 6 to true if this is a vararg call with floating args passed in
4910 // registers.
4911 if (isVarArg) {
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004912 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
4913 SDValue Ops[] = { Chain, InFlag };
4914
Hal Finkel5ab37802012-08-28 02:10:27 +00004915 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00004916 dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1));
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004917
Hal Finkel5ab37802012-08-28 02:10:27 +00004918 InFlag = Chain.getValue(1);
4919 }
4920
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004921 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004922 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
4923 false, TailCallArguments);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004924
Hal Finkel965cea52015-07-12 00:37:44 +00004925 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint,
4926 /* unused except on PPC64 ELFv1 */ false, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004927 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4928 NumBytes, Ins, InVals, CS);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004929}
4930
Bill Schmidt57d6de52012-10-23 15:51:16 +00004931// Copy an argument into memory, being careful to do this outside the
4932// call sequence for the call to which the argument belongs.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004933SDValue
Bill Schmidt57d6de52012-10-23 15:51:16 +00004934PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
4935 SDValue CallSeqStart,
4936 ISD::ArgFlagsTy Flags,
4937 SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004938 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004939 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
4940 CallSeqStart.getNode()->getOperand(0),
4941 Flags, DAG, dl);
4942 // The MEMCPY must go outside the CALLSEQ_START..END.
4943 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004944 CallSeqStart.getNode()->getOperand(1),
4945 SDLoc(MemcpyCall));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004946 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4947 NewCallSeqStart.getNode());
4948 return NewCallSeqStart;
4949}
4950
4951SDValue
4952PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004953 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00004954 bool isTailCall, bool IsPatchPoint,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004955 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004956 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004957 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004958 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00004959 SmallVectorImpl<SDValue> &InVals,
4960 ImmutableCallSite *CS) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004961
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004962 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004963 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004964 unsigned NumOps = Outs.size();
Hal Finkel965cea52015-07-12 00:37:44 +00004965 bool hasNest = false;
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00004966 bool IsSibCall = false;
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004967
Mehdi Amini44ede332015-07-09 02:09:04 +00004968 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Bill Schmidt57d6de52012-10-23 15:51:16 +00004969 unsigned PtrByteSize = 8;
4970
4971 MachineFunction &MF = DAG.getMachineFunction();
4972
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00004973 if (isTailCall && !getTargetMachine().Options.GuaranteedTailCallOpt)
4974 IsSibCall = true;
4975
Bill Schmidt57d6de52012-10-23 15:51:16 +00004976 // Mark this function as potentially containing a function that contains a
4977 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4978 // and restoring the callers stack pointer in this functions epilog. This is
4979 // done because by tail calling the called function might overwrite the value
4980 // in this function's (MF) stack pointer stack slot 0(SP).
4981 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4982 CallConv == CallingConv::Fast)
4983 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4984
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004985 assert(!(CallConv == CallingConv::Fast && isVarArg) &&
4986 "fastcc not supported on varargs functions");
4987
Bill Schmidt57d6de52012-10-23 15:51:16 +00004988 // Count how many bytes are to be pushed on the stack, including the linkage
Ulrich Weigand8658f172014-07-20 23:43:15 +00004989 // area, and parameter passing area. On ELFv1, the linkage area is 48 bytes
4990 // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage
4991 // area is 32 bytes reserved space for [SP][CR][LR][TOC].
Eric Christophera4ae2132015-02-13 22:22:57 +00004992 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004993 unsigned NumBytes = LinkageSize;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004994 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Hal Finkelc93a9a22015-02-25 01:06:45 +00004995 unsigned &QFPR_idx = FPR_idx;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00004996
4997 static const MCPhysReg GPR[] = {
4998 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4999 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
5000 };
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005001 static const MCPhysReg VR[] = {
5002 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
5003 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
5004 };
5005 static const MCPhysReg VSRH[] = {
5006 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
5007 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
5008 };
5009
5010 const unsigned NumGPRs = array_lengthof(GPR);
5011 const unsigned NumFPRs = 13;
5012 const unsigned NumVRs = array_lengthof(VR);
Hal Finkelc93a9a22015-02-25 01:06:45 +00005013 const unsigned NumQFPRs = NumFPRs;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005014
5015 // When using the fast calling convention, we don't provide backing for
5016 // arguments that will be in registers.
5017 unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005018
5019 // Add up all the space actually used.
5020 for (unsigned i = 0; i != NumOps; ++i) {
5021 ISD::ArgFlagsTy Flags = Outs[i].Flags;
5022 EVT ArgVT = Outs[i].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005023 EVT OrigVT = Outs[i].ArgVT;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005024
Hal Finkel965cea52015-07-12 00:37:44 +00005025 if (Flags.isNest())
5026 continue;
5027
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005028 if (CallConv == CallingConv::Fast) {
5029 if (Flags.isByVal())
5030 NumGPRsUsed += (Flags.getByValSize()+7)/8;
5031 else
5032 switch (ArgVT.getSimpleVT().SimpleTy) {
5033 default: llvm_unreachable("Unexpected ValueType for argument!");
5034 case MVT::i1:
5035 case MVT::i32:
5036 case MVT::i64:
5037 if (++NumGPRsUsed <= NumGPRs)
5038 continue;
5039 break;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005040 case MVT::v4i32:
5041 case MVT::v8i16:
5042 case MVT::v16i8:
5043 case MVT::v2f64:
5044 case MVT::v2i64:
Kit Bartond4eb73c2015-05-05 16:10:44 +00005045 case MVT::v1i128:
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005046 if (++NumVRsUsed <= NumVRs)
5047 continue;
5048 break;
Hal Finkelc93a9a22015-02-25 01:06:45 +00005049 case MVT::v4f32:
NAKAMURA Takumi84965032015-09-22 11:14:12 +00005050 // When using QPX, this is handled like a FP register, otherwise, it
5051 // is an Altivec register.
Hal Finkelc93a9a22015-02-25 01:06:45 +00005052 if (Subtarget.hasQPX()) {
5053 if (++NumFPRsUsed <= NumFPRs)
5054 continue;
5055 } else {
5056 if (++NumVRsUsed <= NumVRs)
5057 continue;
5058 }
5059 break;
5060 case MVT::f32:
5061 case MVT::f64:
5062 case MVT::v4f64: // QPX
5063 case MVT::v4i1: // QPX
5064 if (++NumFPRsUsed <= NumFPRs)
5065 continue;
5066 break;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005067 }
5068 }
5069
Ulrich Weigandec2bf932014-07-07 19:26:41 +00005070 /* Respect alignment of argument on the stack. */
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005071 unsigned Align =
5072 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigandec2bf932014-07-07 19:26:41 +00005073 NumBytes = ((NumBytes + Align - 1) / Align) * Align;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005074
5075 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005076 if (Flags.isInConsecutiveRegsLast())
5077 NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005078 }
5079
Ulrich Weigandec2bf932014-07-07 19:26:41 +00005080 unsigned NumBytesActuallyUsed = NumBytes;
5081
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005082 // The prolog code of the callee may store up to 8 GPR argument registers to
5083 // the stack, allowing va_start to index over them in memory if its varargs.
5084 // Because we cannot tell if this is needed on the caller side, we have to
5085 // conservatively assume that it is needed. As such, make sure we have at
5086 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8658f172014-07-20 23:43:15 +00005087 // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00005088 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005089
5090 // Tail call needs the stack to be aligned.
5091 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
5092 CallConv == CallingConv::Fast)
Eric Christophercccae792015-01-30 22:02:31 +00005093 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005094
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00005095 int SPDiff = 0;
5096
Bill Schmidt57d6de52012-10-23 15:51:16 +00005097 // Calculate by how many bytes the stack has to be adjusted in case of tail
5098 // call optimization.
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00005099 if (!IsSibCall)
5100 SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005101
5102 // To protect arguments on the stack from being clobbered in a tail call,
5103 // force all the loads to happen before doing any other lowering.
5104 if (isTailCall)
5105 Chain = DAG.getStackArgumentTokenFactor(Chain);
5106
5107 // Adjust the stack pointer for the new arguments...
5108 // These operations are automatically eliminated by the prolog/epilog pass
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00005109 if (!IsSibCall)
5110 Chain = DAG.getCALLSEQ_START(Chain,
5111 DAG.getIntPtrConstant(NumBytes, dl, true), dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005112 SDValue CallSeqStart = Chain;
5113
5114 // Load the return address and frame pointer so it can be move somewhere else
5115 // later.
5116 SDValue LROp, FPOp;
5117 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
5118 dl);
5119
5120 // Set up a copy of the stack pointer for use loading and storing any
5121 // arguments that may not fit in the registers available for argument
5122 // passing.
5123 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
5124
5125 // Figure out which arguments are going to go in registers, and which in
5126 // memory. Also, if this is a vararg function, floating point operations
5127 // must be stored to our stack, and loaded into integer regs as well, if
5128 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00005129 unsigned ArgOffset = LinkageSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005130
5131 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
5132 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
5133
5134 SmallVector<SDValue, 8> MemOpChains;
5135 for (unsigned i = 0; i != NumOps; ++i) {
5136 SDValue Arg = OutVals[i];
5137 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005138 EVT ArgVT = Outs[i].VT;
5139 EVT OrigVT = Outs[i].ArgVT;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005140
5141 // PtrOff will be used to store the current argument to the stack if a
5142 // register cannot be found for it.
5143 SDValue PtrOff;
5144
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005145 // We re-align the argument offset for each argument, except when using the
5146 // fast calling convention, when we need to make sure we do that only when
5147 // we'll actually use a stack slot.
5148 auto ComputePtrOff = [&]() {
5149 /* Respect alignment of argument on the stack. */
5150 unsigned Align =
5151 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
5152 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005153
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005154 PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType());
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005155
5156 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
5157 };
5158
5159 if (CallConv != CallingConv::Fast) {
5160 ComputePtrOff();
5161
5162 /* Compute GPR index associated with argument offset. */
5163 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
5164 GPR_idx = std::min(GPR_idx, NumGPRs);
5165 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005166
5167 // Promote integers to 64-bit values.
Hal Finkel940ab932014-02-28 00:27:01 +00005168 if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00005169 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
5170 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
5171 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
5172 }
5173
5174 // FIXME memcpy is used way more than necessary. Correctness first.
5175 // Note: "by value" is code for passing a structure by value, not
5176 // basic types.
5177 if (Flags.isByVal()) {
5178 // Note: Size includes alignment padding, so
5179 // struct x { short a; char b; }
5180 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
5181 // These are the proper values we need for right-justifying the
5182 // aggregate in a parameter register.
5183 unsigned Size = Flags.getByValSize();
Bill Schmidt9953cf22012-10-31 01:15:05 +00005184
5185 // An empty aggregate parameter takes up no storage and no
5186 // registers.
5187 if (Size == 0)
5188 continue;
5189
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005190 if (CallConv == CallingConv::Fast)
5191 ComputePtrOff();
5192
Bill Schmidt57d6de52012-10-23 15:51:16 +00005193 // All aggregates smaller than 8 bytes must be passed right-justified.
5194 if (Size==1 || Size==2 || Size==4) {
5195 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
5196 if (GPR_idx != NumGPRs) {
5197 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
5198 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00005199 false, false, false, 0);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005200 MemOpChains.push_back(Load.getValue(1));
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005201 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005202
5203 ArgOffset += PtrByteSize;
5204 continue;
5205 }
5206 }
5207
5208 if (GPR_idx == NumGPRs && Size < 8) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00005209 SDValue AddPtr = PtrOff;
5210 if (!isLittleEndian) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005211 SDValue Const = DAG.getConstant(PtrByteSize - Size, dl,
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00005212 PtrOff.getValueType());
5213 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
5214 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005215 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5216 CallSeqStart,
5217 Flags, DAG, dl);
5218 ArgOffset += PtrByteSize;
5219 continue;
5220 }
5221 // Copy entire object into memory. There are cases where gcc-generated
5222 // code assumes it is there, even if it could be put entirely into
5223 // registers. (This is not what the doc says.)
5224
5225 // FIXME: The above statement is likely due to a misunderstanding of the
5226 // documents. All arguments must be copied into the parameter area BY
5227 // THE CALLEE in the event that the callee takes the address of any
5228 // formal argument. That has not yet been implemented. However, it is
5229 // reasonable to use the stack area as a staging area for the register
5230 // load.
5231
5232 // Skip this for small aggregates, as we will use the same slot for a
5233 // right-justified copy, below.
5234 if (Size >= 8)
5235 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
5236 CallSeqStart,
5237 Flags, DAG, dl);
5238
5239 // When a register is available, pass a small aggregate right-justified.
5240 if (Size < 8 && GPR_idx != NumGPRs) {
5241 // The easiest way to get this right-justified in a register
5242 // is to copy the structure into the rightmost portion of a
5243 // local variable slot, then load the whole slot into the
5244 // register.
5245 // FIXME: The memcpy seems to produce pretty awful code for
5246 // small aggregates, particularly for packed ones.
Matt Arsenault758659232013-05-18 00:21:46 +00005247 // FIXME: It would be preferable to use the slot in the
Bill Schmidt57d6de52012-10-23 15:51:16 +00005248 // parameter save area instead of a new local variable.
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00005249 SDValue AddPtr = PtrOff;
5250 if (!isLittleEndian) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005251 SDValue Const = DAG.getConstant(8 - Size, dl, PtrOff.getValueType());
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00005252 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
5253 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005254 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5255 CallSeqStart,
5256 Flags, DAG, dl);
5257
5258 // Load the slot into the register.
5259 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
5260 MachinePointerInfo(),
5261 false, false, false, 0);
5262 MemOpChains.push_back(Load.getValue(1));
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005263 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005264
5265 // Done with this argument.
5266 ArgOffset += PtrByteSize;
5267 continue;
5268 }
5269
5270 // For aggregates larger than PtrByteSize, copy the pieces of the
5271 // object that fit into registers from the parameter save area.
5272 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005273 SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType());
Bill Schmidt57d6de52012-10-23 15:51:16 +00005274 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
5275 if (GPR_idx != NumGPRs) {
5276 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5277 MachinePointerInfo(),
5278 false, false, false, 0);
5279 MemOpChains.push_back(Load.getValue(1));
5280 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5281 ArgOffset += PtrByteSize;
5282 } else {
5283 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
5284 break;
5285 }
5286 }
5287 continue;
5288 }
5289
Craig Topper56710102013-08-15 02:33:50 +00005290 switch (Arg.getSimpleValueType().SimpleTy) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00005291 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel940ab932014-02-28 00:27:01 +00005292 case MVT::i1:
Bill Schmidt57d6de52012-10-23 15:51:16 +00005293 case MVT::i32:
5294 case MVT::i64:
Hal Finkel965cea52015-07-12 00:37:44 +00005295 if (Flags.isNest()) {
5296 // The 'nest' parameter, if any, is passed in R11.
5297 RegsToPass.push_back(std::make_pair(PPC::X11, Arg));
5298 hasNest = true;
5299 break;
5300 }
5301
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005302 // These can be scalar arguments or elements of an integer array type
5303 // passed directly. Clang may use those instead of "byval" aggregate
5304 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidt57d6de52012-10-23 15:51:16 +00005305 if (GPR_idx != NumGPRs) {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005306 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005307 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005308 if (CallConv == CallingConv::Fast)
5309 ComputePtrOff();
5310
Bill Schmidt57d6de52012-10-23 15:51:16 +00005311 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5312 true, isTailCall, false, MemOpChains,
5313 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005314 if (CallConv == CallingConv::Fast)
5315 ArgOffset += PtrByteSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005316 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005317 if (CallConv != CallingConv::Fast)
5318 ArgOffset += PtrByteSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005319 break;
5320 case MVT::f32:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005321 case MVT::f64: {
5322 // These can be scalar arguments or elements of a float array type
5323 // passed directly. The latter are used to implement ELFv2 homogenous
5324 // float aggregates.
5325
5326 // Named arguments go into FPRs first, and once they overflow, the
5327 // remaining arguments go into GPRs and then the parameter save area.
5328 // Unnamed arguments for vararg functions always go to GPRs and
5329 // then the parameter save area. For now, put all arguments to vararg
5330 // routines always in both locations (FPR *and* GPR or stack slot).
5331 bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005332 bool NeededLoad = false;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005333
5334 // First load the argument into the next available FPR.
5335 if (FPR_idx != NumFPRs)
Bill Schmidt57d6de52012-10-23 15:51:16 +00005336 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5337
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005338 // Next, load the argument into GPR or stack slot if needed.
5339 if (!NeedGPROrStack)
5340 ;
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005341 else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) {
Hal Finkel8ea446b2015-01-18 14:31:10 +00005342 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
5343 // once we support fp <-> gpr moves.
5344
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005345 // In the non-vararg case, this can only ever happen in the
5346 // presence of f32 array types, since otherwise we never run
5347 // out of FPRs before running out of GPRs.
5348 SDValue ArgVal;
Bill Schmidtbd4ac262012-10-29 21:18:16 +00005349
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005350 // Double values are always passed in a single GPR.
5351 if (Arg.getValueType() != MVT::f32) {
5352 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005353
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005354 // Non-array float values are extended and passed in a GPR.
5355 } else if (!Flags.isInConsecutiveRegs()) {
5356 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5357 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
5358
5359 // If we have an array of floats, we collect every odd element
5360 // together with its predecessor into one GPR.
5361 } else if (ArgOffset % PtrByteSize != 0) {
5362 SDValue Lo, Hi;
5363 Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]);
5364 Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5365 if (!isLittleEndian)
5366 std::swap(Lo, Hi);
5367 ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
5368
5369 // The final element, if even, goes into the first half of a GPR.
5370 } else if (Flags.isInConsecutiveRegsLast()) {
5371 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5372 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
5373 if (!isLittleEndian)
5374 ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005375 DAG.getConstant(32, dl, MVT::i32));
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005376
5377 // Non-final even elements are skipped; they will be handled
5378 // together the with subsequent argument on the next go-around.
5379 } else
5380 ArgVal = SDValue();
5381
5382 if (ArgVal.getNode())
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005383 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005384 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005385 if (CallConv == CallingConv::Fast)
5386 ComputePtrOff();
5387
Bill Schmidt57d6de52012-10-23 15:51:16 +00005388 // Single-precision floating-point values are mapped to the
5389 // second (rightmost) word of the stack doubleword.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005390 if (Arg.getValueType() == MVT::f32 &&
5391 !isLittleEndian && !Flags.isInConsecutiveRegs()) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005392 SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType());
Bill Schmidt57d6de52012-10-23 15:51:16 +00005393 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
5394 }
5395
5396 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5397 true, isTailCall, false, MemOpChains,
5398 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005399
5400 NeededLoad = true;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005401 }
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005402 // When passing an array of floats, the array occupies consecutive
5403 // space in the argument area; only round up to the next doubleword
5404 // at the end of the array. Otherwise, each float takes 8 bytes.
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005405 if (CallConv != CallingConv::Fast || NeededLoad) {
5406 ArgOffset += (Arg.getValueType() == MVT::f32 &&
5407 Flags.isInConsecutiveRegs()) ? 4 : 8;
5408 if (Flags.isInConsecutiveRegsLast())
5409 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
5410 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005411 break;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005412 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005413 case MVT::v4f32:
5414 case MVT::v4i32:
5415 case MVT::v8i16:
5416 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00005417 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00005418 case MVT::v2i64:
Kit Bartond4eb73c2015-05-05 16:10:44 +00005419 case MVT::v1i128:
Hal Finkelc93a9a22015-02-25 01:06:45 +00005420 if (!Subtarget.hasQPX()) {
Ulrich Weigand85d5df22014-07-21 00:13:26 +00005421 // These can be scalar arguments or elements of a vector array type
5422 // passed directly. The latter are used to implement ELFv2 homogenous
5423 // vector aggregates.
5424
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00005425 // For a varargs call, named arguments go into VRs or on the stack as
5426 // usual; unnamed arguments always go to the stack or the corresponding
5427 // GPRs when within range. For now, we always put the value in both
5428 // locations (or even all three).
Bill Schmidt57d6de52012-10-23 15:51:16 +00005429 if (isVarArg) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00005430 // We could elide this store in the case where the object fits
5431 // entirely in R registers. Maybe later.
Bill Schmidt57d6de52012-10-23 15:51:16 +00005432 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5433 MachinePointerInfo(), false, false, 0);
5434 MemOpChains.push_back(Store);
5435 if (VR_idx != NumVRs) {
5436 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
5437 MachinePointerInfo(),
5438 false, false, false, 0);
5439 MemOpChains.push_back(Load.getValue(1));
Hal Finkel7811c612014-03-28 19:58:11 +00005440
5441 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
5442 Arg.getSimpleValueType() == MVT::v2i64) ?
5443 VSRH[VR_idx] : VR[VR_idx];
5444 ++VR_idx;
5445
5446 RegsToPass.push_back(std::make_pair(VReg, Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005447 }
5448 ArgOffset += 16;
5449 for (unsigned i=0; i<16; i+=PtrByteSize) {
5450 if (GPR_idx == NumGPRs)
5451 break;
5452 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005453 DAG.getConstant(i, dl, PtrVT));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005454 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5455 false, false, false, 0);
5456 MemOpChains.push_back(Load.getValue(1));
5457 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5458 }
5459 break;
5460 }
5461
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00005462 // Non-varargs Altivec params go into VRs or on the stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00005463 if (VR_idx != NumVRs) {
Hal Finkel7811c612014-03-28 19:58:11 +00005464 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
5465 Arg.getSimpleValueType() == MVT::v2i64) ?
5466 VSRH[VR_idx] : VR[VR_idx];
5467 ++VR_idx;
5468
5469 RegsToPass.push_back(std::make_pair(VReg, Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005470 } else {
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005471 if (CallConv == CallingConv::Fast)
5472 ComputePtrOff();
5473
Bill Schmidt57d6de52012-10-23 15:51:16 +00005474 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5475 true, isTailCall, true, MemOpChains,
5476 TailCallArguments, dl);
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005477 if (CallConv == CallingConv::Fast)
5478 ArgOffset += 16;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005479 }
Hal Finkelf81b6dd2015-01-18 12:08:47 +00005480
5481 if (CallConv != CallingConv::Fast)
5482 ArgOffset += 16;
Bill Schmidt57d6de52012-10-23 15:51:16 +00005483 break;
Hal Finkelc93a9a22015-02-25 01:06:45 +00005484 } // not QPX
5485
5486 assert(Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32 &&
5487 "Invalid QPX parameter type");
5488
5489 /* fall through */
5490 case MVT::v4f64:
5491 case MVT::v4i1: {
5492 bool IsF32 = Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32;
5493 if (isVarArg) {
5494 // We could elide this store in the case where the object fits
5495 // entirely in R registers. Maybe later.
5496 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5497 MachinePointerInfo(), false, false, 0);
5498 MemOpChains.push_back(Store);
5499 if (QFPR_idx != NumQFPRs) {
5500 SDValue Load = DAG.getLoad(IsF32 ? MVT::v4f32 : MVT::v4f64, dl,
5501 Store, PtrOff, MachinePointerInfo(),
5502 false, false, false, 0);
5503 MemOpChains.push_back(Load.getValue(1));
5504 RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Load));
5505 }
5506 ArgOffset += (IsF32 ? 16 : 32);
Aaron Ballman70c27de2015-02-25 13:02:23 +00005507 for (unsigned i = 0; i < (IsF32 ? 16U : 32U); i += PtrByteSize) {
Hal Finkelc93a9a22015-02-25 01:06:45 +00005508 if (GPR_idx == NumGPRs)
5509 break;
5510 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005511 DAG.getConstant(i, dl, PtrVT));
Hal Finkelc93a9a22015-02-25 01:06:45 +00005512 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5513 false, false, false, 0);
5514 MemOpChains.push_back(Load.getValue(1));
5515 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5516 }
5517 break;
5518 }
5519
5520 // Non-varargs QPX params go into registers or on the stack.
5521 if (QFPR_idx != NumQFPRs) {
5522 RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Arg));
5523 } else {
5524 if (CallConv == CallingConv::Fast)
5525 ComputePtrOff();
5526
5527 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5528 true, isTailCall, true, MemOpChains,
5529 TailCallArguments, dl);
5530 if (CallConv == CallingConv::Fast)
5531 ArgOffset += (IsF32 ? 16 : 32);
5532 }
5533
5534 if (CallConv != CallingConv::Fast)
5535 ArgOffset += (IsF32 ? 16 : 32);
5536 break;
5537 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005538 }
5539 }
5540
Ulrich Weigandec2bf932014-07-07 19:26:41 +00005541 assert(NumBytesActuallyUsed == ArgOffset);
Ulrich Weigandde8641b2014-07-07 19:39:44 +00005542 (void)NumBytesActuallyUsed;
Ulrich Weigandec2bf932014-07-07 19:26:41 +00005543
Bill Schmidt57d6de52012-10-23 15:51:16 +00005544 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00005545 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005546
5547 // Check if this is an indirect call (MTCTR/BCTRL).
5548 // See PrepareCall() for more information about calls through function
5549 // pointers in the 64-bit SVR4 ABI.
Hal Finkel934361a2015-01-14 01:07:51 +00005550 if (!isTailCall && !IsPatchPoint &&
Hal Finkel87deb0b2015-01-12 04:34:47 +00005551 !isFunctionGlobalAddress(Callee) &&
5552 !isa<ExternalSymbolSDNode>(Callee)) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00005553 // Load r2 into a virtual register and store it to the TOC save area.
Hal Finkele6698d52015-02-01 15:03:28 +00005554 setUsesTOCBasePtr(DAG);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005555 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
5556 // TOC save area offset.
Eric Christopher736d39e2015-02-13 00:39:36 +00005557 unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005558 SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset, dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005559 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Alex Lorenze40c8a22015-08-11 23:09:45 +00005560 Chain = DAG.getStore(
5561 Val.getValue(1), dl, Val, AddPtr,
5562 MachinePointerInfo::getStack(DAG.getMachineFunction(), TOCSaveOffset),
5563 false, false, 0);
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00005564 // In the ELFv2 ABI, R12 must contain the address of an indirect callee.
5565 // This does not mean the MTCTR instruction must use R12; it's easier
5566 // to model this as an extra parameter, so do that.
Hal Finkel934361a2015-01-14 01:07:51 +00005567 if (isELFv2ABI && !IsPatchPoint)
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00005568 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
Bill Schmidt57d6de52012-10-23 15:51:16 +00005569 }
5570
5571 // Build a sequence of copy-to-reg nodes chained together with token chain
5572 // and flag operands which copy the outgoing args into the appropriate regs.
5573 SDValue InFlag;
5574 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
5575 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
5576 RegsToPass[i].second, InFlag);
5577 InFlag = Chain.getValue(1);
5578 }
5579
Chuang-Yu Cheng2e5973e2016-04-06 02:04:38 +00005580 if (isTailCall && !IsSibCall)
Bill Schmidt57d6de52012-10-23 15:51:16 +00005581 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
5582 FPOp, true, TailCallArguments);
5583
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00005584 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, hasNest,
5585 DAG, RegsToPass, InFlag, Chain, CallSeqStart, Callee,
5586 SPDiff, NumBytes, Ins, InVals, CS);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005587}
5588
5589SDValue
5590PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
5591 CallingConv::ID CallConv, bool isVarArg,
Hal Finkel934361a2015-01-14 01:07:51 +00005592 bool isTailCall, bool IsPatchPoint,
Bill Schmidt57d6de52012-10-23 15:51:16 +00005593 const SmallVectorImpl<ISD::OutputArg> &Outs,
5594 const SmallVectorImpl<SDValue> &OutVals,
5595 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005596 SDLoc dl, SelectionDAG &DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00005597 SmallVectorImpl<SDValue> &InVals,
5598 ImmutableCallSite *CS) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00005599
5600 unsigned NumOps = Outs.size();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005601
Mehdi Amini44ede332015-07-09 02:09:04 +00005602 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Owen Anderson9f944592009-08-11 20:47:22 +00005603 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerec78cad2006-06-26 22:48:35 +00005604 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005605
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005606 MachineFunction &MF = DAG.getMachineFunction();
5607
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005608 // Mark this function as potentially containing a function that contains a
5609 // tail call. As a consequence the frame pointer will be used for dynamicalloc
5610 // and restoring the callers stack pointer in this functions epilog. This is
5611 // done because by tail calling the called function might overwrite the value
5612 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00005613 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
5614 CallConv == CallingConv::Fast)
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005615 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
5616
Chris Lattneraa40ec12006-05-16 22:56:08 +00005617 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerec78cad2006-06-26 22:48:35 +00005618 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerb7552a82006-05-17 00:15:40 +00005619 // prereserved space for [SP][CR][LR][3 x unused].
Eric Christophera4ae2132015-02-13 22:22:57 +00005620 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00005621 unsigned NumBytes = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005622
5623 // Add up all the space actually used.
5624 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
5625 // they all go in registers, but we must reserve stack space for them for
5626 // possible use by the caller. In varargs or 64-bit calls, parameters are
5627 // assigned stack space in order, with padding so Altivec parameters are
5628 // 16-byte aligned.
5629 unsigned nAltivecParamsAtEnd = 0;
5630 for (unsigned i = 0; i != NumOps; ++i) {
5631 ISD::ArgFlagsTy Flags = Outs[i].Flags;
5632 EVT ArgVT = Outs[i].VT;
5633 // Varargs Altivec parameters are padded to a 16 byte boundary.
5634 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
5635 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
5636 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) {
5637 if (!isVarArg && !isPPC64) {
5638 // Non-varargs Altivec parameters go after all the non-Altivec
5639 // parameters; handle those later so we know how much padding we need.
5640 nAltivecParamsAtEnd++;
5641 continue;
5642 }
5643 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
5644 NumBytes = ((NumBytes+15)/16)*16;
5645 }
5646 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
5647 }
5648
5649 // Allow for Altivec parameters at the end, if needed.
5650 if (nAltivecParamsAtEnd) {
5651 NumBytes = ((NumBytes+15)/16)*16;
5652 NumBytes += 16*nAltivecParamsAtEnd;
5653 }
5654
5655 // The prolog code of the callee may store up to 8 GPR argument registers to
5656 // the stack, allowing va_start to index over them in memory if its varargs.
5657 // Because we cannot tell if this is needed on the caller side, we have to
5658 // conservatively assume that it is needed. As such, make sure we have at
5659 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00005660 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00005661
5662 // Tail call needs the stack to be aligned.
5663 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
5664 CallConv == CallingConv::Fast)
Eric Christophercccae792015-01-30 22:02:31 +00005665 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005666
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005667 // Calculate by how many bytes the stack has to be adjusted in case of tail
5668 // call optimization.
5669 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005670
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005671 // To protect arguments on the stack from being clobbered in a tail call,
5672 // force all the loads to happen before doing any other lowering.
5673 if (isTailCall)
5674 Chain = DAG.getStackArgumentTokenFactor(Chain);
5675
Chris Lattnerb7552a82006-05-17 00:15:40 +00005676 // Adjust the stack pointer for the new arguments...
5677 // These operations are automatically eliminated by the prolog/epilog pass
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005678 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00005679 dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005680 SDValue CallSeqStart = Chain;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005681
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005682 // Load the return address and frame pointer so it can be move somewhere else
5683 // later.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005684 SDValue LROp, FPOp;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00005685 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
5686 dl);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005687
Chris Lattnerb7552a82006-05-17 00:15:40 +00005688 // Set up a copy of the stack pointer for use loading and storing any
5689 // arguments that may not fit in the registers available for argument
5690 // passing.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005691 SDValue StackPtr;
Chris Lattnerec78cad2006-06-26 22:48:35 +00005692 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00005693 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerec78cad2006-06-26 22:48:35 +00005694 else
Owen Anderson9f944592009-08-11 20:47:22 +00005695 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005696
Chris Lattnerb7552a82006-05-17 00:15:40 +00005697 // Figure out which arguments are going to go in registers, and which in
5698 // memory. Also, if this is a vararg function, floating point operations
5699 // must be stored to our stack, and loaded into integer regs as well, if
5700 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00005701 unsigned ArgOffset = LinkageSize;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005702 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005703
Craig Topper840beec2014-04-04 05:16:06 +00005704 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005705 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
5706 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
5707 };
Craig Topper840beec2014-04-04 05:16:06 +00005708 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00005709 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
5710 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
5711 };
Craig Topper840beec2014-04-04 05:16:06 +00005712 static const MCPhysReg VR[] = {
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005713 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
5714 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
5715 };
Owen Andersone2f23a32007-09-07 04:06:50 +00005716 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005717 const unsigned NumFPRs = 13;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00005718 const unsigned NumVRs = array_lengthof(VR);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005719
Craig Topper840beec2014-04-04 05:16:06 +00005720 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerec78cad2006-06-26 22:48:35 +00005721
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005722 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005723 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
5724
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005725 SmallVector<SDValue, 8> MemOpChains;
Evan Chengc2cd4732006-05-25 00:57:32 +00005726 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005727 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005728 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00005729
Chris Lattnerb7552a82006-05-17 00:15:40 +00005730 // PtrOff will be used to store the current argument to the stack if a
5731 // register cannot be found for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005732 SDValue PtrOff;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005733
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005734 PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType());
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00005735
Dale Johannesen679073b2009-02-04 02:34:38 +00005736 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerec78cad2006-06-26 22:48:35 +00005737
5738 // On PPC64, promote integers to 64-bit values.
Owen Anderson9f944592009-08-11 20:47:22 +00005739 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sandsd97eea32008-03-21 09:14:45 +00005740 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
5741 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson9f944592009-08-11 20:47:22 +00005742 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerec78cad2006-06-26 22:48:35 +00005743 }
Dale Johannesen85d41a12008-03-04 23:17:14 +00005744
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005745 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt019cc6f2012-09-19 15:42:13 +00005746 // Note: "by value" is code for passing a structure by value, not
5747 // basic types.
Duncan Sandsd97eea32008-03-21 09:14:45 +00005748 if (Flags.isByVal()) {
5749 unsigned Size = Flags.getByValSize();
Bill Schmidt57d6de52012-10-23 15:51:16 +00005750 // Very small objects are passed right-justified. Everything else is
5751 // passed left-justified.
5752 if (Size==1 || Size==2) {
5753 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005754 if (GPR_idx != NumGPRs) {
Stuart Hastings81c43062011-02-16 16:23:55 +00005755 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d178ed2010-09-21 17:04:51 +00005756 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00005757 false, false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005758 MemOpChains.push_back(Load.getValue(1));
5759 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005760
5761 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005762 } else {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005763 SDValue Const = DAG.getConstant(PtrByteSize - Size, dl,
Bill Schmidt48081ca2012-10-16 13:30:53 +00005764 PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005765 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt57d6de52012-10-23 15:51:16 +00005766 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5767 CallSeqStart,
5768 Flags, DAG, dl);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005769 ArgOffset += PtrByteSize;
5770 }
5771 continue;
5772 }
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00005773 // Copy entire object into memory. There are cases where gcc-generated
5774 // code assumes it is there, even if it could be put entirely into
5775 // registers. (This is not what the doc says.)
Bill Schmidt57d6de52012-10-23 15:51:16 +00005776 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
5777 CallSeqStart,
5778 Flags, DAG, dl);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00005779
5780 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
5781 // copy the pieces of the object that fit into registers from the
5782 // parameter save area.
Dale Johannesen85d41a12008-03-04 23:17:14 +00005783 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005784 SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005785 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen85d41a12008-03-04 23:17:14 +00005786 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00005787 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5788 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005789 false, false, false, 0);
Dale Johannesen0d235052008-03-05 23:31:27 +00005790 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen85d41a12008-03-04 23:17:14 +00005791 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005792 ArgOffset += PtrByteSize;
Dale Johannesen85d41a12008-03-04 23:17:14 +00005793 } else {
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00005794 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00005795 break;
Dale Johannesen85d41a12008-03-04 23:17:14 +00005796 }
5797 }
5798 continue;
5799 }
5800
Craig Topper56710102013-08-15 02:33:50 +00005801 switch (Arg.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005802 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel5cae2162014-02-28 01:17:25 +00005803 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00005804 case MVT::i32:
5805 case MVT::i64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005806 if (GPR_idx != NumGPRs) {
Hal Finkel7f908e82014-03-06 00:45:19 +00005807 if (Arg.getValueType() == MVT::i1)
5808 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg);
5809
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005810 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerb7552a82006-05-17 00:15:40 +00005811 } else {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005812 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5813 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005814 TailCallArguments, dl);
Chris Lattnerb7552a82006-05-17 00:15:40 +00005815 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005816 ArgOffset += PtrByteSize;
Chris Lattnerb7552a82006-05-17 00:15:40 +00005817 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005818 case MVT::f32:
5819 case MVT::f64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005820 if (FPR_idx != NumFPRs) {
5821 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5822
Chris Lattnerb7552a82006-05-17 00:15:40 +00005823 if (isVarArg) {
Chris Lattner676c61d2010-09-21 18:41:36 +00005824 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5825 MachinePointerInfo(), false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005826 MemOpChains.push_back(Store);
5827
Chris Lattnerb7552a82006-05-17 00:15:40 +00005828 // Float varargs are always shadowed in available integer registers
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005829 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00005830 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooper82cd9e82011-11-08 18:42:53 +00005831 MachinePointerInfo(), false, false,
5832 false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005833 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005834 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerb7552a82006-05-17 00:15:40 +00005835 }
Owen Anderson9f944592009-08-11 20:47:22 +00005836 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005837 SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00005838 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattner7727d052010-09-21 06:44:06 +00005839 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5840 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005841 false, false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005842 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005843 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattneraa40ec12006-05-16 22:56:08 +00005844 }
5845 } else {
Chris Lattnerb7552a82006-05-17 00:15:40 +00005846 // If we have any FPRs remaining, we may also have GPRs remaining.
5847 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
5848 // GPRs.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005849 if (GPR_idx != NumGPRs)
5850 ++GPR_idx;
Owen Anderson9f944592009-08-11 20:47:22 +00005851 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005852 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
5853 ++GPR_idx;
Chris Lattneraa40ec12006-05-16 22:56:08 +00005854 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00005855 } else
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005856 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5857 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005858 TailCallArguments, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005859 if (isPPC64)
5860 ArgOffset += 8;
5861 else
Owen Anderson9f944592009-08-11 20:47:22 +00005862 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerb7552a82006-05-17 00:15:40 +00005863 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005864 case MVT::v4f32:
5865 case MVT::v4i32:
5866 case MVT::v8i16:
5867 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00005868 if (isVarArg) {
5869 // These go aligned on the stack, or in the corresponding R registers
Scott Michelcf0da6c2009-02-17 22:15:04 +00005870 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesenb28456e2008-03-12 00:22:17 +00005871 // V registers; in fact gcc does this only for arguments that are
5872 // prototyped, not for those that match the ... We do it for all
5873 // arguments, seems to work.
5874 while (ArgOffset % 16 !=0) {
5875 ArgOffset += PtrByteSize;
5876 if (GPR_idx != NumGPRs)
5877 GPR_idx++;
5878 }
5879 // We could elide this store in the case where the object fits
5880 // entirely in R registers. Maybe later.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005881 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005882 DAG.getConstant(ArgOffset, dl, PtrVT));
Chris Lattner676c61d2010-09-21 18:41:36 +00005883 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5884 MachinePointerInfo(), false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005885 MemOpChains.push_back(Store);
5886 if (VR_idx != NumVRs) {
Wesley Peck527da1b2010-11-23 03:31:01 +00005887 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattner7727d052010-09-21 06:44:06 +00005888 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005889 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005890 MemOpChains.push_back(Load.getValue(1));
5891 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
5892 }
5893 ArgOffset += 16;
5894 for (unsigned i=0; i<16; i+=PtrByteSize) {
5895 if (GPR_idx == NumGPRs)
5896 break;
Dale Johannesen679073b2009-02-04 02:34:38 +00005897 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005898 DAG.getConstant(i, dl, PtrVT));
Chris Lattner7727d052010-09-21 06:44:06 +00005899 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005900 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005901 MemOpChains.push_back(Load.getValue(1));
5902 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5903 }
5904 break;
5905 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005906
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005907 // Non-varargs Altivec params generally go in registers, but have
5908 // stack space allocated at the end.
5909 if (VR_idx != NumVRs) {
5910 // Doesn't have GPR space allocated.
5911 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
5912 } else if (nAltivecParamsAtEnd==0) {
5913 // We are emitting Altivec params in order.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005914 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5915 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005916 TailCallArguments, dl);
Dale Johannesenb28456e2008-03-12 00:22:17 +00005917 ArgOffset += 16;
Dale Johannesenb28456e2008-03-12 00:22:17 +00005918 }
Chris Lattnerb7552a82006-05-17 00:15:40 +00005919 break;
Chris Lattneraa40ec12006-05-16 22:56:08 +00005920 }
Chris Lattneraa40ec12006-05-16 22:56:08 +00005921 }
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005922 // If all Altivec parameters fit in registers, as they usually do,
5923 // they get stack space following the non-Altivec parameters. We
5924 // don't track this here because nobody below needs it.
5925 // If there are more Altivec parameters than fit in registers emit
5926 // the stores here.
5927 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
5928 unsigned j = 0;
5929 // Offset is aligned; skip 1st 12 params which go in V registers.
5930 ArgOffset = ((ArgOffset+15)/16)*16;
5931 ArgOffset += 12*16;
5932 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005933 SDValue Arg = OutVals[i];
5934 EVT ArgType = Outs[i].VT;
Owen Anderson9f944592009-08-11 20:47:22 +00005935 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
5936 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005937 if (++j > NumVRs) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005938 SDValue PtrOff;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005939 // We are emitting Altivec params in order.
5940 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5941 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005942 TailCallArguments, dl);
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005943 ArgOffset += 16;
5944 }
5945 }
5946 }
5947 }
5948
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005949 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00005950 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005951
Dale Johannesen90eab672010-03-09 20:15:42 +00005952 // On Darwin, R12 must contain the address of an indirect callee. This does
5953 // not mean the MTCTR instruction must use R12; it's easier to model this as
5954 // an extra parameter, so do that.
Wesley Peck527da1b2010-11-23 03:31:01 +00005955 if (!isTailCall &&
Hal Finkel87deb0b2015-01-12 04:34:47 +00005956 !isFunctionGlobalAddress(Callee) &&
5957 !isa<ExternalSymbolSDNode>(Callee) &&
Dale Johannesen90eab672010-03-09 20:15:42 +00005958 !isBLACompatibleAddress(Callee, DAG))
5959 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
5960 PPC::R12), Callee));
5961
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005962 // Build a sequence of copy-to-reg nodes chained together with token chain
5963 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005964 SDValue InFlag;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005965 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00005966 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen679073b2009-02-04 02:34:38 +00005967 RegsToPass[i].second, InFlag);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005968 InFlag = Chain.getValue(1);
5969 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005970
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00005971 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005972 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
5973 FPOp, true, TailCallArguments);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005974
Hal Finkel965cea52015-07-12 00:37:44 +00005975 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint,
5976 /* unused except on PPC64 ELFv1 */ false, DAG,
Hal Finkele2ab0f12015-01-15 21:17:34 +00005977 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
5978 NumBytes, Ins, InVals, CS);
Chris Lattneraa40ec12006-05-16 22:56:08 +00005979}
5980
Hal Finkel450128a2011-10-14 19:51:36 +00005981bool
5982PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
5983 MachineFunction &MF, bool isVarArg,
5984 const SmallVectorImpl<ISD::OutputArg> &Outs,
5985 LLVMContext &Context) const {
5986 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00005987 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
Hal Finkel450128a2011-10-14 19:51:36 +00005988 return CCInfo.CheckReturn(Outs, RetCC_PPC);
5989}
5990
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005991SDValue
5992PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00005993 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005994 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005995 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005996 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005997
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005998 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00005999 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
6000 *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00006001 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006002
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006003 SDValue Flag;
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00006004 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006005
Chris Lattner4f2e4e02007-03-06 00:59:59 +00006006 // Copy the result values into the output registers.
6007 for (unsigned i = 0; i != RVLocs.size(); ++i) {
6008 CCValAssign &VA = RVLocs[i];
6009 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00006010
6011 SDValue Arg = OutVals[i];
6012
6013 switch (VA.getLocInfo()) {
6014 default: llvm_unreachable("Unknown loc info!");
6015 case CCValAssign::Full: break;
6016 case CCValAssign::AExt:
6017 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
6018 break;
6019 case CCValAssign::ZExt:
6020 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
6021 break;
6022 case CCValAssign::SExt:
6023 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
6024 break;
6025 }
6026
6027 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattner4f2e4e02007-03-06 00:59:59 +00006028 Flag = Chain.getValue(1);
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00006029 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner4f2e4e02007-03-06 00:59:59 +00006030 }
6031
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00006032 RetOps[0] = Chain; // Update chain.
6033
6034 // Add the flag if we have it.
Gabor Greiff304a7a2008-08-28 21:40:38 +00006035 if (Flag.getNode())
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00006036 RetOps.push_back(Flag);
6037
Craig Topper48d114b2014-04-26 18:35:24 +00006038 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps);
Chris Lattner4211ca92006-04-14 06:01:58 +00006039}
6040
Yury Gribovd7dbb662015-12-01 11:40:55 +00006041SDValue PPCTargetLowering::LowerGET_DYNAMIC_AREA_OFFSET(
6042 SDValue Op, SelectionDAG &DAG, const PPCSubtarget &Subtarget) const {
6043 SDLoc dl(Op);
6044
6045 // Get the corect type for integers.
6046 EVT IntVT = Op.getValueType();
6047
6048 // Get the inputs.
6049 SDValue Chain = Op.getOperand(0);
6050 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
6051 // Build a DYNAREAOFFSET node.
6052 SDValue Ops[2] = {Chain, FPSIdx};
6053 SDVTList VTs = DAG.getVTList(IntVT);
6054 return DAG.getNode(PPCISD::DYNAREAOFFSET, dl, VTs, Ops);
6055}
6056
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006057SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006058 const PPCSubtarget &Subtarget) const {
Jim Laskeye4f4d042006-12-04 22:04:42 +00006059 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006060 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006061
Jim Laskeye4f4d042006-12-04 22:04:42 +00006062 // Get the corect type for pointers.
Mehdi Amini44ede332015-07-09 02:09:04 +00006063 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Jim Laskeye4f4d042006-12-04 22:04:42 +00006064
6065 // Construct the stack pointer operand.
Dale Johannesen86dcae12009-11-24 01:09:07 +00006066 bool isPPC64 = Subtarget.isPPC64();
6067 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006068 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeye4f4d042006-12-04 22:04:42 +00006069
6070 // Get the operands for the STACKRESTORE.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006071 SDValue Chain = Op.getOperand(0);
6072 SDValue SaveSP = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006073
Jim Laskeye4f4d042006-12-04 22:04:42 +00006074 // Load the old link SP.
Chris Lattner7727d052010-09-21 06:44:06 +00006075 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
6076 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006077 false, false, false, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006078
Jim Laskeye4f4d042006-12-04 22:04:42 +00006079 // Restore the stack pointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00006080 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006081
Jim Laskeye4f4d042006-12-04 22:04:42 +00006082 // Store the old link SP.
Chris Lattner676c61d2010-09-21 18:41:36 +00006083 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00006084 false, false, 0);
Jim Laskeye4f4d042006-12-04 22:04:42 +00006085}
6086
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00006087SDValue PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG &DAG) const {
Jim Laskey48850c12006-11-16 22:43:37 +00006088 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006089 bool isPPC64 = Subtarget.isPPC64();
Mehdi Amini44ede332015-07-09 02:09:04 +00006090 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00006091
6092 // Get current frame pointer save index. The users of this index will be
6093 // primarily DYNALLOC instructions.
6094 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
6095 int RASI = FI->getReturnAddrSaveIndex();
6096
6097 // If the frame pointer save index hasn't been defined yet.
6098 if (!RASI) {
6099 // Find out what the fix offset of the frame pointer save area.
Eric Christopherf71609b2015-02-13 00:39:27 +00006100 int LROffset = Subtarget.getFrameLowering()->getReturnSaveOffset();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00006101 // Allocate the frame index for frame pointer save area.
Hal Finkel6e27c6d2014-12-23 09:45:06 +00006102 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, false);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00006103 // Save the result.
6104 FI->setReturnAddrSaveIndex(RASI);
6105 }
6106 return DAG.getFrameIndex(RASI, PtrVT);
6107}
6108
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006109SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00006110PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
6111 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006112 bool isPPC64 = Subtarget.isPPC64();
Mehdi Amini44ede332015-07-09 02:09:04 +00006113 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Jim Laskey48850c12006-11-16 22:43:37 +00006114
6115 // Get current frame pointer save index. The users of this index will be
6116 // primarily DYNALLOC instructions.
6117 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
6118 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00006119
Jim Laskey48850c12006-11-16 22:43:37 +00006120 // If the frame pointer save index hasn't been defined yet.
6121 if (!FPSI) {
6122 // Find out what the fix offset of the frame pointer save area.
Eric Christopherdc3a8a42015-02-13 00:39:38 +00006123 int FPOffset = Subtarget.getFrameLowering()->getFramePointerSaveOffset();
Jim Laskey48850c12006-11-16 22:43:37 +00006124 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00006125 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey48850c12006-11-16 22:43:37 +00006126 // Save the result.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006127 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey48850c12006-11-16 22:43:37 +00006128 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00006129 return DAG.getFrameIndex(FPSI, PtrVT);
6130}
Jim Laskey48850c12006-11-16 22:43:37 +00006131
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006132SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00006133 SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006134 const PPCSubtarget &Subtarget) const {
Jim Laskey48850c12006-11-16 22:43:37 +00006135 // Get the inputs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006136 SDValue Chain = Op.getOperand(0);
6137 SDValue Size = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006138 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006139
Jim Laskey48850c12006-11-16 22:43:37 +00006140 // Get the corect type for pointers.
Mehdi Amini44ede332015-07-09 02:09:04 +00006141 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Jim Laskey48850c12006-11-16 22:43:37 +00006142 // Negate the size.
Dale Johannesen400dc2e2009-02-06 21:50:26 +00006143 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006144 DAG.getConstant(0, dl, PtrVT), Size);
Jim Laskey48850c12006-11-16 22:43:37 +00006145 // Construct a node for the frame pointer save index.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006146 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey48850c12006-11-16 22:43:37 +00006147 // Build a DYNALLOC node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006148 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson9f944592009-08-11 20:47:22 +00006149 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Craig Topper48d114b2014-04-26 18:35:24 +00006150 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops);
Jim Laskey48850c12006-11-16 22:43:37 +00006151}
6152
Hal Finkel756810f2013-03-21 21:37:52 +00006153SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
6154 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006155 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00006156 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
6157 DAG.getVTList(MVT::i32, MVT::Other),
6158 Op.getOperand(0), Op.getOperand(1));
6159}
6160
6161SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
6162 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006163 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00006164 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
6165 Op.getOperand(0), Op.getOperand(1));
6166}
6167
Hal Finkel940ab932014-02-28 00:27:01 +00006168SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
Hal Finkelc93a9a22015-02-25 01:06:45 +00006169 if (Op.getValueType().isVector())
6170 return LowerVectorLoad(Op, DAG);
6171
Hal Finkel940ab932014-02-28 00:27:01 +00006172 assert(Op.getValueType() == MVT::i1 &&
6173 "Custom lowering only for i1 loads");
6174
6175 // First, load 8 bits into 32 bits, then truncate to 1 bit.
6176
6177 SDLoc dl(Op);
6178 LoadSDNode *LD = cast<LoadSDNode>(Op);
6179
6180 SDValue Chain = LD->getChain();
6181 SDValue BasePtr = LD->getBasePtr();
6182 MachineMemOperand *MMO = LD->getMemOperand();
6183
Mehdi Amini44ede332015-07-09 02:09:04 +00006184 SDValue NewLD =
6185 DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(DAG.getDataLayout()), Chain,
6186 BasePtr, MVT::i8, MMO);
Hal Finkel940ab932014-02-28 00:27:01 +00006187 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD);
6188
6189 SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) };
Craig Topper64941d92014-04-27 19:20:57 +00006190 return DAG.getMergeValues(Ops, dl);
Hal Finkel940ab932014-02-28 00:27:01 +00006191}
6192
6193SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
Hal Finkelc93a9a22015-02-25 01:06:45 +00006194 if (Op.getOperand(1).getValueType().isVector())
6195 return LowerVectorStore(Op, DAG);
6196
Hal Finkel940ab932014-02-28 00:27:01 +00006197 assert(Op.getOperand(1).getValueType() == MVT::i1 &&
6198 "Custom lowering only for i1 stores");
6199
6200 // First, zero extend to 32 bits, then use a truncating store to 8 bits.
6201
6202 SDLoc dl(Op);
6203 StoreSDNode *ST = cast<StoreSDNode>(Op);
6204
6205 SDValue Chain = ST->getChain();
6206 SDValue BasePtr = ST->getBasePtr();
6207 SDValue Value = ST->getValue();
6208 MachineMemOperand *MMO = ST->getMemOperand();
6209
Mehdi Amini44ede332015-07-09 02:09:04 +00006210 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(DAG.getDataLayout()),
6211 Value);
Hal Finkel940ab932014-02-28 00:27:01 +00006212 return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO);
6213}
6214
6215// FIXME: Remove this once the ANDI glue bug is fixed:
6216SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
6217 assert(Op.getValueType() == MVT::i1 &&
6218 "Custom lowering only for i1 results");
6219
6220 SDLoc DL(Op);
6221 return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1,
6222 Op.getOperand(0));
6223}
6224
Chris Lattner4211ca92006-04-14 06:01:58 +00006225/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
6226/// possible.
Dan Gohman21cea8a2010-04-17 15:26:15 +00006227SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00006228 // Not FP? Not a fsel.
Duncan Sands13237ac2008-06-06 12:08:01 +00006229 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
6230 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedman5806e182009-05-28 04:31:08 +00006231 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006232
Hal Finkel81f87992013-04-07 22:11:09 +00006233 // We might be able to do better than this under some circumstances, but in
6234 // general, fsel-based lowering of select is a finite-math-only optimization.
6235 // For more information, see section F.3 of the 2.06 ISA specification.
6236 if (!DAG.getTarget().Options.NoInfsFPMath ||
6237 !DAG.getTarget().Options.NoNaNsFPMath)
6238 return Op;
Sanjay Patela2607012015-09-16 16:31:21 +00006239 // TODO: Propagate flags from the select rather than global settings.
6240 SDNodeFlags Flags;
6241 Flags.setNoInfs(true);
6242 Flags.setNoNaNs(true);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +00006243
Hal Finkel81f87992013-04-07 22:11:09 +00006244 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006245
Owen Anderson53aa7a92009-08-10 22:56:29 +00006246 EVT ResVT = Op.getValueType();
6247 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006248 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
6249 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006250 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006251
Chris Lattner4211ca92006-04-14 06:01:58 +00006252 // If the RHS of the comparison is a 0.0, we don't need to do the
6253 // subtraction at all.
Hal Finkel81f87992013-04-07 22:11:09 +00006254 SDValue Sel1;
Chris Lattner4211ca92006-04-14 06:01:58 +00006255 if (isFloatingPointZero(RHS))
6256 switch (CC) {
6257 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00006258 case ISD::SETNE:
6259 std::swap(TV, FV);
6260 case ISD::SETEQ:
6261 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
6262 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
6263 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
6264 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
6265 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
6266 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
6267 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00006268 case ISD::SETULT:
6269 case ISD::SETLT:
6270 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00006271 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00006272 case ISD::SETGE:
Owen Anderson9f944592009-08-11 20:47:22 +00006273 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
6274 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00006275 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00006276 case ISD::SETUGT:
6277 case ISD::SETGT:
6278 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00006279 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00006280 case ISD::SETLE:
Owen Anderson9f944592009-08-11 20:47:22 +00006281 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
6282 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00006283 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson9f944592009-08-11 20:47:22 +00006284 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00006285 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006286
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006287 SDValue Cmp;
Chris Lattner4211ca92006-04-14 06:01:58 +00006288 switch (CC) {
6289 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00006290 case ISD::SETNE:
6291 std::swap(TV, FV);
6292 case ISD::SETEQ:
Sanjay Patela2607012015-09-16 16:31:21 +00006293 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, &Flags);
Hal Finkel81f87992013-04-07 22:11:09 +00006294 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
6295 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6296 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
6297 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
6298 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
6299 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
6300 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00006301 case ISD::SETULT:
6302 case ISD::SETLT:
Sanjay Patela2607012015-09-16 16:31:21 +00006303 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, &Flags);
Owen Anderson9f944592009-08-11 20:47:22 +00006304 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
6305 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00006306 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00006307 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00006308 case ISD::SETGE:
Sanjay Patela2607012015-09-16 16:31:21 +00006309 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, &Flags);
Owen Anderson9f944592009-08-11 20:47:22 +00006310 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
6311 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00006312 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00006313 case ISD::SETUGT:
6314 case ISD::SETGT:
Sanjay Patela2607012015-09-16 16:31:21 +00006315 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS, &Flags);
Owen Anderson9f944592009-08-11 20:47:22 +00006316 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
6317 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00006318 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00006319 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00006320 case ISD::SETLE:
Sanjay Patela2607012015-09-16 16:31:21 +00006321 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS, &Flags);
Owen Anderson9f944592009-08-11 20:47:22 +00006322 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
6323 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00006324 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00006325 }
Eli Friedman5806e182009-05-28 04:31:08 +00006326 return Op;
Chris Lattner4211ca92006-04-14 06:01:58 +00006327}
6328
Hal Finkeled844c42015-01-06 22:31:02 +00006329void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI,
6330 SelectionDAG &DAG,
6331 SDLoc dl) const {
Duncan Sands13237ac2008-06-06 12:08:01 +00006332 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006333 SDValue Src = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00006334 if (Src.getValueType() == MVT::f32)
6335 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sands2a287912008-07-19 16:26:02 +00006336
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006337 SDValue Tmp;
Craig Topper56710102013-08-15 02:33:50 +00006338 switch (Op.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006339 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson9f944592009-08-11 20:47:22 +00006340 case MVT::i32:
Eric Christophercccae792015-01-30 22:02:31 +00006341 Tmp = DAG.getNode(
6342 Op.getOpcode() == ISD::FP_TO_SINT
6343 ? PPCISD::FCTIWZ
6344 : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
6345 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00006346 break;
Owen Anderson9f944592009-08-11 20:47:22 +00006347 case MVT::i64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006348 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
Hal Finkel3f88d082013-04-01 18:42:58 +00006349 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkelf6d45f22013-04-01 17:52:07 +00006350 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
6351 PPCISD::FCTIDUZ,
6352 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00006353 break;
6354 }
Duncan Sands2a287912008-07-19 16:26:02 +00006355
Chris Lattner4211ca92006-04-14 06:01:58 +00006356 // Convert the FP value to an int value through memory.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006357 bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() &&
6358 (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT());
Hal Finkelf6d45f22013-04-01 17:52:07 +00006359 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
6360 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
Alex Lorenze40c8a22015-08-11 23:09:45 +00006361 MachinePointerInfo MPI =
6362 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI);
Duncan Sands2a287912008-07-19 16:26:02 +00006363
Chris Lattner06a49542007-10-15 20:14:52 +00006364 // Emit a store to the stack slot.
Hal Finkelf6d45f22013-04-01 17:52:07 +00006365 SDValue Chain;
6366 if (i32Stack) {
6367 MachineFunction &MF = DAG.getMachineFunction();
6368 MachineMemOperand *MMO =
6369 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
6370 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
6371 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +00006372 DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO);
Hal Finkelf6d45f22013-04-01 17:52:07 +00006373 } else
6374 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
6375 MPI, false, false, 0);
Chris Lattner06a49542007-10-15 20:14:52 +00006376
6377 // Result is a load from the stack slot. If loading 4 bytes, make sure to
Nemanja Ivanovic1a5706c2016-02-29 16:42:27 +00006378 // add in a bias on big endian.
Hal Finkelf6d45f22013-04-01 17:52:07 +00006379 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen021052a2009-02-04 20:06:27 +00006380 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006381 DAG.getConstant(4, dl, FIPtr.getValueType()));
Nemanja Ivanovic1a5706c2016-02-29 16:42:27 +00006382 MPI = MPI.getWithOffset(Subtarget.isLittleEndian() ? 0 : 4);
Hal Finkelf6d45f22013-04-01 17:52:07 +00006383 }
6384
Hal Finkeled844c42015-01-06 22:31:02 +00006385 RLI.Chain = Chain;
6386 RLI.Ptr = FIPtr;
6387 RLI.MPI = MPI;
6388}
6389
Nemanja Ivanovicc38b5312015-04-11 10:40:42 +00006390/// \brief Custom lowers floating point to integer conversions to use
6391/// the direct move instructions available in ISA 2.07 to avoid the
6392/// need for load/store combinations.
6393SDValue PPCTargetLowering::LowerFP_TO_INTDirectMove(SDValue Op,
6394 SelectionDAG &DAG,
6395 SDLoc dl) const {
6396 assert(Op.getOperand(0).getValueType().isFloatingPoint());
6397 SDValue Src = Op.getOperand(0);
6398
6399 if (Src.getValueType() == MVT::f32)
6400 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
6401
6402 SDValue Tmp;
6403 switch (Op.getSimpleValueType().SimpleTy) {
6404 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
6405 case MVT::i32:
6406 Tmp = DAG.getNode(
6407 Op.getOpcode() == ISD::FP_TO_SINT
6408 ? PPCISD::FCTIWZ
6409 : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
6410 dl, MVT::f64, Src);
6411 Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i32, Tmp);
6412 break;
6413 case MVT::i64:
6414 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
6415 "i64 FP_TO_UINT is supported only with FPCVT");
6416 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
6417 PPCISD::FCTIDUZ,
6418 dl, MVT::f64, Src);
6419 Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i64, Tmp);
6420 break;
6421 }
6422 return Tmp;
6423}
6424
Hal Finkeled844c42015-01-06 22:31:02 +00006425SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
6426 SDLoc dl) const {
Nemanja Ivanovicc38b5312015-04-11 10:40:42 +00006427 if (Subtarget.hasDirectMove() && Subtarget.isPPC64())
6428 return LowerFP_TO_INTDirectMove(Op, DAG, dl);
6429
Hal Finkeled844c42015-01-06 22:31:02 +00006430 ReuseLoadInfo RLI;
6431 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
6432
6433 return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
6434 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
6435 RLI.Ranges);
6436}
6437
6438// We're trying to insert a regular store, S, and then a load, L. If the
6439// incoming value, O, is a load, we might just be able to have our load use the
6440// address used by O. However, we don't know if anything else will store to
6441// that address before we can load from it. To prevent this situation, we need
6442// to insert our load, L, into the chain as a peer of O. To do this, we give L
6443// the same chain operand as O, we create a token factor from the chain results
6444// of O and L, and we replace all uses of O's chain result with that token
6445// factor (see spliceIntoChain below for this last part).
6446bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT,
6447 ReuseLoadInfo &RLI,
Hal Finkel6c392692015-01-09 01:34:30 +00006448 SelectionDAG &DAG,
6449 ISD::LoadExtType ET) const {
Hal Finkeled844c42015-01-06 22:31:02 +00006450 SDLoc dl(Op);
Hal Finkel6c392692015-01-09 01:34:30 +00006451 if (ET == ISD::NON_EXTLOAD &&
6452 (Op.getOpcode() == ISD::FP_TO_UINT ||
Hal Finkeled844c42015-01-06 22:31:02 +00006453 Op.getOpcode() == ISD::FP_TO_SINT) &&
6454 isOperationLegalOrCustom(Op.getOpcode(),
6455 Op.getOperand(0).getValueType())) {
6456
6457 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
6458 return true;
6459 }
6460
6461 LoadSDNode *LD = dyn_cast<LoadSDNode>(Op);
Hal Finkel6c392692015-01-09 01:34:30 +00006462 if (!LD || LD->getExtensionType() != ET || LD->isVolatile() ||
6463 LD->isNonTemporal())
Hal Finkeled844c42015-01-06 22:31:02 +00006464 return false;
6465 if (LD->getMemoryVT() != MemVT)
6466 return false;
6467
6468 RLI.Ptr = LD->getBasePtr();
Sanjay Patel75068522016-03-14 18:09:43 +00006469 if (LD->isIndexed() && !LD->getOffset().isUndef()) {
Hal Finkeled844c42015-01-06 22:31:02 +00006470 assert(LD->getAddressingMode() == ISD::PRE_INC &&
6471 "Non-pre-inc AM on PPC?");
6472 RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr,
6473 LD->getOffset());
6474 }
6475
6476 RLI.Chain = LD->getChain();
6477 RLI.MPI = LD->getPointerInfo();
6478 RLI.IsInvariant = LD->isInvariant();
6479 RLI.Alignment = LD->getAlignment();
6480 RLI.AAInfo = LD->getAAInfo();
6481 RLI.Ranges = LD->getRanges();
6482
6483 RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1);
6484 return true;
6485}
6486
6487// Given the head of the old chain, ResChain, insert a token factor containing
6488// it and NewResChain, and make users of ResChain now be users of that token
6489// factor.
6490void PPCTargetLowering::spliceIntoChain(SDValue ResChain,
6491 SDValue NewResChain,
6492 SelectionDAG &DAG) const {
6493 if (!ResChain)
6494 return;
6495
6496 SDLoc dl(NewResChain);
6497
6498 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
6499 NewResChain, DAG.getUNDEF(MVT::Other));
6500 assert(TF.getNode() != NewResChain.getNode() &&
6501 "A new TF really is required here");
6502
6503 DAG.ReplaceAllUsesOfValueWith(ResChain, TF);
6504 DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain);
Chris Lattner4211ca92006-04-14 06:01:58 +00006505}
6506
Nemanja Ivanovicc38b5312015-04-11 10:40:42 +00006507/// \brief Custom lowers integer to floating point conversions to use
6508/// the direct move instructions available in ISA 2.07 to avoid the
6509/// need for load/store combinations.
6510SDValue PPCTargetLowering::LowerINT_TO_FPDirectMove(SDValue Op,
6511 SelectionDAG &DAG,
6512 SDLoc dl) const {
6513 assert((Op.getValueType() == MVT::f32 ||
6514 Op.getValueType() == MVT::f64) &&
6515 "Invalid floating point type as target of conversion");
6516 assert(Subtarget.hasFPCVT() &&
6517 "Int to FP conversions with direct moves require FPCVT");
6518 SDValue FP;
6519 SDValue Src = Op.getOperand(0);
6520 bool SinglePrec = Op.getValueType() == MVT::f32;
6521 bool WordInt = Src.getSimpleValueType().SimpleTy == MVT::i32;
6522 bool Signed = Op.getOpcode() == ISD::SINT_TO_FP;
6523 unsigned ConvOp = Signed ? (SinglePrec ? PPCISD::FCFIDS : PPCISD::FCFID) :
6524 (SinglePrec ? PPCISD::FCFIDUS : PPCISD::FCFIDU);
6525
6526 if (WordInt) {
6527 FP = DAG.getNode(Signed ? PPCISD::MTVSRA : PPCISD::MTVSRZ,
6528 dl, MVT::f64, Src);
6529 FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP);
6530 }
6531 else {
6532 FP = DAG.getNode(PPCISD::MTVSRA, dl, MVT::f64, Src);
6533 FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP);
6534 }
6535
6536 return FP;
6537}
6538
Hal Finkelf6d45f22013-04-01 17:52:07 +00006539SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Hal Finkeled844c42015-01-06 22:31:02 +00006540 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006541 SDLoc dl(Op);
Hal Finkelc93a9a22015-02-25 01:06:45 +00006542
6543 if (Subtarget.hasQPX() && Op.getOperand(0).getValueType() == MVT::v4i1) {
6544 if (Op.getValueType() != MVT::v4f32 && Op.getValueType() != MVT::v4f64)
6545 return SDValue();
6546
6547 SDValue Value = Op.getOperand(0);
6548 // The values are now known to be -1 (false) or 1 (true). To convert this
6549 // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
6550 // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
6551 Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +00006552
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00006553 SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64);
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00006554
Hal Finkelc93a9a22015-02-25 01:06:45 +00006555 Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs);
6556
6557 if (Op.getValueType() != MVT::v4f64)
6558 Value = DAG.getNode(ISD::FP_ROUND, dl,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006559 Op.getValueType(), Value,
6560 DAG.getIntPtrConstant(1, dl));
Hal Finkelc93a9a22015-02-25 01:06:45 +00006561 return Value;
6562 }
6563
Dan Gohmand6819da2008-03-11 01:59:03 +00006564 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson9f944592009-08-11 20:47:22 +00006565 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006566 return SDValue();
Dan Gohmand6819da2008-03-11 01:59:03 +00006567
Hal Finkel6a56b212014-03-05 22:14:00 +00006568 if (Op.getOperand(0).getValueType() == MVT::i1)
6569 return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006570 DAG.getConstantFP(1.0, dl, Op.getValueType()),
6571 DAG.getConstantFP(0.0, dl, Op.getValueType()));
Hal Finkel6a56b212014-03-05 22:14:00 +00006572
Nemanja Ivanovicc38b5312015-04-11 10:40:42 +00006573 // If we have direct moves, we can do all the conversion, skip the store/load
6574 // however, without FPCVT we can't do most conversions.
6575 if (Subtarget.hasDirectMove() && Subtarget.isPPC64() && Subtarget.hasFPCVT())
6576 return LowerINT_TO_FPDirectMove(Op, DAG, dl);
6577
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006578 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00006579 "UINT_TO_FP is supported only with FPCVT");
6580
6581 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel93d75ea2013-04-02 03:29:51 +00006582 // Otherwise, convert to double-precision and then round.
Eric Christophercccae792015-01-30 22:02:31 +00006583 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
6584 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
6585 : PPCISD::FCFIDS)
6586 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
6587 : PPCISD::FCFID);
6588 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
6589 ? MVT::f32
6590 : MVT::f64;
Hal Finkelf6d45f22013-04-01 17:52:07 +00006591
Owen Anderson9f944592009-08-11 20:47:22 +00006592 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006593 SDValue SINT = Op.getOperand(0);
6594 // When converting to single-precision, we actually need to convert
6595 // to double-precision first and then round to single-precision.
6596 // To avoid double-rounding effects during that operation, we have
6597 // to prepare the input operand. Bits that might be truncated when
6598 // converting to double-precision are replaced by a bit that won't
6599 // be lost at this stage, but is below the single-precision rounding
6600 // position.
6601 //
6602 // However, if -enable-unsafe-fp-math is in effect, accept double
6603 // rounding to avoid the extra overhead.
6604 if (Op.getValueType() == MVT::f32 &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006605 !Subtarget.hasFPCVT() &&
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006606 !DAG.getTarget().Options.UnsafeFPMath) {
6607
6608 // Twiddle input to make sure the low 11 bits are zero. (If this
6609 // is the case, we are guaranteed the value will fit into the 53 bit
6610 // mantissa of an IEEE double-precision value without rounding.)
6611 // If any of those low 11 bits were not zero originally, make sure
6612 // bit 12 (value 2048) is set instead, so that the final rounding
6613 // to single-precision gets the correct result.
6614 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006615 SINT, DAG.getConstant(2047, dl, MVT::i64));
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006616 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006617 Round, DAG.getConstant(2047, dl, MVT::i64));
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006618 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
6619 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006620 Round, DAG.getConstant(-2048, dl, MVT::i64));
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006621
6622 // However, we cannot use that value unconditionally: if the magnitude
6623 // of the input value is small, the bit-twiddling we did above might
6624 // end up visibly changing the output. Fortunately, in that case, we
6625 // don't need to twiddle bits since the original input will convert
6626 // exactly to double-precision floating-point already. Therefore,
6627 // construct a conditional to use the original value if the top 11
6628 // bits are all sign-bit copies, and use the rounded value computed
6629 // above otherwise.
6630 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006631 SINT, DAG.getConstant(53, dl, MVT::i32));
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006632 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006633 Cond, DAG.getConstant(1, dl, MVT::i64));
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006634 Cond = DAG.getSetCC(dl, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006635 Cond, DAG.getConstant(1, dl, MVT::i64), ISD::SETUGT);
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00006636
6637 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
6638 }
Hal Finkelf6d45f22013-04-01 17:52:07 +00006639
Hal Finkeled844c42015-01-06 22:31:02 +00006640 ReuseLoadInfo RLI;
6641 SDValue Bits;
6642
Hal Finkel6c392692015-01-09 01:34:30 +00006643 MachineFunction &MF = DAG.getMachineFunction();
Hal Finkeled844c42015-01-06 22:31:02 +00006644 if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) {
6645 Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
6646 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
6647 RLI.Ranges);
6648 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
Hal Finkel6c392692015-01-09 01:34:30 +00006649 } else if (Subtarget.hasLFIWAX() &&
6650 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) {
6651 MachineMemOperand *MMO =
6652 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6653 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6654 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6655 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl,
6656 DAG.getVTList(MVT::f64, MVT::Other),
6657 Ops, MVT::i32, MMO);
6658 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6659 } else if (Subtarget.hasFPCVT() &&
6660 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) {
6661 MachineMemOperand *MMO =
6662 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6663 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6664 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6665 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl,
6666 DAG.getVTList(MVT::f64, MVT::Other),
6667 Ops, MVT::i32, MMO);
6668 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6669 } else if (((Subtarget.hasLFIWAX() &&
6670 SINT.getOpcode() == ISD::SIGN_EXTEND) ||
6671 (Subtarget.hasFPCVT() &&
6672 SINT.getOpcode() == ISD::ZERO_EXTEND)) &&
6673 SINT.getOperand(0).getValueType() == MVT::i32) {
6674 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Mehdi Amini44ede332015-07-09 02:09:04 +00006675 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Hal Finkel6c392692015-01-09 01:34:30 +00006676
6677 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
6678 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6679
Alex Lorenze40c8a22015-08-11 23:09:45 +00006680 SDValue Store = DAG.getStore(
6681 DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx,
6682 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6683 false, false, 0);
Hal Finkel6c392692015-01-09 01:34:30 +00006684
6685 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
6686 "Expected an i32 store");
6687
6688 RLI.Ptr = FIdx;
6689 RLI.Chain = Store;
Alex Lorenze40c8a22015-08-11 23:09:45 +00006690 RLI.MPI =
6691 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
Hal Finkel6c392692015-01-09 01:34:30 +00006692 RLI.Alignment = 4;
6693
6694 MachineMemOperand *MMO =
6695 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6696 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6697 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6698 Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ?
6699 PPCISD::LFIWZX : PPCISD::LFIWAX,
6700 dl, DAG.getVTList(MVT::f64, MVT::Other),
6701 Ops, MVT::i32, MMO);
Hal Finkeled844c42015-01-06 22:31:02 +00006702 } else
6703 Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
6704
Hal Finkelf6d45f22013-04-01 17:52:07 +00006705 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
6706
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006707 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Scott Michelcf0da6c2009-02-17 22:15:04 +00006708 FP = DAG.getNode(ISD::FP_ROUND, dl,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006709 MVT::f32, FP, DAG.getIntPtrConstant(0, dl));
Chris Lattner4211ca92006-04-14 06:01:58 +00006710 return FP;
6711 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006712
Owen Anderson9f944592009-08-11 20:47:22 +00006713 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00006714 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner4211ca92006-04-14 06:01:58 +00006715 // Since we only generate this in 64-bit mode, we can take advantage of
6716 // 64-bit registers. In particular, sign extend the input value into the
6717 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
6718 // then lfd it and fcfid it.
Dan Gohman48b185d2009-09-25 20:36:54 +00006719 MachineFunction &MF = DAG.getMachineFunction();
6720 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Mehdi Amini44ede332015-07-09 02:09:04 +00006721 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Scott Michelcf0da6c2009-02-17 22:15:04 +00006722
Hal Finkelbeb296b2013-03-31 10:12:51 +00006723 SDValue Ld;
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006724 if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) {
Hal Finkeled844c42015-01-06 22:31:02 +00006725 ReuseLoadInfo RLI;
6726 bool ReusingLoad;
6727 if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI,
6728 DAG))) {
6729 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
6730 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006731
Alex Lorenze40c8a22015-08-11 23:09:45 +00006732 SDValue Store = DAG.getStore(
6733 DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
6734 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6735 false, false, 0);
Hal Finkele53429a2013-03-31 01:58:02 +00006736
Hal Finkeled844c42015-01-06 22:31:02 +00006737 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
6738 "Expected an i32 store");
6739
6740 RLI.Ptr = FIdx;
6741 RLI.Chain = Store;
Alex Lorenze40c8a22015-08-11 23:09:45 +00006742 RLI.MPI =
6743 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
Hal Finkeled844c42015-01-06 22:31:02 +00006744 RLI.Alignment = 4;
6745 }
6746
Hal Finkelbeb296b2013-03-31 10:12:51 +00006747 MachineMemOperand *MMO =
Hal Finkeled844c42015-01-06 22:31:02 +00006748 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6749 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6750 SDValue Ops[] = { RLI.Chain, RLI.Ptr };
Hal Finkelf6d45f22013-04-01 17:52:07 +00006751 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
6752 PPCISD::LFIWZX : PPCISD::LFIWAX,
6753 dl, DAG.getVTList(MVT::f64, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00006754 Ops, MVT::i32, MMO);
Hal Finkeled844c42015-01-06 22:31:02 +00006755 if (ReusingLoad)
6756 spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG);
Hal Finkelbeb296b2013-03-31 10:12:51 +00006757 } else {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006758 assert(Subtarget.isPPC64() &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00006759 "i32->FP without LFIWAX supported only on PPC64");
6760
Hal Finkelbeb296b2013-03-31 10:12:51 +00006761 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
6762 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6763
6764 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
6765 Op.getOperand(0));
6766
6767 // STD the extended value into the stack slot.
Alex Lorenze40c8a22015-08-11 23:09:45 +00006768 SDValue Store = DAG.getStore(
6769 DAG.getEntryNode(), dl, Ext64, FIdx,
6770 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6771 false, false, 0);
Hal Finkelbeb296b2013-03-31 10:12:51 +00006772
6773 // Load the value as a double.
Alex Lorenze40c8a22015-08-11 23:09:45 +00006774 Ld = DAG.getLoad(
6775 MVT::f64, dl, Store, FIdx,
6776 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6777 false, false, false, 0);
Hal Finkelbeb296b2013-03-31 10:12:51 +00006778 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006779
Chris Lattner4211ca92006-04-14 06:01:58 +00006780 // FCFID it and return it.
Hal Finkelf6d45f22013-04-01 17:52:07 +00006781 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006782 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006783 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP,
6784 DAG.getIntPtrConstant(0, dl));
Chris Lattner4211ca92006-04-14 06:01:58 +00006785 return FP;
6786}
6787
Dan Gohman21cea8a2010-04-17 15:26:15 +00006788SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
6789 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006790 SDLoc dl(Op);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006791 /*
6792 The rounding mode is in bits 30:31 of FPSR, and has the following
6793 settings:
6794 00 Round to nearest
6795 01 Round to 0
6796 10 Round to +inf
6797 11 Round to -inf
6798
6799 FLT_ROUNDS, on the other hand, expects the following:
6800 -1 Undefined
6801 0 Round to 0
6802 1 Round to nearest
6803 2 Round to +inf
6804 3 Round to -inf
6805
6806 To perform the conversion, we do:
6807 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
6808 */
6809
6810 MachineFunction &MF = DAG.getMachineFunction();
Owen Anderson53aa7a92009-08-10 22:56:29 +00006811 EVT VT = Op.getValueType();
Mehdi Amini44ede332015-07-09 02:09:04 +00006812 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006813
6814 // Save FP Control Word to register
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00006815 EVT NodeTys[] = {
6816 MVT::f64, // return register
6817 MVT::Glue // unused in this context
6818 };
Craig Topper2d2aa0c2014-04-30 07:17:30 +00006819 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006820
6821 // Save FP register to stack slot
David Greene1fbe0542009-11-12 20:49:22 +00006822 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006823 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00006824 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner676c61d2010-09-21 18:41:36 +00006825 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006826
6827 // Load FP Control Word from low 32 bits of stack slot.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006828 SDValue Four = DAG.getConstant(4, dl, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00006829 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattner7727d052010-09-21 06:44:06 +00006830 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006831 false, false, false, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006832
6833 // Transform as necessary
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006834 SDValue CWD1 =
Owen Anderson9f944592009-08-11 20:47:22 +00006835 DAG.getNode(ISD::AND, dl, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006836 CWD, DAG.getConstant(3, dl, MVT::i32));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006837 SDValue CWD2 =
Owen Anderson9f944592009-08-11 20:47:22 +00006838 DAG.getNode(ISD::SRL, dl, MVT::i32,
6839 DAG.getNode(ISD::AND, dl, MVT::i32,
6840 DAG.getNode(ISD::XOR, dl, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006841 CWD, DAG.getConstant(3, dl, MVT::i32)),
6842 DAG.getConstant(3, dl, MVT::i32)),
6843 DAG.getConstant(1, dl, MVT::i32));
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006844
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006845 SDValue RetVal =
Owen Anderson9f944592009-08-11 20:47:22 +00006846 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006847
Duncan Sands13237ac2008-06-06 12:08:01 +00006848 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen021052a2009-02-04 20:06:27 +00006849 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00006850}
6851
Dan Gohman21cea8a2010-04-17 15:26:15 +00006852SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006853 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00006854 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00006855 SDLoc dl(Op);
Dan Gohman8d2ead22008-03-07 20:36:53 +00006856 assert(Op.getNumOperands() == 3 &&
6857 VT == Op.getOperand(1).getValueType() &&
6858 "Unexpected SHL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00006859
Chris Lattner601b8652006-09-20 03:47:40 +00006860 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00006861 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006862 SDValue Lo = Op.getOperand(0);
6863 SDValue Hi = Op.getOperand(1);
6864 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006865 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006866
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006867 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006868 DAG.getConstant(BitWidth, dl, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006869 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
6870 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
6871 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
6872 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006873 DAG.getConstant(-BitWidth, dl, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006874 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
6875 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6876 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006877 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00006878 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00006879}
6880
Dan Gohman21cea8a2010-04-17 15:26:15 +00006881SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00006882 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00006883 SDLoc dl(Op);
Duncan Sands13237ac2008-06-06 12:08:01 +00006884 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00006885 assert(Op.getNumOperands() == 3 &&
6886 VT == Op.getOperand(1).getValueType() &&
6887 "Unexpected SRL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00006888
Dan Gohman8d2ead22008-03-07 20:36:53 +00006889 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00006890 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006891 SDValue Lo = Op.getOperand(0);
6892 SDValue Hi = Op.getOperand(1);
6893 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006894 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006895
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006896 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006897 DAG.getConstant(BitWidth, dl, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006898 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6899 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6900 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6901 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006902 DAG.getConstant(-BitWidth, dl, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00006903 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
6904 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6905 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006906 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00006907 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00006908}
6909
Dan Gohman21cea8a2010-04-17 15:26:15 +00006910SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006911 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006912 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00006913 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00006914 assert(Op.getNumOperands() == 3 &&
6915 VT == Op.getOperand(1).getValueType() &&
6916 "Unexpected SRA!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00006917
Dan Gohman8d2ead22008-03-07 20:36:53 +00006918 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006919 SDValue Lo = Op.getOperand(0);
6920 SDValue Hi = Op.getOperand(1);
6921 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006922 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006923
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006924 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006925 DAG.getConstant(BitWidth, dl, AmtVT), Amt);
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006926 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6927 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6928 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6929 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006930 DAG.getConstant(-BitWidth, dl, AmtVT));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00006931 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
6932 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006933 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, dl, AmtVT),
Duncan Sands13105742008-10-30 19:28:32 +00006934 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006935 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00006936 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00006937}
6938
6939//===----------------------------------------------------------------------===//
6940// Vector related lowering.
6941//
6942
Chris Lattner2a099c02006-04-17 06:00:21 +00006943/// BuildSplatI - Build a canonical splati of Val with an element size of
6944/// SplatSize. Cast the result to VT.
Owen Anderson53aa7a92009-08-10 22:56:29 +00006945static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006946 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner2a099c02006-04-17 06:00:21 +00006947 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006948
Benjamin Kramer7149aab2015-03-01 18:09:56 +00006949 static const MVT VTys[] = { // canonical VT to use for each size.
Owen Anderson9f944592009-08-11 20:47:22 +00006950 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner2a099c02006-04-17 06:00:21 +00006951 };
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006952
Owen Anderson9f944592009-08-11 20:47:22 +00006953 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006954
Chris Lattner09ed0ff2006-12-01 01:45:39 +00006955 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
6956 if (Val == -1)
6957 SplatSize = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006958
Owen Anderson53aa7a92009-08-10 22:56:29 +00006959 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006960
Chris Lattner2a099c02006-04-17 06:00:21 +00006961 // Build a canonical splat for this value.
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00006962 return DAG.getBitcast(ReqVT, DAG.getConstant(Val, dl, CanonicalVT));
Chris Lattner2a099c02006-04-17 06:00:21 +00006963}
6964
Hal Finkelcf2e9082013-05-24 23:00:14 +00006965/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
6966/// specified intrinsic ID.
6967static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006968 SelectionDAG &DAG, SDLoc dl,
Hal Finkelcf2e9082013-05-24 23:00:14 +00006969 EVT DestVT = MVT::Other) {
6970 if (DestVT == MVT::Other) DestVT = Op.getValueType();
6971 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006972 DAG.getConstant(IID, dl, MVT::i32), Op);
Hal Finkelcf2e9082013-05-24 23:00:14 +00006973}
6974
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006975/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner1b3806a2006-04-17 06:58:41 +00006976/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006977static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006978 SelectionDAG &DAG, SDLoc dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006979 EVT DestVT = MVT::Other) {
6980 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006981 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006982 DAG.getConstant(IID, dl, MVT::i32), LHS, RHS);
Chris Lattner1b3806a2006-04-17 06:58:41 +00006983}
6984
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006985/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
6986/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006987static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006988 SDValue Op2, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006989 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson9f944592009-08-11 20:47:22 +00006990 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006991 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006992 DAG.getConstant(IID, dl, MVT::i32), Op0, Op1, Op2);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006993}
6994
Chris Lattner264c9082006-04-17 17:55:10 +00006995/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
6996/// amount. The result has the specified value type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006997static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006998 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattner264c9082006-04-17 17:55:10 +00006999 // Force LHS/RHS to be the right type.
Wesley Peck527da1b2010-11-23 03:31:01 +00007000 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
7001 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsb0e39382008-07-21 10:20:31 +00007002
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007003 int Ops[16];
Chris Lattner264c9082006-04-17 17:55:10 +00007004 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007005 Ops[i] = i + Amt;
Owen Anderson9f944592009-08-11 20:47:22 +00007006 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00007007 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner264c9082006-04-17 17:55:10 +00007008}
7009
Chris Lattner19e90552006-04-14 05:19:18 +00007010// If this is a case we can't handle, return null and let the default
7011// expansion code take care of it. If we CAN select this case, and if it
7012// selects to a single instruction, return Op. Otherwise, if we can codegen
7013// this case more efficiently than a constant pool load, lower it to the
7014// sequence of ops that should be used.
Dan Gohman21cea8a2010-04-17 15:26:15 +00007015SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
7016 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007017 SDLoc dl(Op);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00007018 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
Craig Toppere73658d2014-04-28 04:05:08 +00007019 assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Michelbb878282009-02-25 03:12:50 +00007020
Hal Finkelc93a9a22015-02-25 01:06:45 +00007021 if (Subtarget.hasQPX() && Op.getValueType() == MVT::v4i1) {
7022 // We first build an i32 vector, load it into a QPX register,
7023 // then convert it to a floating-point vector and compare it
7024 // to a zero vector to get the boolean result.
7025 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7026 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Alex Lorenze40c8a22015-08-11 23:09:45 +00007027 MachinePointerInfo PtrInfo =
7028 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
Mehdi Amini44ede332015-07-09 02:09:04 +00007029 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Hal Finkelc93a9a22015-02-25 01:06:45 +00007030 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7031
7032 assert(BVN->getNumOperands() == 4 &&
7033 "BUILD_VECTOR for v4i1 does not have 4 operands");
7034
7035 bool IsConst = true;
7036 for (unsigned i = 0; i < 4; ++i) {
Sanjay Patel57195842016-03-14 17:28:46 +00007037 if (BVN->getOperand(i).isUndef()) continue;
Hal Finkelc93a9a22015-02-25 01:06:45 +00007038 if (!isa<ConstantSDNode>(BVN->getOperand(i))) {
7039 IsConst = false;
7040 break;
7041 }
7042 }
7043
7044 if (IsConst) {
7045 Constant *One =
7046 ConstantFP::get(Type::getFloatTy(*DAG.getContext()), 1.0);
7047 Constant *NegOne =
7048 ConstantFP::get(Type::getFloatTy(*DAG.getContext()), -1.0);
7049
7050 SmallVector<Constant*, 4> CV(4, NegOne);
7051 for (unsigned i = 0; i < 4; ++i) {
Sanjay Patel57195842016-03-14 17:28:46 +00007052 if (BVN->getOperand(i).isUndef())
Hal Finkelc93a9a22015-02-25 01:06:45 +00007053 CV[i] = UndefValue::get(Type::getFloatTy(*DAG.getContext()));
Artyom Skrobov314ee042015-11-25 19:41:11 +00007054 else if (isNullConstant(BVN->getOperand(i)))
Hal Finkelc93a9a22015-02-25 01:06:45 +00007055 continue;
7056 else
7057 CV[i] = One;
7058 }
7059
7060 Constant *CP = ConstantVector::get(CV);
Mehdi Amini44ede332015-07-09 02:09:04 +00007061 SDValue CPIdx = DAG.getConstantPool(CP, getPointerTy(DAG.getDataLayout()),
7062 16 /* alignment */);
7063
Hal Finkelc93a9a22015-02-25 01:06:45 +00007064 SmallVector<SDValue, 2> Ops;
7065 Ops.push_back(DAG.getEntryNode());
7066 Ops.push_back(CPIdx);
7067
7068 SmallVector<EVT, 2> ValueVTs;
7069 ValueVTs.push_back(MVT::v4i1);
7070 ValueVTs.push_back(MVT::Other); // chain
7071 SDVTList VTs = DAG.getVTList(ValueVTs);
7072
Alex Lorenze40c8a22015-08-11 23:09:45 +00007073 return DAG.getMemIntrinsicNode(
7074 PPCISD::QVLFSb, dl, VTs, Ops, MVT::v4f32,
7075 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007076 }
7077
7078 SmallVector<SDValue, 4> Stores;
7079 for (unsigned i = 0; i < 4; ++i) {
Sanjay Patel57195842016-03-14 17:28:46 +00007080 if (BVN->getOperand(i).isUndef()) continue;
Hal Finkelc93a9a22015-02-25 01:06:45 +00007081
7082 unsigned Offset = 4*i;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007083 SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
Hal Finkelc93a9a22015-02-25 01:06:45 +00007084 Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
7085
7086 unsigned StoreSize = BVN->getOperand(i).getValueType().getStoreSize();
7087 if (StoreSize > 4) {
7088 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
7089 BVN->getOperand(i), Idx,
7090 PtrInfo.getWithOffset(Offset),
7091 MVT::i32, false, false, 0));
7092 } else {
7093 SDValue StoreValue = BVN->getOperand(i);
7094 if (StoreSize < 4)
7095 StoreValue = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, StoreValue);
7096
7097 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
7098 StoreValue, Idx,
7099 PtrInfo.getWithOffset(Offset),
7100 false, false, 0));
7101 }
7102 }
7103
7104 SDValue StoreChain;
7105 if (!Stores.empty())
7106 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
7107 else
7108 StoreChain = DAG.getEntryNode();
7109
7110 // Now load from v4i32 into the QPX register; this will extend it to
7111 // v4i64 but not yet convert it to a floating point. Nevertheless, this
7112 // is typed as v4f64 because the QPX register integer states are not
7113 // explicitly represented.
7114
7115 SmallVector<SDValue, 2> Ops;
7116 Ops.push_back(StoreChain);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007117 Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvlfiwz, dl, MVT::i32));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007118 Ops.push_back(FIdx);
7119
7120 SmallVector<EVT, 2> ValueVTs;
7121 ValueVTs.push_back(MVT::v4f64);
7122 ValueVTs.push_back(MVT::Other); // chain
7123 SDVTList VTs = DAG.getVTList(ValueVTs);
7124
7125 SDValue LoadedVect = DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN,
7126 dl, VTs, Ops, MVT::v4i32, PtrInfo);
7127 LoadedVect = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007128 DAG.getConstant(Intrinsic::ppc_qpx_qvfcfidu, dl, MVT::i32),
Hal Finkelc93a9a22015-02-25 01:06:45 +00007129 LoadedVect);
7130
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00007131 SDValue FPZeros = DAG.getConstantFP(0.0, dl, MVT::v4f64);
Hal Finkelc93a9a22015-02-25 01:06:45 +00007132
7133 return DAG.getSetCC(dl, MVT::v4i1, LoadedVect, FPZeros, ISD::SETEQ);
7134 }
7135
7136 // All other QPX vectors are handled by generic code.
7137 if (Subtarget.hasQPX())
7138 return SDValue();
7139
Bob Wilson85cefe82009-03-02 23:24:16 +00007140 // Check if this is a splat of a constant value.
7141 APInt APSplatBits, APSplatUndef;
7142 unsigned SplatBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00007143 bool HasAnyUndefs;
Bob Wilson530e0382009-03-03 19:26:27 +00007144 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Bill Schmidt91dd7652015-04-03 13:48:24 +00007145 HasAnyUndefs, 0, !Subtarget.isLittleEndian()) ||
7146 SplatBitSize > 32)
Bob Wilson530e0382009-03-03 19:26:27 +00007147 return SDValue();
Evan Chenga49de9d2009-02-25 22:49:59 +00007148
Bob Wilson530e0382009-03-03 19:26:27 +00007149 unsigned SplatBits = APSplatBits.getZExtValue();
7150 unsigned SplatUndef = APSplatUndef.getZExtValue();
7151 unsigned SplatSize = SplatBitSize / 8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007152
Bob Wilson530e0382009-03-03 19:26:27 +00007153 // First, handle single instruction cases.
7154
7155 // All zeros?
7156 if (SplatBits == 0) {
7157 // Canonicalize all zero vectors to be v4i32.
Owen Anderson9f944592009-08-11 20:47:22 +00007158 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00007159 SDValue Z = DAG.getConstant(0, dl, MVT::v4i32);
Wesley Peck527da1b2010-11-23 03:31:01 +00007160 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattner19e90552006-04-14 05:19:18 +00007161 }
Bob Wilson530e0382009-03-03 19:26:27 +00007162 return Op;
7163 }
Chris Lattnerfa5aa392006-04-16 01:01:29 +00007164
Bob Wilson530e0382009-03-03 19:26:27 +00007165 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
7166 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
7167 (32-SplatBitSize));
7168 if (SextVal >= -16 && SextVal <= 15)
7169 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007170
Bob Wilson530e0382009-03-03 19:26:27 +00007171 // Two instruction sequences.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007172
Bob Wilson530e0382009-03-03 19:26:27 +00007173 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtc6cbecc2013-02-20 20:41:42 +00007174 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
7175 // If this value is in the range [17,31] and is odd, use:
7176 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
7177 // If this value is in the range [-31,-17] and is odd, use:
7178 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
7179 // Note the last two are three-instruction sequences.
7180 if (SextVal >= -32 && SextVal <= 31) {
7181 // To avoid having these optimizations undone by constant folding,
7182 // we convert to a pseudo that will be expanded later into one of
7183 // the above forms.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007184 SDValue Elt = DAG.getConstant(SextVal, dl, MVT::i32);
Bill Schmidt71dddd52014-05-27 15:57:51 +00007185 EVT VT = (SplatSize == 1 ? MVT::v16i8 :
7186 (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32));
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007187 SDValue EltSize = DAG.getConstant(SplatSize, dl, MVT::i32);
Bill Schmidt71dddd52014-05-27 15:57:51 +00007188 SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
7189 if (VT == Op.getValueType())
7190 return RetVal;
7191 else
7192 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal);
Bob Wilson530e0382009-03-03 19:26:27 +00007193 }
7194
7195 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
7196 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
7197 // for fneg/fabs.
7198 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
7199 // Make -1 and vspltisw -1:
Owen Anderson9f944592009-08-11 20:47:22 +00007200 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00007201
7202 // Make the VSLW intrinsic, computing 0x8000_0000.
7203 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
7204 OnesV, DAG, dl);
7205
7206 // xor by OnesV to invert it.
Owen Anderson9f944592009-08-11 20:47:22 +00007207 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peck527da1b2010-11-23 03:31:01 +00007208 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00007209 }
7210
7211 // Check to see if this is a wide variety of vsplti*, binop self cases.
7212 static const signed char SplatCsts[] = {
7213 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
7214 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
7215 };
7216
7217 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
7218 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
7219 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
7220 int i = SplatCsts[idx];
7221
7222 // Figure out what shift amount will be used by altivec if shifted by i in
7223 // this splat size.
7224 unsigned TypeShiftAmt = i & (SplatBitSize-1);
7225
7226 // vsplti + shl self.
Richard Smith228e6d42012-08-24 23:29:28 +00007227 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00007228 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00007229 static const unsigned IIDs[] = { // Intrinsic to use for each size.
7230 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
7231 Intrinsic::ppc_altivec_vslw
7232 };
7233 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00007234 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00007235 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007236
Bob Wilson530e0382009-03-03 19:26:27 +00007237 // vsplti + srl self.
7238 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00007239 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00007240 static const unsigned IIDs[] = { // Intrinsic to use for each size.
7241 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
7242 Intrinsic::ppc_altivec_vsrw
7243 };
7244 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00007245 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00007246 }
7247
Bob Wilson530e0382009-03-03 19:26:27 +00007248 // vsplti + sra self.
7249 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00007250 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00007251 static const unsigned IIDs[] = { // Intrinsic to use for each size.
7252 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
7253 Intrinsic::ppc_altivec_vsraw
7254 };
7255 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00007256 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00007257 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007258
Bob Wilson530e0382009-03-03 19:26:27 +00007259 // vsplti + rol self.
7260 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
7261 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson9f944592009-08-11 20:47:22 +00007262 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00007263 static const unsigned IIDs[] = { // Intrinsic to use for each size.
7264 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
7265 Intrinsic::ppc_altivec_vrlw
7266 };
7267 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00007268 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00007269 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007270
Bob Wilson530e0382009-03-03 19:26:27 +00007271 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith228e6d42012-08-24 23:29:28 +00007272 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00007273 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bill Schmidt1e77bb12015-07-15 15:45:30 +00007274 unsigned Amt = Subtarget.isLittleEndian() ? 15 : 1;
7275 return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl);
Chris Lattnere54133c2006-04-17 18:09:22 +00007276 }
Bob Wilson530e0382009-03-03 19:26:27 +00007277 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith228e6d42012-08-24 23:29:28 +00007278 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00007279 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bill Schmidt1e77bb12015-07-15 15:45:30 +00007280 unsigned Amt = Subtarget.isLittleEndian() ? 14 : 2;
7281 return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl);
Chris Lattner19e90552006-04-14 05:19:18 +00007282 }
Bob Wilson530e0382009-03-03 19:26:27 +00007283 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith228e6d42012-08-24 23:29:28 +00007284 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00007285 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bill Schmidt1e77bb12015-07-15 15:45:30 +00007286 unsigned Amt = Subtarget.isLittleEndian() ? 13 : 3;
7287 return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00007288 }
7289 }
7290
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007291 return SDValue();
Chris Lattner19e90552006-04-14 05:19:18 +00007292}
7293
Chris Lattner071ad012006-04-17 05:28:54 +00007294/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
7295/// the specified operations to build the shuffle.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007296static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelcf0da6c2009-02-17 22:15:04 +00007297 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00007298 SDLoc dl) {
Chris Lattner071ad012006-04-17 05:28:54 +00007299 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling95e1af22008-09-17 00:30:57 +00007300 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner071ad012006-04-17 05:28:54 +00007301 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007302
Chris Lattner071ad012006-04-17 05:28:54 +00007303 enum {
Chris Lattnerd2ca9ab2006-05-16 04:20:24 +00007304 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 +00007305 OP_VMRGHW,
7306 OP_VMRGLW,
7307 OP_VSPLTISW0,
7308 OP_VSPLTISW1,
7309 OP_VSPLTISW2,
7310 OP_VSPLTISW3,
7311 OP_VSLDOI4,
7312 OP_VSLDOI8,
Chris Lattneraa2372562006-05-24 17:04:05 +00007313 OP_VSLDOI12
Chris Lattner071ad012006-04-17 05:28:54 +00007314 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00007315
Chris Lattner071ad012006-04-17 05:28:54 +00007316 if (OpNum == OP_COPY) {
7317 if (LHSID == (1*9+2)*9+3) return LHS;
7318 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
7319 return RHS;
7320 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007321
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007322 SDValue OpLHS, OpRHS;
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00007323 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
7324 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007325
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007326 int ShufIdxs[16];
Chris Lattner071ad012006-04-17 05:28:54 +00007327 switch (OpNum) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00007328 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner071ad012006-04-17 05:28:54 +00007329 case OP_VMRGHW:
7330 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
7331 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
7332 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
7333 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
7334 break;
7335 case OP_VMRGLW:
7336 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
7337 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
7338 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
7339 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
7340 break;
7341 case OP_VSPLTISW0:
7342 for (unsigned i = 0; i != 16; ++i)
7343 ShufIdxs[i] = (i&3)+0;
7344 break;
7345 case OP_VSPLTISW1:
7346 for (unsigned i = 0; i != 16; ++i)
7347 ShufIdxs[i] = (i&3)+4;
7348 break;
7349 case OP_VSPLTISW2:
7350 for (unsigned i = 0; i != 16; ++i)
7351 ShufIdxs[i] = (i&3)+8;
7352 break;
7353 case OP_VSPLTISW3:
7354 for (unsigned i = 0; i != 16; ++i)
7355 ShufIdxs[i] = (i&3)+12;
7356 break;
7357 case OP_VSLDOI4:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00007358 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00007359 case OP_VSLDOI8:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00007360 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00007361 case OP_VSLDOI12:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00007362 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00007363 }
Owen Anderson53aa7a92009-08-10 22:56:29 +00007364 EVT VT = OpLHS.getValueType();
Wesley Peck527da1b2010-11-23 03:31:01 +00007365 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
7366 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson9f944592009-08-11 20:47:22 +00007367 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peck527da1b2010-11-23 03:31:01 +00007368 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner071ad012006-04-17 05:28:54 +00007369}
7370
Chris Lattner19e90552006-04-14 05:19:18 +00007371/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
7372/// is a shuffle we can handle in a single instruction, return it. Otherwise,
7373/// return the code it can be lowered into. Worst case, it can always be
7374/// lowered into a vperm.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007375SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00007376 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007377 SDLoc dl(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007378 SDValue V1 = Op.getOperand(0);
7379 SDValue V2 = Op.getOperand(1);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007380 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00007381 EVT VT = Op.getValueType();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007382 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00007383
Hal Finkelc93a9a22015-02-25 01:06:45 +00007384 if (Subtarget.hasQPX()) {
7385 if (VT.getVectorNumElements() != 4)
7386 return SDValue();
7387
Sanjay Patel57195842016-03-14 17:28:46 +00007388 if (V2.isUndef()) V2 = V1;
Hal Finkelc93a9a22015-02-25 01:06:45 +00007389
7390 int AlignIdx = PPC::isQVALIGNIShuffleMask(SVOp);
7391 if (AlignIdx != -1) {
7392 return DAG.getNode(PPCISD::QVALIGNI, dl, VT, V1, V2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007393 DAG.getConstant(AlignIdx, dl, MVT::i32));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007394 } else if (SVOp->isSplat()) {
7395 int SplatIdx = SVOp->getSplatIndex();
7396 if (SplatIdx >= 4) {
7397 std::swap(V1, V2);
7398 SplatIdx -= 4;
7399 }
7400
Hal Finkelc93a9a22015-02-25 01:06:45 +00007401 return DAG.getNode(PPCISD::QVESPLATI, dl, VT, V1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007402 DAG.getConstant(SplatIdx, dl, MVT::i32));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007403 }
7404
7405 // Lower this into a qvgpci/qvfperm pair.
7406
7407 // Compute the qvgpci literal
7408 unsigned idx = 0;
7409 for (unsigned i = 0; i < 4; ++i) {
7410 int m = SVOp->getMaskElt(i);
7411 unsigned mm = m >= 0 ? (unsigned) m : i;
7412 idx |= mm << (3-i)*3;
7413 }
7414
7415 SDValue V3 = DAG.getNode(PPCISD::QVGPCI, dl, MVT::v4f64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007416 DAG.getConstant(idx, dl, MVT::i32));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007417 return DAG.getNode(PPCISD::QVFPERM, dl, VT, V1, V2, V3);
7418 }
7419
Chris Lattner19e90552006-04-14 05:19:18 +00007420 // Cases that are handled by instructions that take permute immediates
7421 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
7422 // selected by the instruction selector.
Sanjay Patel57195842016-03-14 17:28:46 +00007423 if (V2.isUndef()) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007424 if (PPC::isSplatShuffleMask(SVOp, 1) ||
7425 PPC::isSplatShuffleMask(SVOp, 2) ||
7426 PPC::isSplatShuffleMask(SVOp, 4) ||
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00007427 PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) ||
7428 PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) ||
Bill Schmidt42a69362014-08-05 20:47:25 +00007429 PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00007430 PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) ||
7431 PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) ||
7432 PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) ||
7433 PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) ||
7434 PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) ||
Kit Barton13894c72015-06-25 15:17:40 +00007435 PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG) ||
Hal Finkel77c8b7f2015-09-02 16:52:37 +00007436 (Subtarget.hasP8Altivec() && (
7437 PPC::isVPKUDUMShuffleMask(SVOp, 1, DAG) ||
7438 PPC::isVMRGEOShuffleMask(SVOp, true, 1, DAG) ||
7439 PPC::isVMRGEOShuffleMask(SVOp, false, 1, DAG)))) {
Chris Lattner19e90552006-04-14 05:19:18 +00007440 return Op;
7441 }
7442 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007443
Chris Lattner19e90552006-04-14 05:19:18 +00007444 // Altivec has a variety of "shuffle immediates" that take two vector inputs
7445 // and produce a fixed permutation. If any of these match, do not lower to
7446 // VPERM.
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00007447 unsigned int ShuffleKind = isLittleEndian ? 2 : 0;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00007448 if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7449 PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) ||
Bill Schmidt42a69362014-08-05 20:47:25 +00007450 PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00007451 PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
7452 PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
7453 PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
7454 PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
7455 PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
Kit Barton13894c72015-06-25 15:17:40 +00007456 PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
Hal Finkel77c8b7f2015-09-02 16:52:37 +00007457 (Subtarget.hasP8Altivec() && (
7458 PPC::isVPKUDUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7459 PPC::isVMRGEOShuffleMask(SVOp, true, ShuffleKind, DAG) ||
7460 PPC::isVMRGEOShuffleMask(SVOp, false, ShuffleKind, DAG))))
Chris Lattner19e90552006-04-14 05:19:18 +00007461 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007462
Chris Lattner071ad012006-04-17 05:28:54 +00007463 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
7464 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramer339ced42012-01-15 13:16:05 +00007465 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peck527da1b2010-11-23 03:31:01 +00007466
Chris Lattner071ad012006-04-17 05:28:54 +00007467 unsigned PFIndexes[4];
7468 bool isFourElementShuffle = true;
7469 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
7470 unsigned EltNo = 8; // Start out undef.
7471 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007472 if (PermMask[i*4+j] < 0)
Chris Lattner071ad012006-04-17 05:28:54 +00007473 continue; // Undef, ignore it.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007474
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007475 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner071ad012006-04-17 05:28:54 +00007476 if ((ByteSource & 3) != j) {
7477 isFourElementShuffle = false;
7478 break;
7479 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007480
Chris Lattner071ad012006-04-17 05:28:54 +00007481 if (EltNo == 8) {
7482 EltNo = ByteSource/4;
7483 } else if (EltNo != ByteSource/4) {
7484 isFourElementShuffle = false;
7485 break;
7486 }
7487 }
7488 PFIndexes[i] = EltNo;
7489 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007490
7491 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner071ad012006-04-17 05:28:54 +00007492 // perfect shuffle vector to determine if it is cost effective to do this as
7493 // discrete instructions, or whether we should use a vperm.
Bill Schmidtf910a062014-06-10 14:35:01 +00007494 // For now, we skip this for little endian until such time as we have a
7495 // little-endian perfect shuffle table.
7496 if (isFourElementShuffle && !isLittleEndian) {
Chris Lattner071ad012006-04-17 05:28:54 +00007497 // Compute the index in the perfect shuffle table.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007498 unsigned PFTableIndex =
Chris Lattner071ad012006-04-17 05:28:54 +00007499 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelcf0da6c2009-02-17 22:15:04 +00007500
Chris Lattner071ad012006-04-17 05:28:54 +00007501 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
7502 unsigned Cost = (PFEntry >> 30);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007503
Chris Lattner071ad012006-04-17 05:28:54 +00007504 // Determining when to avoid vperm is tricky. Many things affect the cost
7505 // of vperm, particularly how many times the perm mask needs to be computed.
7506 // For example, if the perm mask can be hoisted out of a loop or is already
7507 // used (perhaps because there are multiple permutes with the same shuffle
7508 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
7509 // the loop requires an extra register.
7510 //
7511 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelcf0da6c2009-02-17 22:15:04 +00007512 // generated in 3 or fewer operations. When we have loop information
Chris Lattner071ad012006-04-17 05:28:54 +00007513 // available, if this block is within a loop, we should avoid using vperm
7514 // for 3-operation perms and use a constant pool load instead.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007515 if (Cost < 3)
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00007516 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00007517 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007518
Chris Lattner19e90552006-04-14 05:19:18 +00007519 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
7520 // vector that will get spilled to the constant pool.
Sanjay Patel57195842016-03-14 17:28:46 +00007521 if (V2.isUndef()) V2 = V1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007522
Chris Lattner19e90552006-04-14 05:19:18 +00007523 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
7524 // that it is in input element units, not in bytes. Convert now.
Bill Schmidt4aedff82014-06-06 14:06:26 +00007525
7526 // For little endian, the order of the input vectors is reversed, and
7527 // the permutation mask is complemented with respect to 31. This is
7528 // necessary to produce proper semantics with the big-endian-biased vperm
7529 // instruction.
Owen Anderson53aa7a92009-08-10 22:56:29 +00007530 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands13237ac2008-06-06 12:08:01 +00007531 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007532
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007533 SmallVector<SDValue, 16> ResultMask;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00007534 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
7535 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelcf0da6c2009-02-17 22:15:04 +00007536
Chris Lattner19e90552006-04-14 05:19:18 +00007537 for (unsigned j = 0; j != BytesPerElement; ++j)
Bill Schmidt4aedff82014-06-06 14:06:26 +00007538 if (isLittleEndian)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007539 ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement + j),
7540 dl, MVT::i32));
Bill Schmidt4aedff82014-06-06 14:06:26 +00007541 else
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007542 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement + j, dl,
Bill Schmidt4aedff82014-06-06 14:06:26 +00007543 MVT::i32));
Chris Lattner19e90552006-04-14 05:19:18 +00007544 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007545
Owen Anderson9f944592009-08-11 20:47:22 +00007546 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Craig Topper48d114b2014-04-26 18:35:24 +00007547 ResultMask);
Bill Schmidt4aedff82014-06-06 14:06:26 +00007548 if (isLittleEndian)
7549 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
7550 V2, V1, VPermMask);
7551 else
7552 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
7553 V1, V2, VPermMask);
Chris Lattner19e90552006-04-14 05:19:18 +00007554}
7555
Nemanja Ivanovic2c84b292015-09-29 17:41:53 +00007556/// getVectorCompareInfo - Given an intrinsic, return false if it is not a
7557/// vector comparison. If it is, return true and fill in Opc/isDot with
Chris Lattner9754d142006-04-18 17:59:36 +00007558/// information about the intrinsic.
Nemanja Ivanovic2c84b292015-09-29 17:41:53 +00007559static bool getVectorCompareInfo(SDValue Intrin, int &CompareOpc,
7560 bool &isDot, const PPCSubtarget &Subtarget) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00007561 unsigned IntrinsicID =
7562 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00007563 CompareOpc = -1;
7564 isDot = false;
7565 switch (IntrinsicID) {
7566 default: return false;
7567 // Comparison predicates.
Chris Lattner4211ca92006-04-14 06:01:58 +00007568 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
7569 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
7570 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
7571 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
7572 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00007573 case Intrinsic::ppc_altivec_vcmpequd_p:
Kit Barton0cfa7b72015-03-03 19:55:45 +00007574 if (Subtarget.hasP8Altivec()) {
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00007575 CompareOpc = 199;
7576 isDot = 1;
7577 } else
Kit Barton0cfa7b72015-03-03 19:55:45 +00007578 return false;
7579
7580 break;
Chris Lattner4211ca92006-04-14 06:01:58 +00007581 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
7582 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
7583 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
7584 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
7585 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00007586 case Intrinsic::ppc_altivec_vcmpgtsd_p:
Kit Barton0cfa7b72015-03-03 19:55:45 +00007587 if (Subtarget.hasP8Altivec()) {
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00007588 CompareOpc = 967;
7589 isDot = 1;
7590 } else
Kit Barton0cfa7b72015-03-03 19:55:45 +00007591 return false;
7592
7593 break;
Chris Lattner4211ca92006-04-14 06:01:58 +00007594 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
7595 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
7596 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00007597 case Intrinsic::ppc_altivec_vcmpgtud_p:
Kit Barton0cfa7b72015-03-03 19:55:45 +00007598 if (Subtarget.hasP8Altivec()) {
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00007599 CompareOpc = 711;
7600 isDot = 1;
7601 } else
Kit Barton0cfa7b72015-03-03 19:55:45 +00007602 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007603
Kit Barton0cfa7b72015-03-03 19:55:45 +00007604 break;
Nemanja Ivanovic2c84b292015-09-29 17:41:53 +00007605 // VSX predicate comparisons use the same infrastructure
7606 case Intrinsic::ppc_vsx_xvcmpeqdp_p:
7607 case Intrinsic::ppc_vsx_xvcmpgedp_p:
7608 case Intrinsic::ppc_vsx_xvcmpgtdp_p:
7609 case Intrinsic::ppc_vsx_xvcmpeqsp_p:
7610 case Intrinsic::ppc_vsx_xvcmpgesp_p:
7611 case Intrinsic::ppc_vsx_xvcmpgtsp_p:
7612 if (Subtarget.hasVSX()) {
7613 switch (IntrinsicID) {
7614 case Intrinsic::ppc_vsx_xvcmpeqdp_p: CompareOpc = 99; break;
7615 case Intrinsic::ppc_vsx_xvcmpgedp_p: CompareOpc = 115; break;
7616 case Intrinsic::ppc_vsx_xvcmpgtdp_p: CompareOpc = 107; break;
7617 case Intrinsic::ppc_vsx_xvcmpeqsp_p: CompareOpc = 67; break;
7618 case Intrinsic::ppc_vsx_xvcmpgesp_p: CompareOpc = 83; break;
7619 case Intrinsic::ppc_vsx_xvcmpgtsp_p: CompareOpc = 75; break;
7620 }
7621 isDot = 1;
7622 }
7623 else
7624 return false;
7625
7626 break;
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00007627
Chris Lattner4211ca92006-04-14 06:01:58 +00007628 // Normal Comparisons.
7629 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
7630 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
7631 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
7632 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
7633 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
Kit Barton0cfa7b72015-03-03 19:55:45 +00007634 case Intrinsic::ppc_altivec_vcmpequd:
7635 if (Subtarget.hasP8Altivec()) {
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00007636 CompareOpc = 199;
7637 isDot = 0;
7638 } else
Kit Barton0cfa7b72015-03-03 19:55:45 +00007639 return false;
7640
7641 break;
Chris Lattner4211ca92006-04-14 06:01:58 +00007642 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
7643 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
7644 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
7645 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
7646 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00007647 case Intrinsic::ppc_altivec_vcmpgtsd:
Kit Barton0cfa7b72015-03-03 19:55:45 +00007648 if (Subtarget.hasP8Altivec()) {
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00007649 CompareOpc = 967;
7650 isDot = 0;
7651 } else
Kit Barton0cfa7b72015-03-03 19:55:45 +00007652 return false;
7653
7654 break;
Chris Lattner4211ca92006-04-14 06:01:58 +00007655 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
7656 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
7657 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00007658 case Intrinsic::ppc_altivec_vcmpgtud:
Kit Barton0cfa7b72015-03-03 19:55:45 +00007659 if (Subtarget.hasP8Altivec()) {
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00007660 CompareOpc = 711;
7661 isDot = 0;
7662 } else
Kit Barton0cfa7b72015-03-03 19:55:45 +00007663 return false;
7664
7665 break;
Chris Lattner4211ca92006-04-14 06:01:58 +00007666 }
Chris Lattner9754d142006-04-18 17:59:36 +00007667 return true;
7668}
7669
7670/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
7671/// lower, do it, otherwise return null.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007672SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00007673 SelectionDAG &DAG) const {
Chris Lattner9754d142006-04-18 17:59:36 +00007674 // If this is a lowered altivec predicate compare, CompareOpc is set to the
7675 // opcode number of the comparison.
Andrew Trickef9de2a2013-05-25 02:42:55 +00007676 SDLoc dl(Op);
Chris Lattner9754d142006-04-18 17:59:36 +00007677 int CompareOpc;
7678 bool isDot;
Nemanja Ivanovic2c84b292015-09-29 17:41:53 +00007679 if (!getVectorCompareInfo(Op, CompareOpc, isDot, Subtarget))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007680 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007681
Chris Lattner9754d142006-04-18 17:59:36 +00007682 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner4211ca92006-04-14 06:01:58 +00007683 if (!isDot) {
Dale Johannesenf80493b2009-02-05 22:07:54 +00007684 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner9fa851b2010-03-14 22:44:11 +00007685 Op.getOperand(1), Op.getOperand(2),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007686 DAG.getConstant(CompareOpc, dl, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00007687 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner4211ca92006-04-14 06:01:58 +00007688 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007689
Chris Lattner4211ca92006-04-14 06:01:58 +00007690 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007691 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007692 Op.getOperand(2), // LHS
7693 Op.getOperand(3), // RHS
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007694 DAG.getConstant(CompareOpc, dl, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007695 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00007696 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +00007697 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007698
Chris Lattner4211ca92006-04-14 06:01:58 +00007699 // Now that we have the comparison, emit a copy from the CR to a GPR.
7700 // This is flagged to the above dot comparison.
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00007701 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
Owen Anderson9f944592009-08-11 20:47:22 +00007702 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelcf0da6c2009-02-17 22:15:04 +00007703 CompNode.getValue(1));
7704
Chris Lattner4211ca92006-04-14 06:01:58 +00007705 // Unpack the result based on how the target uses it.
7706 unsigned BitNo; // Bit # of CR6.
7707 bool InvertBit; // Invert result?
Dan Gohmaneffb8942008-09-12 16:56:44 +00007708 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner4211ca92006-04-14 06:01:58 +00007709 default: // Can't happen, don't crash on invalid number though.
7710 case 0: // Return the value of the EQ bit of CR6.
7711 BitNo = 0; InvertBit = false;
7712 break;
7713 case 1: // Return the inverted value of the EQ bit of CR6.
7714 BitNo = 0; InvertBit = true;
7715 break;
7716 case 2: // Return the value of the LT bit of CR6.
7717 BitNo = 2; InvertBit = false;
7718 break;
7719 case 3: // Return the inverted value of the LT bit of CR6.
7720 BitNo = 2; InvertBit = true;
7721 break;
7722 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007723
Chris Lattner4211ca92006-04-14 06:01:58 +00007724 // Shift the bit into the low position.
Owen Anderson9f944592009-08-11 20:47:22 +00007725 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007726 DAG.getConstant(8 - (3 - BitNo), dl, MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00007727 // Isolate the bit.
Owen Anderson9f944592009-08-11 20:47:22 +00007728 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007729 DAG.getConstant(1, dl, MVT::i32));
Scott Michelcf0da6c2009-02-17 22:15:04 +00007730
Chris Lattner4211ca92006-04-14 06:01:58 +00007731 // If we are supposed to, toggle the bit.
7732 if (InvertBit)
Owen Anderson9f944592009-08-11 20:47:22 +00007733 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007734 DAG.getConstant(1, dl, MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00007735 return Flags;
7736}
7737
Hal Finkel5c0d1452014-03-30 13:22:59 +00007738SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
7739 SelectionDAG &DAG) const {
7740 SDLoc dl(Op);
7741 // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int
7742 // instructions), but for smaller types, we need to first extend up to v2i32
7743 // before doing going farther.
7744 if (Op.getValueType() == MVT::v2i64) {
7745 EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
7746 if (ExtVT != MVT::v2i32) {
7747 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0));
7748 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op,
7749 DAG.getValueType(EVT::getVectorVT(*DAG.getContext(),
7750 ExtVT.getVectorElementType(), 4)));
7751 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op);
7752 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op,
7753 DAG.getValueType(MVT::v2i32));
7754 }
7755
7756 return Op;
7757 }
7758
7759 return SDValue();
7760}
7761
Scott Michelcf0da6c2009-02-17 22:15:04 +00007762SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00007763 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007764 SDLoc dl(Op);
Chris Lattner4211ca92006-04-14 06:01:58 +00007765 // Create a stack slot that is 16-byte aligned.
7766 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00007767 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Mehdi Amini44ede332015-07-09 02:09:04 +00007768 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007769 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007770
Chris Lattner4211ca92006-04-14 06:01:58 +00007771 // Store the input value into Value#0 of the stack slot.
Dale Johannesen021052a2009-02-04 20:06:27 +00007772 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00007773 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00007774 false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00007775 // Load it out.
Chris Lattner7727d052010-09-21 06:44:06 +00007776 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00007777 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00007778}
7779
Hal Finkelc93a9a22015-02-25 01:06:45 +00007780SDValue PPCTargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7781 SelectionDAG &DAG) const {
7782 SDLoc dl(Op);
7783 SDNode *N = Op.getNode();
7784
7785 assert(N->getOperand(0).getValueType() == MVT::v4i1 &&
7786 "Unknown extract_vector_elt type");
7787
7788 SDValue Value = N->getOperand(0);
7789
7790 // The first part of this is like the store lowering except that we don't
7791 // need to track the chain.
7792
7793 // The values are now known to be -1 (false) or 1 (true). To convert this
7794 // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
7795 // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
7796 Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
7797
7798 // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to
7799 // understand how to form the extending load.
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00007800 SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64);
Hal Finkelc93a9a22015-02-25 01:06:45 +00007801
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00007802 Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs);
Hal Finkelc93a9a22015-02-25 01:06:45 +00007803
7804 // Now convert to an integer and store.
7805 Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007806 DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32),
Hal Finkelc93a9a22015-02-25 01:06:45 +00007807 Value);
7808
7809 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7810 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Alex Lorenze40c8a22015-08-11 23:09:45 +00007811 MachinePointerInfo PtrInfo =
7812 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
Mehdi Amini44ede332015-07-09 02:09:04 +00007813 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Hal Finkelc93a9a22015-02-25 01:06:45 +00007814 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7815
7816 SDValue StoreChain = DAG.getEntryNode();
7817 SmallVector<SDValue, 2> Ops;
7818 Ops.push_back(StoreChain);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007819 Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007820 Ops.push_back(Value);
7821 Ops.push_back(FIdx);
7822
7823 SmallVector<EVT, 2> ValueVTs;
7824 ValueVTs.push_back(MVT::Other); // chain
7825 SDVTList VTs = DAG.getVTList(ValueVTs);
7826
7827 StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID,
7828 dl, VTs, Ops, MVT::v4i32, PtrInfo);
7829
7830 // Extract the value requested.
7831 unsigned Offset = 4*cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007832 SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
Hal Finkelc93a9a22015-02-25 01:06:45 +00007833 Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
7834
7835 SDValue IntVal = DAG.getLoad(MVT::i32, dl, StoreChain, Idx,
7836 PtrInfo.getWithOffset(Offset),
7837 false, false, false, 0);
7838
7839 if (!Subtarget.useCRBits())
7840 return IntVal;
7841
7842 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, IntVal);
7843}
7844
7845/// Lowering for QPX v4i1 loads
7846SDValue PPCTargetLowering::LowerVectorLoad(SDValue Op,
7847 SelectionDAG &DAG) const {
7848 SDLoc dl(Op);
7849 LoadSDNode *LN = cast<LoadSDNode>(Op.getNode());
7850 SDValue LoadChain = LN->getChain();
7851 SDValue BasePtr = LN->getBasePtr();
7852
7853 if (Op.getValueType() == MVT::v4f64 ||
7854 Op.getValueType() == MVT::v4f32) {
7855 EVT MemVT = LN->getMemoryVT();
7856 unsigned Alignment = LN->getAlignment();
7857
7858 // If this load is properly aligned, then it is legal.
7859 if (Alignment >= MemVT.getStoreSize())
7860 return Op;
7861
7862 EVT ScalarVT = Op.getValueType().getScalarType(),
7863 ScalarMemVT = MemVT.getScalarType();
7864 unsigned Stride = ScalarMemVT.getStoreSize();
7865
7866 SmallVector<SDValue, 8> Vals, LoadChains;
7867 for (unsigned Idx = 0; Idx < 4; ++Idx) {
7868 SDValue Load;
7869 if (ScalarVT != ScalarMemVT)
7870 Load =
7871 DAG.getExtLoad(LN->getExtensionType(), dl, ScalarVT, LoadChain,
7872 BasePtr,
7873 LN->getPointerInfo().getWithOffset(Idx*Stride),
7874 ScalarMemVT, LN->isVolatile(), LN->isNonTemporal(),
7875 LN->isInvariant(), MinAlign(Alignment, Idx*Stride),
7876 LN->getAAInfo());
7877 else
7878 Load =
7879 DAG.getLoad(ScalarVT, dl, LoadChain, BasePtr,
7880 LN->getPointerInfo().getWithOffset(Idx*Stride),
7881 LN->isVolatile(), LN->isNonTemporal(),
7882 LN->isInvariant(), MinAlign(Alignment, Idx*Stride),
7883 LN->getAAInfo());
7884
7885 if (Idx == 0 && LN->isIndexed()) {
7886 assert(LN->getAddressingMode() == ISD::PRE_INC &&
7887 "Unknown addressing mode on vector load");
7888 Load = DAG.getIndexedLoad(Load, dl, BasePtr, LN->getOffset(),
7889 LN->getAddressingMode());
7890 }
7891
7892 Vals.push_back(Load);
7893 LoadChains.push_back(Load.getValue(1));
7894
7895 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007896 DAG.getConstant(Stride, dl,
7897 BasePtr.getValueType()));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007898 }
7899
7900 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
7901 SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007902 Op.getValueType(), Vals);
Hal Finkelc93a9a22015-02-25 01:06:45 +00007903
7904 if (LN->isIndexed()) {
7905 SDValue RetOps[] = { Value, Vals[0].getValue(1), TF };
7906 return DAG.getMergeValues(RetOps, dl);
7907 }
7908
7909 SDValue RetOps[] = { Value, TF };
7910 return DAG.getMergeValues(RetOps, dl);
7911 }
7912
7913 assert(Op.getValueType() == MVT::v4i1 && "Unknown load to lower");
7914 assert(LN->isUnindexed() && "Indexed v4i1 loads are not supported");
7915
7916 // To lower v4i1 from a byte array, we load the byte elements of the
7917 // vector and then reuse the BUILD_VECTOR logic.
7918
7919 SmallVector<SDValue, 4> VectElmts, VectElmtChains;
7920 for (unsigned i = 0; i < 4; ++i) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007921 SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType());
Hal Finkelc93a9a22015-02-25 01:06:45 +00007922 Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx);
7923
7924 VectElmts.push_back(DAG.getExtLoad(ISD::EXTLOAD,
7925 dl, MVT::i32, LoadChain, Idx,
7926 LN->getPointerInfo().getWithOffset(i),
7927 MVT::i8 /* memory type */,
7928 LN->isVolatile(), LN->isNonTemporal(),
7929 LN->isInvariant(),
7930 1 /* alignment */, LN->getAAInfo()));
7931 VectElmtChains.push_back(VectElmts[i].getValue(1));
7932 }
7933
7934 LoadChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, VectElmtChains);
7935 SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i1, VectElmts);
7936
7937 SDValue RVals[] = { Value, LoadChain };
7938 return DAG.getMergeValues(RVals, dl);
7939}
7940
7941/// Lowering for QPX v4i1 stores
7942SDValue PPCTargetLowering::LowerVectorStore(SDValue Op,
7943 SelectionDAG &DAG) const {
7944 SDLoc dl(Op);
7945 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode());
7946 SDValue StoreChain = SN->getChain();
7947 SDValue BasePtr = SN->getBasePtr();
7948 SDValue Value = SN->getValue();
7949
7950 if (Value.getValueType() == MVT::v4f64 ||
7951 Value.getValueType() == MVT::v4f32) {
7952 EVT MemVT = SN->getMemoryVT();
7953 unsigned Alignment = SN->getAlignment();
7954
7955 // If this store is properly aligned, then it is legal.
7956 if (Alignment >= MemVT.getStoreSize())
7957 return Op;
7958
7959 EVT ScalarVT = Value.getValueType().getScalarType(),
7960 ScalarMemVT = MemVT.getScalarType();
7961 unsigned Stride = ScalarMemVT.getStoreSize();
7962
7963 SmallVector<SDValue, 8> Stores;
7964 for (unsigned Idx = 0; Idx < 4; ++Idx) {
Mehdi Amini44ede332015-07-09 02:09:04 +00007965 SDValue Ex = DAG.getNode(
7966 ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, Value,
7967 DAG.getConstant(Idx, dl, getVectorIdxTy(DAG.getDataLayout())));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007968 SDValue Store;
7969 if (ScalarVT != ScalarMemVT)
7970 Store =
7971 DAG.getTruncStore(StoreChain, dl, Ex, BasePtr,
7972 SN->getPointerInfo().getWithOffset(Idx*Stride),
7973 ScalarMemVT, SN->isVolatile(), SN->isNonTemporal(),
7974 MinAlign(Alignment, Idx*Stride), SN->getAAInfo());
7975 else
7976 Store =
7977 DAG.getStore(StoreChain, dl, Ex, BasePtr,
7978 SN->getPointerInfo().getWithOffset(Idx*Stride),
7979 SN->isVolatile(), SN->isNonTemporal(),
7980 MinAlign(Alignment, Idx*Stride), SN->getAAInfo());
7981
7982 if (Idx == 0 && SN->isIndexed()) {
7983 assert(SN->getAddressingMode() == ISD::PRE_INC &&
7984 "Unknown addressing mode on vector store");
7985 Store = DAG.getIndexedStore(Store, dl, BasePtr, SN->getOffset(),
7986 SN->getAddressingMode());
7987 }
7988
7989 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00007990 DAG.getConstant(Stride, dl,
7991 BasePtr.getValueType()));
Hal Finkelc93a9a22015-02-25 01:06:45 +00007992 Stores.push_back(Store);
7993 }
7994
7995 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
7996
7997 if (SN->isIndexed()) {
7998 SDValue RetOps[] = { TF, Stores[0].getValue(1) };
7999 return DAG.getMergeValues(RetOps, dl);
8000 }
8001
8002 return TF;
8003 }
8004
8005 assert(SN->isUnindexed() && "Indexed v4i1 stores are not supported");
8006 assert(Value.getValueType() == MVT::v4i1 && "Unknown store to lower");
8007
8008 // The values are now known to be -1 (false) or 1 (true). To convert this
8009 // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
8010 // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
8011 Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
8012
8013 // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to
8014 // understand how to form the extending load.
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00008015 SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64);
Hal Finkelc93a9a22015-02-25 01:06:45 +00008016
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00008017 Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs);
Hal Finkelc93a9a22015-02-25 01:06:45 +00008018
8019 // Now convert to an integer and store.
8020 Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008021 DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32),
Hal Finkelc93a9a22015-02-25 01:06:45 +00008022 Value);
8023
8024 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
8025 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Alex Lorenze40c8a22015-08-11 23:09:45 +00008026 MachinePointerInfo PtrInfo =
8027 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
Mehdi Amini44ede332015-07-09 02:09:04 +00008028 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Hal Finkelc93a9a22015-02-25 01:06:45 +00008029 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
8030
8031 SmallVector<SDValue, 2> Ops;
8032 Ops.push_back(StoreChain);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008033 Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32));
Hal Finkelc93a9a22015-02-25 01:06:45 +00008034 Ops.push_back(Value);
8035 Ops.push_back(FIdx);
8036
8037 SmallVector<EVT, 2> ValueVTs;
8038 ValueVTs.push_back(MVT::Other); // chain
8039 SDVTList VTs = DAG.getVTList(ValueVTs);
8040
8041 StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID,
8042 dl, VTs, Ops, MVT::v4i32, PtrInfo);
8043
8044 // Move data into the byte array.
8045 SmallVector<SDValue, 4> Loads, LoadChains;
8046 for (unsigned i = 0; i < 4; ++i) {
8047 unsigned Offset = 4*i;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008048 SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
Hal Finkelc93a9a22015-02-25 01:06:45 +00008049 Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
8050
8051 Loads.push_back(DAG.getLoad(MVT::i32, dl, StoreChain, Idx,
8052 PtrInfo.getWithOffset(Offset),
8053 false, false, false, 0));
8054 LoadChains.push_back(Loads[i].getValue(1));
8055 }
8056
8057 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
8058
8059 SmallVector<SDValue, 4> Stores;
8060 for (unsigned i = 0; i < 4; ++i) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008061 SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType());
Hal Finkelc93a9a22015-02-25 01:06:45 +00008062 Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx);
8063
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00008064 Stores.push_back(DAG.getTruncStore(
8065 StoreChain, dl, Loads[i], Idx, SN->getPointerInfo().getWithOffset(i),
8066 MVT::i8 /* memory type */, SN->isNonTemporal(), SN->isVolatile(),
8067 1 /* alignment */, SN->getAAInfo()));
Hal Finkelc93a9a22015-02-25 01:06:45 +00008068 }
8069
8070 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
8071
8072 return StoreChain;
8073}
8074
Dan Gohman21cea8a2010-04-17 15:26:15 +00008075SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00008076 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00008077 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008078 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008079
Owen Anderson9f944592009-08-11 20:47:22 +00008080 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
8081 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelcf0da6c2009-02-17 22:15:04 +00008082
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008083 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00008084 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008085
Chris Lattner7e4398742006-04-18 03:43:48 +00008086 // Shrinkify inputs to v8i16.
Wesley Peck527da1b2010-11-23 03:31:01 +00008087 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
8088 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
8089 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008090
Chris Lattner7e4398742006-04-18 03:43:48 +00008091 // Low parts multiplied together, generating 32-bit results (we ignore the
8092 // top parts).
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008093 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson9f944592009-08-11 20:47:22 +00008094 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008095
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008096 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson9f944592009-08-11 20:47:22 +00008097 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner7e4398742006-04-18 03:43:48 +00008098 // Shift the high parts up 16 bits.
Scott Michelcf0da6c2009-02-17 22:15:04 +00008099 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00008100 Neg16, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00008101 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
8102 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008103 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008104
Owen Anderson9f944592009-08-11 20:47:22 +00008105 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner7e4398742006-04-18 03:43:48 +00008106
Chris Lattner96d50482006-04-18 04:28:57 +00008107 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00008108 LHS, RHS, Zero, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00008109 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008110 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008111 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00008112
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00008113 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008114 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson9f944592009-08-11 20:47:22 +00008115 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00008116 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008117
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00008118 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008119 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson9f944592009-08-11 20:47:22 +00008120 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00008121 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008122
Bill Schmidt42995e82014-06-09 16:06:29 +00008123 // Merge the results together. Because vmuleub and vmuloub are
8124 // instructions with a big-endian bias, we must reverse the
8125 // element numbering and reverse the meaning of "odd" and "even"
8126 // when generating little endian code.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00008127 int Ops[16];
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00008128 for (unsigned i = 0; i != 8; ++i) {
Bill Schmidt42995e82014-06-09 16:06:29 +00008129 if (isLittleEndian) {
8130 Ops[i*2 ] = 2*i;
8131 Ops[i*2+1] = 2*i+16;
8132 } else {
8133 Ops[i*2 ] = 2*i+1;
8134 Ops[i*2+1] = 2*i+1+16;
8135 }
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00008136 }
Bill Schmidt42995e82014-06-09 16:06:29 +00008137 if (isLittleEndian)
8138 return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops);
8139 else
8140 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner7e4398742006-04-18 03:43:48 +00008141 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00008142 llvm_unreachable("Unknown mul to lower!");
Chris Lattner7e4398742006-04-18 03:43:48 +00008143 }
Chris Lattnera2cae1b2006-04-18 03:24:30 +00008144}
8145
Chris Lattnerf3d06c62005-08-26 00:52:45 +00008146/// LowerOperation - Provide custom lowering hooks for some operations.
8147///
Dan Gohman21cea8a2010-04-17 15:26:15 +00008148SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerf3d06c62005-08-26 00:52:45 +00008149 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00008150 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner4211ca92006-04-14 06:01:58 +00008151 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00008152 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00008153 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackye3f15c982012-06-04 17:36:38 +00008154 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00008155 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00008156 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sandsa0984362011-09-06 13:37:06 +00008157 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
8158 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008159 case ISD::VASTART:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008160 return LowerVASTART(Op, DAG, Subtarget);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008161
8162 case ISD::VAARG:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008163 return LowerVAARG(Op, DAG, Subtarget);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00008164
Roman Divackyc3825df2013-07-25 21:36:47 +00008165 case ISD::VACOPY:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008166 return LowerVACOPY(Op, DAG, Subtarget);
Roman Divackyc3825df2013-07-25 21:36:47 +00008167
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008168 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, Subtarget);
Chris Lattner43df5b32007-02-25 05:34:32 +00008169 case ISD::DYNAMIC_STACKALLOC:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008170 return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget);
Yury Gribovd7dbb662015-12-01 11:40:55 +00008171 case ISD::GET_DYNAMIC_AREA_OFFSET: return LowerGET_DYNAMIC_AREA_OFFSET(Op, DAG, Subtarget);
Evan Cheng51096af2008-04-19 01:30:48 +00008172
Hal Finkel756810f2013-03-21 21:37:52 +00008173 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
8174 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
8175
Hal Finkel940ab932014-02-28 00:27:01 +00008176 case ISD::LOAD: return LowerLOAD(Op, DAG);
8177 case ISD::STORE: return LowerSTORE(Op, DAG);
8178 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00008179 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen37bc85f2009-06-04 20:53:52 +00008180 case ISD::FP_TO_UINT:
8181 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Hal Finkeled844c42015-01-06 22:31:02 +00008182 SDLoc(Op));
Hal Finkelf6d45f22013-04-01 17:52:07 +00008183 case ISD::UINT_TO_FP:
8184 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman9ba4d762008-01-31 00:41:03 +00008185 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00008186
Chris Lattner4211ca92006-04-14 06:01:58 +00008187 // Lower 64-bit shifts.
Chris Lattner601b8652006-09-20 03:47:40 +00008188 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
8189 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
8190 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00008191
Chris Lattner4211ca92006-04-14 06:01:58 +00008192 // Vector-related lowering.
8193 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
8194 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8195 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
8196 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Hal Finkel5c0d1452014-03-30 13:22:59 +00008197 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
Hal Finkelc93a9a22015-02-25 01:06:45 +00008198 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00008199 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008200
Hal Finkel25c19922013-05-15 21:37:41 +00008201 // For counter-based loop handling.
8202 case ISD::INTRINSIC_W_CHAIN: return SDValue();
8203
Chris Lattnerf6a81562007-12-08 06:59:59 +00008204 // Frame & Return address.
8205 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00008206 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnere675a082005-08-31 20:23:54 +00008207 }
Chris Lattnerf3d06c62005-08-26 00:52:45 +00008208}
8209
Duncan Sands6ed40142008-12-01 11:39:25 +00008210void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
8211 SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00008212 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00008213 SDLoc dl(N);
Chris Lattner57ee7c62007-11-28 18:44:47 +00008214 switch (N->getOpcode()) {
Duncan Sands4068a7f2008-10-28 15:00:32 +00008215 default:
Craig Toppere55c5562012-02-07 02:50:20 +00008216 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkelbbdee932014-12-02 22:01:00 +00008217 case ISD::READCYCLECOUNTER: {
8218 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
8219 SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0));
8220
8221 Results.push_back(RTB);
8222 Results.push_back(RTB.getValue(1));
8223 Results.push_back(RTB.getValue(2));
8224 break;
8225 }
Hal Finkel25c19922013-05-15 21:37:41 +00008226 case ISD::INTRINSIC_W_CHAIN: {
8227 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
8228 Intrinsic::ppc_is_decremented_ctr_nonzero)
8229 break;
8230
8231 assert(N->getValueType(0) == MVT::i1 &&
8232 "Unexpected result type for CTR decrement intrinsic");
Mehdi Amini44ede332015-07-09 02:09:04 +00008233 EVT SVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
8234 N->getValueType(0));
Hal Finkel25c19922013-05-15 21:37:41 +00008235 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
8236 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00008237 N->getOperand(1));
Hal Finkel25c19922013-05-15 21:37:41 +00008238
8239 Results.push_back(NewInt);
8240 Results.push_back(NewInt.getValue(1));
8241 break;
8242 }
Roman Divacky4394e682011-06-28 15:30:42 +00008243 case ISD::VAARG: {
Eric Christophercccae792015-01-30 22:02:31 +00008244 if (!Subtarget.isSVR4ABI() || Subtarget.isPPC64())
Roman Divacky4394e682011-06-28 15:30:42 +00008245 return;
8246
8247 EVT VT = N->getValueType(0);
8248
8249 if (VT == MVT::i64) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008250 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget);
Roman Divacky4394e682011-06-28 15:30:42 +00008251
8252 Results.push_back(NewNode);
8253 Results.push_back(NewNode.getValue(1));
8254 }
8255 return;
8256 }
Duncan Sands6ed40142008-12-01 11:39:25 +00008257 case ISD::FP_ROUND_INREG: {
Owen Anderson9f944592009-08-11 20:47:22 +00008258 assert(N->getValueType(0) == MVT::ppcf128);
8259 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008260 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00008261 MVT::f64, N->getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008262 DAG.getIntPtrConstant(0, dl));
Dale Johannesenf80493b2009-02-05 22:07:54 +00008263 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00008264 MVT::f64, N->getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008265 DAG.getIntPtrConstant(1, dl));
Duncan Sands6ed40142008-12-01 11:39:25 +00008266
Ulrich Weigand874fc622013-03-26 10:56:22 +00008267 // Add the two halves of the long double in round-to-zero mode.
8268 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands6ed40142008-12-01 11:39:25 +00008269
8270 // We know the low half is about to be thrown away, so just use something
8271 // convenient.
Owen Anderson9f944592009-08-11 20:47:22 +00008272 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesenf80493b2009-02-05 22:07:54 +00008273 FPreg, FPreg));
Duncan Sands6ed40142008-12-01 11:39:25 +00008274 return;
Duncan Sands2a287912008-07-19 16:26:02 +00008275 }
Duncan Sands6ed40142008-12-01 11:39:25 +00008276 case ISD::FP_TO_SINT:
Hal Finkel93138502015-04-10 03:39:00 +00008277 case ISD::FP_TO_UINT:
Bill Schmidt41221692013-07-09 18:50:20 +00008278 // LowerFP_TO_INT() can only handle f32 and f64.
8279 if (N->getOperand(0).getValueType() == MVT::ppcf128)
8280 return;
Dale Johannesen37bc85f2009-06-04 20:53:52 +00008281 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands6ed40142008-12-01 11:39:25 +00008282 return;
Chris Lattner57ee7c62007-11-28 18:44:47 +00008283 }
8284}
8285
Chris Lattner4211ca92006-04-14 06:01:58 +00008286//===----------------------------------------------------------------------===//
8287// Other Lowering Code
8288//===----------------------------------------------------------------------===//
8289
Robin Morisset22129962014-09-23 20:46:49 +00008290static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) {
8291 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
8292 Function *Func = Intrinsic::getDeclaration(M, Id);
David Blaikieff6409d2015-05-18 22:13:54 +00008293 return Builder.CreateCall(Func, {});
Robin Morisset22129962014-09-23 20:46:49 +00008294}
8295
8296// The mappings for emitLeading/TrailingFence is taken from
8297// http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
8298Instruction* PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
8299 AtomicOrdering Ord, bool IsStore,
8300 bool IsLoad) const {
8301 if (Ord == SequentiallyConsistent)
8302 return callIntrinsic(Builder, Intrinsic::ppc_sync);
David Blaikieff6409d2015-05-18 22:13:54 +00008303 if (isAtLeastRelease(Ord))
Robin Morisset22129962014-09-23 20:46:49 +00008304 return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
David Blaikieff6409d2015-05-18 22:13:54 +00008305 return nullptr;
Robin Morisset22129962014-09-23 20:46:49 +00008306}
8307
8308Instruction* PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
8309 AtomicOrdering Ord, bool IsStore,
8310 bool IsLoad) const {
8311 if (IsLoad && isAtLeastAcquire(Ord))
8312 return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
8313 // FIXME: this is too conservative, a dependent branch + isync is enough.
8314 // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and
8315 // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
8316 // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification.
David Blaikieff6409d2015-05-18 22:13:54 +00008317 return nullptr;
Robin Morisset22129962014-09-23 20:46:49 +00008318}
8319
Chris Lattner9b577f12005-08-26 21:23:58 +00008320MachineBasicBlock *
Dale Johannesend4eb0522008-08-25 22:34:37 +00008321PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008322 unsigned AtomicSize,
8323 unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008324 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christophercccae792015-01-30 22:02:31 +00008325 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Dale Johannesend4eb0522008-08-25 22:34:37 +00008326
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008327 auto LoadMnemonic = PPC::LDARX;
8328 auto StoreMnemonic = PPC::STDCX;
8329 switch (AtomicSize) {
8330 default:
8331 llvm_unreachable("Unexpected size of atomic entity");
8332 case 1:
8333 LoadMnemonic = PPC::LBARX;
8334 StoreMnemonic = PPC::STBCX;
8335 assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4");
8336 break;
8337 case 2:
8338 LoadMnemonic = PPC::LHARX;
8339 StoreMnemonic = PPC::STHCX;
8340 assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4");
8341 break;
8342 case 4:
8343 LoadMnemonic = PPC::LWARX;
8344 StoreMnemonic = PPC::STWCX;
8345 break;
8346 case 8:
8347 LoadMnemonic = PPC::LDARX;
8348 StoreMnemonic = PPC::STDCX;
8349 break;
8350 }
8351
Dale Johannesend4eb0522008-08-25 22:34:37 +00008352 const BasicBlock *LLVM_BB = BB->getBasicBlock();
8353 MachineFunction *F = BB->getParent();
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00008354 MachineFunction::iterator It = ++BB->getIterator();
Dale Johannesend4eb0522008-08-25 22:34:37 +00008355
8356 unsigned dest = MI->getOperand(0).getReg();
8357 unsigned ptrA = MI->getOperand(1).getReg();
8358 unsigned ptrB = MI->getOperand(2).getReg();
8359 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00008360 DebugLoc dl = MI->getDebugLoc();
Dale Johannesend4eb0522008-08-25 22:34:37 +00008361
8362 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
8363 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8364 F->insert(It, loopMBB);
8365 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00008366 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00008367 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00008368 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008369
8370 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008371 unsigned TmpReg = (!BinOpcode) ? incr :
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008372 RegInfo.createVirtualRegister( AtomicSize == 8 ? &PPC::G8RCRegClass
Craig Topper61e88f42014-11-21 05:58:21 +00008373 : &PPC::GPRCRegClass);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008374
8375 // thisMBB:
8376 // ...
8377 // fallthrough --> loopMBB
8378 BB->addSuccessor(loopMBB);
8379
8380 // loopMBB:
8381 // l[wd]arx dest, ptr
8382 // add r0, dest, incr
8383 // st[wd]cx. r0, ptr
8384 // bne- loopMBB
8385 // fallthrough --> exitMBB
8386 BB = loopMBB;
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008387 BuildMI(BB, dl, TII->get(LoadMnemonic), dest)
Dale Johannesend4eb0522008-08-25 22:34:37 +00008388 .addReg(ptrA).addReg(ptrB);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008389 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00008390 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008391 BuildMI(BB, dl, TII->get(StoreMnemonic))
Dale Johannesend4eb0522008-08-25 22:34:37 +00008392 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008393 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00008394 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008395 BB->addSuccessor(loopMBB);
8396 BB->addSuccessor(exitMBB);
8397
8398 // exitMBB:
8399 // ...
8400 BB = exitMBB;
8401 return BB;
8402}
8403
8404MachineBasicBlock *
Scott Michelcf0da6c2009-02-17 22:15:04 +00008405PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesena32affb2008-08-28 17:53:09 +00008406 MachineBasicBlock *BB,
8407 bool is8bit, // operation
Dan Gohman747e55b2009-02-07 16:15:20 +00008408 unsigned BinOpcode) const {
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008409 // If we support part-word atomic mnemonics, just use them
8410 if (Subtarget.hasPartwordAtomics())
8411 return EmitAtomicBinary(MI, BB, is8bit ? 1 : 2, BinOpcode);
8412
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008413 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christophercccae792015-01-30 22:02:31 +00008414 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Dale Johannesena32affb2008-08-28 17:53:09 +00008415 // In 64 bit mode we have to use 64 bits for addresses, even though the
8416 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
8417 // registers without caring whether they're 32 or 64, but here we're
8418 // doing actual arithmetic on the addresses.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008419 bool is64bit = Subtarget.isPPC64();
Hal Finkelf70c41e2013-03-21 23:45:03 +00008420 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesena32affb2008-08-28 17:53:09 +00008421
8422 const BasicBlock *LLVM_BB = BB->getBasicBlock();
8423 MachineFunction *F = BB->getParent();
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00008424 MachineFunction::iterator It = ++BB->getIterator();
Dale Johannesena32affb2008-08-28 17:53:09 +00008425
8426 unsigned dest = MI->getOperand(0).getReg();
8427 unsigned ptrA = MI->getOperand(1).getReg();
8428 unsigned ptrB = MI->getOperand(2).getReg();
8429 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00008430 DebugLoc dl = MI->getDebugLoc();
Dale Johannesena32affb2008-08-28 17:53:09 +00008431
8432 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
8433 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8434 F->insert(It, loopMBB);
8435 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00008436 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00008437 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00008438 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesena32affb2008-08-28 17:53:09 +00008439
8440 MachineRegisterInfo &RegInfo = F->getRegInfo();
Craig Topper61e88f42014-11-21 05:58:21 +00008441 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
8442 : &PPC::GPRCRegClass;
Dale Johannesena32affb2008-08-28 17:53:09 +00008443 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
8444 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
8445 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
8446 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
8447 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
8448 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
8449 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
8450 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
8451 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
8452 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008453 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00008454 unsigned Ptr1Reg;
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008455 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00008456
8457 // thisMBB:
8458 // ...
8459 // fallthrough --> loopMBB
8460 BB->addSuccessor(loopMBB);
8461
8462 // The 4-byte load must be aligned, while a char or short may be
8463 // anywhere in the word. Hence all this nasty bookkeeping code.
8464 // add ptr1, ptrA, ptrB [copy if ptrA==0]
8465 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00008466 // xori shift, shift1, 24 [16]
Dale Johannesena32affb2008-08-28 17:53:09 +00008467 // rlwinm ptr, ptr1, 0, 0, 29
8468 // slw incr2, incr, shift
8469 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
8470 // slw mask, mask2, shift
8471 // loopMBB:
Dale Johannesen340d2642008-08-30 00:08:53 +00008472 // lwarx tmpDest, ptr
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008473 // add tmp, tmpDest, incr2
8474 // andc tmp2, tmpDest, mask
Dale Johannesena32affb2008-08-28 17:53:09 +00008475 // and tmp3, tmp, mask
8476 // or tmp4, tmp3, tmp2
Dale Johannesen340d2642008-08-30 00:08:53 +00008477 // stwcx. tmp4, ptr
Dale Johannesena32affb2008-08-28 17:53:09 +00008478 // bne- loopMBB
8479 // fallthrough --> exitMBB
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008480 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00008481 if (ptrA != ZeroReg) {
Dale Johannesena32affb2008-08-28 17:53:09 +00008482 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008483 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008484 .addReg(ptrA).addReg(ptrB);
8485 } else {
8486 Ptr1Reg = ptrB;
8487 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00008488 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008489 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008490 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008491 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
8492 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00008493 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008494 .addReg(Ptr1Reg).addImm(0).addImm(61);
8495 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00008496 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008497 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008498 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008499 .addReg(incr).addReg(ShiftReg);
8500 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00008501 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesena32affb2008-08-28 17:53:09 +00008502 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00008503 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
8504 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesena32affb2008-08-28 17:53:09 +00008505 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00008506 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008507 .addReg(Mask2Reg).addReg(ShiftReg);
8508
8509 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00008510 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00008511 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008512 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00008513 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008514 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008515 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00008516 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008517 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008518 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008519 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00008520 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidt3581cd42013-04-02 18:37:08 +00008521 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00008522 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008523 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00008524 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesena32affb2008-08-28 17:53:09 +00008525 BB->addSuccessor(loopMBB);
8526 BB->addSuccessor(exitMBB);
8527
8528 // exitMBB:
8529 // ...
8530 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00008531 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
8532 .addReg(ShiftReg);
Dale Johannesena32affb2008-08-28 17:53:09 +00008533 return BB;
8534}
8535
Hal Finkel756810f2013-03-21 21:37:52 +00008536llvm::MachineBasicBlock*
8537PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
8538 MachineBasicBlock *MBB) const {
8539 DebugLoc DL = MI->getDebugLoc();
Eric Christophercccae792015-01-30 22:02:31 +00008540 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00008541
8542 MachineFunction *MF = MBB->getParent();
8543 MachineRegisterInfo &MRI = MF->getRegInfo();
8544
8545 const BasicBlock *BB = MBB->getBasicBlock();
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00008546 MachineFunction::iterator I = ++MBB->getIterator();
Hal Finkel756810f2013-03-21 21:37:52 +00008547
8548 // Memory Reference
8549 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
8550 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
8551
8552 unsigned DstReg = MI->getOperand(0).getReg();
8553 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
8554 assert(RC->hasType(MVT::i32) && "Invalid destination!");
8555 unsigned mainDstReg = MRI.createVirtualRegister(RC);
8556 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
8557
Mehdi Amini44ede332015-07-09 02:09:04 +00008558 MVT PVT = getPointerTy(MF->getDataLayout());
Hal Finkel756810f2013-03-21 21:37:52 +00008559 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
8560 "Invalid Pointer Size!");
8561 // For v = setjmp(buf), we generate
8562 //
8563 // thisMBB:
8564 // SjLjSetup mainMBB
8565 // bl mainMBB
8566 // v_restore = 1
8567 // b sinkMBB
8568 //
8569 // mainMBB:
8570 // buf[LabelOffset] = LR
8571 // v_main = 0
8572 //
8573 // sinkMBB:
8574 // v = phi(main, restore)
8575 //
8576
8577 MachineBasicBlock *thisMBB = MBB;
8578 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
8579 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
8580 MF->insert(I, mainMBB);
8581 MF->insert(I, sinkMBB);
8582
8583 MachineInstrBuilder MIB;
8584
8585 // Transfer the remainder of BB and its successor edges to sinkMBB.
8586 sinkMBB->splice(sinkMBB->begin(), MBB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00008587 std::next(MachineBasicBlock::iterator(MI)), MBB->end());
Hal Finkel756810f2013-03-21 21:37:52 +00008588 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
8589
8590 // Note that the structure of the jmp_buf used here is not compatible
8591 // with that used by libc, and is not designed to be. Specifically, it
8592 // stores only those 'reserved' registers that LLVM does not otherwise
8593 // understand how to spill. Also, by convention, by the time this
8594 // intrinsic is called, Clang has already stored the frame address in the
8595 // first slot of the buffer and stack address in the third. Following the
8596 // X86 target code, we'll store the jump address in the second slot. We also
8597 // need to save the TOC pointer (R2) to handle jumps between shared
8598 // libraries, and that will be stored in the fourth slot. The thread
8599 // identifier (R13) is not affected.
8600
8601 // thisMBB:
8602 const int64_t LabelOffset = 1 * PVT.getStoreSize();
8603 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00008604 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00008605
8606 // Prepare IP either in reg.
8607 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
8608 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
8609 unsigned BufReg = MI->getOperand(1).getReg();
8610
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008611 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) {
Hal Finkele6698d52015-02-01 15:03:28 +00008612 setUsesTOCBasePtr(*MBB->getParent());
Hal Finkel756810f2013-03-21 21:37:52 +00008613 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
8614 .addReg(PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00008615 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00008616 .addReg(BufReg);
Hal Finkel756810f2013-03-21 21:37:52 +00008617 MIB.setMemRefs(MMOBegin, MMOEnd);
8618 }
8619
Hal Finkelf05d6c72013-07-17 23:50:51 +00008620 // Naked functions never have a base pointer, and so we use r1. For all
8621 // other functions, this decision must be delayed until during PEI.
8622 unsigned BaseReg;
Duncan P. N. Exon Smith5bedaf932015-02-14 02:54:07 +00008623 if (MF->getFunction()->hasFnAttribute(Attribute::Naked))
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008624 BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
Hal Finkelf05d6c72013-07-17 23:50:51 +00008625 else
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008626 BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP;
Hal Finkelf05d6c72013-07-17 23:50:51 +00008627
8628 MIB = BuildMI(*thisMBB, MI, DL,
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008629 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW))
Eric Christophercccae792015-01-30 22:02:31 +00008630 .addReg(BaseReg)
8631 .addImm(BPOffset)
8632 .addReg(BufReg);
Hal Finkelf05d6c72013-07-17 23:50:51 +00008633 MIB.setMemRefs(MMOBegin, MMOEnd);
8634
Hal Finkel756810f2013-03-21 21:37:52 +00008635 // Setup
Hal Finkele5680b32013-04-04 22:55:54 +00008636 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Eric Christophercccae792015-01-30 22:02:31 +00008637 const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo();
Bill Wendling5e7656b2013-06-07 07:55:53 +00008638 MIB.addRegMask(TRI->getNoPreservedMask());
Hal Finkel756810f2013-03-21 21:37:52 +00008639
8640 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
8641
8642 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
8643 .addMBB(mainMBB);
8644 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
8645
Cong Hou1938f2e2015-11-24 08:51:23 +00008646 thisMBB->addSuccessor(mainMBB, BranchProbability::getZero());
8647 thisMBB->addSuccessor(sinkMBB, BranchProbability::getOne());
Hal Finkel756810f2013-03-21 21:37:52 +00008648
8649 // mainMBB:
8650 // mainDstReg = 0
Eric Christophercccae792015-01-30 22:02:31 +00008651 MIB =
8652 BuildMI(mainMBB, DL,
8653 TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
Hal Finkel756810f2013-03-21 21:37:52 +00008654
8655 // Store IP
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008656 if (Subtarget.isPPC64()) {
Hal Finkel756810f2013-03-21 21:37:52 +00008657 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
8658 .addReg(LabelReg)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00008659 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00008660 .addReg(BufReg);
8661 } else {
8662 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
8663 .addReg(LabelReg)
8664 .addImm(LabelOffset)
8665 .addReg(BufReg);
8666 }
8667
8668 MIB.setMemRefs(MMOBegin, MMOEnd);
8669
8670 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
8671 mainMBB->addSuccessor(sinkMBB);
8672
8673 // sinkMBB:
8674 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
8675 TII->get(PPC::PHI), DstReg)
8676 .addReg(mainDstReg).addMBB(mainMBB)
8677 .addReg(restoreDstReg).addMBB(thisMBB);
8678
8679 MI->eraseFromParent();
8680 return sinkMBB;
8681}
8682
8683MachineBasicBlock *
8684PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
8685 MachineBasicBlock *MBB) const {
8686 DebugLoc DL = MI->getDebugLoc();
Eric Christophercccae792015-01-30 22:02:31 +00008687 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00008688
8689 MachineFunction *MF = MBB->getParent();
8690 MachineRegisterInfo &MRI = MF->getRegInfo();
8691
8692 // Memory Reference
8693 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
8694 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
8695
Mehdi Amini44ede332015-07-09 02:09:04 +00008696 MVT PVT = getPointerTy(MF->getDataLayout());
Hal Finkel756810f2013-03-21 21:37:52 +00008697 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
8698 "Invalid Pointer Size!");
8699
8700 const TargetRegisterClass *RC =
8701 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
8702 unsigned Tmp = MRI.createVirtualRegister(RC);
8703 // Since FP is only updated here but NOT referenced, it's treated as GPR.
8704 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
8705 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
Eric Christophercccae792015-01-30 22:02:31 +00008706 unsigned BP =
8707 (PVT == MVT::i64)
8708 ? PPC::X30
8709 : (Subtarget.isSVR4ABI() &&
8710 MF->getTarget().getRelocationModel() == Reloc::PIC_
8711 ? PPC::R29
8712 : PPC::R30);
Hal Finkel756810f2013-03-21 21:37:52 +00008713
8714 MachineInstrBuilder MIB;
8715
8716 const int64_t LabelOffset = 1 * PVT.getStoreSize();
8717 const int64_t SPOffset = 2 * PVT.getStoreSize();
8718 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00008719 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00008720
8721 unsigned BufReg = MI->getOperand(0).getReg();
8722
8723 // Reload FP (the jumped-to function may not have had a
8724 // frame pointer, and if so, then its r31 will be restored
8725 // as necessary).
8726 if (PVT == MVT::i64) {
8727 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
8728 .addImm(0)
8729 .addReg(BufReg);
8730 } else {
8731 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
8732 .addImm(0)
8733 .addReg(BufReg);
8734 }
8735 MIB.setMemRefs(MMOBegin, MMOEnd);
8736
8737 // Reload IP
8738 if (PVT == MVT::i64) {
8739 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00008740 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00008741 .addReg(BufReg);
8742 } else {
8743 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
8744 .addImm(LabelOffset)
8745 .addReg(BufReg);
8746 }
8747 MIB.setMemRefs(MMOBegin, MMOEnd);
8748
8749 // Reload SP
8750 if (PVT == MVT::i64) {
8751 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00008752 .addImm(SPOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00008753 .addReg(BufReg);
8754 } else {
8755 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
8756 .addImm(SPOffset)
8757 .addReg(BufReg);
8758 }
8759 MIB.setMemRefs(MMOBegin, MMOEnd);
8760
Hal Finkelf05d6c72013-07-17 23:50:51 +00008761 // Reload BP
8762 if (PVT == MVT::i64) {
8763 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
8764 .addImm(BPOffset)
8765 .addReg(BufReg);
8766 } else {
8767 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
8768 .addImm(BPOffset)
8769 .addReg(BufReg);
8770 }
8771 MIB.setMemRefs(MMOBegin, MMOEnd);
Hal Finkel756810f2013-03-21 21:37:52 +00008772
8773 // Reload TOC
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008774 if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) {
Hal Finkele6698d52015-02-01 15:03:28 +00008775 setUsesTOCBasePtr(*MBB->getParent());
Hal Finkel756810f2013-03-21 21:37:52 +00008776 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00008777 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00008778 .addReg(BufReg);
8779
8780 MIB.setMemRefs(MMOBegin, MMOEnd);
8781 }
8782
8783 // Jump
8784 BuildMI(*MBB, MI, DL,
8785 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
8786 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
8787
8788 MI->eraseFromParent();
8789 return MBB;
8790}
8791
Dale Johannesena32affb2008-08-28 17:53:09 +00008792MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00008793PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00008794 MachineBasicBlock *BB) const {
Hal Finkel934361a2015-01-14 01:07:51 +00008795 if (MI->getOpcode() == TargetOpcode::STACKMAP ||
Hal Finkelaf519932015-01-19 07:20:27 +00008796 MI->getOpcode() == TargetOpcode::PATCHPOINT) {
8797 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI() &&
8798 MI->getOpcode() == TargetOpcode::PATCHPOINT) {
8799 // Call lowering should have added an r2 operand to indicate a dependence
8800 // on the TOC base pointer value. It can't however, because there is no
8801 // way to mark the dependence as implicit there, and so the stackmap code
8802 // will confuse it with a regular operand. Instead, add the dependence
8803 // here.
Hal Finkele6698d52015-02-01 15:03:28 +00008804 setUsesTOCBasePtr(*BB->getParent());
Hal Finkelaf519932015-01-19 07:20:27 +00008805 MI->addOperand(MachineOperand::CreateReg(PPC::X2, false, true));
8806 }
8807
Hal Finkel934361a2015-01-14 01:07:51 +00008808 return emitPatchPoint(MI, BB);
Hal Finkelaf519932015-01-19 07:20:27 +00008809 }
Hal Finkel934361a2015-01-14 01:07:51 +00008810
Hal Finkel756810f2013-03-21 21:37:52 +00008811 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
8812 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
8813 return emitEHSjLjSetJmp(MI, BB);
8814 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
8815 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
8816 return emitEHSjLjLongJmp(MI, BB);
8817 }
8818
Eric Christophercccae792015-01-30 22:02:31 +00008819 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Evan Cheng32e376f2008-07-12 02:23:19 +00008820
8821 // To "insert" these instructions we actually have to insert their
8822 // control-flow patterns.
Chris Lattner9b577f12005-08-26 21:23:58 +00008823 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Duncan P. N. Exon Smithac65b4c2015-10-20 01:07:37 +00008824 MachineFunction::iterator It = ++BB->getIterator();
Evan Cheng32e376f2008-07-12 02:23:19 +00008825
Dan Gohman3b460302008-07-07 23:14:23 +00008826 MachineFunction *F = BB->getParent();
Evan Cheng32e376f2008-07-12 02:23:19 +00008827
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008828 if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
Eric Christophercccae792015-01-30 22:02:31 +00008829 MI->getOpcode() == PPC::SELECT_CC_I8 ||
8830 MI->getOpcode() == PPC::SELECT_I4 ||
8831 MI->getOpcode() == PPC::SELECT_I8)) {
Hal Finkeled6a2852013-04-05 23:29:01 +00008832 SmallVector<MachineOperand, 2> Cond;
Hal Finkel940ab932014-02-28 00:27:01 +00008833 if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8834 MI->getOpcode() == PPC::SELECT_CC_I8)
8835 Cond.push_back(MI->getOperand(4));
8836 else
8837 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
Hal Finkeled6a2852013-04-05 23:29:01 +00008838 Cond.push_back(MI->getOperand(1));
8839
Hal Finkel460e94d2012-06-22 23:10:08 +00008840 DebugLoc dl = MI->getDebugLoc();
Bill Wendling5e7656b2013-06-07 07:55:53 +00008841 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
8842 Cond, MI->getOperand(2).getReg(),
8843 MI->getOperand(3).getReg());
Hal Finkel460e94d2012-06-22 23:10:08 +00008844 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8845 MI->getOpcode() == PPC::SELECT_CC_I8 ||
8846 MI->getOpcode() == PPC::SELECT_CC_F4 ||
8847 MI->getOpcode() == PPC::SELECT_CC_F8 ||
Hal Finkelc93a9a22015-02-25 01:06:45 +00008848 MI->getOpcode() == PPC::SELECT_CC_QFRC ||
8849 MI->getOpcode() == PPC::SELECT_CC_QSRC ||
8850 MI->getOpcode() == PPC::SELECT_CC_QBRC ||
Hal Finkel940ab932014-02-28 00:27:01 +00008851 MI->getOpcode() == PPC::SELECT_CC_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00008852 MI->getOpcode() == PPC::SELECT_CC_VSFRC ||
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00008853 MI->getOpcode() == PPC::SELECT_CC_VSSRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00008854 MI->getOpcode() == PPC::SELECT_CC_VSRC ||
Hal Finkel940ab932014-02-28 00:27:01 +00008855 MI->getOpcode() == PPC::SELECT_I4 ||
8856 MI->getOpcode() == PPC::SELECT_I8 ||
8857 MI->getOpcode() == PPC::SELECT_F4 ||
8858 MI->getOpcode() == PPC::SELECT_F8 ||
Hal Finkelc93a9a22015-02-25 01:06:45 +00008859 MI->getOpcode() == PPC::SELECT_QFRC ||
8860 MI->getOpcode() == PPC::SELECT_QSRC ||
8861 MI->getOpcode() == PPC::SELECT_QBRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00008862 MI->getOpcode() == PPC::SELECT_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00008863 MI->getOpcode() == PPC::SELECT_VSFRC ||
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00008864 MI->getOpcode() == PPC::SELECT_VSSRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00008865 MI->getOpcode() == PPC::SELECT_VSRC) {
Evan Cheng32e376f2008-07-12 02:23:19 +00008866 // The incoming instruction knows the destination vreg to set, the
8867 // condition code register to branch on, the true/false values to
8868 // select between, and a branch opcode to use.
8869
8870 // thisMBB:
8871 // ...
8872 // TrueVal = ...
8873 // cmpTY ccX, r1, r2
8874 // bCC copy1MBB
8875 // fallthrough --> copy0MBB
8876 MachineBasicBlock *thisMBB = BB;
8877 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
8878 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00008879 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00008880 F->insert(It, copy0MBB);
8881 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00008882
8883 // Transfer the remainder of BB and its successor edges to sinkMBB.
8884 sinkMBB->splice(sinkMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00008885 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00008886 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
8887
Evan Cheng32e376f2008-07-12 02:23:19 +00008888 // Next, add the true and fallthrough blocks as its successors.
8889 BB->addSuccessor(copy0MBB);
8890 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008891
Hal Finkel940ab932014-02-28 00:27:01 +00008892 if (MI->getOpcode() == PPC::SELECT_I4 ||
8893 MI->getOpcode() == PPC::SELECT_I8 ||
8894 MI->getOpcode() == PPC::SELECT_F4 ||
8895 MI->getOpcode() == PPC::SELECT_F8 ||
Hal Finkelc93a9a22015-02-25 01:06:45 +00008896 MI->getOpcode() == PPC::SELECT_QFRC ||
8897 MI->getOpcode() == PPC::SELECT_QSRC ||
8898 MI->getOpcode() == PPC::SELECT_QBRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00008899 MI->getOpcode() == PPC::SELECT_VRRC ||
Bill Schmidt9c54bbd2014-10-22 16:58:20 +00008900 MI->getOpcode() == PPC::SELECT_VSFRC ||
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +00008901 MI->getOpcode() == PPC::SELECT_VSSRC ||
Bill Schmidt61e65232014-10-22 13:13:40 +00008902 MI->getOpcode() == PPC::SELECT_VSRC) {
Hal Finkel940ab932014-02-28 00:27:01 +00008903 BuildMI(BB, dl, TII->get(PPC::BC))
8904 .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
8905 } else {
8906 unsigned SelectPred = MI->getOperand(4).getImm();
8907 BuildMI(BB, dl, TII->get(PPC::BCC))
8908 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
8909 }
Dan Gohman34396292010-07-06 20:24:04 +00008910
Evan Cheng32e376f2008-07-12 02:23:19 +00008911 // copy0MBB:
8912 // %FalseValue = ...
8913 // # fallthrough to sinkMBB
8914 BB = copy0MBB;
Scott Michelcf0da6c2009-02-17 22:15:04 +00008915
Evan Cheng32e376f2008-07-12 02:23:19 +00008916 // Update machine-CFG edges
8917 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008918
Evan Cheng32e376f2008-07-12 02:23:19 +00008919 // sinkMBB:
8920 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
8921 // ...
8922 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00008923 BuildMI(*BB, BB->begin(), dl,
8924 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng32e376f2008-07-12 02:23:19 +00008925 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
8926 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
Hal Finkelbbdee932014-12-02 22:01:00 +00008927 } else if (MI->getOpcode() == PPC::ReadTB) {
8928 // To read the 64-bit time-base register on a 32-bit target, we read the
8929 // two halves. Should the counter have wrapped while it was being read, we
8930 // need to try again.
8931 // ...
8932 // readLoop:
8933 // mfspr Rx,TBU # load from TBU
8934 // mfspr Ry,TB # load from TB
8935 // mfspr Rz,TBU # load from TBU
NAKAMURA Takumibf9cc7f2015-09-22 11:10:08 +00008936 // cmpw crX,Rx,Rz # check if 'old'='new'
Hal Finkelbbdee932014-12-02 22:01:00 +00008937 // bne readLoop # branch if they're not equal
8938 // ...
8939
8940 MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB);
8941 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
8942 DebugLoc dl = MI->getDebugLoc();
8943 F->insert(It, readMBB);
8944 F->insert(It, sinkMBB);
8945
8946 // Transfer the remainder of BB and its successor edges to sinkMBB.
8947 sinkMBB->splice(sinkMBB->begin(), BB,
8948 std::next(MachineBasicBlock::iterator(MI)), BB->end());
8949 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
8950
8951 BB->addSuccessor(readMBB);
8952 BB = readMBB;
8953
8954 MachineRegisterInfo &RegInfo = F->getRegInfo();
8955 unsigned ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
8956 unsigned LoReg = MI->getOperand(0).getReg();
8957 unsigned HiReg = MI->getOperand(1).getReg();
8958
8959 BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269);
8960 BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268);
8961 BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269);
8962
8963 unsigned CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
8964
8965 BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg)
8966 .addReg(HiReg).addReg(ReadAgainReg);
8967 BuildMI(BB, dl, TII->get(PPC::BCC))
8968 .addImm(PPC::PRED_NE).addReg(CmpReg).addMBB(readMBB);
8969
8970 BB->addSuccessor(readMBB);
8971 BB->addSuccessor(sinkMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00008972 }
Dale Johannesena32affb2008-08-28 17:53:09 +00008973 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
8974 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
8975 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
8976 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008977 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008978 BB = EmitAtomicBinary(MI, BB, 4, PPC::ADD4);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008979 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008980 BB = EmitAtomicBinary(MI, BB, 8, PPC::ADD8);
Dale Johannesena32affb2008-08-28 17:53:09 +00008981
8982 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
8983 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
8984 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
8985 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008986 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008987 BB = EmitAtomicBinary(MI, BB, 4, PPC::AND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008988 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008989 BB = EmitAtomicBinary(MI, BB, 8, PPC::AND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00008990
8991 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
8992 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
8993 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
8994 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008995 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008996 BB = EmitAtomicBinary(MI, BB, 4, PPC::OR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00008997 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00008998 BB = EmitAtomicBinary(MI, BB, 8, PPC::OR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00008999
9000 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
9001 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
9002 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
9003 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00009004 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009005 BB = EmitAtomicBinary(MI, BB, 4, PPC::XOR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00009006 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009007 BB = EmitAtomicBinary(MI, BB, 8, PPC::XOR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00009008
9009 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00009010 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND);
Dale Johannesena32affb2008-08-28 17:53:09 +00009011 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00009012 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00009013 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009014 BB = EmitAtomicBinary(MI, BB, 4, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00009015 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009016 BB = EmitAtomicBinary(MI, BB, 8, PPC::NAND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00009017
9018 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
9019 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
9020 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
9021 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesend4eb0522008-08-25 22:34:37 +00009022 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009023 BB = EmitAtomicBinary(MI, BB, 4, PPC::SUBF);
Dale Johannesend4eb0522008-08-25 22:34:37 +00009024 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009025 BB = EmitAtomicBinary(MI, BB, 8, PPC::SUBF8);
Dale Johannesena32affb2008-08-28 17:53:09 +00009026
Dale Johannesenf0a88d62008-08-29 18:29:46 +00009027 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
9028 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
9029 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
9030 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
9031 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009032 BB = EmitAtomicBinary(MI, BB, 4, 0);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00009033 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009034 BB = EmitAtomicBinary(MI, BB, 8, 0);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00009035
Evan Cheng32e376f2008-07-12 02:23:19 +00009036 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009037 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64 ||
9038 (Subtarget.hasPartwordAtomics() &&
9039 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8) ||
9040 (Subtarget.hasPartwordAtomics() &&
9041 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16)) {
Evan Cheng32e376f2008-07-12 02:23:19 +00009042 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
9043
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009044 auto LoadMnemonic = PPC::LDARX;
9045 auto StoreMnemonic = PPC::STDCX;
9046 switch(MI->getOpcode()) {
9047 default:
9048 llvm_unreachable("Compare and swap of unknown size");
9049 case PPC::ATOMIC_CMP_SWAP_I8:
9050 LoadMnemonic = PPC::LBARX;
9051 StoreMnemonic = PPC::STBCX;
9052 assert(Subtarget.hasPartwordAtomics() && "No support partword atomics.");
9053 break;
9054 case PPC::ATOMIC_CMP_SWAP_I16:
9055 LoadMnemonic = PPC::LHARX;
9056 StoreMnemonic = PPC::STHCX;
9057 assert(Subtarget.hasPartwordAtomics() && "No support partword atomics.");
9058 break;
9059 case PPC::ATOMIC_CMP_SWAP_I32:
9060 LoadMnemonic = PPC::LWARX;
9061 StoreMnemonic = PPC::STWCX;
9062 break;
9063 case PPC::ATOMIC_CMP_SWAP_I64:
9064 LoadMnemonic = PPC::LDARX;
9065 StoreMnemonic = PPC::STDCX;
9066 break;
9067 }
Evan Cheng32e376f2008-07-12 02:23:19 +00009068 unsigned dest = MI->getOperand(0).getReg();
9069 unsigned ptrA = MI->getOperand(1).getReg();
9070 unsigned ptrB = MI->getOperand(2).getReg();
9071 unsigned oldval = MI->getOperand(3).getReg();
9072 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00009073 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00009074
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009075 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
9076 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
9077 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00009078 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009079 F->insert(It, loop1MBB);
9080 F->insert(It, loop2MBB);
9081 F->insert(It, midMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00009082 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00009083 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00009084 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00009085 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00009086
9087 // thisMBB:
9088 // ...
9089 // fallthrough --> loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009090 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00009091
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009092 // loop1MBB:
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009093 // l[bhwd]arx dest, ptr
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009094 // cmp[wd] dest, oldval
9095 // bne- midMBB
9096 // loop2MBB:
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009097 // st[bhwd]cx. newval, ptr
Evan Cheng32e376f2008-07-12 02:23:19 +00009098 // bne- loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009099 // b exitBB
9100 // midMBB:
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009101 // st[bhwd]cx. dest, ptr
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009102 // exitBB:
9103 BB = loop1MBB;
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009104 BuildMI(BB, dl, TII->get(LoadMnemonic), dest)
Evan Cheng32e376f2008-07-12 02:23:19 +00009105 .addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009106 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng32e376f2008-07-12 02:23:19 +00009107 .addReg(oldval).addReg(dest);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009108 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009109 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
9110 BB->addSuccessor(loop2MBB);
9111 BB->addSuccessor(midMBB);
9112
9113 BB = loop2MBB;
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009114 BuildMI(BB, dl, TII->get(StoreMnemonic))
Evan Cheng32e376f2008-07-12 02:23:19 +00009115 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009116 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009117 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009118 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009119 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00009120 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009121
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009122 BB = midMBB;
Nemanja Ivanovic0adf26b2015-03-10 20:51:07 +00009123 BuildMI(BB, dl, TII->get(StoreMnemonic))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00009124 .addReg(dest).addReg(ptrA).addReg(ptrB);
9125 BB->addSuccessor(exitMBB);
9126
Evan Cheng32e376f2008-07-12 02:23:19 +00009127 // exitMBB:
9128 // ...
9129 BB = exitMBB;
Dale Johannesen340d2642008-08-30 00:08:53 +00009130 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
9131 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
9132 // We must use 64-bit registers for addresses when targeting 64-bit,
9133 // since we're actually doing arithmetic on them. Other registers
9134 // can be 32-bit.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009135 bool is64bit = Subtarget.isPPC64();
Dale Johannesen340d2642008-08-30 00:08:53 +00009136 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
9137
9138 unsigned dest = MI->getOperand(0).getReg();
9139 unsigned ptrA = MI->getOperand(1).getReg();
9140 unsigned ptrB = MI->getOperand(2).getReg();
9141 unsigned oldval = MI->getOperand(3).getReg();
9142 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00009143 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen340d2642008-08-30 00:08:53 +00009144
9145 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
9146 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
9147 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
9148 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
9149 F->insert(It, loop1MBB);
9150 F->insert(It, loop2MBB);
9151 F->insert(It, midMBB);
9152 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00009153 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00009154 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00009155 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen340d2642008-08-30 00:08:53 +00009156
9157 MachineRegisterInfo &RegInfo = F->getRegInfo();
Craig Topper61e88f42014-11-21 05:58:21 +00009158 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
9159 : &PPC::GPRCRegClass;
Dale Johannesen340d2642008-08-30 00:08:53 +00009160 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
9161 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
9162 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
9163 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
9164 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
9165 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
9166 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
9167 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
9168 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
9169 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
9170 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
9171 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
9172 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
9173 unsigned Ptr1Reg;
9174 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkelf70c41e2013-03-21 23:45:03 +00009175 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen340d2642008-08-30 00:08:53 +00009176 // thisMBB:
9177 // ...
9178 // fallthrough --> loopMBB
9179 BB->addSuccessor(loop1MBB);
9180
9181 // The 4-byte load must be aligned, while a char or short may be
9182 // anywhere in the word. Hence all this nasty bookkeeping code.
9183 // add ptr1, ptrA, ptrB [copy if ptrA==0]
9184 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00009185 // xori shift, shift1, 24 [16]
Dale Johannesen340d2642008-08-30 00:08:53 +00009186 // rlwinm ptr, ptr1, 0, 0, 29
9187 // slw newval2, newval, shift
9188 // slw oldval2, oldval,shift
9189 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
9190 // slw mask, mask2, shift
9191 // and newval3, newval2, mask
9192 // and oldval3, oldval2, mask
9193 // loop1MBB:
9194 // lwarx tmpDest, ptr
9195 // and tmp, tmpDest, mask
9196 // cmpw tmp, oldval3
9197 // bne- midMBB
9198 // loop2MBB:
9199 // andc tmp2, tmpDest, mask
9200 // or tmp4, tmp2, newval3
9201 // stwcx. tmp4, ptr
9202 // bne- loop1MBB
9203 // b exitBB
9204 // midMBB:
9205 // stwcx. tmpDest, ptr
9206 // exitBB:
9207 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00009208 if (ptrA != ZeroReg) {
Dale Johannesen340d2642008-08-30 00:08:53 +00009209 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009210 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009211 .addReg(ptrA).addReg(ptrB);
9212 } else {
9213 Ptr1Reg = ptrB;
9214 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00009215 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009216 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009217 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009218 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
9219 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00009220 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009221 .addReg(Ptr1Reg).addImm(0).addImm(61);
9222 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00009223 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009224 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009225 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009226 .addReg(newval).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009227 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009228 .addReg(oldval).addReg(ShiftReg);
9229 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00009230 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen340d2642008-08-30 00:08:53 +00009231 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00009232 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
9233 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
9234 .addReg(Mask3Reg).addImm(65535);
Dale Johannesen340d2642008-08-30 00:08:53 +00009235 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00009236 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009237 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009238 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009239 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009240 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00009241 .addReg(OldVal2Reg).addReg(MaskReg);
9242
9243 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00009244 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00009245 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009246 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
9247 .addReg(TmpDestReg).addReg(MaskReg);
9248 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesen340d2642008-08-30 00:08:53 +00009249 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009250 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00009251 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
9252 BB->addSuccessor(loop2MBB);
9253 BB->addSuccessor(midMBB);
9254
9255 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00009256 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
9257 .addReg(TmpDestReg).addReg(MaskReg);
9258 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
9259 .addReg(Tmp2Reg).addReg(NewVal3Reg);
9260 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00009261 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009262 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00009263 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00009264 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen340d2642008-08-30 00:08:53 +00009265 BB->addSuccessor(loop1MBB);
9266 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00009267
Dale Johannesen340d2642008-08-30 00:08:53 +00009268 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00009269 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00009270 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00009271 BB->addSuccessor(exitMBB);
9272
9273 // exitMBB:
9274 // ...
9275 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00009276 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
9277 .addReg(ShiftReg);
Ulrich Weigand874fc622013-03-26 10:56:22 +00009278 } else if (MI->getOpcode() == PPC::FADDrtz) {
9279 // This pseudo performs an FADD with rounding mode temporarily forced
9280 // to round-to-zero. We emit this via custom inserter since the FPSCR
9281 // is not modeled at the SelectionDAG level.
9282 unsigned Dest = MI->getOperand(0).getReg();
9283 unsigned Src1 = MI->getOperand(1).getReg();
9284 unsigned Src2 = MI->getOperand(2).getReg();
9285 DebugLoc dl = MI->getDebugLoc();
9286
9287 MachineRegisterInfo &RegInfo = F->getRegInfo();
9288 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
9289
9290 // Save FPSCR value.
9291 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
9292
9293 // Set rounding mode to round-to-zero.
9294 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
9295 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
9296
9297 // Perform addition.
9298 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
9299
9300 // Restore FPSCR value.
Hal Finkel64202162015-01-15 01:00:53 +00009301 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg);
Hal Finkel940ab932014-02-28 00:27:01 +00009302 } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
9303 MI->getOpcode() == PPC::ANDIo_1_GT_BIT ||
9304 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
9305 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) {
9306 unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
9307 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ?
9308 PPC::ANDIo8 : PPC::ANDIo;
9309 bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
9310 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8);
9311
9312 MachineRegisterInfo &RegInfo = F->getRegInfo();
9313 unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ?
9314 &PPC::GPRCRegClass :
9315 &PPC::G8RCRegClass);
9316
9317 DebugLoc dl = MI->getDebugLoc();
9318 BuildMI(*BB, MI, dl, TII->get(Opcode), Dest)
9319 .addReg(MI->getOperand(1).getReg()).addImm(1);
9320 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY),
9321 MI->getOperand(0).getReg())
9322 .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT);
Kit Barton535e69d2015-03-25 19:36:23 +00009323 } else if (MI->getOpcode() == PPC::TCHECK_RET) {
9324 DebugLoc Dl = MI->getDebugLoc();
9325 MachineRegisterInfo &RegInfo = F->getRegInfo();
9326 unsigned CRReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
9327 BuildMI(*BB, MI, Dl, TII->get(PPC::TCHECK), CRReg);
9328 return BB;
Dale Johannesen340d2642008-08-30 00:08:53 +00009329 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009330 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng32e376f2008-07-12 02:23:19 +00009331 }
Chris Lattner9b577f12005-08-26 21:23:58 +00009332
Dan Gohman34396292010-07-06 20:24:04 +00009333 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner9b577f12005-08-26 21:23:58 +00009334 return BB;
9335}
9336
Chris Lattner4211ca92006-04-14 06:01:58 +00009337//===----------------------------------------------------------------------===//
9338// Target Optimization Hooks
9339//===----------------------------------------------------------------------===//
9340
Hal Finkelcbf08922015-07-12 02:33:57 +00009341static std::string getRecipOp(const char *Base, EVT VT) {
9342 std::string RecipOp(Base);
9343 if (VT.getScalarType() == MVT::f64)
9344 RecipOp += "d";
9345 else
9346 RecipOp += "f";
9347
9348 if (VT.isVector())
9349 RecipOp = "vec-" + RecipOp;
9350
9351 return RecipOp;
9352}
9353
Sanjay Patel8fde95c2014-09-30 20:28:48 +00009354SDValue PPCTargetLowering::getRsqrtEstimate(SDValue Operand,
9355 DAGCombinerInfo &DCI,
Sanjay Patel957efc232014-10-24 17:02:16 +00009356 unsigned &RefinementSteps,
9357 bool &UseOneConstNR) const {
Sanjay Patelbdf1e382014-09-26 23:01:47 +00009358 EVT VT = Operand.getValueType();
Sanjay Patel8fde95c2014-09-30 20:28:48 +00009359 if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) ||
Eric Christophercccae792015-01-30 22:02:31 +00009360 (VT == MVT::f64 && Subtarget.hasFRSQRTE()) ||
Sanjay Patel8fde95c2014-09-30 20:28:48 +00009361 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
Hal Finkelc93a9a22015-02-25 01:06:45 +00009362 (VT == MVT::v2f64 && Subtarget.hasVSX()) ||
9363 (VT == MVT::v4f32 && Subtarget.hasQPX()) ||
9364 (VT == MVT::v4f64 && Subtarget.hasQPX())) {
Hal Finkelcbf08922015-07-12 02:33:57 +00009365 TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
9366 std::string RecipOp = getRecipOp("sqrt", VT);
9367 if (!Recips.isEnabled(RecipOp))
9368 return SDValue();
9369
9370 RefinementSteps = Recips.getRefinementSteps(RecipOp);
Sanjay Patel957efc232014-10-24 17:02:16 +00009371 UseOneConstNR = true;
Sanjay Patel8fde95c2014-09-30 20:28:48 +00009372 return DCI.DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand);
Hal Finkel2e103312013-04-03 04:01:11 +00009373 }
Sanjay Patel8fde95c2014-09-30 20:28:48 +00009374 return SDValue();
9375}
9376
9377SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand,
9378 DAGCombinerInfo &DCI,
9379 unsigned &RefinementSteps) const {
9380 EVT VT = Operand.getValueType();
9381 if ((VT == MVT::f32 && Subtarget.hasFRES()) ||
Eric Christophercccae792015-01-30 22:02:31 +00009382 (VT == MVT::f64 && Subtarget.hasFRE()) ||
Sanjay Patel8fde95c2014-09-30 20:28:48 +00009383 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
Hal Finkelc93a9a22015-02-25 01:06:45 +00009384 (VT == MVT::v2f64 && Subtarget.hasVSX()) ||
9385 (VT == MVT::v4f32 && Subtarget.hasQPX()) ||
9386 (VT == MVT::v4f64 && Subtarget.hasQPX())) {
Hal Finkelcbf08922015-07-12 02:33:57 +00009387 TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
9388 std::string RecipOp = getRecipOp("div", VT);
9389 if (!Recips.isEnabled(RecipOp))
9390 return SDValue();
9391
9392 RefinementSteps = Recips.getRefinementSteps(RecipOp);
Sanjay Patel8fde95c2014-09-30 20:28:48 +00009393 return DCI.DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand);
9394 }
9395 return SDValue();
Hal Finkel2e103312013-04-03 04:01:11 +00009396}
9397
Sanjay Patel1dd15592015-07-28 23:05:48 +00009398unsigned PPCTargetLowering::combineRepeatedFPDivisors() const {
Hal Finkel360f2132014-11-24 23:45:21 +00009399 // Note: This functionality is used only when unsafe-fp-math is enabled, and
9400 // on cores with reciprocal estimates (which are used when unsafe-fp-math is
9401 // enabled for division), this functionality is redundant with the default
9402 // combiner logic (once the division -> reciprocal/multiply transformation
9403 // has taken place). As a result, this matters more for older cores than for
9404 // newer ones.
9405
9406 // Combine multiple FDIVs with the same divisor into multiple FMULs by the
9407 // reciprocal if there are two or more FDIVs (for embedded cores with only
9408 // one FP pipeline) for three or more FDIVs (for generic OOO cores).
9409 switch (Subtarget.getDarwinDirective()) {
9410 default:
Sanjay Patel1dd15592015-07-28 23:05:48 +00009411 return 3;
Hal Finkel360f2132014-11-24 23:45:21 +00009412 case PPC::DIR_440:
9413 case PPC::DIR_A2:
9414 case PPC::DIR_E500mc:
9415 case PPC::DIR_E5500:
Sanjay Patel1dd15592015-07-28 23:05:48 +00009416 return 2;
Hal Finkel360f2132014-11-24 23:45:21 +00009417 }
9418}
9419
Hal Finkele6702ca2015-09-03 22:37:44 +00009420// isConsecutiveLSLoc needs to work even if all adds have not yet been
9421// collapsed, and so we need to look through chains of them.
9422static void getBaseWithConstantOffset(SDValue Loc, SDValue &Base,
9423 int64_t& Offset, SelectionDAG &DAG) {
9424 if (DAG.isBaseWithConstantOffset(Loc)) {
9425 Base = Loc.getOperand(0);
9426 Offset += cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue();
9427
9428 // The base might itself be a base plus an offset, and if so, accumulate
9429 // that as well.
9430 getBaseWithConstantOffset(Loc.getOperand(0), Base, Offset, DAG);
9431 }
9432}
9433
Hal Finkel3604bf72014-08-01 01:02:01 +00009434static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base,
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00009435 unsigned Bytes, int Dist,
9436 SelectionDAG &DAG) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00009437 if (VT.getSizeInBits() / 8 != Bytes)
9438 return false;
9439
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00009440 SDValue BaseLoc = Base->getBasePtr();
9441 if (Loc.getOpcode() == ISD::FrameIndex) {
9442 if (BaseLoc.getOpcode() != ISD::FrameIndex)
9443 return false;
9444 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9445 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
9446 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
9447 int FS = MFI->getObjectSize(FI);
9448 int BFS = MFI->getObjectSize(BFI);
9449 if (FS != BFS || FS != (int)Bytes) return false;
9450 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
9451 }
9452
Hal Finkele6702ca2015-09-03 22:37:44 +00009453 SDValue Base1 = Loc, Base2 = BaseLoc;
9454 int64_t Offset1 = 0, Offset2 = 0;
9455 getBaseWithConstantOffset(Loc, Base1, Offset1, DAG);
9456 getBaseWithConstantOffset(BaseLoc, Base2, Offset2, DAG);
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00009457 if (Base1 == Base2 && Offset1 == (Offset2 + Dist * Bytes))
9458 return true;
9459
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00009460 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Craig Topper062a2ba2014-04-25 05:30:21 +00009461 const GlobalValue *GV1 = nullptr;
9462 const GlobalValue *GV2 = nullptr;
Hal Finkele6702ca2015-09-03 22:37:44 +00009463 Offset1 = 0;
9464 Offset2 = 0;
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00009465 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
9466 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
9467 if (isGA1 && isGA2 && GV1 == GV2)
9468 return Offset1 == (Offset2 + Dist*Bytes);
9469 return false;
9470}
9471
Hal Finkel3604bf72014-08-01 01:02:01 +00009472// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
9473// not enforce equality of the chain operands.
9474static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base,
9475 unsigned Bytes, int Dist,
9476 SelectionDAG &DAG) {
9477 if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) {
9478 EVT VT = LS->getMemoryVT();
9479 SDValue Loc = LS->getBasePtr();
9480 return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG);
9481 }
9482
9483 if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
9484 EVT VT;
9485 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9486 default: return false;
Hal Finkelc93a9a22015-02-25 01:06:45 +00009487 case Intrinsic::ppc_qpx_qvlfd:
9488 case Intrinsic::ppc_qpx_qvlfda:
9489 VT = MVT::v4f64;
9490 break;
9491 case Intrinsic::ppc_qpx_qvlfs:
9492 case Intrinsic::ppc_qpx_qvlfsa:
9493 VT = MVT::v4f32;
9494 break;
9495 case Intrinsic::ppc_qpx_qvlfcd:
9496 case Intrinsic::ppc_qpx_qvlfcda:
9497 VT = MVT::v2f64;
9498 break;
9499 case Intrinsic::ppc_qpx_qvlfcs:
9500 case Intrinsic::ppc_qpx_qvlfcsa:
9501 VT = MVT::v2f32;
9502 break;
9503 case Intrinsic::ppc_qpx_qvlfiwa:
9504 case Intrinsic::ppc_qpx_qvlfiwz:
Hal Finkel3604bf72014-08-01 01:02:01 +00009505 case Intrinsic::ppc_altivec_lvx:
9506 case Intrinsic::ppc_altivec_lvxl:
Bill Schmidt72954782014-11-12 04:19:40 +00009507 case Intrinsic::ppc_vsx_lxvw4x:
Hal Finkel3604bf72014-08-01 01:02:01 +00009508 VT = MVT::v4i32;
9509 break;
Bill Schmidt72954782014-11-12 04:19:40 +00009510 case Intrinsic::ppc_vsx_lxvd2x:
9511 VT = MVT::v2f64;
9512 break;
Hal Finkel3604bf72014-08-01 01:02:01 +00009513 case Intrinsic::ppc_altivec_lvebx:
9514 VT = MVT::i8;
9515 break;
9516 case Intrinsic::ppc_altivec_lvehx:
9517 VT = MVT::i16;
9518 break;
9519 case Intrinsic::ppc_altivec_lvewx:
9520 VT = MVT::i32;
9521 break;
9522 }
9523
9524 return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG);
9525 }
9526
9527 if (N->getOpcode() == ISD::INTRINSIC_VOID) {
9528 EVT VT;
9529 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9530 default: return false;
Hal Finkelc93a9a22015-02-25 01:06:45 +00009531 case Intrinsic::ppc_qpx_qvstfd:
9532 case Intrinsic::ppc_qpx_qvstfda:
9533 VT = MVT::v4f64;
9534 break;
9535 case Intrinsic::ppc_qpx_qvstfs:
9536 case Intrinsic::ppc_qpx_qvstfsa:
9537 VT = MVT::v4f32;
9538 break;
9539 case Intrinsic::ppc_qpx_qvstfcd:
9540 case Intrinsic::ppc_qpx_qvstfcda:
9541 VT = MVT::v2f64;
9542 break;
9543 case Intrinsic::ppc_qpx_qvstfcs:
9544 case Intrinsic::ppc_qpx_qvstfcsa:
9545 VT = MVT::v2f32;
9546 break;
9547 case Intrinsic::ppc_qpx_qvstfiw:
9548 case Intrinsic::ppc_qpx_qvstfiwa:
Hal Finkel3604bf72014-08-01 01:02:01 +00009549 case Intrinsic::ppc_altivec_stvx:
9550 case Intrinsic::ppc_altivec_stvxl:
Bill Schmidt72954782014-11-12 04:19:40 +00009551 case Intrinsic::ppc_vsx_stxvw4x:
Hal Finkel3604bf72014-08-01 01:02:01 +00009552 VT = MVT::v4i32;
9553 break;
Bill Schmidt72954782014-11-12 04:19:40 +00009554 case Intrinsic::ppc_vsx_stxvd2x:
9555 VT = MVT::v2f64;
9556 break;
Hal Finkel3604bf72014-08-01 01:02:01 +00009557 case Intrinsic::ppc_altivec_stvebx:
9558 VT = MVT::i8;
9559 break;
9560 case Intrinsic::ppc_altivec_stvehx:
9561 VT = MVT::i16;
9562 break;
9563 case Intrinsic::ppc_altivec_stvewx:
9564 VT = MVT::i32;
9565 break;
9566 }
9567
9568 return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG);
9569 }
9570
9571 return false;
9572}
9573
Hal Finkel7d8a6912013-05-26 18:08:30 +00009574// Return true is there is a nearyby consecutive load to the one provided
9575// (regardless of alignment). We search up and down the chain, looking though
Matt Arsenault57e74d22014-07-29 00:02:40 +00009576// token factors and other loads (but nothing else). As a result, a true result
9577// indicates that it is safe to create a new consecutive load adjacent to the
9578// load provided.
Hal Finkel7d8a6912013-05-26 18:08:30 +00009579static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
9580 SDValue Chain = LD->getChain();
9581 EVT VT = LD->getMemoryVT();
9582
9583 SmallSet<SDNode *, 16> LoadRoots;
9584 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
9585 SmallSet<SDNode *, 16> Visited;
9586
9587 // First, search up the chain, branching to follow all token-factor operands.
9588 // If we find a consecutive load, then we're done, otherwise, record all
9589 // nodes just above the top-level loads and token factors.
9590 while (!Queue.empty()) {
9591 SDNode *ChainNext = Queue.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +00009592 if (!Visited.insert(ChainNext).second)
Hal Finkel7d8a6912013-05-26 18:08:30 +00009593 continue;
9594
Hal Finkel3604bf72014-08-01 01:02:01 +00009595 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00009596 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00009597 return true;
9598
9599 if (!Visited.count(ChainLD->getChain().getNode()))
9600 Queue.push_back(ChainLD->getChain().getNode());
9601 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
Craig Topper66e588b2014-06-29 00:40:57 +00009602 for (const SDUse &O : ChainNext->ops())
9603 if (!Visited.count(O.getNode()))
9604 Queue.push_back(O.getNode());
Hal Finkel7d8a6912013-05-26 18:08:30 +00009605 } else
9606 LoadRoots.insert(ChainNext);
9607 }
9608
9609 // Second, search down the chain, starting from the top-level nodes recorded
9610 // in the first phase. These top-level nodes are the nodes just above all
9611 // loads and token factors. Starting with their uses, recursively look though
9612 // all loads (just the chain uses) and token factors to find a consecutive
9613 // load.
9614 Visited.clear();
9615 Queue.clear();
9616
9617 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
9618 IE = LoadRoots.end(); I != IE; ++I) {
9619 Queue.push_back(*I);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +00009620
Hal Finkel7d8a6912013-05-26 18:08:30 +00009621 while (!Queue.empty()) {
9622 SDNode *LoadRoot = Queue.pop_back_val();
David Blaikie70573dc2014-11-19 07:49:26 +00009623 if (!Visited.insert(LoadRoot).second)
Hal Finkel7d8a6912013-05-26 18:08:30 +00009624 continue;
9625
Hal Finkel3604bf72014-08-01 01:02:01 +00009626 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot))
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00009627 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00009628 return true;
9629
9630 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
9631 UE = LoadRoot->use_end(); UI != UE; ++UI)
Hal Finkel3604bf72014-08-01 01:02:01 +00009632 if (((isa<MemSDNode>(*UI) &&
9633 cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
Hal Finkel7d8a6912013-05-26 18:08:30 +00009634 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
9635 Queue.push_back(*UI);
9636 }
9637 }
9638
9639 return false;
9640}
9641
Hal Finkel940ab932014-02-28 00:27:01 +00009642SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N,
9643 DAGCombinerInfo &DCI) const {
9644 SelectionDAG &DAG = DCI.DAG;
9645 SDLoc dl(N);
9646
Eric Christophercccae792015-01-30 22:02:31 +00009647 assert(Subtarget.useCRBits() && "Expecting to be tracking CR bits");
Hal Finkel940ab932014-02-28 00:27:01 +00009648 // If we're tracking CR bits, we need to be careful that we don't have:
9649 // trunc(binary-ops(zext(x), zext(y)))
9650 // or
9651 // trunc(binary-ops(binary-ops(zext(x), zext(y)), ...)
9652 // such that we're unnecessarily moving things into GPRs when it would be
9653 // better to keep them in CR bits.
9654
9655 // Note that trunc here can be an actual i1 trunc, or can be the effective
9656 // truncation that comes from a setcc or select_cc.
9657 if (N->getOpcode() == ISD::TRUNCATE &&
9658 N->getValueType(0) != MVT::i1)
9659 return SDValue();
9660
9661 if (N->getOperand(0).getValueType() != MVT::i32 &&
9662 N->getOperand(0).getValueType() != MVT::i64)
9663 return SDValue();
9664
9665 if (N->getOpcode() == ISD::SETCC ||
9666 N->getOpcode() == ISD::SELECT_CC) {
9667 // If we're looking at a comparison, then we need to make sure that the
9668 // high bits (all except for the first) don't matter the result.
9669 ISD::CondCode CC =
9670 cast<CondCodeSDNode>(N->getOperand(
9671 N->getOpcode() == ISD::SETCC ? 2 : 4))->get();
9672 unsigned OpBits = N->getOperand(0).getValueSizeInBits();
9673
9674 if (ISD::isSignedIntSetCC(CC)) {
9675 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
9676 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
9677 return SDValue();
9678 } else if (ISD::isUnsignedIntSetCC(CC)) {
9679 if (!DAG.MaskedValueIsZero(N->getOperand(0),
9680 APInt::getHighBitsSet(OpBits, OpBits-1)) ||
9681 !DAG.MaskedValueIsZero(N->getOperand(1),
9682 APInt::getHighBitsSet(OpBits, OpBits-1)))
9683 return SDValue();
9684 } else {
9685 // This is neither a signed nor an unsigned comparison, just make sure
9686 // that the high bits are equal.
9687 APInt Op1Zero, Op1One;
9688 APInt Op2Zero, Op2One;
Jay Foada0653a32014-05-14 21:14:37 +00009689 DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One);
9690 DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One);
Hal Finkel940ab932014-02-28 00:27:01 +00009691
9692 // We don't really care about what is known about the first bit (if
9693 // anything), so clear it in all masks prior to comparing them.
9694 Op1Zero.clearBit(0); Op1One.clearBit(0);
9695 Op2Zero.clearBit(0); Op2One.clearBit(0);
9696
9697 if (Op1Zero != Op2Zero || Op1One != Op2One)
9698 return SDValue();
9699 }
9700 }
9701
9702 // We now know that the higher-order bits are irrelevant, we just need to
9703 // make sure that all of the intermediate operations are bit operations, and
9704 // all inputs are extensions.
9705 if (N->getOperand(0).getOpcode() != ISD::AND &&
9706 N->getOperand(0).getOpcode() != ISD::OR &&
9707 N->getOperand(0).getOpcode() != ISD::XOR &&
9708 N->getOperand(0).getOpcode() != ISD::SELECT &&
9709 N->getOperand(0).getOpcode() != ISD::SELECT_CC &&
9710 N->getOperand(0).getOpcode() != ISD::TRUNCATE &&
9711 N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND &&
9712 N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND &&
9713 N->getOperand(0).getOpcode() != ISD::ANY_EXTEND)
9714 return SDValue();
9715
9716 if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) &&
9717 N->getOperand(1).getOpcode() != ISD::AND &&
9718 N->getOperand(1).getOpcode() != ISD::OR &&
9719 N->getOperand(1).getOpcode() != ISD::XOR &&
9720 N->getOperand(1).getOpcode() != ISD::SELECT &&
9721 N->getOperand(1).getOpcode() != ISD::SELECT_CC &&
9722 N->getOperand(1).getOpcode() != ISD::TRUNCATE &&
9723 N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND &&
9724 N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND &&
9725 N->getOperand(1).getOpcode() != ISD::ANY_EXTEND)
9726 return SDValue();
9727
9728 SmallVector<SDValue, 4> Inputs;
9729 SmallVector<SDValue, 8> BinOps, PromOps;
9730 SmallPtrSet<SDNode *, 16> Visited;
9731
9732 for (unsigned i = 0; i < 2; ++i) {
9733 if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9734 N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9735 N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
9736 N->getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
9737 isa<ConstantSDNode>(N->getOperand(i)))
9738 Inputs.push_back(N->getOperand(i));
9739 else
9740 BinOps.push_back(N->getOperand(i));
9741
9742 if (N->getOpcode() == ISD::TRUNCATE)
9743 break;
9744 }
9745
9746 // Visit all inputs, collect all binary operations (and, or, xor and
NAKAMURA Takumi84965032015-09-22 11:14:12 +00009747 // select) that are all fed by extensions.
Hal Finkel940ab932014-02-28 00:27:01 +00009748 while (!BinOps.empty()) {
9749 SDValue BinOp = BinOps.back();
9750 BinOps.pop_back();
9751
David Blaikie70573dc2014-11-19 07:49:26 +00009752 if (!Visited.insert(BinOp.getNode()).second)
Hal Finkel940ab932014-02-28 00:27:01 +00009753 continue;
9754
9755 PromOps.push_back(BinOp);
9756
9757 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
9758 // The condition of the select is not promoted.
9759 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
9760 continue;
9761 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
9762 continue;
9763
9764 if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9765 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9766 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
9767 BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
9768 isa<ConstantSDNode>(BinOp.getOperand(i))) {
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00009769 Inputs.push_back(BinOp.getOperand(i));
Hal Finkel940ab932014-02-28 00:27:01 +00009770 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
9771 BinOp.getOperand(i).getOpcode() == ISD::OR ||
9772 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
9773 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
9774 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC ||
9775 BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
9776 BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9777 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9778 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) {
9779 BinOps.push_back(BinOp.getOperand(i));
9780 } else {
9781 // We have an input that is not an extension or another binary
9782 // operation; we'll abort this transformation.
9783 return SDValue();
9784 }
9785 }
9786 }
9787
9788 // Make sure that this is a self-contained cluster of operations (which
9789 // is not quite the same thing as saying that everything has only one
9790 // use).
9791 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9792 if (isa<ConstantSDNode>(Inputs[i]))
9793 continue;
9794
9795 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
9796 UE = Inputs[i].getNode()->use_end();
9797 UI != UE; ++UI) {
9798 SDNode *User = *UI;
9799 if (User != N && !Visited.count(User))
9800 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00009801
9802 // Make sure that we're not going to promote the non-output-value
9803 // operand(s) or SELECT or SELECT_CC.
9804 // FIXME: Although we could sometimes handle this, and it does occur in
9805 // practice that one of the condition inputs to the select is also one of
9806 // the outputs, we currently can't deal with this.
9807 if (User->getOpcode() == ISD::SELECT) {
9808 if (User->getOperand(0) == Inputs[i])
9809 return SDValue();
9810 } else if (User->getOpcode() == ISD::SELECT_CC) {
9811 if (User->getOperand(0) == Inputs[i] ||
9812 User->getOperand(1) == Inputs[i])
9813 return SDValue();
9814 }
Hal Finkel940ab932014-02-28 00:27:01 +00009815 }
9816 }
9817
9818 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
9819 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
9820 UE = PromOps[i].getNode()->use_end();
9821 UI != UE; ++UI) {
9822 SDNode *User = *UI;
9823 if (User != N && !Visited.count(User))
9824 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00009825
9826 // Make sure that we're not going to promote the non-output-value
9827 // operand(s) or SELECT or SELECT_CC.
9828 // FIXME: Although we could sometimes handle this, and it does occur in
9829 // practice that one of the condition inputs to the select is also one of
9830 // the outputs, we currently can't deal with this.
9831 if (User->getOpcode() == ISD::SELECT) {
9832 if (User->getOperand(0) == PromOps[i])
9833 return SDValue();
9834 } else if (User->getOpcode() == ISD::SELECT_CC) {
9835 if (User->getOperand(0) == PromOps[i] ||
9836 User->getOperand(1) == PromOps[i])
9837 return SDValue();
9838 }
Hal Finkel940ab932014-02-28 00:27:01 +00009839 }
9840 }
9841
9842 // Replace all inputs with the extension operand.
9843 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9844 // Constants may have users outside the cluster of to-be-promoted nodes,
9845 // and so we need to replace those as we do the promotions.
9846 if (isa<ConstantSDNode>(Inputs[i]))
9847 continue;
9848 else
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00009849 DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0));
Hal Finkel940ab932014-02-28 00:27:01 +00009850 }
9851
9852 // Replace all operations (these are all the same, but have a different
9853 // (i1) return type). DAG.getNode will validate that the types of
9854 // a binary operator match, so go through the list in reverse so that
9855 // we've likely promoted both operands first. Any intermediate truncations or
9856 // extensions disappear.
9857 while (!PromOps.empty()) {
9858 SDValue PromOp = PromOps.back();
9859 PromOps.pop_back();
9860
9861 if (PromOp.getOpcode() == ISD::TRUNCATE ||
9862 PromOp.getOpcode() == ISD::SIGN_EXTEND ||
9863 PromOp.getOpcode() == ISD::ZERO_EXTEND ||
9864 PromOp.getOpcode() == ISD::ANY_EXTEND) {
9865 if (!isa<ConstantSDNode>(PromOp.getOperand(0)) &&
9866 PromOp.getOperand(0).getValueType() != MVT::i1) {
9867 // The operand is not yet ready (see comment below).
9868 PromOps.insert(PromOps.begin(), PromOp);
9869 continue;
9870 }
9871
9872 SDValue RepValue = PromOp.getOperand(0);
9873 if (isa<ConstantSDNode>(RepValue))
9874 RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue);
9875
9876 DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue);
9877 continue;
9878 }
9879
9880 unsigned C;
9881 switch (PromOp.getOpcode()) {
9882 default: C = 0; break;
9883 case ISD::SELECT: C = 1; break;
9884 case ISD::SELECT_CC: C = 2; break;
9885 }
9886
9887 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
9888 PromOp.getOperand(C).getValueType() != MVT::i1) ||
9889 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
9890 PromOp.getOperand(C+1).getValueType() != MVT::i1)) {
9891 // The to-be-promoted operands of this node have not yet been
9892 // promoted (this should be rare because we're going through the
9893 // list backward, but if one of the operands has several users in
9894 // this cluster of to-be-promoted nodes, it is possible).
9895 PromOps.insert(PromOps.begin(), PromOp);
9896 continue;
9897 }
9898
9899 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
9900 PromOp.getNode()->op_end());
9901
9902 // If there are any constant inputs, make sure they're replaced now.
9903 for (unsigned i = 0; i < 2; ++i)
9904 if (isa<ConstantSDNode>(Ops[C+i]))
9905 Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]);
9906
9907 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +00009908 DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops));
Hal Finkel940ab932014-02-28 00:27:01 +00009909 }
9910
9911 // Now we're left with the initial truncation itself.
9912 if (N->getOpcode() == ISD::TRUNCATE)
9913 return N->getOperand(0);
9914
9915 // Otherwise, this is a comparison. The operands to be compared have just
9916 // changed type (to i1), but everything else is the same.
9917 return SDValue(N, 0);
9918}
9919
9920SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N,
9921 DAGCombinerInfo &DCI) const {
9922 SelectionDAG &DAG = DCI.DAG;
9923 SDLoc dl(N);
9924
Hal Finkel940ab932014-02-28 00:27:01 +00009925 // If we're tracking CR bits, we need to be careful that we don't have:
9926 // zext(binary-ops(trunc(x), trunc(y)))
9927 // or
9928 // zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...)
9929 // such that we're unnecessarily moving things into CR bits that can more
9930 // efficiently stay in GPRs. Note that if we're not certain that the high
9931 // bits are set as required by the final extension, we still may need to do
9932 // some masking to get the proper behavior.
9933
Hal Finkel46043ed2014-03-01 21:36:57 +00009934 // This same functionality is important on PPC64 when dealing with
9935 // 32-to-64-bit extensions; these occur often when 32-bit values are used as
9936 // the return values of functions. Because it is so similar, it is handled
9937 // here as well.
9938
Hal Finkel940ab932014-02-28 00:27:01 +00009939 if (N->getValueType(0) != MVT::i32 &&
9940 N->getValueType(0) != MVT::i64)
9941 return SDValue();
9942
Eric Christophercccae792015-01-30 22:02:31 +00009943 if (!((N->getOperand(0).getValueType() == MVT::i1 && Subtarget.useCRBits()) ||
9944 (N->getOperand(0).getValueType() == MVT::i32 && Subtarget.isPPC64())))
Hal Finkel940ab932014-02-28 00:27:01 +00009945 return SDValue();
9946
9947 if (N->getOperand(0).getOpcode() != ISD::AND &&
9948 N->getOperand(0).getOpcode() != ISD::OR &&
9949 N->getOperand(0).getOpcode() != ISD::XOR &&
9950 N->getOperand(0).getOpcode() != ISD::SELECT &&
9951 N->getOperand(0).getOpcode() != ISD::SELECT_CC)
9952 return SDValue();
9953
9954 SmallVector<SDValue, 4> Inputs;
9955 SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps;
9956 SmallPtrSet<SDNode *, 16> Visited;
9957
9958 // Visit all inputs, collect all binary operations (and, or, xor and
NAKAMURA Takumi84965032015-09-22 11:14:12 +00009959 // select) that are all fed by truncations.
Hal Finkel940ab932014-02-28 00:27:01 +00009960 while (!BinOps.empty()) {
9961 SDValue BinOp = BinOps.back();
9962 BinOps.pop_back();
9963
David Blaikie70573dc2014-11-19 07:49:26 +00009964 if (!Visited.insert(BinOp.getNode()).second)
Hal Finkel940ab932014-02-28 00:27:01 +00009965 continue;
9966
9967 PromOps.push_back(BinOp);
9968
9969 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
9970 // The condition of the select is not promoted.
9971 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
9972 continue;
9973 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
9974 continue;
9975
9976 if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
9977 isa<ConstantSDNode>(BinOp.getOperand(i))) {
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +00009978 Inputs.push_back(BinOp.getOperand(i));
Hal Finkel940ab932014-02-28 00:27:01 +00009979 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
9980 BinOp.getOperand(i).getOpcode() == ISD::OR ||
9981 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
9982 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
9983 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) {
9984 BinOps.push_back(BinOp.getOperand(i));
9985 } else {
9986 // We have an input that is not a truncation or another binary
9987 // operation; we'll abort this transformation.
9988 return SDValue();
9989 }
9990 }
9991 }
9992
Hal Finkel4104a1a2014-12-14 05:53:19 +00009993 // The operands of a select that must be truncated when the select is
9994 // promoted because the operand is actually part of the to-be-promoted set.
9995 DenseMap<SDNode *, EVT> SelectTruncOp[2];
9996
Hal Finkel940ab932014-02-28 00:27:01 +00009997 // Make sure that this is a self-contained cluster of operations (which
9998 // is not quite the same thing as saying that everything has only one
9999 // use).
10000 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
10001 if (isa<ConstantSDNode>(Inputs[i]))
10002 continue;
10003
10004 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
10005 UE = Inputs[i].getNode()->use_end();
10006 UI != UE; ++UI) {
10007 SDNode *User = *UI;
10008 if (User != N && !Visited.count(User))
10009 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +000010010
Hal Finkel4104a1a2014-12-14 05:53:19 +000010011 // If we're going to promote the non-output-value operand(s) or SELECT or
10012 // SELECT_CC, record them for truncation.
Hal Finkel46043ed2014-03-01 21:36:57 +000010013 if (User->getOpcode() == ISD::SELECT) {
10014 if (User->getOperand(0) == Inputs[i])
Hal Finkel4104a1a2014-12-14 05:53:19 +000010015 SelectTruncOp[0].insert(std::make_pair(User,
10016 User->getOperand(0).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +000010017 } else if (User->getOpcode() == ISD::SELECT_CC) {
Hal Finkel4104a1a2014-12-14 05:53:19 +000010018 if (User->getOperand(0) == Inputs[i])
10019 SelectTruncOp[0].insert(std::make_pair(User,
10020 User->getOperand(0).getValueType()));
10021 if (User->getOperand(1) == Inputs[i])
10022 SelectTruncOp[1].insert(std::make_pair(User,
10023 User->getOperand(1).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +000010024 }
Hal Finkel940ab932014-02-28 00:27:01 +000010025 }
10026 }
10027
10028 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
10029 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
10030 UE = PromOps[i].getNode()->use_end();
10031 UI != UE; ++UI) {
10032 SDNode *User = *UI;
10033 if (User != N && !Visited.count(User))
10034 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +000010035
Hal Finkel4104a1a2014-12-14 05:53:19 +000010036 // If we're going to promote the non-output-value operand(s) or SELECT or
10037 // SELECT_CC, record them for truncation.
Hal Finkel46043ed2014-03-01 21:36:57 +000010038 if (User->getOpcode() == ISD::SELECT) {
10039 if (User->getOperand(0) == PromOps[i])
Hal Finkel4104a1a2014-12-14 05:53:19 +000010040 SelectTruncOp[0].insert(std::make_pair(User,
10041 User->getOperand(0).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +000010042 } else if (User->getOpcode() == ISD::SELECT_CC) {
Hal Finkel4104a1a2014-12-14 05:53:19 +000010043 if (User->getOperand(0) == PromOps[i])
10044 SelectTruncOp[0].insert(std::make_pair(User,
10045 User->getOperand(0).getValueType()));
10046 if (User->getOperand(1) == PromOps[i])
10047 SelectTruncOp[1].insert(std::make_pair(User,
10048 User->getOperand(1).getValueType()));
Hal Finkel46043ed2014-03-01 21:36:57 +000010049 }
Hal Finkel940ab932014-02-28 00:27:01 +000010050 }
10051 }
10052
Hal Finkel46043ed2014-03-01 21:36:57 +000010053 unsigned PromBits = N->getOperand(0).getValueSizeInBits();
Hal Finkel940ab932014-02-28 00:27:01 +000010054 bool ReallyNeedsExt = false;
10055 if (N->getOpcode() != ISD::ANY_EXTEND) {
10056 // If all of the inputs are not already sign/zero extended, then
10057 // we'll still need to do that at the end.
10058 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
10059 if (isa<ConstantSDNode>(Inputs[i]))
10060 continue;
10061
10062 unsigned OpBits =
10063 Inputs[i].getOperand(0).getValueSizeInBits();
Hal Finkel46043ed2014-03-01 21:36:57 +000010064 assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
10065
Hal Finkel940ab932014-02-28 00:27:01 +000010066 if ((N->getOpcode() == ISD::ZERO_EXTEND &&
10067 !DAG.MaskedValueIsZero(Inputs[i].getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +000010068 APInt::getHighBitsSet(OpBits,
10069 OpBits-PromBits))) ||
Hal Finkel940ab932014-02-28 00:27:01 +000010070 (N->getOpcode() == ISD::SIGN_EXTEND &&
Hal Finkel46043ed2014-03-01 21:36:57 +000010071 DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) <
10072 (OpBits-(PromBits-1)))) {
Hal Finkel940ab932014-02-28 00:27:01 +000010073 ReallyNeedsExt = true;
10074 break;
10075 }
10076 }
10077 }
10078
10079 // Replace all inputs, either with the truncation operand, or a
10080 // truncation or extension to the final output type.
10081 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
10082 // Constant inputs need to be replaced with the to-be-promoted nodes that
10083 // use them because they might have users outside of the cluster of
10084 // promoted nodes.
10085 if (isa<ConstantSDNode>(Inputs[i]))
10086 continue;
10087
10088 SDValue InSrc = Inputs[i].getOperand(0);
10089 if (Inputs[i].getValueType() == N->getValueType(0))
10090 DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc);
10091 else if (N->getOpcode() == ISD::SIGN_EXTEND)
10092 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
10093 DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0)));
10094 else if (N->getOpcode() == ISD::ZERO_EXTEND)
10095 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
10096 DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0)));
10097 else
10098 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
10099 DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0)));
10100 }
10101
10102 // Replace all operations (these are all the same, but have a different
10103 // (promoted) return type). DAG.getNode will validate that the types of
10104 // a binary operator match, so go through the list in reverse so that
10105 // we've likely promoted both operands first.
10106 while (!PromOps.empty()) {
10107 SDValue PromOp = PromOps.back();
10108 PromOps.pop_back();
10109
10110 unsigned C;
10111 switch (PromOp.getOpcode()) {
10112 default: C = 0; break;
10113 case ISD::SELECT: C = 1; break;
10114 case ISD::SELECT_CC: C = 2; break;
10115 }
10116
10117 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
10118 PromOp.getOperand(C).getValueType() != N->getValueType(0)) ||
10119 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
10120 PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) {
10121 // The to-be-promoted operands of this node have not yet been
10122 // promoted (this should be rare because we're going through the
10123 // list backward, but if one of the operands has several users in
10124 // this cluster of to-be-promoted nodes, it is possible).
10125 PromOps.insert(PromOps.begin(), PromOp);
10126 continue;
10127 }
10128
Hal Finkel4104a1a2014-12-14 05:53:19 +000010129 // For SELECT and SELECT_CC nodes, we do a similar check for any
10130 // to-be-promoted comparison inputs.
10131 if (PromOp.getOpcode() == ISD::SELECT ||
10132 PromOp.getOpcode() == ISD::SELECT_CC) {
10133 if ((SelectTruncOp[0].count(PromOp.getNode()) &&
10134 PromOp.getOperand(0).getValueType() != N->getValueType(0)) ||
10135 (SelectTruncOp[1].count(PromOp.getNode()) &&
10136 PromOp.getOperand(1).getValueType() != N->getValueType(0))) {
10137 PromOps.insert(PromOps.begin(), PromOp);
10138 continue;
10139 }
10140 }
10141
Hal Finkel940ab932014-02-28 00:27:01 +000010142 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
10143 PromOp.getNode()->op_end());
10144
10145 // If this node has constant inputs, then they'll need to be promoted here.
10146 for (unsigned i = 0; i < 2; ++i) {
10147 if (!isa<ConstantSDNode>(Ops[C+i]))
10148 continue;
10149 if (Ops[C+i].getValueType() == N->getValueType(0))
10150 continue;
10151
10152 if (N->getOpcode() == ISD::SIGN_EXTEND)
10153 Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
10154 else if (N->getOpcode() == ISD::ZERO_EXTEND)
10155 Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
10156 else
10157 Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
10158 }
10159
Hal Finkel4104a1a2014-12-14 05:53:19 +000010160 // If we've promoted the comparison inputs of a SELECT or SELECT_CC,
10161 // truncate them again to the original value type.
10162 if (PromOp.getOpcode() == ISD::SELECT ||
10163 PromOp.getOpcode() == ISD::SELECT_CC) {
10164 auto SI0 = SelectTruncOp[0].find(PromOp.getNode());
10165 if (SI0 != SelectTruncOp[0].end())
10166 Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]);
10167 auto SI1 = SelectTruncOp[1].find(PromOp.getNode());
10168 if (SI1 != SelectTruncOp[1].end())
10169 Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]);
10170 }
10171
Hal Finkel940ab932014-02-28 00:27:01 +000010172 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +000010173 DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops));
Hal Finkel940ab932014-02-28 00:27:01 +000010174 }
10175
10176 // Now we're left with the initial extension itself.
10177 if (!ReallyNeedsExt)
10178 return N->getOperand(0);
10179
Hal Finkel46043ed2014-03-01 21:36:57 +000010180 // To zero extend, just mask off everything except for the first bit (in the
10181 // i1 case).
Hal Finkel940ab932014-02-28 00:27:01 +000010182 if (N->getOpcode() == ISD::ZERO_EXTEND)
10183 return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +000010184 DAG.getConstant(APInt::getLowBitsSet(
10185 N->getValueSizeInBits(0), PromBits),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010186 dl, N->getValueType(0)));
Hal Finkel940ab932014-02-28 00:27:01 +000010187
10188 assert(N->getOpcode() == ISD::SIGN_EXTEND &&
10189 "Invalid extension type");
Mehdi Amini9639d652015-07-09 02:09:20 +000010190 EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0), DAG.getDataLayout());
Hal Finkel940ab932014-02-28 00:27:01 +000010191 SDValue ShiftCst =
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +000010192 DAG.getConstant(N->getValueSizeInBits(0) - PromBits, dl, ShiftAmountTy);
10193 return DAG.getNode(
10194 ISD::SRA, dl, N->getValueType(0),
10195 DAG.getNode(ISD::SHL, dl, N->getValueType(0), N->getOperand(0), ShiftCst),
10196 ShiftCst);
Hal Finkel940ab932014-02-28 00:27:01 +000010197}
10198
Hal Finkel5efb9182015-01-06 06:01:57 +000010199SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N,
10200 DAGCombinerInfo &DCI) const {
10201 assert((N->getOpcode() == ISD::SINT_TO_FP ||
10202 N->getOpcode() == ISD::UINT_TO_FP) &&
10203 "Need an int -> FP conversion node here");
10204
10205 if (!Subtarget.has64BitSupport())
10206 return SDValue();
10207
10208 SelectionDAG &DAG = DCI.DAG;
10209 SDLoc dl(N);
10210 SDValue Op(N, 0);
10211
10212 // Don't handle ppc_fp128 here or i1 conversions.
10213 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
10214 return SDValue();
10215 if (Op.getOperand(0).getValueType() == MVT::i1)
10216 return SDValue();
10217
10218 // For i32 intermediate values, unfortunately, the conversion functions
10219 // leave the upper 32 bits of the value are undefined. Within the set of
10220 // scalar instructions, we have no method for zero- or sign-extending the
10221 // value. Thus, we cannot handle i32 intermediate values here.
10222 if (Op.getOperand(0).getValueType() == MVT::i32)
10223 return SDValue();
10224
10225 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
10226 "UINT_TO_FP is supported only with FPCVT");
10227
10228 // If we have FCFIDS, then use it when converting to single-precision.
10229 // Otherwise, convert to double-precision and then round.
Eric Christophercccae792015-01-30 22:02:31 +000010230 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
10231 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
10232 : PPCISD::FCFIDS)
10233 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
10234 : PPCISD::FCFID);
10235 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
10236 ? MVT::f32
10237 : MVT::f64;
Hal Finkel5efb9182015-01-06 06:01:57 +000010238
10239 // If we're converting from a float, to an int, and back to a float again,
10240 // then we don't need the store/load pair at all.
10241 if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT &&
10242 Subtarget.hasFPCVT()) ||
10243 (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) {
10244 SDValue Src = Op.getOperand(0).getOperand(0);
10245 if (Src.getValueType() == MVT::f32) {
10246 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
10247 DCI.AddToWorklist(Src.getNode());
Hal Finkelbe78c252015-08-20 01:18:20 +000010248 } else if (Src.getValueType() != MVT::f64) {
10249 // Make sure that we don't pick up a ppc_fp128 source value.
10250 return SDValue();
Hal Finkel5efb9182015-01-06 06:01:57 +000010251 }
10252
10253 unsigned FCTOp =
10254 Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
10255 PPCISD::FCTIDUZ;
10256
10257 SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src);
10258 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp);
10259
10260 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) {
10261 FP = DAG.getNode(ISD::FP_ROUND, dl,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010262 MVT::f32, FP, DAG.getIntPtrConstant(0, dl));
Hal Finkel5efb9182015-01-06 06:01:57 +000010263 DCI.AddToWorklist(FP.getNode());
10264 }
10265
10266 return FP;
10267 }
10268
10269 return SDValue();
10270}
10271
Bill Schmidtfae5d712014-12-09 16:35:51 +000010272// expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for
10273// builtins) into loads with swaps.
10274SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N,
10275 DAGCombinerInfo &DCI) const {
10276 SelectionDAG &DAG = DCI.DAG;
10277 SDLoc dl(N);
10278 SDValue Chain;
10279 SDValue Base;
10280 MachineMemOperand *MMO;
10281
10282 switch (N->getOpcode()) {
10283 default:
10284 llvm_unreachable("Unexpected opcode for little endian VSX load");
10285 case ISD::LOAD: {
10286 LoadSDNode *LD = cast<LoadSDNode>(N);
10287 Chain = LD->getChain();
10288 Base = LD->getBasePtr();
10289 MMO = LD->getMemOperand();
10290 // If the MMO suggests this isn't a load of a full vector, leave
10291 // things alone. For a built-in, we have to make the change for
10292 // correctness, so if there is a size problem that will be a bug.
10293 if (MMO->getSize() < 16)
10294 return SDValue();
10295 break;
10296 }
10297 case ISD::INTRINSIC_W_CHAIN: {
10298 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
10299 Chain = Intrin->getChain();
Nemanja Ivanovic7df26c92015-06-30 20:01:16 +000010300 // Similarly to the store case below, Intrin->getBasePtr() doesn't get
Nemanja Ivanovic9c8d4cf2015-06-30 19:45:45 +000010301 // us what we want. Get operand 2 instead.
Nemanja Ivanovic9c8d4cf2015-06-30 19:45:45 +000010302 Base = Intrin->getOperand(2);
Bill Schmidtfae5d712014-12-09 16:35:51 +000010303 MMO = Intrin->getMemOperand();
10304 break;
10305 }
10306 }
10307
10308 MVT VecTy = N->getValueType(0).getSimpleVT();
10309 SDValue LoadOps[] = { Chain, Base };
10310 SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl,
10311 DAG.getVTList(VecTy, MVT::Other),
10312 LoadOps, VecTy, MMO);
10313 DCI.AddToWorklist(Load.getNode());
10314 Chain = Load.getValue(1);
10315 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
10316 DAG.getVTList(VecTy, MVT::Other), Chain, Load);
10317 DCI.AddToWorklist(Swap.getNode());
10318 return Swap;
10319}
10320
10321// expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for
10322// builtins) into stores with swaps.
10323SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N,
10324 DAGCombinerInfo &DCI) const {
10325 SelectionDAG &DAG = DCI.DAG;
10326 SDLoc dl(N);
10327 SDValue Chain;
10328 SDValue Base;
10329 unsigned SrcOpnd;
10330 MachineMemOperand *MMO;
10331
10332 switch (N->getOpcode()) {
10333 default:
10334 llvm_unreachable("Unexpected opcode for little endian VSX store");
10335 case ISD::STORE: {
10336 StoreSDNode *ST = cast<StoreSDNode>(N);
10337 Chain = ST->getChain();
10338 Base = ST->getBasePtr();
10339 MMO = ST->getMemOperand();
10340 SrcOpnd = 1;
10341 // If the MMO suggests this isn't a store of a full vector, leave
10342 // things alone. For a built-in, we have to make the change for
10343 // correctness, so if there is a size problem that will be a bug.
10344 if (MMO->getSize() < 16)
10345 return SDValue();
10346 break;
10347 }
10348 case ISD::INTRINSIC_VOID: {
10349 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
10350 Chain = Intrin->getChain();
10351 // Intrin->getBasePtr() oddly does not get what we want.
10352 Base = Intrin->getOperand(3);
10353 MMO = Intrin->getMemOperand();
10354 SrcOpnd = 2;
10355 break;
10356 }
10357 }
10358
10359 SDValue Src = N->getOperand(SrcOpnd);
10360 MVT VecTy = Src.getValueType().getSimpleVT();
10361 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
10362 DAG.getVTList(VecTy, MVT::Other), Chain, Src);
10363 DCI.AddToWorklist(Swap.getNode());
10364 Chain = Swap.getValue(1);
10365 SDValue StoreOps[] = { Chain, Swap, Base };
10366 SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl,
10367 DAG.getVTList(MVT::Other),
10368 StoreOps, VecTy, MMO);
10369 DCI.AddToWorklist(Store.getNode());
10370 return Store;
10371}
10372
Duncan Sandsdc2dac12008-11-24 14:53:14 +000010373SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
10374 DAGCombinerInfo &DCI) const {
Chris Lattnerf4184352006-03-01 04:57:39 +000010375 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +000010376 SDLoc dl(N);
Chris Lattnerf4184352006-03-01 04:57:39 +000010377 switch (N->getOpcode()) {
10378 default: break;
Chris Lattner3c48ea52006-09-19 05:22:59 +000010379 case PPCISD::SHL:
Artyom Skrobov314ee042015-11-25 19:41:11 +000010380 if (isNullConstant(N->getOperand(0))) // 0 << V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +000010381 return N->getOperand(0);
Chris Lattner3c48ea52006-09-19 05:22:59 +000010382 break;
10383 case PPCISD::SRL:
Artyom Skrobov314ee042015-11-25 19:41:11 +000010384 if (isNullConstant(N->getOperand(0))) // 0 >>u V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +000010385 return N->getOperand(0);
Chris Lattner3c48ea52006-09-19 05:22:59 +000010386 break;
10387 case PPCISD::SRA:
10388 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +000010389 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +000010390 C->isAllOnesValue()) // -1 >>s V -> -1.
10391 return N->getOperand(0);
10392 }
10393 break;
Hal Finkel940ab932014-02-28 00:27:01 +000010394 case ISD::SIGN_EXTEND:
10395 case ISD::ZERO_EXTEND:
NAKAMURA Takumi10c80e72015-09-22 11:19:03 +000010396 case ISD::ANY_EXTEND:
Hal Finkel940ab932014-02-28 00:27:01 +000010397 return DAGCombineExtBoolTrunc(N, DCI);
10398 case ISD::TRUNCATE:
10399 case ISD::SETCC:
10400 case ISD::SELECT_CC:
10401 return DAGCombineTruncBoolExt(N, DCI);
Chris Lattnerf4184352006-03-01 04:57:39 +000010402 case ISD::SINT_TO_FP:
Hal Finkel5efb9182015-01-06 06:01:57 +000010403 case ISD::UINT_TO_FP:
10404 return combineFPToIntToFP(N, DCI);
Bill Schmidtfae5d712014-12-09 16:35:51 +000010405 case ISD::STORE: {
Chris Lattner27f53452006-03-01 05:50:56 +000010406 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
Eric Christophercccae792015-01-30 22:02:31 +000010407 if (Subtarget.hasSTFIWX() && !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner27f53452006-03-01 05:50:56 +000010408 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson9f944592009-08-11 20:47:22 +000010409 N->getOperand(1).getValueType() == MVT::i32 &&
10410 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010411 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +000010412 if (Val.getValueType() == MVT::f32) {
10413 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +000010414 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +000010415 }
Owen Anderson9f944592009-08-11 20:47:22 +000010416 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +000010417 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +000010418
Hal Finkel60c75102013-04-01 15:37:53 +000010419 SDValue Ops[] = {
10420 N->getOperand(0), Val, N->getOperand(2),
10421 DAG.getValueType(N->getOperand(1).getValueType())
10422 };
10423
10424 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +000010425 DAG.getVTList(MVT::Other), Ops,
Hal Finkel60c75102013-04-01 15:37:53 +000010426 cast<StoreSDNode>(N)->getMemoryVT(),
10427 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greiff304a7a2008-08-28 21:40:38 +000010428 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +000010429 return Val;
10430 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010431
Chris Lattnera7976d32006-07-10 20:56:58 +000010432 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman28328db2009-09-25 00:57:30 +000010433 if (cast<StoreSDNode>(N)->isUnindexed() &&
10434 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greiff304a7a2008-08-28 21:40:38 +000010435 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson9f944592009-08-11 20:47:22 +000010436 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkel31d29562013-03-28 19:25:55 +000010437 N->getOperand(1).getValueType() == MVT::i16 ||
Eric Christophercccae792015-01-30 22:02:31 +000010438 (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +000010439 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010440 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnera7976d32006-07-10 20:56:58 +000010441 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson9f944592009-08-11 20:47:22 +000010442 if (BSwapOp.getValueType() == MVT::i16)
10443 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnera7976d32006-07-10 20:56:58 +000010444
Dan Gohman48b185d2009-09-25 20:36:54 +000010445 SDValue Ops[] = {
10446 N->getOperand(0), BSwapOp, N->getOperand(2),
10447 DAG.getValueType(N->getOperand(1).getValueType())
10448 };
10449 return
10450 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +000010451 Ops, cast<StoreSDNode>(N)->getMemoryVT(),
Dan Gohman48b185d2009-09-25 20:36:54 +000010452 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +000010453 }
Bill Schmidtfae5d712014-12-09 16:35:51 +000010454
10455 // For little endian, VSX stores require generating xxswapd/lxvd2x.
10456 EVT VT = N->getOperand(1).getValueType();
10457 if (VT.isSimple()) {
10458 MVT StoreVT = VT.getSimpleVT();
Eric Christophercccae792015-01-30 22:02:31 +000010459 if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
Bill Schmidtfae5d712014-12-09 16:35:51 +000010460 (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 ||
10461 StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32))
10462 return expandVSXStoreForLE(N, DCI);
10463 }
Chris Lattnera7976d32006-07-10 20:56:58 +000010464 break;
Bill Schmidtfae5d712014-12-09 16:35:51 +000010465 }
Hal Finkelcf2e9082013-05-24 23:00:14 +000010466 case ISD::LOAD: {
10467 LoadSDNode *LD = cast<LoadSDNode>(N);
10468 EVT VT = LD->getValueType(0);
Bill Schmidtfae5d712014-12-09 16:35:51 +000010469
10470 // For little endian, VSX loads require generating lxvd2x/xxswapd.
10471 if (VT.isSimple()) {
10472 MVT LoadVT = VT.getSimpleVT();
Eric Christophercccae792015-01-30 22:02:31 +000010473 if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
Bill Schmidtfae5d712014-12-09 16:35:51 +000010474 (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 ||
10475 LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32))
10476 return expandVSXLoadForLE(N, DCI);
10477 }
10478
Hal Finkel851b33a2016-03-31 02:56:05 +000010479 // We sometimes end up with a 64-bit integer load, from which we extract
10480 // two single-precision floating-point numbers. This happens with
10481 // std::complex<float>, and other similar structures, because of the way we
10482 // canonicalize structure copies. However, if we lack direct moves,
10483 // then the final bitcasts from the extracted integer values to the
10484 // floating-point numbers turn into store/load pairs. Even with direct moves,
10485 // just loading the two floating-point numbers is likely better.
10486 auto ReplaceTwoFloatLoad = [&]() {
10487 if (VT != MVT::i64)
10488 return false;
10489
10490 if (LD->getExtensionType() != ISD::NON_EXTLOAD ||
10491 LD->isVolatile())
10492 return false;
10493
10494 // We're looking for a sequence like this:
10495 // t13: i64,ch = load<LD8[%ref.tmp]> t0, t6, undef:i64
10496 // t16: i64 = srl t13, Constant:i32<32>
10497 // t17: i32 = truncate t16
10498 // t18: f32 = bitcast t17
10499 // t19: i32 = truncate t13
10500 // t20: f32 = bitcast t19
10501
10502 if (!LD->hasNUsesOfValue(2, 0))
10503 return false;
10504
10505 auto UI = LD->use_begin();
10506 while (UI.getUse().getResNo() != 0) ++UI;
10507 SDNode *Trunc = *UI++;
10508 while (UI.getUse().getResNo() != 0) ++UI;
10509 SDNode *RightShift = *UI;
10510 if (Trunc->getOpcode() != ISD::TRUNCATE)
10511 std::swap(Trunc, RightShift);
10512
10513 if (Trunc->getOpcode() != ISD::TRUNCATE ||
10514 Trunc->getValueType(0) != MVT::i32 ||
10515 !Trunc->hasOneUse())
10516 return false;
10517 if (RightShift->getOpcode() != ISD::SRL ||
10518 !isa<ConstantSDNode>(RightShift->getOperand(1)) ||
10519 RightShift->getConstantOperandVal(1) != 32 ||
10520 !RightShift->hasOneUse())
10521 return false;
10522
10523 SDNode *Trunc2 = *RightShift->use_begin();
10524 if (Trunc2->getOpcode() != ISD::TRUNCATE ||
10525 Trunc2->getValueType(0) != MVT::i32 ||
10526 !Trunc2->hasOneUse())
10527 return false;
10528
10529 SDNode *Bitcast = *Trunc->use_begin();
10530 SDNode *Bitcast2 = *Trunc2->use_begin();
10531
10532 if (Bitcast->getOpcode() != ISD::BITCAST ||
10533 Bitcast->getValueType(0) != MVT::f32)
10534 return false;
10535 if (Bitcast2->getOpcode() != ISD::BITCAST ||
10536 Bitcast2->getValueType(0) != MVT::f32)
10537 return false;
10538
10539 if (Subtarget.isLittleEndian())
10540 std::swap(Bitcast, Bitcast2);
10541
10542 // Bitcast has the second float (in memory-layout order) and Bitcast2
10543 // has the first one.
10544
10545 SDValue BasePtr = LD->getBasePtr();
10546 if (LD->isIndexed()) {
10547 assert(LD->getAddressingMode() == ISD::PRE_INC &&
10548 "Non-pre-inc AM on PPC?");
10549 BasePtr =
10550 DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
10551 LD->getOffset());
10552 }
10553
10554 SDValue FloatLoad =
10555 DAG.getLoad(MVT::f32, dl, LD->getChain(), BasePtr,
10556 LD->getPointerInfo(), false, LD->isNonTemporal(),
10557 LD->isInvariant(), LD->getAlignment(), LD->getAAInfo());
10558 SDValue AddPtr =
10559 DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(),
10560 BasePtr, DAG.getIntPtrConstant(4, dl));
10561 SDValue FloatLoad2 =
10562 DAG.getLoad(MVT::f32, dl, SDValue(FloatLoad.getNode(), 1), AddPtr,
10563 LD->getPointerInfo().getWithOffset(4), false,
10564 LD->isNonTemporal(), LD->isInvariant(),
10565 MinAlign(LD->getAlignment(), 4), LD->getAAInfo());
10566
10567 if (LD->isIndexed()) {
10568 // Note that DAGCombine should re-form any pre-increment load(s) from
10569 // what is produced here if that makes sense.
10570 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), BasePtr);
10571 }
10572
10573 DCI.CombineTo(Bitcast2, FloatLoad);
10574 DCI.CombineTo(Bitcast, FloatLoad2);
10575
10576 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, LD->isIndexed() ? 2 : 1),
10577 SDValue(FloatLoad2.getNode(), 1));
10578 return true;
10579 };
10580
10581 if (ReplaceTwoFloatLoad())
10582 return SDValue(N, 0);
10583
Hal Finkelc93a9a22015-02-25 01:06:45 +000010584 EVT MemVT = LD->getMemoryVT();
10585 Type *Ty = MemVT.getTypeForEVT(*DAG.getContext());
Mehdi Aminia749f2a2015-07-09 02:09:52 +000010586 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
Hal Finkelc93a9a22015-02-25 01:06:45 +000010587 Type *STy = MemVT.getScalarType().getTypeForEVT(*DAG.getContext());
Mehdi Aminia749f2a2015-07-09 02:09:52 +000010588 unsigned ScalarABIAlignment = DAG.getDataLayout().getABITypeAlignment(STy);
Hal Finkelc93a9a22015-02-25 01:06:45 +000010589 if (LD->isUnindexed() && VT.isVector() &&
10590 ((Subtarget.hasAltivec() && ISD::isNON_EXTLoad(N) &&
10591 // P8 and later hardware should just use LOAD.
10592 !Subtarget.hasP8Vector() && (VT == MVT::v16i8 || VT == MVT::v8i16 ||
10593 VT == MVT::v4i32 || VT == MVT::v4f32)) ||
10594 (Subtarget.hasQPX() && (VT == MVT::v4f64 || VT == MVT::v4f32) &&
10595 LD->getAlignment() >= ScalarABIAlignment)) &&
Hal Finkelcf2e9082013-05-24 23:00:14 +000010596 LD->getAlignment() < ABIAlignment) {
Hal Finkelc93a9a22015-02-25 01:06:45 +000010597 // This is a type-legal unaligned Altivec or QPX load.
Hal Finkelcf2e9082013-05-24 23:00:14 +000010598 SDValue Chain = LD->getChain();
10599 SDValue Ptr = LD->getBasePtr();
Eric Christopherb1aaebe2014-06-12 22:38:18 +000010600 bool isLittleEndian = Subtarget.isLittleEndian();
Hal Finkelcf2e9082013-05-24 23:00:14 +000010601
10602 // This implements the loading of unaligned vectors as described in
10603 // the venerable Apple Velocity Engine overview. Specifically:
10604 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
10605 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
10606 //
10607 // The general idea is to expand a sequence of one or more unaligned
Bill Schmidt6b5a7df2014-06-09 22:00:52 +000010608 // loads into an alignment-based permutation-control instruction (lvsl
10609 // or lvsr), a series of regular vector loads (which always truncate
10610 // their input address to an aligned address), and a series of
10611 // permutations. The results of these permutations are the requested
10612 // loaded values. The trick is that the last "extra" load is not taken
10613 // from the address you might suspect (sizeof(vector) bytes after the
10614 // last requested load), but rather sizeof(vector) - 1 bytes after the
10615 // last requested vector. The point of this is to avoid a page fault if
10616 // the base address happened to be aligned. This works because if the
10617 // base address is aligned, then adding less than a full vector length
10618 // will cause the last vector in the sequence to be (re)loaded.
10619 // Otherwise, the next vector will be fetched as you might suspect was
10620 // necessary.
Hal Finkelcf2e9082013-05-24 23:00:14 +000010621
Hal Finkelbc2ee4c2013-05-25 04:05:05 +000010622 // We might be able to reuse the permutation generation from
Hal Finkelcf2e9082013-05-24 23:00:14 +000010623 // a different base address offset from this one by an aligned amount.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +000010624 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
10625 // optimization later.
Hal Finkelc93a9a22015-02-25 01:06:45 +000010626 Intrinsic::ID Intr, IntrLD, IntrPerm;
10627 MVT PermCntlTy, PermTy, LDTy;
10628 if (Subtarget.hasAltivec()) {
10629 Intr = isLittleEndian ? Intrinsic::ppc_altivec_lvsr :
10630 Intrinsic::ppc_altivec_lvsl;
10631 IntrLD = Intrinsic::ppc_altivec_lvx;
10632 IntrPerm = Intrinsic::ppc_altivec_vperm;
10633 PermCntlTy = MVT::v16i8;
10634 PermTy = MVT::v4i32;
10635 LDTy = MVT::v4i32;
10636 } else {
10637 Intr = MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlpcld :
10638 Intrinsic::ppc_qpx_qvlpcls;
10639 IntrLD = MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlfd :
10640 Intrinsic::ppc_qpx_qvlfs;
10641 IntrPerm = Intrinsic::ppc_qpx_qvfperm;
10642 PermCntlTy = MVT::v4f64;
10643 PermTy = MVT::v4f64;
10644 LDTy = MemVT.getSimpleVT();
10645 }
10646
10647 SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, PermCntlTy);
Hal Finkelcf2e9082013-05-24 23:00:14 +000010648
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010649 // Create the new MMO for the new base load. It is like the original MMO,
10650 // but represents an area in memory almost twice the vector size centered
10651 // on the original address. If the address is unaligned, we might start
10652 // reading up to (sizeof(vector)-1) bytes below the address of the
10653 // original unaligned load.
Hal Finkelcf2e9082013-05-24 23:00:14 +000010654 MachineFunction &MF = DAG.getMachineFunction();
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010655 MachineMemOperand *BaseMMO =
Hal Finkel99d95322015-09-03 21:12:15 +000010656 MF.getMachineMemOperand(LD->getMemOperand(),
10657 -(long)MemVT.getStoreSize()+1,
Hal Finkelc93a9a22015-02-25 01:06:45 +000010658 2*MemVT.getStoreSize()-1);
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010659
10660 // Create the new base load.
Mehdi Amini44ede332015-07-09 02:09:04 +000010661 SDValue LDXIntID =
10662 DAG.getTargetConstant(IntrLD, dl, getPointerTy(MF.getDataLayout()));
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010663 SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr };
10664 SDValue BaseLoad =
10665 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
Hal Finkelc93a9a22015-02-25 01:06:45 +000010666 DAG.getVTList(PermTy, MVT::Other),
10667 BaseLoadOps, LDTy, BaseMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +000010668
10669 // Note that the value of IncOffset (which is provided to the next
10670 // load's pointer info offset value, and thus used to calculate the
10671 // alignment), and the value of IncValue (which is actually used to
10672 // increment the pointer value) are different! This is because we
10673 // require the next load to appear to be aligned, even though it
10674 // is actually offset from the base pointer by a lesser amount.
10675 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel7d8a6912013-05-26 18:08:30 +000010676 int IncValue = IncOffset;
10677
10678 // Walk (both up and down) the chain looking for another load at the real
10679 // (aligned) offset (the alignment of the other load does not matter in
10680 // this case). If found, then do not use the offset reduction trick, as
10681 // that will prevent the loads from being later combined (as they would
10682 // otherwise be duplicates).
10683 if (!findConsecutiveLoad(LD, DAG))
10684 --IncValue;
10685
Mehdi Amini44ede332015-07-09 02:09:04 +000010686 SDValue Increment =
10687 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout()));
Hal Finkelcf2e9082013-05-24 23:00:14 +000010688 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
10689
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010690 MachineMemOperand *ExtraMMO =
10691 MF.getMachineMemOperand(LD->getMemOperand(),
Hal Finkelc93a9a22015-02-25 01:06:45 +000010692 1, 2*MemVT.getStoreSize()-1);
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010693 SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr };
Hal Finkelcf2e9082013-05-24 23:00:14 +000010694 SDValue ExtraLoad =
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010695 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
Hal Finkelc93a9a22015-02-25 01:06:45 +000010696 DAG.getVTList(PermTy, MVT::Other),
10697 ExtraLoadOps, LDTy, ExtraMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +000010698
10699 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
10700 BaseLoad.getValue(1), ExtraLoad.getValue(1));
10701
Bill Schmidt6b5a7df2014-06-09 22:00:52 +000010702 // Because vperm has a big-endian bias, we must reverse the order
10703 // of the input vectors and complement the permute control vector
10704 // when generating little endian code. We have already handled the
10705 // latter by using lvsr instead of lvsl, so just reverse BaseLoad
10706 // and ExtraLoad here.
10707 SDValue Perm;
10708 if (isLittleEndian)
Hal Finkelc93a9a22015-02-25 01:06:45 +000010709 Perm = BuildIntrinsicOp(IntrPerm,
Bill Schmidt6b5a7df2014-06-09 22:00:52 +000010710 ExtraLoad, BaseLoad, PermCntl, DAG, dl);
10711 else
Hal Finkelc93a9a22015-02-25 01:06:45 +000010712 Perm = BuildIntrinsicOp(IntrPerm,
Bill Schmidt6b5a7df2014-06-09 22:00:52 +000010713 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
Hal Finkelcf2e9082013-05-24 23:00:14 +000010714
Hal Finkelc93a9a22015-02-25 01:06:45 +000010715 if (VT != PermTy)
10716 Perm = Subtarget.hasAltivec() ?
10717 DAG.getNode(ISD::BITCAST, dl, VT, Perm) :
10718 DAG.getNode(ISD::FP_ROUND, dl, VT, Perm, // QPX
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010719 DAG.getTargetConstant(1, dl, MVT::i64));
Hal Finkelc93a9a22015-02-25 01:06:45 +000010720 // second argument is 1 because this rounding
10721 // is always exact.
Hal Finkelcf2e9082013-05-24 23:00:14 +000010722
Hal Finkelb6d0d6b2014-08-01 05:20:41 +000010723 // The output of the permutation is our loaded result, the TokenFactor is
10724 // our new chain.
10725 DCI.CombineTo(N, Perm, TF);
Hal Finkelcf2e9082013-05-24 23:00:14 +000010726 return SDValue(N, 0);
10727 }
10728 }
10729 break;
Eric Christophercccae792015-01-30 22:02:31 +000010730 case ISD::INTRINSIC_WO_CHAIN: {
10731 bool isLittleEndian = Subtarget.isLittleEndian();
Hal Finkelc93a9a22015-02-25 01:06:45 +000010732 unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
Eric Christophercccae792015-01-30 22:02:31 +000010733 Intrinsic::ID Intr = (isLittleEndian ? Intrinsic::ppc_altivec_lvsr
10734 : Intrinsic::ppc_altivec_lvsl);
Hal Finkelc93a9a22015-02-25 01:06:45 +000010735 if ((IID == Intr ||
10736 IID == Intrinsic::ppc_qpx_qvlpcld ||
10737 IID == Intrinsic::ppc_qpx_qvlpcls) &&
10738 N->getOperand(1)->getOpcode() == ISD::ADD) {
Eric Christophercccae792015-01-30 22:02:31 +000010739 SDValue Add = N->getOperand(1);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +000010740
Hal Finkelc93a9a22015-02-25 01:06:45 +000010741 int Bits = IID == Intrinsic::ppc_qpx_qvlpcld ?
10742 5 /* 32 byte alignment */ : 4 /* 16 byte alignment */;
10743
Eric Christophercccae792015-01-30 22:02:31 +000010744 if (DAG.MaskedValueIsZero(
10745 Add->getOperand(1),
Hal Finkelc93a9a22015-02-25 01:06:45 +000010746 APInt::getAllOnesValue(Bits /* alignment */)
Eric Christophercccae792015-01-30 22:02:31 +000010747 .zext(
10748 Add.getValueType().getScalarType().getSizeInBits()))) {
10749 SDNode *BasePtr = Add->getOperand(0).getNode();
10750 for (SDNode::use_iterator UI = BasePtr->use_begin(),
10751 UE = BasePtr->use_end();
10752 UI != UE; ++UI) {
10753 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
Hal Finkelc93a9a22015-02-25 01:06:45 +000010754 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() == IID) {
Eric Christophercccae792015-01-30 22:02:31 +000010755 // We've found another LVSL/LVSR, and this address is an aligned
10756 // multiple of that one. The results will be the same, so use the
10757 // one we've just found instead.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +000010758
Eric Christophercccae792015-01-30 22:02:31 +000010759 return SDValue(*UI, 0);
10760 }
Hal Finkelbc2ee4c2013-05-25 04:05:05 +000010761 }
10762 }
Hal Finkelc93a9a22015-02-25 01:06:45 +000010763
10764 if (isa<ConstantSDNode>(Add->getOperand(1))) {
10765 SDNode *BasePtr = Add->getOperand(0).getNode();
10766 for (SDNode::use_iterator UI = BasePtr->use_begin(),
10767 UE = BasePtr->use_end(); UI != UE; ++UI) {
10768 if (UI->getOpcode() == ISD::ADD &&
10769 isa<ConstantSDNode>(UI->getOperand(1)) &&
10770 (cast<ConstantSDNode>(Add->getOperand(1))->getZExtValue() -
10771 cast<ConstantSDNode>(UI->getOperand(1))->getZExtValue()) %
Aaron Ballman5561ed42015-02-25 13:05:24 +000010772 (1ULL << Bits) == 0) {
Hal Finkelc93a9a22015-02-25 01:06:45 +000010773 SDNode *OtherAdd = *UI;
10774 for (SDNode::use_iterator VI = OtherAdd->use_begin(),
10775 VE = OtherAdd->use_end(); VI != VE; ++VI) {
10776 if (VI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10777 cast<ConstantSDNode>(VI->getOperand(0))->getZExtValue() == IID) {
10778 return SDValue(*VI, 0);
10779 }
10780 }
10781 }
10782 }
10783 }
Hal Finkelbc2ee4c2013-05-25 04:05:05 +000010784 }
10785 }
Hal Finkelc3cfbf82013-09-13 20:09:02 +000010786
10787 break;
Bill Schmidtfae5d712014-12-09 16:35:51 +000010788 case ISD::INTRINSIC_W_CHAIN: {
10789 // For little endian, VSX loads require generating lxvd2x/xxswapd.
Eric Christophercccae792015-01-30 22:02:31 +000010790 if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
Bill Schmidtfae5d712014-12-09 16:35:51 +000010791 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10792 default:
10793 break;
10794 case Intrinsic::ppc_vsx_lxvw4x:
10795 case Intrinsic::ppc_vsx_lxvd2x:
10796 return expandVSXLoadForLE(N, DCI);
10797 }
10798 }
10799 break;
10800 }
10801 case ISD::INTRINSIC_VOID: {
10802 // For little endian, VSX stores require generating xxswapd/stxvd2x.
Eric Christophercccae792015-01-30 22:02:31 +000010803 if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
Bill Schmidtfae5d712014-12-09 16:35:51 +000010804 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10805 default:
10806 break;
10807 case Intrinsic::ppc_vsx_stxvw4x:
10808 case Intrinsic::ppc_vsx_stxvd2x:
10809 return expandVSXStoreForLE(N, DCI);
10810 }
10811 }
10812 break;
10813 }
Chris Lattnera7976d32006-07-10 20:56:58 +000010814 case ISD::BSWAP:
10815 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greiff304a7a2008-08-28 21:40:38 +000010816 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnera7976d32006-07-10 20:56:58 +000010817 N->getOperand(0).hasOneUse() &&
Hal Finkel31d29562013-03-28 19:25:55 +000010818 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
Eric Christophercccae792015-01-30 22:02:31 +000010819 (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +000010820 N->getValueType(0) == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010821 SDValue Load = N->getOperand(0);
Evan Chenge71fe34d2006-10-09 20:57:25 +000010822 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnera7976d32006-07-10 20:56:58 +000010823 // Create the byte-swapping load.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010824 SDValue Ops[] = {
Evan Chenge71fe34d2006-10-09 20:57:25 +000010825 LD->getChain(), // Chain
10826 LD->getBasePtr(), // Ptr
Chris Lattnerd66f14e2006-08-11 17:18:05 +000010827 DAG.getValueType(N->getValueType(0)) // VT
10828 };
Dan Gohman48b185d2009-09-25 20:36:54 +000010829 SDValue BSLoad =
10830 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkel31d29562013-03-28 19:25:55 +000010831 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
10832 MVT::i64 : MVT::i32, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +000010833 Ops, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +000010834
Scott Michelcf0da6c2009-02-17 22:15:04 +000010835 // If this is an i16 load, insert the truncate.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010836 SDValue ResVal = BSLoad;
Owen Anderson9f944592009-08-11 20:47:22 +000010837 if (N->getValueType(0) == MVT::i16)
10838 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelcf0da6c2009-02-17 22:15:04 +000010839
Chris Lattnera7976d32006-07-10 20:56:58 +000010840 // First, combine the bswap away. This makes the value produced by the
10841 // load dead.
10842 DCI.CombineTo(N, ResVal);
10843
10844 // Next, combine the load away, we give it a bogus result value but a real
10845 // chain result. The result value is dead because the bswap is dead.
Gabor Greiff304a7a2008-08-28 21:40:38 +000010846 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +000010847
Chris Lattnera7976d32006-07-10 20:56:58 +000010848 // Return N so it doesn't get rechecked!
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010849 return SDValue(N, 0);
Chris Lattnera7976d32006-07-10 20:56:58 +000010850 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010851
Chris Lattner27f53452006-03-01 05:50:56 +000010852 break;
Chris Lattnerd4058a52006-03-31 06:02:07 +000010853 case PPCISD::VCMP: {
10854 // If a VCMPo node already exists with exactly the same operands as this
10855 // node, use its result instead of this node (VCMPo computes both a CR6 and
10856 // a normal output).
10857 //
10858 if (!N->getOperand(0).hasOneUse() &&
10859 !N->getOperand(1).hasOneUse() &&
10860 !N->getOperand(2).hasOneUse()) {
Scott Michelcf0da6c2009-02-17 22:15:04 +000010861
Chris Lattnerd4058a52006-03-31 06:02:07 +000010862 // Scan all of the users of the LHS, looking for VCMPo's that match.
Craig Topper062a2ba2014-04-25 05:30:21 +000010863 SDNode *VCMPoNode = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +000010864
Gabor Greiff304a7a2008-08-28 21:40:38 +000010865 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattnerd4058a52006-03-31 06:02:07 +000010866 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
10867 UI != E; ++UI)
Dan Gohman91e5dcb2008-07-27 20:43:25 +000010868 if (UI->getOpcode() == PPCISD::VCMPo &&
10869 UI->getOperand(1) == N->getOperand(1) &&
10870 UI->getOperand(2) == N->getOperand(2) &&
10871 UI->getOperand(0) == N->getOperand(0)) {
10872 VCMPoNode = *UI;
Chris Lattnerd4058a52006-03-31 06:02:07 +000010873 break;
10874 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010875
Chris Lattner518834c2006-04-18 18:28:22 +000010876 // If there is no VCMPo node, or if the flag value has a single use, don't
10877 // transform this.
10878 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
10879 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +000010880
10881 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner518834c2006-04-18 18:28:22 +000010882 // chain, this transformation is more complex. Note that multiple things
10883 // could use the value result, which we should ignore.
Craig Topper062a2ba2014-04-25 05:30:21 +000010884 SDNode *FlagUser = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +000010885 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Craig Topper062a2ba2014-04-25 05:30:21 +000010886 FlagUser == nullptr; ++UI) {
Chris Lattner518834c2006-04-18 18:28:22 +000010887 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman91e5dcb2008-07-27 20:43:25 +000010888 SDNode *User = *UI;
Chris Lattner518834c2006-04-18 18:28:22 +000010889 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010890 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner518834c2006-04-18 18:28:22 +000010891 FlagUser = User;
10892 break;
10893 }
10894 }
10895 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010896
Ulrich Weigandd5ebc622013-07-03 17:05:42 +000010897 // If the user is a MFOCRF instruction, we know this is safe.
10898 // Otherwise we give up for right now.
10899 if (FlagUser->getOpcode() == PPCISD::MFOCRF)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010900 return SDValue(VCMPoNode, 0);
Chris Lattnerd4058a52006-03-31 06:02:07 +000010901 }
10902 break;
10903 }
Hal Finkel940ab932014-02-28 00:27:01 +000010904 case ISD::BRCOND: {
10905 SDValue Cond = N->getOperand(1);
10906 SDValue Target = N->getOperand(2);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +000010907
Hal Finkel940ab932014-02-28 00:27:01 +000010908 if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10909 cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() ==
10910 Intrinsic::ppc_is_decremented_ctr_nonzero) {
10911
10912 // We now need to make the intrinsic dead (it cannot be instruction
10913 // selected).
10914 DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0));
10915 assert(Cond.getNode()->hasOneUse() &&
10916 "Counter decrement has more than one use");
10917
10918 return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other,
10919 N->getOperand(0), Target);
10920 }
10921 }
10922 break;
Chris Lattner9754d142006-04-18 17:59:36 +000010923 case ISD::BR_CC: {
10924 // If this is a branch on an altivec predicate comparison, lower this so
Ulrich Weigandd5ebc622013-07-03 17:05:42 +000010925 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This
Chris Lattner9754d142006-04-18 17:59:36 +000010926 // lowering is done pre-legalize, because the legalizer lowers the predicate
10927 // compare down to code that is difficult to reassemble.
10928 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010929 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkel25c19922013-05-15 21:37:41 +000010930
10931 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
10932 // value. If so, pass-through the AND to get to the intrinsic.
10933 if (LHS.getOpcode() == ISD::AND &&
10934 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10935 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
10936 Intrinsic::ppc_is_decremented_ctr_nonzero &&
10937 isa<ConstantSDNode>(LHS.getOperand(1)) &&
Artyom Skrobov314ee042015-11-25 19:41:11 +000010938 !isNullConstant(LHS.getOperand(1)))
Hal Finkel25c19922013-05-15 21:37:41 +000010939 LHS = LHS.getOperand(0);
10940
10941 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10942 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
10943 Intrinsic::ppc_is_decremented_ctr_nonzero &&
10944 isa<ConstantSDNode>(RHS)) {
10945 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
10946 "Counter decrement comparison is not EQ or NE");
10947
10948 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
10949 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
10950 (CC == ISD::SETNE && !Val);
10951
10952 // We now need to make the intrinsic dead (it cannot be instruction
10953 // selected).
10954 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
10955 assert(LHS.getNode()->hasOneUse() &&
10956 "Counter decrement has more than one use");
10957
10958 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
10959 N->getOperand(0), N->getOperand(4));
10960 }
10961
Chris Lattner9754d142006-04-18 17:59:36 +000010962 int CompareOpc;
10963 bool isDot;
Scott Michelcf0da6c2009-02-17 22:15:04 +000010964
Chris Lattner9754d142006-04-18 17:59:36 +000010965 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10966 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
Nemanja Ivanovic2c84b292015-09-29 17:41:53 +000010967 getVectorCompareInfo(LHS, CompareOpc, isDot, Subtarget)) {
Chris Lattner9754d142006-04-18 17:59:36 +000010968 assert(isDot && "Can't compare against a vector result!");
Scott Michelcf0da6c2009-02-17 22:15:04 +000010969
Chris Lattner9754d142006-04-18 17:59:36 +000010970 // If this is a comparison against something other than 0/1, then we know
10971 // that the condition is never/always true.
Dan Gohmaneffb8942008-09-12 16:56:44 +000010972 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +000010973 if (Val != 0 && Val != 1) {
10974 if (CC == ISD::SETEQ) // Cond never true, remove branch.
10975 return N->getOperand(0);
10976 // Always !=, turn it into an unconditional branch.
Owen Anderson9f944592009-08-11 20:47:22 +000010977 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner9754d142006-04-18 17:59:36 +000010978 N->getOperand(0), N->getOperand(4));
10979 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000010980
Chris Lattner9754d142006-04-18 17:59:36 +000010981 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +000010982
Chris Lattner9754d142006-04-18 17:59:36 +000010983 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010984 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +000010985 LHS.getOperand(2), // LHS of compare
10986 LHS.getOperand(3), // RHS of compare
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010987 DAG.getConstant(CompareOpc, dl, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +000010988 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +000010989 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +000010990 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +000010991
Chris Lattner9754d142006-04-18 17:59:36 +000010992 // Unpack the result based on how the target uses it.
Chris Lattner8c6a41e2006-11-17 22:10:59 +000010993 PPC::Predicate CompOpc;
Dan Gohmaneffb8942008-09-12 16:56:44 +000010994 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner9754d142006-04-18 17:59:36 +000010995 default: // Can't happen, don't crash on invalid number though.
10996 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +000010997 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner9754d142006-04-18 17:59:36 +000010998 break;
10999 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +000011000 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner9754d142006-04-18 17:59:36 +000011001 break;
11002 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +000011003 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner9754d142006-04-18 17:59:36 +000011004 break;
11005 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +000011006 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner9754d142006-04-18 17:59:36 +000011007 break;
11008 }
11009
Owen Anderson9f944592009-08-11 20:47:22 +000011010 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011011 DAG.getConstant(CompOpc, dl, MVT::i32),
Owen Anderson9f944592009-08-11 20:47:22 +000011012 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner9754d142006-04-18 17:59:36 +000011013 N->getOperand(4), CompNode.getValue(1));
11014 }
11015 break;
11016 }
Chris Lattnerf4184352006-03-01 04:57:39 +000011017 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011018
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011019 return SDValue();
Chris Lattnerf4184352006-03-01 04:57:39 +000011020}
11021
Hal Finkel13d104b2014-12-11 18:37:52 +000011022SDValue
11023PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
11024 SelectionDAG &DAG,
11025 std::vector<SDNode *> *Created) const {
11026 // fold (sdiv X, pow2)
11027 EVT VT = N->getValueType(0);
Hal Finkel04b16b52014-12-23 08:38:50 +000011028 if (VT == MVT::i64 && !Subtarget.isPPC64())
11029 return SDValue();
Hal Finkel13d104b2014-12-11 18:37:52 +000011030 if ((VT != MVT::i32 && VT != MVT::i64) ||
11031 !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
11032 return SDValue();
11033
11034 SDLoc DL(N);
11035 SDValue N0 = N->getOperand(0);
11036
11037 bool IsNegPow2 = (-Divisor).isPowerOf2();
11038 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011039 SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT);
Hal Finkel13d104b2014-12-11 18:37:52 +000011040
11041 SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt);
11042 if (Created)
11043 Created->push_back(Op.getNode());
11044
11045 if (IsNegPow2) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011046 Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Op);
Hal Finkel13d104b2014-12-11 18:37:52 +000011047 if (Created)
11048 Created->push_back(Op.getNode());
11049 }
11050
11051 return Op;
11052}
11053
Chris Lattner4211ca92006-04-14 06:01:58 +000011054//===----------------------------------------------------------------------===//
11055// Inline Assembly Support
11056//===----------------------------------------------------------------------===//
11057
Jay Foada0653a32014-05-14 21:14:37 +000011058void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
11059 APInt &KnownZero,
11060 APInt &KnownOne,
11061 const SelectionDAG &DAG,
11062 unsigned Depth) const {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +000011063 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerc5287c02006-04-02 06:26:07 +000011064 switch (Op.getOpcode()) {
11065 default: break;
Chris Lattnera7976d32006-07-10 20:56:58 +000011066 case PPCISD::LBRX: {
11067 // lhbrx is known to have the top bits cleared out.
Dan Gohmana5fc0352009-09-27 23:17:47 +000011068 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnera7976d32006-07-10 20:56:58 +000011069 KnownZero = 0xFFFF0000;
11070 break;
11071 }
Chris Lattnerc5287c02006-04-02 06:26:07 +000011072 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmaneffb8942008-09-12 16:56:44 +000011073 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerc5287c02006-04-02 06:26:07 +000011074 default: break;
11075 case Intrinsic::ppc_altivec_vcmpbfp_p:
11076 case Intrinsic::ppc_altivec_vcmpeqfp_p:
11077 case Intrinsic::ppc_altivec_vcmpequb_p:
11078 case Intrinsic::ppc_altivec_vcmpequh_p:
11079 case Intrinsic::ppc_altivec_vcmpequw_p:
Kit Barton0cfa7b72015-03-03 19:55:45 +000011080 case Intrinsic::ppc_altivec_vcmpequd_p:
Chris Lattnerc5287c02006-04-02 06:26:07 +000011081 case Intrinsic::ppc_altivec_vcmpgefp_p:
11082 case Intrinsic::ppc_altivec_vcmpgtfp_p:
11083 case Intrinsic::ppc_altivec_vcmpgtsb_p:
11084 case Intrinsic::ppc_altivec_vcmpgtsh_p:
11085 case Intrinsic::ppc_altivec_vcmpgtsw_p:
Kit Barton0cfa7b72015-03-03 19:55:45 +000011086 case Intrinsic::ppc_altivec_vcmpgtsd_p:
Chris Lattnerc5287c02006-04-02 06:26:07 +000011087 case Intrinsic::ppc_altivec_vcmpgtub_p:
11088 case Intrinsic::ppc_altivec_vcmpgtuh_p:
11089 case Intrinsic::ppc_altivec_vcmpgtuw_p:
Kit Barton0cfa7b72015-03-03 19:55:45 +000011090 case Intrinsic::ppc_altivec_vcmpgtud_p:
Chris Lattnerc5287c02006-04-02 06:26:07 +000011091 KnownZero = ~1U; // All bits but the low one are known to be zero.
11092 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011093 }
Chris Lattnerc5287c02006-04-02 06:26:07 +000011094 }
11095 }
11096}
11097
Hal Finkel57725662015-01-03 17:58:24 +000011098unsigned PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const {
11099 switch (Subtarget.getDarwinDirective()) {
11100 default: break;
11101 case PPC::DIR_970:
11102 case PPC::DIR_PWR4:
11103 case PPC::DIR_PWR5:
11104 case PPC::DIR_PWR5X:
11105 case PPC::DIR_PWR6:
11106 case PPC::DIR_PWR6X:
11107 case PPC::DIR_PWR7:
11108 case PPC::DIR_PWR8: {
11109 if (!ML)
11110 break;
11111
Eric Christophercccae792015-01-30 22:02:31 +000011112 const PPCInstrInfo *TII = Subtarget.getInstrInfo();
Hal Finkel57725662015-01-03 17:58:24 +000011113
11114 // For small loops (between 5 and 8 instructions), align to a 32-byte
11115 // boundary so that the entire loop fits in one instruction-cache line.
11116 uint64_t LoopSize = 0;
11117 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I)
Chad Rosierbc9d4f92015-12-14 14:44:06 +000011118 for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J) {
Hal Finkel57725662015-01-03 17:58:24 +000011119 LoopSize += TII->GetInstSizeInBytes(J);
Chad Rosierbc9d4f92015-12-14 14:44:06 +000011120 if (LoopSize > 32)
11121 break;
11122 }
Hal Finkel57725662015-01-03 17:58:24 +000011123
11124 if (LoopSize > 16 && LoopSize <= 32)
11125 return 5;
11126
11127 break;
11128 }
11129 }
11130
11131 return TargetLowering::getPrefLoopAlignment(ML);
11132}
Chris Lattnerc5287c02006-04-02 06:26:07 +000011133
Chris Lattnerd6855142007-03-25 02:14:49 +000011134/// getConstraintType - Given a constraint, return the type of
Chris Lattner203b2f12006-02-07 20:16:30 +000011135/// constraint it is for this target.
Scott Michelcf0da6c2009-02-17 22:15:04 +000011136PPCTargetLowering::ConstraintType
Benjamin Kramer9bfb6272015-07-05 19:29:18 +000011137PPCTargetLowering::getConstraintType(StringRef Constraint) const {
Chris Lattnerd6855142007-03-25 02:14:49 +000011138 if (Constraint.size() == 1) {
11139 switch (Constraint[0]) {
11140 default: break;
11141 case 'b':
11142 case 'r':
11143 case 'f':
Eric Christopherb979d512016-03-24 21:04:52 +000011144 case 'd':
Chris Lattnerd6855142007-03-25 02:14:49 +000011145 case 'v':
11146 case 'y':
11147 return C_RegisterClass;
Hal Finkel4f24c622012-11-05 18:18:42 +000011148 case 'Z':
11149 // FIXME: While Z does indicate a memory constraint, it specifically
11150 // indicates an r+r address (used in conjunction with the 'y' modifier
11151 // in the replacement string). Currently, we're forcing the base
11152 // register to be r0 in the asm printer (which is interpreted as zero)
11153 // and forming the complete address in the second register. This is
11154 // suboptimal.
11155 return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +000011156 }
Hal Finkel6aca2372014-03-02 18:23:39 +000011157 } else if (Constraint == "wc") { // individual CR bits.
11158 return C_RegisterClass;
Hal Finkel27774d92014-03-13 07:58:58 +000011159 } else if (Constraint == "wa" || Constraint == "wd" ||
11160 Constraint == "wf" || Constraint == "ws") {
11161 return C_RegisterClass; // VSX registers.
Chris Lattnerd6855142007-03-25 02:14:49 +000011162 }
11163 return TargetLowering::getConstraintType(Constraint);
Chris Lattner203b2f12006-02-07 20:16:30 +000011164}
11165
John Thompsone8360b72010-10-29 17:29:13 +000011166/// Examine constraint type and operand type and determine a weight value.
11167/// This object must already have been set up with the operand type
11168/// and the current alternative constraint selected.
11169TargetLowering::ConstraintWeight
11170PPCTargetLowering::getSingleConstraintMatchWeight(
11171 AsmOperandInfo &info, const char *constraint) const {
11172 ConstraintWeight weight = CW_Invalid;
11173 Value *CallOperandVal = info.CallOperandVal;
11174 // If we don't have a value, we can't do a match,
11175 // but allow it at the lowest weight.
Craig Topper062a2ba2014-04-25 05:30:21 +000011176 if (!CallOperandVal)
John Thompsone8360b72010-10-29 17:29:13 +000011177 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +000011178 Type *type = CallOperandVal->getType();
Hal Finkel6aca2372014-03-02 18:23:39 +000011179
John Thompsone8360b72010-10-29 17:29:13 +000011180 // Look at the constraint type.
Hal Finkel6aca2372014-03-02 18:23:39 +000011181 if (StringRef(constraint) == "wc" && type->isIntegerTy(1))
11182 return CW_Register; // an individual CR bit.
Hal Finkel27774d92014-03-13 07:58:58 +000011183 else if ((StringRef(constraint) == "wa" ||
11184 StringRef(constraint) == "wd" ||
11185 StringRef(constraint) == "wf") &&
11186 type->isVectorTy())
11187 return CW_Register;
11188 else if (StringRef(constraint) == "ws" && type->isDoubleTy())
11189 return CW_Register;
Hal Finkel6aca2372014-03-02 18:23:39 +000011190
John Thompsone8360b72010-10-29 17:29:13 +000011191 switch (*constraint) {
11192 default:
11193 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11194 break;
11195 case 'b':
11196 if (type->isIntegerTy())
11197 weight = CW_Register;
11198 break;
11199 case 'f':
11200 if (type->isFloatTy())
11201 weight = CW_Register;
11202 break;
11203 case 'd':
11204 if (type->isDoubleTy())
11205 weight = CW_Register;
11206 break;
11207 case 'v':
11208 if (type->isVectorTy())
11209 weight = CW_Register;
11210 break;
11211 case 'y':
11212 weight = CW_Register;
11213 break;
Hal Finkel4f24c622012-11-05 18:18:42 +000011214 case 'Z':
11215 weight = CW_Memory;
11216 break;
John Thompsone8360b72010-10-29 17:29:13 +000011217 }
11218 return weight;
11219}
11220
Eric Christopher11e4df72015-02-26 22:38:43 +000011221std::pair<unsigned, const TargetRegisterClass *>
11222PPCTargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
Benjamin Kramer9bfb6272015-07-05 19:29:18 +000011223 StringRef Constraint,
Chad Rosier295bd432013-06-22 18:37:38 +000011224 MVT VT) const {
Chris Lattner01513612006-01-31 19:20:21 +000011225 if (Constraint.size() == 1) {
Chris Lattner584a11a2006-11-02 01:44:04 +000011226 // GCC RS6000 Constraint Letters
11227 switch (Constraint[0]) {
11228 case 'b': // R1-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +000011229 if (VT == MVT::i64 && Subtarget.isPPC64())
Hal Finkel638a9fa2013-03-19 18:51:05 +000011230 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
11231 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +000011232 case 'r': // R0-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +000011233 if (VT == MVT::i64 && Subtarget.isPPC64())
Craig Topperabadc662012-04-20 06:31:50 +000011234 return std::make_pair(0U, &PPC::G8RCRegClass);
11235 return std::make_pair(0U, &PPC::GPRCRegClass);
Eric Christopherb979d512016-03-24 21:04:52 +000011236 // 'd' and 'f' constraints are both defined to be "the floating point
11237 // registers", where one is for 32-bit and the other for 64-bit. We don't
11238 // really care overly much here so just give them all the same reg classes.
11239 case 'd':
Chris Lattner584a11a2006-11-02 01:44:04 +000011240 case 'f':
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +000011241 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperabadc662012-04-20 06:31:50 +000011242 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +000011243 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperabadc662012-04-20 06:31:50 +000011244 return std::make_pair(0U, &PPC::F8RCRegClass);
Hal Finkelc93a9a22015-02-25 01:06:45 +000011245 if (VT == MVT::v4f64 && Subtarget.hasQPX())
11246 return std::make_pair(0U, &PPC::QFRCRegClass);
11247 if (VT == MVT::v4f32 && Subtarget.hasQPX())
11248 return std::make_pair(0U, &PPC::QSRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +000011249 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011250 case 'v':
Hal Finkelc93a9a22015-02-25 01:06:45 +000011251 if (VT == MVT::v4f64 && Subtarget.hasQPX())
11252 return std::make_pair(0U, &PPC::QFRCRegClass);
11253 if (VT == MVT::v4f32 && Subtarget.hasQPX())
11254 return std::make_pair(0U, &PPC::QSRCRegClass);
Hal Finkelbdd292a2015-10-28 23:03:45 +000011255 if (Subtarget.hasAltivec())
11256 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +000011257 case 'y': // crrc
Craig Topperabadc662012-04-20 06:31:50 +000011258 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +000011259 }
Hal Finkel34d41492015-10-28 22:25:52 +000011260 } else if (Constraint == "wc" && Subtarget.useCRBits()) {
11261 // An individual CR bit.
Hal Finkel6aca2372014-03-02 18:23:39 +000011262 return std::make_pair(0U, &PPC::CRBITRCRegClass);
Hal Finkelbdd292a2015-10-28 23:03:45 +000011263 } else if ((Constraint == "wa" || Constraint == "wd" ||
11264 Constraint == "wf") && Subtarget.hasVSX()) {
Hal Finkel27774d92014-03-13 07:58:58 +000011265 return std::make_pair(0U, &PPC::VSRCRegClass);
Hal Finkelbdd292a2015-10-28 23:03:45 +000011266 } else if (Constraint == "ws" && Subtarget.hasVSX()) {
11267 if (VT == MVT::f32 && Subtarget.hasP8Vector())
Nemanja Ivanovicf3c94b12015-05-07 18:24:05 +000011268 return std::make_pair(0U, &PPC::VSSRCRegClass);
11269 else
11270 return std::make_pair(0U, &PPC::VSFRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +000011271 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011272
Eric Christopher11e4df72015-02-26 22:38:43 +000011273 std::pair<unsigned, const TargetRegisterClass *> R =
11274 TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
Hal Finkelb176acb2013-08-03 12:25:10 +000011275
11276 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
11277 // (which we call X[0-9]+). If a 64-bit value has been requested, and a
11278 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
11279 // register.
11280 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
11281 // the AsmName field from *RegisterInfo.td, then this would not be necessary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +000011282 if (R.first && VT == MVT::i64 && Subtarget.isPPC64() &&
Eric Christopher11e4df72015-02-26 22:38:43 +000011283 PPC::GPRCRegClass.contains(R.first))
Hal Finkelb176acb2013-08-03 12:25:10 +000011284 return std::make_pair(TRI->getMatchingSuperReg(R.first,
Hal Finkelb3ca00d2013-08-14 20:05:04 +000011285 PPC::sub_32, &PPC::G8RCRegClass),
Hal Finkelb176acb2013-08-03 12:25:10 +000011286 &PPC::G8RCRegClass);
Hal Finkelb176acb2013-08-03 12:25:10 +000011287
Hal Finkelaa10b3c2014-12-08 22:54:22 +000011288 // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same.
11289 if (!R.second && StringRef("{cc}").equals_lower(Constraint)) {
11290 R.first = PPC::CR0;
11291 R.second = &PPC::CRRCRegClass;
11292 }
11293
Hal Finkelb176acb2013-08-03 12:25:10 +000011294 return R;
Chris Lattner01513612006-01-31 19:20:21 +000011295}
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011296
Chris Lattnerd8c9cb92007-08-25 00:47:38 +000011297/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesence97d552010-06-25 21:55:36 +000011298/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher0713a9d2011-06-08 23:55:35 +000011299void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +000011300 std::string &Constraint,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011301 std::vector<SDValue>&Ops,
Chris Lattner724539c2008-04-26 23:02:14 +000011302 SelectionDAG &DAG) const {
Craig Topper062a2ba2014-04-25 05:30:21 +000011303 SDValue Result;
Eric Christopher0713a9d2011-06-08 23:55:35 +000011304
Eric Christopherde9399b2011-06-02 23:16:42 +000011305 // Only support length 1 constraints.
11306 if (Constraint.length() > 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +000011307
Eric Christopherde9399b2011-06-02 23:16:42 +000011308 char Letter = Constraint[0];
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011309 switch (Letter) {
11310 default: break;
11311 case 'I':
11312 case 'J':
11313 case 'K':
11314 case 'L':
11315 case 'M':
11316 case 'N':
11317 case 'O':
11318 case 'P': {
Chris Lattner0b7472d2007-05-15 01:31:05 +000011319 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattnerd8c9cb92007-08-25 00:47:38 +000011320 if (!CST) return; // Must be an immediate to match.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011321 SDLoc dl(Op);
Hal Finkelc91fc112014-12-03 09:37:50 +000011322 int64_t Value = CST->getSExtValue();
11323 EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative
11324 // numbers are printed as such.
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011325 switch (Letter) {
Torok Edwinfbcc6632009-07-14 16:55:14 +000011326 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011327 case 'I': // "I" is a signed 16-bit constant.
Hal Finkelc91fc112014-12-03 09:37:50 +000011328 if (isInt<16>(Value))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011329 Result = DAG.getTargetConstant(Value, dl, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +000011330 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011331 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
Hal Finkelc91fc112014-12-03 09:37:50 +000011332 if (isShiftedUInt<16, 16>(Value))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011333 Result = DAG.getTargetConstant(Value, dl, TCVT);
Hal Finkelc91fc112014-12-03 09:37:50 +000011334 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011335 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Hal Finkelc91fc112014-12-03 09:37:50 +000011336 if (isShiftedInt<16, 16>(Value))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011337 Result = DAG.getTargetConstant(Value, dl, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +000011338 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011339 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Hal Finkelc91fc112014-12-03 09:37:50 +000011340 if (isUInt<16>(Value))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011341 Result = DAG.getTargetConstant(Value, dl, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +000011342 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011343 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner0b7472d2007-05-15 01:31:05 +000011344 if (Value > 31)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011345 Result = DAG.getTargetConstant(Value, dl, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +000011346 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011347 case 'N': // "N" is a positive constant that is an exact power of two.
Hal Finkelc91fc112014-12-03 09:37:50 +000011348 if (Value > 0 && isPowerOf2_64(Value))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011349 Result = DAG.getTargetConstant(Value, dl, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +000011350 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011351 case 'O': // "O" is the constant zero.
Chris Lattner0b7472d2007-05-15 01:31:05 +000011352 if (Value == 0)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011353 Result = DAG.getTargetConstant(Value, dl, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +000011354 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011355 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Hal Finkelc91fc112014-12-03 09:37:50 +000011356 if (isInt<16>(-Value))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011357 Result = DAG.getTargetConstant(Value, dl, TCVT);
Chris Lattner8c6949e2006-10-31 19:40:43 +000011358 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011359 }
11360 break;
11361 }
11362 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011363
Gabor Greiff304a7a2008-08-28 21:40:38 +000011364 if (Result.getNode()) {
Chris Lattnerd8c9cb92007-08-25 00:47:38 +000011365 Ops.push_back(Result);
11366 return;
11367 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011368
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011369 // Handle standard constraint letters.
Eric Christopherde9399b2011-06-02 23:16:42 +000011370 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner15a6c4c2006-02-07 00:47:13 +000011371}
Evan Cheng2dd2c652006-03-13 23:20:37 +000011372
Chris Lattner1eb94d92007-03-30 23:15:24 +000011373// isLegalAddressingMode - Return true if the addressing mode represented
11374// by AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +000011375bool PPCTargetLowering::isLegalAddressingMode(const DataLayout &DL,
11376 const AddrMode &AM, Type *Ty,
Matt Arsenaultbd7d80a2015-06-01 05:31:59 +000011377 unsigned AS) const {
Hal Finkelc93a9a22015-02-25 01:06:45 +000011378 // PPC does not allow r+i addressing modes for vectors!
11379 if (Ty->isVectorTy() && AM.BaseOffs != 0)
11380 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011381
Chris Lattner1eb94d92007-03-30 23:15:24 +000011382 // PPC allows a sign-extended 16-bit immediate field.
11383 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
11384 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011385
Chris Lattner1eb94d92007-03-30 23:15:24 +000011386 // No global is ever allowed as a base.
11387 if (AM.BaseGV)
11388 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +000011389
11390 // PPC only support r+r,
Chris Lattner1eb94d92007-03-30 23:15:24 +000011391 switch (AM.Scale) {
11392 case 0: // "r+i" or just "i", depending on HasBaseReg.
11393 break;
11394 case 1:
11395 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
11396 return false;
11397 // Otherwise we have r+r or r+i.
11398 break;
11399 case 2:
11400 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
11401 return false;
11402 // Allow 2*r as r+r.
11403 break;
Chris Lattner19ccd622007-04-09 22:10:05 +000011404 default:
11405 // No other scales are supported.
11406 return false;
Chris Lattner1eb94d92007-03-30 23:15:24 +000011407 }
Scott Michelcf0da6c2009-02-17 22:15:04 +000011408
Chris Lattner1eb94d92007-03-30 23:15:24 +000011409 return true;
11410}
11411
Dan Gohman21cea8a2010-04-17 15:26:15 +000011412SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
11413 SelectionDAG &DAG) const {
Evan Cheng168ced92010-05-22 01:47:14 +000011414 MachineFunction &MF = DAG.getMachineFunction();
11415 MachineFrameInfo *MFI = MF.getFrameInfo();
11416 MFI->setReturnAddressIsTaken(true);
11417
Bill Wendling908bf812014-01-06 00:43:20 +000011418 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +000011419 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +000011420
Andrew Trickef9de2a2013-05-25 02:42:55 +000011421 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +000011422 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattnerf6a81562007-12-08 06:59:59 +000011423
Dale Johannesen81bfca72010-05-03 22:59:34 +000011424 // Make sure the function does not optimize away the store of the RA to
11425 // the stack.
Chris Lattnerf6a81562007-12-08 06:59:59 +000011426 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen81bfca72010-05-03 22:59:34 +000011427 FuncInfo->setLRStoreRequired();
Eric Christopherb1aaebe2014-06-12 22:38:18 +000011428 bool isPPC64 = Subtarget.isPPC64();
Mehdi Amini44ede332015-07-09 02:09:04 +000011429 auto PtrVT = getPointerTy(MF.getDataLayout());
Dale Johannesen81bfca72010-05-03 22:59:34 +000011430
11431 if (Depth > 0) {
11432 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11433 SDValue Offset =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011434 DAG.getConstant(Subtarget.getFrameLowering()->getReturnSaveOffset(), dl,
Eric Christopherf71609b2015-02-13 00:39:27 +000011435 isPPC64 ? MVT::i64 : MVT::i32);
Mehdi Amini44ede332015-07-09 02:09:04 +000011436 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11437 DAG.getNode(ISD::ADD, dl, PtrVT, FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +000011438 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +000011439 }
Chris Lattnerf6a81562007-12-08 06:59:59 +000011440
Chris Lattnerf6a81562007-12-08 06:59:59 +000011441 // Just load the return address off the stack.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011442 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Mehdi Amini44ede332015-07-09 02:09:04 +000011443 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), RetAddrFI,
11444 MachinePointerInfo(), false, false, false, 0);
Chris Lattnerf6a81562007-12-08 06:59:59 +000011445}
11446
Dan Gohman21cea8a2010-04-17 15:26:15 +000011447SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
11448 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +000011449 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +000011450 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +000011451
Nicolas Geoffray75ab9792007-03-01 13:11:38 +000011452 MachineFunction &MF = DAG.getMachineFunction();
11453 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen81bfca72010-05-03 22:59:34 +000011454 MFI->setFrameAddressIsTaken(true);
Hal Finkelaa03c032013-03-21 19:03:19 +000011455
Mehdi Amini44ede332015-07-09 02:09:04 +000011456 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
11457 bool isPPC64 = PtrVT == MVT::i64;
11458
Hal Finkelaa03c032013-03-21 19:03:19 +000011459 // Naked functions never have a frame pointer, and so we use r1. For all
11460 // other functions, this decision must be delayed until during PEI.
11461 unsigned FrameReg;
Duncan P. N. Exon Smith5bedaf932015-02-14 02:54:07 +000011462 if (MF.getFunction()->hasFnAttribute(Attribute::Naked))
Hal Finkelaa03c032013-03-21 19:03:19 +000011463 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
11464 else
11465 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
11466
Dale Johannesen81bfca72010-05-03 22:59:34 +000011467 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
11468 PtrVT);
11469 while (Depth--)
11470 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +000011471 FrameAddr, MachinePointerInfo(), false, false,
11472 false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +000011473 return FrameAddr;
Nicolas Geoffray75ab9792007-03-01 13:11:38 +000011474}
Dan Gohmanc14e5222008-10-21 03:41:46 +000011475
Hal Finkel0d8db462014-05-11 19:29:11 +000011476// FIXME? Maybe this could be a TableGen attribute on some registers and
11477// this table could be generated automatically from RegInfo.
Pat Gavlina717f252015-07-09 17:40:29 +000011478unsigned PPCTargetLowering::getRegisterByName(const char* RegName, EVT VT,
11479 SelectionDAG &DAG) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +000011480 bool isPPC64 = Subtarget.isPPC64();
11481 bool isDarwinABI = Subtarget.isDarwinABI();
Hal Finkel0d8db462014-05-11 19:29:11 +000011482
11483 if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) ||
11484 (!isPPC64 && VT != MVT::i32))
11485 report_fatal_error("Invalid register global variable type");
11486
11487 bool is64Bit = isPPC64 && VT == MVT::i64;
11488 unsigned Reg = StringSwitch<unsigned>(RegName)
11489 .Case("r1", is64Bit ? PPC::X1 : PPC::R1)
Hal Finkele6698d52015-02-01 15:03:28 +000011490 .Case("r2", (isDarwinABI || isPPC64) ? 0 : PPC::R2)
Hal Finkel0d8db462014-05-11 19:29:11 +000011491 .Case("r13", (!isPPC64 && isDarwinABI) ? 0 :
11492 (is64Bit ? PPC::X13 : PPC::R13))
11493 .Default(0);
11494
11495 if (Reg)
11496 return Reg;
11497 report_fatal_error("Invalid register name global variable");
11498}
11499
Dan Gohmanc14e5222008-10-21 03:41:46 +000011500bool
11501PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
11502 // The PowerPC target isn't yet aware of offsets.
11503 return false;
11504}
Tilmann Schellerb93960d2009-07-03 06:45:56 +000011505
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011506bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
11507 const CallInst &I,
11508 unsigned Intrinsic) const {
11509
11510 switch (Intrinsic) {
Hal Finkelc93a9a22015-02-25 01:06:45 +000011511 case Intrinsic::ppc_qpx_qvlfd:
11512 case Intrinsic::ppc_qpx_qvlfs:
11513 case Intrinsic::ppc_qpx_qvlfcd:
11514 case Intrinsic::ppc_qpx_qvlfcs:
11515 case Intrinsic::ppc_qpx_qvlfiwa:
11516 case Intrinsic::ppc_qpx_qvlfiwz:
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011517 case Intrinsic::ppc_altivec_lvx:
11518 case Intrinsic::ppc_altivec_lvxl:
11519 case Intrinsic::ppc_altivec_lvebx:
11520 case Intrinsic::ppc_altivec_lvehx:
Bill Schmidt72954782014-11-12 04:19:40 +000011521 case Intrinsic::ppc_altivec_lvewx:
11522 case Intrinsic::ppc_vsx_lxvd2x:
11523 case Intrinsic::ppc_vsx_lxvw4x: {
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011524 EVT VT;
11525 switch (Intrinsic) {
11526 case Intrinsic::ppc_altivec_lvebx:
11527 VT = MVT::i8;
11528 break;
11529 case Intrinsic::ppc_altivec_lvehx:
11530 VT = MVT::i16;
11531 break;
11532 case Intrinsic::ppc_altivec_lvewx:
11533 VT = MVT::i32;
11534 break;
Bill Schmidt72954782014-11-12 04:19:40 +000011535 case Intrinsic::ppc_vsx_lxvd2x:
11536 VT = MVT::v2f64;
11537 break;
Hal Finkelc93a9a22015-02-25 01:06:45 +000011538 case Intrinsic::ppc_qpx_qvlfd:
11539 VT = MVT::v4f64;
11540 break;
11541 case Intrinsic::ppc_qpx_qvlfs:
11542 VT = MVT::v4f32;
11543 break;
11544 case Intrinsic::ppc_qpx_qvlfcd:
11545 VT = MVT::v2f64;
11546 break;
11547 case Intrinsic::ppc_qpx_qvlfcs:
11548 VT = MVT::v2f32;
11549 break;
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011550 default:
11551 VT = MVT::v4i32;
11552 break;
11553 }
11554
11555 Info.opc = ISD::INTRINSIC_W_CHAIN;
11556 Info.memVT = VT;
11557 Info.ptrVal = I.getArgOperand(0);
11558 Info.offset = -VT.getStoreSize()+1;
11559 Info.size = 2*VT.getStoreSize()-1;
11560 Info.align = 1;
11561 Info.vol = false;
11562 Info.readMem = true;
11563 Info.writeMem = false;
11564 return true;
11565 }
Hal Finkelc93a9a22015-02-25 01:06:45 +000011566 case Intrinsic::ppc_qpx_qvlfda:
11567 case Intrinsic::ppc_qpx_qvlfsa:
11568 case Intrinsic::ppc_qpx_qvlfcda:
11569 case Intrinsic::ppc_qpx_qvlfcsa:
11570 case Intrinsic::ppc_qpx_qvlfiwaa:
11571 case Intrinsic::ppc_qpx_qvlfiwza: {
11572 EVT VT;
11573 switch (Intrinsic) {
11574 case Intrinsic::ppc_qpx_qvlfda:
11575 VT = MVT::v4f64;
11576 break;
11577 case Intrinsic::ppc_qpx_qvlfsa:
11578 VT = MVT::v4f32;
11579 break;
11580 case Intrinsic::ppc_qpx_qvlfcda:
11581 VT = MVT::v2f64;
11582 break;
11583 case Intrinsic::ppc_qpx_qvlfcsa:
11584 VT = MVT::v2f32;
11585 break;
11586 default:
11587 VT = MVT::v4i32;
11588 break;
11589 }
11590
11591 Info.opc = ISD::INTRINSIC_W_CHAIN;
11592 Info.memVT = VT;
11593 Info.ptrVal = I.getArgOperand(0);
11594 Info.offset = 0;
11595 Info.size = VT.getStoreSize();
11596 Info.align = 1;
11597 Info.vol = false;
11598 Info.readMem = true;
11599 Info.writeMem = false;
11600 return true;
11601 }
11602 case Intrinsic::ppc_qpx_qvstfd:
11603 case Intrinsic::ppc_qpx_qvstfs:
11604 case Intrinsic::ppc_qpx_qvstfcd:
11605 case Intrinsic::ppc_qpx_qvstfcs:
11606 case Intrinsic::ppc_qpx_qvstfiw:
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011607 case Intrinsic::ppc_altivec_stvx:
11608 case Intrinsic::ppc_altivec_stvxl:
11609 case Intrinsic::ppc_altivec_stvebx:
11610 case Intrinsic::ppc_altivec_stvehx:
Bill Schmidt72954782014-11-12 04:19:40 +000011611 case Intrinsic::ppc_altivec_stvewx:
11612 case Intrinsic::ppc_vsx_stxvd2x:
11613 case Intrinsic::ppc_vsx_stxvw4x: {
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011614 EVT VT;
11615 switch (Intrinsic) {
11616 case Intrinsic::ppc_altivec_stvebx:
11617 VT = MVT::i8;
11618 break;
11619 case Intrinsic::ppc_altivec_stvehx:
11620 VT = MVT::i16;
11621 break;
11622 case Intrinsic::ppc_altivec_stvewx:
11623 VT = MVT::i32;
11624 break;
Bill Schmidt72954782014-11-12 04:19:40 +000011625 case Intrinsic::ppc_vsx_stxvd2x:
11626 VT = MVT::v2f64;
11627 break;
Hal Finkelc93a9a22015-02-25 01:06:45 +000011628 case Intrinsic::ppc_qpx_qvstfd:
11629 VT = MVT::v4f64;
11630 break;
11631 case Intrinsic::ppc_qpx_qvstfs:
11632 VT = MVT::v4f32;
11633 break;
11634 case Intrinsic::ppc_qpx_qvstfcd:
11635 VT = MVT::v2f64;
11636 break;
11637 case Intrinsic::ppc_qpx_qvstfcs:
11638 VT = MVT::v2f32;
11639 break;
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011640 default:
11641 VT = MVT::v4i32;
11642 break;
11643 }
11644
11645 Info.opc = ISD::INTRINSIC_VOID;
11646 Info.memVT = VT;
11647 Info.ptrVal = I.getArgOperand(1);
11648 Info.offset = -VT.getStoreSize()+1;
11649 Info.size = 2*VT.getStoreSize()-1;
11650 Info.align = 1;
11651 Info.vol = false;
11652 Info.readMem = false;
11653 Info.writeMem = true;
11654 return true;
11655 }
Hal Finkelc93a9a22015-02-25 01:06:45 +000011656 case Intrinsic::ppc_qpx_qvstfda:
11657 case Intrinsic::ppc_qpx_qvstfsa:
11658 case Intrinsic::ppc_qpx_qvstfcda:
11659 case Intrinsic::ppc_qpx_qvstfcsa:
11660 case Intrinsic::ppc_qpx_qvstfiwa: {
11661 EVT VT;
11662 switch (Intrinsic) {
11663 case Intrinsic::ppc_qpx_qvstfda:
11664 VT = MVT::v4f64;
11665 break;
11666 case Intrinsic::ppc_qpx_qvstfsa:
11667 VT = MVT::v4f32;
11668 break;
11669 case Intrinsic::ppc_qpx_qvstfcda:
11670 VT = MVT::v2f64;
11671 break;
11672 case Intrinsic::ppc_qpx_qvstfcsa:
11673 VT = MVT::v2f32;
11674 break;
11675 default:
11676 VT = MVT::v4i32;
11677 break;
11678 }
11679
11680 Info.opc = ISD::INTRINSIC_VOID;
11681 Info.memVT = VT;
11682 Info.ptrVal = I.getArgOperand(1);
11683 Info.offset = 0;
11684 Info.size = VT.getStoreSize();
11685 Info.align = 1;
11686 Info.vol = false;
11687 Info.readMem = false;
11688 Info.writeMem = true;
11689 return true;
11690 }
Hal Finkel46ef7ce2014-08-13 01:15:40 +000011691 default:
11692 break;
11693 }
11694
11695 return false;
11696}
11697
Evan Chengd9929f02010-04-01 20:10:42 +000011698/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng61399372010-04-02 19:36:14 +000011699/// and store operations as a result of memset, memcpy, and memmove
11700/// lowering. If DstAlign is zero that means it's safe to destination
11701/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
11702/// means there isn't a need to check it against alignment requirement,
Evan Cheng962711e2012-12-12 02:34:41 +000011703/// probably because the source does not need to be loaded. If 'IsMemset' is
11704/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
11705/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
11706/// source is constant so it does not need to be loaded.
Dan Gohman148c69a2010-04-16 20:11:05 +000011707/// It returns EVT::Other if the type should be determined using generic
11708/// target-independent logic.
Evan Cheng43cd9e32010-04-01 06:04:33 +000011709EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
11710 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +000011711 bool IsMemset, bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +000011712 bool MemcpyStrSrc,
Dan Gohman148c69a2010-04-16 20:11:05 +000011713 MachineFunction &MF) const {
Hal Finkel52368d42015-03-31 20:56:09 +000011714 if (getTargetMachine().getOptLevel() != CodeGenOpt::None) {
11715 const Function *F = MF.getFunction();
11716 // When expanding a memset, require at least two QPX instructions to cover
11717 // the cost of loading the value to be stored from the constant pool.
11718 if (Subtarget.hasQPX() && Size >= 32 && (!IsMemset || Size >= 64) &&
11719 (!SrcAlign || SrcAlign >= 32) && (!DstAlign || DstAlign >= 32) &&
11720 !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
11721 return MVT::v4f64;
11722 }
Hal Finkel5c3cacf2015-02-27 19:58:28 +000011723
Hal Finkel52368d42015-03-31 20:56:09 +000011724 // We should use Altivec/VSX loads and stores when available. For unaligned
11725 // addresses, unaligned VSX loads are only fast starting with the P8.
11726 if (Subtarget.hasAltivec() && Size >= 16 &&
11727 (((!SrcAlign || SrcAlign >= 16) && (!DstAlign || DstAlign >= 16)) ||
11728 ((IsMemset && Subtarget.hasVSX()) || Subtarget.hasP8Vector())))
11729 return MVT::v4i32;
11730 }
Hal Finkel5c3cacf2015-02-27 19:58:28 +000011731
Eric Christopherd90a8742014-06-12 22:38:20 +000011732 if (Subtarget.isPPC64()) {
Owen Anderson9f944592009-08-11 20:47:22 +000011733 return MVT::i64;
Tilmann Schellerb93960d2009-07-03 06:45:56 +000011734 }
Hal Finkel5c3cacf2015-02-27 19:58:28 +000011735
11736 return MVT::i32;
Tilmann Schellerb93960d2009-07-03 06:45:56 +000011737}
Hal Finkel88ed4e32012-04-01 19:23:08 +000011738
Hal Finkel34974ed2014-04-12 21:52:38 +000011739/// \brief Returns true if it is beneficial to convert a load of a constant
11740/// to just the constant itself.
11741bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
11742 Type *Ty) const {
11743 assert(Ty->isIntegerTy());
11744
11745 unsigned BitSize = Ty->getPrimitiveSizeInBits();
Alexander Kornienko175a7cb2015-12-28 13:38:42 +000011746 return !(BitSize == 0 || BitSize > 64);
Hal Finkel34974ed2014-04-12 21:52:38 +000011747}
11748
11749bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
11750 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
11751 return false;
11752 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
11753 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
11754 return NumBits1 == 64 && NumBits2 == 32;
11755}
11756
11757bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
11758 if (!VT1.isInteger() || !VT2.isInteger())
11759 return false;
11760 unsigned NumBits1 = VT1.getSizeInBits();
11761 unsigned NumBits2 = VT2.getSizeInBits();
11762 return NumBits1 == 64 && NumBits2 == 32;
11763}
11764
Hal Finkel5d5d1532015-01-10 08:21:59 +000011765bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
11766 // Generally speaking, zexts are not free, but they are free when they can be
11767 // folded with other operations.
11768 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) {
11769 EVT MemVT = LD->getMemoryVT();
11770 if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 ||
11771 (Subtarget.isPPC64() && MemVT == MVT::i32)) &&
11772 (LD->getExtensionType() == ISD::NON_EXTLOAD ||
11773 LD->getExtensionType() == ISD::ZEXTLOAD))
11774 return true;
11775 }
11776
11777 // FIXME: Add other cases...
11778 // - 32-bit shifts with a zext to i64
11779 // - zext after ctlz, bswap, etc.
11780 // - zext after and by a constant mask
11781
11782 return TargetLowering::isZExtFree(Val, VT2);
11783}
11784
Olivier Sallenave32509692015-01-13 15:06:36 +000011785bool PPCTargetLowering::isFPExtFree(EVT VT) const {
11786 assert(VT.isFloatingPoint());
11787 return true;
11788}
11789
Hal Finkel34974ed2014-04-12 21:52:38 +000011790bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
11791 return isInt<16>(Imm) || isUInt<16>(Imm);
11792}
11793
11794bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
11795 return isInt<16>(Imm) || isUInt<16>(Imm);
11796}
11797
Matt Arsenault6f2a5262014-07-27 17:46:40 +000011798bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
11799 unsigned,
11800 unsigned,
11801 bool *Fast) const {
Hal Finkel8d7fbc92013-03-15 15:27:13 +000011802 if (DisablePPCUnaligned)
11803 return false;
11804
11805 // PowerPC supports unaligned memory access for simple non-vector types.
11806 // Although accessing unaligned addresses is not as efficient as accessing
11807 // aligned addresses, it is generally more efficient than manual expansion,
11808 // and generally only traps for software emulation when crossing page
11809 // boundaries.
11810
11811 if (!VT.isSimple())
11812 return false;
11813
Hal Finkel6e28e6a2014-03-26 19:39:09 +000011814 if (VT.getSimpleVT().isVector()) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +000011815 if (Subtarget.hasVSX()) {
Bill Schmidt2d1128a2014-10-17 15:13:38 +000011816 if (VT != MVT::v2f64 && VT != MVT::v2i64 &&
11817 VT != MVT::v4f32 && VT != MVT::v4i32)
Hal Finkel6e28e6a2014-03-26 19:39:09 +000011818 return false;
11819 } else {
11820 return false;
11821 }
11822 }
Hal Finkel8d7fbc92013-03-15 15:27:13 +000011823
11824 if (VT == MVT::ppcf128)
11825 return false;
11826
11827 if (Fast)
11828 *Fast = true;
11829
11830 return true;
11831}
11832
Stephen Lin73de7bf2013-07-09 18:16:56 +000011833bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
11834 VT = VT.getScalarType();
11835
Hal Finkel0a479ae2012-06-22 00:49:52 +000011836 if (!VT.isSimple())
11837 return false;
11838
11839 switch (VT.getSimpleVT().SimpleTy) {
11840 case MVT::f32:
11841 case MVT::f64:
Hal Finkel0a479ae2012-06-22 00:49:52 +000011842 return true;
11843 default:
11844 break;
11845 }
11846
11847 return false;
11848}
11849
Hal Finkel934361a2015-01-14 01:07:51 +000011850const MCPhysReg *
11851PPCTargetLowering::getScratchRegisters(CallingConv::ID) const {
11852 // LR is a callee-save register, but we must treat it as clobbered by any call
11853 // site. Hence we include LR in the scratch registers, which are in turn added
11854 // as implicit-defs for stackmaps and patchpoints. The same reasoning applies
11855 // to CTR, which is used by any indirect call.
11856 static const MCPhysReg ScratchRegs[] = {
Hal Finkelc19805a2015-01-17 03:57:34 +000011857 PPC::X12, PPC::LR8, PPC::CTR8, 0
Hal Finkel934361a2015-01-14 01:07:51 +000011858 };
11859
11860 return ScratchRegs;
11861}
11862
Joseph Tremouletf748c892015-11-07 01:11:31 +000011863unsigned PPCTargetLowering::getExceptionPointerRegister(
11864 const Constant *PersonalityFn) const {
11865 return Subtarget.isPPC64() ? PPC::X3 : PPC::R3;
11866}
11867
11868unsigned PPCTargetLowering::getExceptionSelectorRegister(
11869 const Constant *PersonalityFn) const {
11870 return Subtarget.isPPC64() ? PPC::X4 : PPC::R4;
11871}
11872
Hal Finkelb4240ca2014-03-31 17:48:16 +000011873bool
11874PPCTargetLowering::shouldExpandBuildVectorWithShuffles(
11875 EVT VT , unsigned DefinedValues) const {
11876 if (VT == MVT::v2i64)
Nemanja Ivanovic1c39ca62015-08-13 17:40:44 +000011877 return Subtarget.hasDirectMove(); // Don't need stack ops with direct moves
Hal Finkelb4240ca2014-03-31 17:48:16 +000011878
Hal Finkelc93a9a22015-02-25 01:06:45 +000011879 if (Subtarget.hasQPX()) {
11880 if (VT == MVT::v4f32 || VT == MVT::v4f64 || VT == MVT::v4i1)
11881 return true;
11882 }
11883
Hal Finkelb4240ca2014-03-31 17:48:16 +000011884 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
11885}
11886
Hal Finkel88ed4e32012-04-01 19:23:08 +000011887Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +000011888 if (DisableILPPref || Subtarget.enableMachineScheduler())
Hal Finkel4e9f1a82012-06-10 19:32:29 +000011889 return TargetLowering::getSchedulingPreference(N);
Hal Finkel88ed4e32012-04-01 19:23:08 +000011890
Hal Finkel4e9f1a82012-06-10 19:32:29 +000011891 return Sched::ILP;
Hal Finkel88ed4e32012-04-01 19:23:08 +000011892}
11893
Bill Schmidt0cf702f2013-07-30 00:50:39 +000011894// Create a fast isel object.
11895FastISel *
11896PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
11897 const TargetLibraryInfo *LibInfo) const {
11898 return PPC::createFastISel(FuncInfo, LibInfo);
11899}