blob: 4028fedb6c5e575cac3d7327bde65e02c2f2b531 [file] [log] [blame]
Nate Begeman0b71e002005-10-18 00:28:58 +00001//===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
Chris Lattnerf22556d2005-08-16 17:14:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerf22556d2005-08-16 17:14:42 +00007//
8//===----------------------------------------------------------------------===//
9//
Nate Begeman6cca84e2005-10-16 05:39:50 +000010// This file implements the PPCISelLowering class.
Chris Lattnerf22556d2005-08-16 17:14:42 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner6f3b9542005-10-14 23:59:06 +000014#include "PPCISelLowering.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "MCTargetDesc/PPCPredicates.h"
Jim Laskey48850c12006-11-16 22:43:37 +000016#include "PPCMachineFunctionInfo.h"
Bill Wendlingdd3fe942010-03-12 02:00:43 +000017#include "PPCPerfectShuffle.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000018#include "PPCTargetMachine.h"
Bill Schmidt22d40dc2013-05-13 19:34:37 +000019#include "PPCTargetObjectFile.h"
Owen Andersone2f23a32007-09-07 04:06:50 +000020#include "llvm/ADT/STLExtras.h"
Hal Finkel0d8db462014-05-11 19:29:11 +000021#include "llvm/ADT/StringSwitch.h"
Eric Christopher89958332014-05-31 00:07:32 +000022#include "llvm/ADT/Triple.h"
Chris Lattner4f2e4e02007-03-06 00:59:59 +000023#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner9b577f12005-08-26 21:23:58 +000026#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000027#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000028#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000029#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/CallingConv.h"
31#include "llvm/IR/Constants.h"
32#include "llvm/IR/DerivedTypes.h"
33#include "llvm/IR/Function.h"
34#include "llvm/IR/Intrinsics.h"
Chris Lattnerce645542006-11-10 02:08:47 +000035#include "llvm/Support/CommandLine.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000036#include "llvm/Support/ErrorHandling.h"
Craig Topperb25fda92012-03-17 18:46:09 +000037#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000038#include "llvm/Support/raw_ostream.h"
Craig Topperb25fda92012-03-17 18:46:09 +000039#include "llvm/Target/TargetOptions.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000040using namespace llvm;
41
Hal Finkel595817e2012-06-04 02:21:00 +000042static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
43cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
Chris Lattnerce645542006-11-10 02:08:47 +000044
Hal Finkel4e9f1a82012-06-10 19:32:29 +000045static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
46cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
47
Hal Finkel8d7fbc92013-03-15 15:27:13 +000048static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
49cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
50
Hal Finkel940ab932014-02-28 00:27:01 +000051// FIXME: Remove this once the bug has been fixed!
52extern cl::opt<bool> ANDIGlueBug;
53
Eric Christopher89958332014-05-31 00:07:32 +000054static TargetLoweringObjectFile *createTLOF(const Triple &TT) {
Eric Christophera84189a2014-06-02 17:29:07 +000055 // If it isn't a Mach-O file then it's going to be a linux ELF
56 // object file.
Eric Christopher89958332014-05-31 00:07:32 +000057 if (TT.isOSDarwin())
Bill Wendlingbbcaa402010-03-15 21:09:38 +000058 return new TargetLoweringObjectFileMachO();
Eric Christophera84189a2014-06-02 17:29:07 +000059
60 return new PPC64LinuxTargetObjectFile();
Chris Lattner5e693ed2009-07-28 03:13:23 +000061}
62
Chris Lattner584a11a2006-11-02 01:44:04 +000063PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
Eric Christopher89958332014-05-31 00:07:32 +000064 : TargetLowering(TM, createTLOF(Triple(TM.getTargetTriple()))),
Eric Christopherb1aaebe2014-06-12 22:38:18 +000065 Subtarget(*TM.getSubtargetImpl()) {
Nate Begeman4dd38312005-10-21 00:02:42 +000066 setPow2DivIsCheap();
Dale Johannesenc31eb202008-07-31 18:13:12 +000067
Chris Lattnera028e7a2005-09-27 22:18:25 +000068 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikov3b7c2572006-12-10 23:12:42 +000069 setUseUnderscoreSetJmp(true);
70 setUseUnderscoreLongJmp(true);
Scott Michelcf0da6c2009-02-17 22:15:04 +000071
Chris Lattnerd10babf2010-10-10 18:34:00 +000072 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
73 // arguments are at least 4/8 bytes aligned.
Eric Christopherb1aaebe2014-06-12 22:38:18 +000074 bool isPPC64 = Subtarget.isPPC64();
Evan Cheng39e90022012-07-02 22:39:56 +000075 setMinStackArgumentAlignment(isPPC64 ? 8:4);
Wesley Peck527da1b2010-11-23 03:31:01 +000076
Chris Lattnerf22556d2005-08-16 17:14:42 +000077 // Set up the register classes.
Craig Topperabadc662012-04-20 06:31:50 +000078 addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
79 addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
80 addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +000081
Evan Cheng5d9fd972006-10-04 00:56:09 +000082 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Owen Anderson9f944592009-08-11 20:47:22 +000083 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
84 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Duncan Sands95d46ef2008-01-23 20:39:46 +000085
Owen Anderson9f944592009-08-11 20:47:22 +000086 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +000087
Chris Lattnerc9fa36d2006-11-10 23:58:45 +000088 // PowerPC has pre-inc load and store's.
Owen Anderson9f944592009-08-11 20:47:22 +000089 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
90 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
91 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
92 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
93 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
94 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
95 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
96 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
97 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
98 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
Evan Cheng36a8fbf2006-11-09 19:11:50 +000099
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000100 if (Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000101 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
102
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000103 if (isPPC64 || Subtarget.hasFPCVT()) {
Hal Finkel6a56b212014-03-05 22:14:00 +0000104 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
105 AddPromotedToType (ISD::SINT_TO_FP, MVT::i1,
106 isPPC64 ? MVT::i64 : MVT::i32);
107 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
108 AddPromotedToType (ISD::UINT_TO_FP, MVT::i1,
109 isPPC64 ? MVT::i64 : MVT::i32);
110 } else {
111 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom);
112 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom);
113 }
Hal Finkel940ab932014-02-28 00:27:01 +0000114
115 // PowerPC does not support direct load / store of condition registers
116 setOperationAction(ISD::LOAD, MVT::i1, Custom);
117 setOperationAction(ISD::STORE, MVT::i1, Custom);
118
119 // FIXME: Remove this once the ANDI glue bug is fixed:
120 if (ANDIGlueBug)
121 setOperationAction(ISD::TRUNCATE, MVT::i1, Custom);
122
123 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
124 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
125 setTruncStoreAction(MVT::i64, MVT::i1, Expand);
126 setTruncStoreAction(MVT::i32, MVT::i1, Expand);
127 setTruncStoreAction(MVT::i16, MVT::i1, Expand);
128 setTruncStoreAction(MVT::i8, MVT::i1, Expand);
129
130 addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass);
131 }
132
Dale Johannesen666323e2007-10-10 01:01:31 +0000133 // This is used in the ppcf128->int sequence. Note it has different semantics
134 // from FP_ROUND: that rounds to nearest, this rounds to zero.
Owen Anderson9f944592009-08-11 20:47:22 +0000135 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesenf864ac92007-10-06 01:24:11 +0000136
Roman Divacky1faf5b02012-08-16 18:19:29 +0000137 // We do not currently implement these libm ops for PowerPC.
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000138 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
139 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand);
140 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
141 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand);
142 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
Bill Schmidt92e26642013-04-03 13:05:44 +0000143 setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000144
Chris Lattnerf22556d2005-08-16 17:14:42 +0000145 // PowerPC has no SREM/UREM instructions
Owen Anderson9f944592009-08-11 20:47:22 +0000146 setOperationAction(ISD::SREM, MVT::i32, Expand);
147 setOperationAction(ISD::UREM, MVT::i32, Expand);
148 setOperationAction(ISD::SREM, MVT::i64, Expand);
149 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman71f0d7d2007-10-08 17:28:24 +0000150
151 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson9f944592009-08-11 20:47:22 +0000152 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
153 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
154 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
155 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
156 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
157 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
158 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
159 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000160
Dan Gohman482732a2007-10-11 23:21:31 +0000161 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson9f944592009-08-11 20:47:22 +0000162 setOperationAction(ISD::FSIN , MVT::f64, Expand);
163 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000164 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000165 setOperationAction(ISD::FREM , MVT::f64, Expand);
166 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000167 setOperationAction(ISD::FMA , MVT::f64, Legal);
Owen Anderson9f944592009-08-11 20:47:22 +0000168 setOperationAction(ISD::FSIN , MVT::f32, Expand);
169 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000170 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000171 setOperationAction(ISD::FREM , MVT::f32, Expand);
172 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000173 setOperationAction(ISD::FMA , MVT::f32, Legal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +0000174
Owen Anderson9f944592009-08-11 20:47:22 +0000175 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000176
Chris Lattnerf22556d2005-08-16 17:14:42 +0000177 // If we're enabling GP optimizations, use hardware square root
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000178 if (!Subtarget.hasFSQRT() &&
Hal Finkel2e103312013-04-03 04:01:11 +0000179 !(TM.Options.UnsafeFPMath &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000180 Subtarget.hasFRSQRTE() && Subtarget.hasFRE()))
Owen Anderson9f944592009-08-11 20:47:22 +0000181 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Hal Finkel2e103312013-04-03 04:01:11 +0000182
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000183 if (!Subtarget.hasFSQRT() &&
Hal Finkel2e103312013-04-03 04:01:11 +0000184 !(TM.Options.UnsafeFPMath &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000185 Subtarget.hasFRSQRTES() && Subtarget.hasFRES()))
Owen Anderson9f944592009-08-11 20:47:22 +0000186 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000187
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000188 if (Subtarget.hasFCPSGN()) {
Hal Finkeldbc78e12013-08-19 05:01:02 +0000189 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
190 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
191 } else {
192 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
193 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
194 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000195
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000196 if (Subtarget.hasFPRND()) {
Hal Finkelc20a08d2013-03-29 08:57:48 +0000197 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
198 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
199 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000200 setOperationAction(ISD::FROUND, MVT::f64, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000201
202 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
203 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
204 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000205 setOperationAction(ISD::FROUND, MVT::f32, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000206 }
207
Nate Begeman2fba8a32006-01-14 03:14:10 +0000208 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson9f944592009-08-11 20:47:22 +0000209 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000210 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000211 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
212 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000213 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000214 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000215 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
216 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000217
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000218 if (Subtarget.hasPOPCNTD()) {
Hal Finkel290376d2013-04-01 15:58:15 +0000219 setOperationAction(ISD::CTPOP, MVT::i32 , Legal);
Hal Finkela4d07482013-03-28 13:29:47 +0000220 setOperationAction(ISD::CTPOP, MVT::i64 , Legal);
221 } else {
222 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
223 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
224 }
225
Nate Begeman1b8121b2006-01-11 21:21:00 +0000226 // PowerPC does not have ROTR
Owen Anderson9f944592009-08-11 20:47:22 +0000227 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
228 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000229
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000230 if (!Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000231 // PowerPC does not have Select
232 setOperationAction(ISD::SELECT, MVT::i32, Expand);
233 setOperationAction(ISD::SELECT, MVT::i64, Expand);
234 setOperationAction(ISD::SELECT, MVT::f32, Expand);
235 setOperationAction(ISD::SELECT, MVT::f64, Expand);
236 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000237
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000238 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson9f944592009-08-11 20:47:22 +0000239 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
240 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begemana162f202006-01-31 08:17:29 +0000241
Nate Begeman7e7f4392006-02-01 07:19:44 +0000242 // PowerPC wants to optimize integer setcc a bit
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000243 if (!Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000244 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000245
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000246 // PowerPC does not have BRCOND which requires SetCC
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000247 if (!Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000248 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Cheng0d41d192006-10-30 08:02:39 +0000249
Owen Anderson9f944592009-08-11 20:47:22 +0000250 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000251
Chris Lattnerda2e04c2005-08-31 21:09:52 +0000252 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson9f944592009-08-11 20:47:22 +0000253 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000254
Jim Laskey6267b2c2005-08-17 00:40:22 +0000255 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson9f944592009-08-11 20:47:22 +0000256 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
257 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskey6267b2c2005-08-17 00:40:22 +0000258
Wesley Peck527da1b2010-11-23 03:31:01 +0000259 setOperationAction(ISD::BITCAST, MVT::f32, Expand);
260 setOperationAction(ISD::BITCAST, MVT::i32, Expand);
261 setOperationAction(ISD::BITCAST, MVT::i64, Expand);
262 setOperationAction(ISD::BITCAST, MVT::f64, Expand);
Chris Lattnerc46fc242005-12-23 05:13:35 +0000263
Chris Lattner84b49d52006-04-28 21:56:10 +0000264 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson9f944592009-08-11 20:47:22 +0000265 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskeye0008e22007-02-22 14:56:36 +0000266
Hal Finkel1996f3d2013-03-27 19:10:42 +0000267 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Hal Finkel756810f2013-03-21 21:37:52 +0000268 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
269 // support continuation, user-level threading, and etc.. As a result, no
270 // other SjLj exception interfaces are implemented and please don't build
271 // your own exception handling based on them.
272 // LLVM/Clang supports zero-cost DWARF exception handling.
273 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
274 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000275
276 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman4e56db62005-12-10 02:36:00 +0000277 // appropriate instructions to materialize the address.
Owen Anderson9f944592009-08-11 20:47:22 +0000278 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
279 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000280 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000281 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
282 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
283 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
284 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000285 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000286 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
287 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000288
Nate Begemanf69d13b2008-08-11 17:36:31 +0000289 // TRAP is legal.
Owen Anderson9f944592009-08-11 20:47:22 +0000290 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling95e1af22008-09-17 00:30:57 +0000291
292 // TRAMPOLINE is custom lowered.
Duncan Sandsa0984362011-09-06 13:37:06 +0000293 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
294 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Bill Wendling95e1af22008-09-17 00:30:57 +0000295
Nate Begemane74795c2006-01-25 18:21:52 +0000296 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson9f944592009-08-11 20:47:22 +0000297 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000298
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000299 if (Subtarget.isSVR4ABI()) {
Evan Cheng39e90022012-07-02 22:39:56 +0000300 if (isPPC64) {
Hal Finkele44eb282012-03-24 03:53:55 +0000301 // VAARG always uses double-word chunks, so promote anything smaller.
302 setOperationAction(ISD::VAARG, MVT::i1, Promote);
303 AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
304 setOperationAction(ISD::VAARG, MVT::i8, Promote);
305 AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
306 setOperationAction(ISD::VAARG, MVT::i16, Promote);
307 AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
308 setOperationAction(ISD::VAARG, MVT::i32, Promote);
309 AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
310 setOperationAction(ISD::VAARG, MVT::Other, Expand);
311 } else {
312 // VAARG is custom lowered with the 32-bit SVR4 ABI.
313 setOperationAction(ISD::VAARG, MVT::Other, Custom);
314 setOperationAction(ISD::VAARG, MVT::i64, Custom);
315 }
Roman Divacky4394e682011-06-28 15:30:42 +0000316 } else
Owen Anderson9f944592009-08-11 20:47:22 +0000317 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000318
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000319 if (Subtarget.isSVR4ABI() && !isPPC64)
Roman Divackyc3825df2013-07-25 21:36:47 +0000320 // VACOPY is custom lowered with the 32-bit SVR4 ABI.
321 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
322 else
323 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
324
Chris Lattner5bd514d2006-01-15 09:02:48 +0000325 // Use the default implementation.
Owen Anderson9f944592009-08-11 20:47:22 +0000326 setOperationAction(ISD::VAEND , MVT::Other, Expand);
327 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
328 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
329 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
330 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Chris Lattnerab4df8342006-10-18 01:18:48 +0000331
Chris Lattner6961fc72006-03-26 10:06:40 +0000332 // We want to custom lower some of our intrinsics.
Owen Anderson9f944592009-08-11 20:47:22 +0000333 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000334
Hal Finkel25c19922013-05-15 21:37:41 +0000335 // To handle counter-based loop conditions.
336 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
337
Dale Johannesen160be0f2008-11-07 22:54:33 +0000338 // Comparisons that require checking two conditions.
Owen Anderson9f944592009-08-11 20:47:22 +0000339 setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
340 setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
341 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
342 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
343 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
344 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
345 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
346 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
347 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
348 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
349 setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
350 setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000351
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000352 if (Subtarget.has64BitSupport()) {
Nate Begeman0b71e002005-10-18 00:28:58 +0000353 // They also have instructions for converting between i64 and fp.
Owen Anderson9f944592009-08-11 20:47:22 +0000354 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
355 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
356 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
357 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Dale Johannesen37bc85f2009-06-04 20:53:52 +0000358 // This is just the low 32 bits of a (signed) fp->i64 conversion.
359 // We cannot do this with Promote because i64 is not a legal type.
Owen Anderson9f944592009-08-11 20:47:22 +0000360 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000361
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000362 if (Subtarget.hasLFIWAX() || Subtarget.isPPC64())
Hal Finkele53429a2013-03-31 01:58:02 +0000363 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begeman762bf802005-10-25 23:48:36 +0000364 } else {
Chris Lattner595088a2005-11-17 07:30:41 +0000365 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson9f944592009-08-11 20:47:22 +0000366 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begemane74dfbb2005-10-18 00:56:42 +0000367 }
368
Hal Finkelf6d45f22013-04-01 17:52:07 +0000369 // With the instructions enabled under FPCVT, we can do everything.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000370 if (Subtarget.hasFPCVT()) {
371 if (Subtarget.has64BitSupport()) {
Hal Finkelf6d45f22013-04-01 17:52:07 +0000372 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
373 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
374 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
375 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
376 }
377
378 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
379 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
380 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
381 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
382 }
383
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000384 if (Subtarget.use64BitRegs()) {
Chris Lattnerb1935762007-10-19 04:08:28 +0000385 // 64-bit PowerPC implementations can support i64 types directly
Craig Topperabadc662012-04-20 06:31:50 +0000386 addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
Nate Begeman0b71e002005-10-18 00:28:58 +0000387 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson9f944592009-08-11 20:47:22 +0000388 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman8d2ead22008-03-07 20:36:53 +0000389 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000390 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
391 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
392 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman0b71e002005-10-18 00:28:58 +0000393 } else {
Chris Lattnerb1935762007-10-19 04:08:28 +0000394 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000395 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
396 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
397 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000398 }
Evan Cheng19264272006-03-01 01:11:20 +0000399
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000400 if (Subtarget.hasAltivec()) {
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000401 // First set operation action for all vector types to expand. Then we
402 // will selectively turn on ones that can be effectively codegen'd.
Owen Anderson9f944592009-08-11 20:47:22 +0000403 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
404 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
405 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
Duncan Sands13237ac2008-06-06 12:08:01 +0000406
Chris Lattner06a21ba2006-04-16 01:37:57 +0000407 // add/sub are legal for all supported vector VT's.
Duncan Sands13237ac2008-06-06 12:08:01 +0000408 setOperationAction(ISD::ADD , VT, Legal);
409 setOperationAction(ISD::SUB , VT, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000410
Chris Lattner95c7adc2006-04-04 17:25:31 +0000411 // We promote all shuffles to v16i8.
Duncan Sands13237ac2008-06-06 12:08:01 +0000412 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000413 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattner06a21ba2006-04-16 01:37:57 +0000414
415 // We promote all non-typed operations to v4i32.
Duncan Sands13237ac2008-06-06 12:08:01 +0000416 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000417 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000418 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000419 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000420 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000421 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000422 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000423 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000424 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000425 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000426 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000427 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000428
Chris Lattner06a21ba2006-04-16 01:37:57 +0000429 // No other operations are legal.
Duncan Sands13237ac2008-06-06 12:08:01 +0000430 setOperationAction(ISD::MUL , VT, Expand);
431 setOperationAction(ISD::SDIV, VT, Expand);
432 setOperationAction(ISD::SREM, VT, Expand);
433 setOperationAction(ISD::UDIV, VT, Expand);
434 setOperationAction(ISD::UREM, VT, Expand);
435 setOperationAction(ISD::FDIV, VT, Expand);
Hal Finkele3930222013-07-08 17:30:25 +0000436 setOperationAction(ISD::FREM, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000437 setOperationAction(ISD::FNEG, VT, Expand);
Craig Topperc8a2adf2012-11-15 08:02:19 +0000438 setOperationAction(ISD::FSQRT, VT, Expand);
439 setOperationAction(ISD::FLOG, VT, Expand);
440 setOperationAction(ISD::FLOG10, VT, Expand);
441 setOperationAction(ISD::FLOG2, VT, Expand);
442 setOperationAction(ISD::FEXP, VT, Expand);
443 setOperationAction(ISD::FEXP2, VT, Expand);
444 setOperationAction(ISD::FSIN, VT, Expand);
445 setOperationAction(ISD::FCOS, VT, Expand);
446 setOperationAction(ISD::FABS, VT, Expand);
447 setOperationAction(ISD::FPOWI, VT, Expand);
Craig Topperc4343f22012-11-14 08:11:25 +0000448 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper61d04572012-11-15 06:51:10 +0000449 setOperationAction(ISD::FCEIL, VT, Expand);
450 setOperationAction(ISD::FTRUNC, VT, Expand);
451 setOperationAction(ISD::FRINT, VT, Expand);
452 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000453 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
454 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
455 setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
Ulrich Weigand51eccec2014-08-04 13:27:12 +0000456 setOperationAction(ISD::MULHU, VT, Expand);
457 setOperationAction(ISD::MULHS, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000458 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
459 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
460 setOperationAction(ISD::UDIVREM, VT, Expand);
461 setOperationAction(ISD::SDIVREM, VT, Expand);
462 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
463 setOperationAction(ISD::FPOW, VT, Expand);
Benjamin Kramerf3ad2352014-05-19 13:12:38 +0000464 setOperationAction(ISD::BSWAP, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000465 setOperationAction(ISD::CTPOP, VT, Expand);
466 setOperationAction(ISD::CTLZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000467 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000468 setOperationAction(ISD::CTTZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000469 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
Benjamin Kramerc5071462012-12-19 15:49:14 +0000470 setOperationAction(ISD::VSELECT, VT, Expand);
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000471 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
472
473 for (unsigned j = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
474 j <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++j) {
475 MVT::SimpleValueType InnerVT = (MVT::SimpleValueType)j;
476 setTruncStoreAction(VT, InnerVT, Expand);
477 }
478 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
479 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
480 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000481 }
482
Chris Lattner95c7adc2006-04-04 17:25:31 +0000483 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
484 // with merges, splats, etc.
Owen Anderson9f944592009-08-11 20:47:22 +0000485 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner95c7adc2006-04-04 17:25:31 +0000486
Owen Anderson9f944592009-08-11 20:47:22 +0000487 setOperationAction(ISD::AND , MVT::v4i32, Legal);
488 setOperationAction(ISD::OR , MVT::v4i32, Legal);
489 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
490 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
Hal Finkel940ab932014-02-28 00:27:01 +0000491 setOperationAction(ISD::SELECT, MVT::v4i32,
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000492 Subtarget.useCRBits() ? Legal : Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000493 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
Adhemerval Zanella5c6e0842012-10-08 17:27:24 +0000494 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
495 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
496 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
497 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
Adhemerval Zanellabdface52012-11-15 20:56:03 +0000498 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
499 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
500 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
501 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000502
Craig Topperabadc662012-04-20 06:31:50 +0000503 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
504 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
505 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
506 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000507
Owen Anderson9f944592009-08-11 20:47:22 +0000508 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000509 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
Hal Finkel2e103312013-04-03 04:01:11 +0000510
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000511 if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) {
Hal Finkel2e103312013-04-03 04:01:11 +0000512 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
513 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
514 }
515
Owen Anderson9f944592009-08-11 20:47:22 +0000516 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
517 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
518 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnera8713b12006-03-20 01:53:53 +0000519
Owen Anderson9f944592009-08-11 20:47:22 +0000520 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
521 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000522
Owen Anderson9f944592009-08-11 20:47:22 +0000523 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
524 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
525 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
526 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Adhemerval Zanella56775e02012-10-30 13:50:19 +0000527
528 // Altivec does not contain unordered floating-point compare instructions
529 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
530 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
Hal Finkel21ada792013-07-08 20:00:03 +0000531 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand);
532 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
Hal Finkel27774d92014-03-13 07:58:58 +0000533
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000534 if (Subtarget.hasVSX()) {
Hal Finkel27774d92014-03-13 07:58:58 +0000535 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal);
Hal Finkel82569b62014-03-27 22:22:48 +0000536 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
Hal Finkel27774d92014-03-13 07:58:58 +0000537
538 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
539 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
540 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
541 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
542 setOperationAction(ISD::FROUND, MVT::v2f64, Legal);
543
544 setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
545
546 setOperationAction(ISD::MUL, MVT::v2f64, Legal);
547 setOperationAction(ISD::FMA, MVT::v2f64, Legal);
548
549 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
550 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
551
Hal Finkel732f0f72014-03-26 12:49:28 +0000552 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
553 setOperationAction(ISD::VSELECT, MVT::v8i16, Legal);
554 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
555 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
556 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
557
Hal Finkel27774d92014-03-13 07:58:58 +0000558 // Share the Altivec comparison restrictions.
559 setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand);
560 setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand);
Hal Finkel27774d92014-03-13 07:58:58 +0000561 setCondCodeAction(ISD::SETO, MVT::v2f64, Expand);
562 setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand);
563
Hal Finkel9281c9a2014-03-26 18:26:30 +0000564 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
565 setOperationAction(ISD::STORE, MVT::v2f64, Legal);
566
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000567 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal);
568
Hal Finkel19be5062014-03-29 05:29:01 +0000569 addRegisterClass(MVT::f64, &PPC::VSFRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +0000570
571 addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass);
572 addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass);
Hal Finkela6c8b512014-03-26 16:12:58 +0000573
574 // VSX v2i64 only supports non-arithmetic operations.
575 setOperationAction(ISD::ADD, MVT::v2i64, Expand);
576 setOperationAction(ISD::SUB, MVT::v2i64, Expand);
577
Hal Finkelad801b72014-03-27 21:26:33 +0000578 setOperationAction(ISD::SHL, MVT::v2i64, Expand);
579 setOperationAction(ISD::SRA, MVT::v2i64, Expand);
580 setOperationAction(ISD::SRL, MVT::v2i64, Expand);
581
Hal Finkel777c9dd2014-03-29 16:04:40 +0000582 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
583
Hal Finkel9281c9a2014-03-26 18:26:30 +0000584 setOperationAction(ISD::LOAD, MVT::v2i64, Promote);
585 AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64);
586 setOperationAction(ISD::STORE, MVT::v2i64, Promote);
587 AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64);
588
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000589 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal);
590
Hal Finkel7279f4b2014-03-26 19:13:54 +0000591 setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal);
592 setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal);
593 setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal);
594 setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal);
595
Hal Finkel5c0d1452014-03-30 13:22:59 +0000596 // Vector operation legalization checks the result type of
597 // SIGN_EXTEND_INREG, overall legalization checks the inner type.
598 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal);
599 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal);
600 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
601 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
602
Hal Finkela6c8b512014-03-26 16:12:58 +0000603 addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +0000604 }
Nate Begeman3e7db9c2005-11-29 08:17:20 +0000605 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000606
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000607 if (Subtarget.has64BitSupport()) {
Hal Finkel322e41a2012-04-01 20:08:17 +0000608 setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
Hal Finkel70381a72012-08-04 14:10:46 +0000609 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Legal);
610 }
Hal Finkel322e41a2012-04-01 20:08:17 +0000611
Eli Friedman7dfa7912011-08-29 18:23:02 +0000612 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Expand);
613 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Expand);
Hal Finkel1b5ff082012-12-25 17:22:53 +0000614 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
615 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
Eli Friedman7dfa7912011-08-29 18:23:02 +0000616
Duncan Sands8d6e2e12008-11-23 15:47:28 +0000617 setBooleanContents(ZeroOrOneBooleanContent);
Bill Schmidta76bf5a2013-04-23 18:49:44 +0000618 // Altivec instructions set fields to all zeros or all ones.
619 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000620
Joerg Sonnenbergerb5459e62014-07-24 22:20:10 +0000621 if (!isPPC64) {
622 // These libcalls are not available in 32-bit.
623 setLibcallName(RTLIB::SHL_I128, nullptr);
624 setLibcallName(RTLIB::SRL_I128, nullptr);
625 setLibcallName(RTLIB::SRA_I128, nullptr);
626 }
627
Evan Cheng39e90022012-07-02 22:39:56 +0000628 if (isPPC64) {
Chris Lattner454436d2006-10-18 01:20:43 +0000629 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000630 setExceptionPointerRegister(PPC::X3);
631 setExceptionSelectorRegister(PPC::X4);
632 } else {
Chris Lattner454436d2006-10-18 01:20:43 +0000633 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000634 setExceptionPointerRegister(PPC::R3);
635 setExceptionSelectorRegister(PPC::R4);
636 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000637
Chris Lattnerf4184352006-03-01 04:57:39 +0000638 // We have target-specific dag combine patterns for the following nodes:
639 setTargetDAGCombine(ISD::SINT_TO_FP);
Hal Finkelcf2e9082013-05-24 23:00:14 +0000640 setTargetDAGCombine(ISD::LOAD);
Chris Lattner27f53452006-03-01 05:50:56 +0000641 setTargetDAGCombine(ISD::STORE);
Chris Lattner9754d142006-04-18 17:59:36 +0000642 setTargetDAGCombine(ISD::BR_CC);
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000643 if (Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000644 setTargetDAGCombine(ISD::BRCOND);
Chris Lattnera7976d32006-07-10 20:56:58 +0000645 setTargetDAGCombine(ISD::BSWAP);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +0000646 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000647
Hal Finkel46043ed2014-03-01 21:36:57 +0000648 setTargetDAGCombine(ISD::SIGN_EXTEND);
649 setTargetDAGCombine(ISD::ZERO_EXTEND);
650 setTargetDAGCombine(ISD::ANY_EXTEND);
651
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000652 if (Subtarget.useCRBits()) {
Hal Finkel940ab932014-02-28 00:27:01 +0000653 setTargetDAGCombine(ISD::TRUNCATE);
654 setTargetDAGCombine(ISD::SETCC);
655 setTargetDAGCombine(ISD::SELECT_CC);
656 }
657
Hal Finkel2e103312013-04-03 04:01:11 +0000658 // Use reciprocal estimates.
659 if (TM.Options.UnsafeFPMath) {
660 setTargetDAGCombine(ISD::FDIV);
661 setTargetDAGCombine(ISD::FSQRT);
662 }
663
Dale Johannesen10432e52007-10-19 00:59:18 +0000664 // Darwin long double math library functions have $LDBL128 appended.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000665 if (Subtarget.isDarwin()) {
Duncan Sands53c954f2008-01-10 10:28:30 +0000666 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000667 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
668 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands53c954f2008-01-10 10:28:30 +0000669 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
670 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesenda2d8062008-09-04 00:47:13 +0000671 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
672 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
673 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
674 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
675 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000676 }
677
Hal Finkel940ab932014-02-28 00:27:01 +0000678 // With 32 condition bits, we don't need to sink (and duplicate) compares
679 // aggressively in CodeGenPrep.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000680 if (Subtarget.useCRBits())
Hal Finkel940ab932014-02-28 00:27:01 +0000681 setHasMultipleConditionRegisters();
682
Hal Finkel65298572011-10-17 18:53:03 +0000683 setMinFunctionAlignment(2);
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000684 if (Subtarget.isDarwin())
Hal Finkel65298572011-10-17 18:53:03 +0000685 setPrefFunctionAlignment(4);
Eli Friedman2518f832011-05-06 20:34:06 +0000686
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000687 if (isPPC64 && Subtarget.isJITCodeModel())
Evan Cheng39e90022012-07-02 22:39:56 +0000688 // Temporary workaround for the inability of PPC64 JIT to handle jump
689 // tables.
690 setSupportJumpTables(false);
691
Eli Friedman30a49e92011-08-03 21:06:02 +0000692 setInsertFencesForAtomic(true);
693
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000694 if (Subtarget.enableMachineScheduler())
Hal Finkel21442b22013-09-11 23:05:25 +0000695 setSchedulingPreference(Sched::Source);
696 else
697 setSchedulingPreference(Sched::Hybrid);
Hal Finkel6f0ae782011-11-22 16:21:04 +0000698
Chris Lattnerf22556d2005-08-16 17:14:42 +0000699 computeRegisterProperties();
Hal Finkel742b5352012-08-28 16:12:39 +0000700
701 // The Freescale cores does better with aggressive inlining of memcpy and
702 // friends. Gcc uses same threshold of 128 bytes (= 32 word stores).
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000703 if (Subtarget.getDarwinDirective() == PPC::DIR_E500mc ||
704 Subtarget.getDarwinDirective() == PPC::DIR_E5500) {
Jim Grosbach341ad3e2013-02-20 21:13:59 +0000705 MaxStoresPerMemset = 32;
706 MaxStoresPerMemsetOptSize = 16;
707 MaxStoresPerMemcpy = 32;
708 MaxStoresPerMemcpyOptSize = 8;
709 MaxStoresPerMemmove = 32;
710 MaxStoresPerMemmoveOptSize = 8;
Hal Finkel742b5352012-08-28 16:12:39 +0000711
712 setPrefFunctionAlignment(4);
Hal Finkel742b5352012-08-28 16:12:39 +0000713 }
Chris Lattnerf22556d2005-08-16 17:14:42 +0000714}
715
Hal Finkel262a2242013-09-12 23:20:06 +0000716/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
717/// the desired ByVal argument alignment.
718static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign,
719 unsigned MaxMaxAlign) {
720 if (MaxAlign == MaxMaxAlign)
721 return;
722 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
723 if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256)
724 MaxAlign = 32;
725 else if (VTy->getBitWidth() >= 128 && MaxAlign < 16)
726 MaxAlign = 16;
727 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
728 unsigned EltAlign = 0;
729 getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign);
730 if (EltAlign > MaxAlign)
731 MaxAlign = EltAlign;
732 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
733 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
734 unsigned EltAlign = 0;
735 getMaxByValAlign(STy->getElementType(i), EltAlign, MaxMaxAlign);
736 if (EltAlign > MaxAlign)
737 MaxAlign = EltAlign;
738 if (MaxAlign == MaxMaxAlign)
739 break;
740 }
741 }
742}
743
Dale Johannesencbde4c22008-02-28 22:31:51 +0000744/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
745/// function arguments in the caller parameter area.
Chris Lattner229907c2011-07-18 04:54:35 +0000746unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
Dale Johannesencbde4c22008-02-28 22:31:51 +0000747 // Darwin passes everything on 4 byte boundary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000748 if (Subtarget.isDarwin())
Dale Johannesencbde4c22008-02-28 22:31:51 +0000749 return 4;
Roman Divackyb9663cc2012-04-02 15:49:30 +0000750
751 // 16byte and wider vectors are passed on 16byte boundary.
Roman Divackyb9663cc2012-04-02 15:49:30 +0000752 // The rest is 8 on PPC64 and 4 on PPC32 boundary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000753 unsigned Align = Subtarget.isPPC64() ? 8 : 4;
754 if (Subtarget.hasAltivec() || Subtarget.hasQPX())
755 getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16);
Hal Finkel262a2242013-09-12 23:20:06 +0000756 return Align;
Dale Johannesencbde4c22008-02-28 22:31:51 +0000757}
758
Chris Lattner347ed8a2006-01-09 23:52:17 +0000759const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
760 switch (Opcode) {
Craig Topper062a2ba2014-04-25 05:30:21 +0000761 default: return nullptr;
Evan Cheng32e376f2008-07-12 02:23:19 +0000762 case PPCISD::FSEL: return "PPCISD::FSEL";
763 case PPCISD::FCFID: return "PPCISD::FCFID";
764 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
765 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Hal Finkel2e103312013-04-03 04:01:11 +0000766 case PPCISD::FRE: return "PPCISD::FRE";
767 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE";
Evan Cheng32e376f2008-07-12 02:23:19 +0000768 case PPCISD::STFIWX: return "PPCISD::STFIWX";
769 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
770 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
771 case PPCISD::VPERM: return "PPCISD::VPERM";
772 case PPCISD::Hi: return "PPCISD::Hi";
773 case PPCISD::Lo: return "PPCISD::Lo";
Tilmann Schellerd1aaa322009-08-15 11:54:46 +0000774 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY";
Tilmann Scheller79fef932009-12-18 13:00:15 +0000775 case PPCISD::LOAD: return "PPCISD::LOAD";
776 case PPCISD::LOAD_TOC: return "PPCISD::LOAD_TOC";
Evan Cheng32e376f2008-07-12 02:23:19 +0000777 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
778 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
779 case PPCISD::SRL: return "PPCISD::SRL";
780 case PPCISD::SRA: return "PPCISD::SRA";
781 case PPCISD::SHL: return "PPCISD::SHL";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000782 case PPCISD::CALL: return "PPCISD::CALL";
783 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP";
Evan Cheng32e376f2008-07-12 02:23:19 +0000784 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000785 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Evan Cheng32e376f2008-07-12 02:23:19 +0000786 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkel756810f2013-03-21 21:37:52 +0000787 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
788 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Ulrich Weigandd5ebc622013-07-03 17:05:42 +0000789 case PPCISD::MFOCRF: return "PPCISD::MFOCRF";
Evan Cheng32e376f2008-07-12 02:23:19 +0000790 case PPCISD::VCMP: return "PPCISD::VCMP";
791 case PPCISD::VCMPo: return "PPCISD::VCMPo";
792 case PPCISD::LBRX: return "PPCISD::LBRX";
793 case PPCISD::STBRX: return "PPCISD::STBRX";
Evan Cheng32e376f2008-07-12 02:23:19 +0000794 case PPCISD::LARX: return "PPCISD::LARX";
795 case PPCISD::STCX: return "PPCISD::STCX";
796 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkel25c19922013-05-15 21:37:41 +0000797 case PPCISD::BDNZ: return "PPCISD::BDNZ";
798 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000799 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng32e376f2008-07-12 02:23:19 +0000800 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000801 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel5ab37802012-08-28 02:10:27 +0000802 case PPCISD::CR6SET: return "PPCISD::CR6SET";
803 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Bill Schmidt34627e32012-11-27 17:35:46 +0000804 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA";
805 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L";
806 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L";
Roman Divacky32143e22013-12-20 18:08:54 +0000807 case PPCISD::PPC32_GOT: return "PPCISD::PPC32_GOT";
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +0000808 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
809 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtca4a0c92012-12-04 16:18:08 +0000810 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidtc56f1d32012-12-11 20:30:11 +0000811 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
812 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
813 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR";
Bill Schmidt24b8dd62012-12-12 19:29:35 +0000814 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
815 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
816 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR";
817 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
818 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L";
Bill Schmidt51e79512013-02-20 15:50:31 +0000819 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT";
Bill Schmidta87a7e22013-05-14 19:35:45 +0000820 case PPCISD::SC: return "PPCISD::SC";
Chris Lattner347ed8a2006-01-09 23:52:17 +0000821 }
822}
823
Matt Arsenault758659232013-05-18 00:21:46 +0000824EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000825 if (!VT.isVector())
Eric Christopherb1aaebe2014-06-12 22:38:18 +0000826 return Subtarget.useCRBits() ? MVT::i1 : MVT::i32;
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000827 return VT.changeVectorElementTypeToInteger();
Scott Michela6729e82008-03-10 15:42:14 +0000828}
829
Chris Lattner4211ca92006-04-14 06:01:58 +0000830//===----------------------------------------------------------------------===//
831// Node matching predicates, for use by the tblgen matching code.
832//===----------------------------------------------------------------------===//
833
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000834/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000835static bool isFloatingPointZero(SDValue Op) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000836 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000837 return CFP->getValueAPF().isZero();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000838 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000839 // Maybe this has already been legalized into the constant pool?
840 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000841 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000842 return CFP->getValueAPF().isZero();
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000843 }
844 return false;
845}
846
Chris Lattnere8b83b42006-04-06 17:23:16 +0000847/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
848/// true if Op is undef or if it matches the specified value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000849static bool isConstantOrUndef(int Op, int Val) {
850 return Op < 0 || Op == Val;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000851}
852
853/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
854/// VPKUHUM instruction.
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000855/// The ShuffleKind distinguishes between big-endian operations with
856/// two different inputs (0), either-endian operations with two identical
857/// inputs (1), and little-endian operantion with two different inputs (2).
858/// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
859bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
Bill Schmidtf910a062014-06-10 14:35:01 +0000860 SelectionDAG &DAG) {
Eric Christopherd9134482014-08-04 21:25:23 +0000861 bool IsLE =
862 DAG.getTarget().getSubtargetImpl()->getDataLayout()->isLittleEndian();
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000863 if (ShuffleKind == 0) {
Eric Christopherd9134482014-08-04 21:25:23 +0000864 if (IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000865 return false;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000866 for (unsigned i = 0; i != 16; ++i)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000867 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000868 return false;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000869 } else if (ShuffleKind == 2) {
Eric Christopherd9134482014-08-04 21:25:23 +0000870 if (!IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000871 return false;
872 for (unsigned i = 0; i != 16; ++i)
873 if (!isConstantOrUndef(N->getMaskElt(i), i*2))
874 return false;
875 } else if (ShuffleKind == 1) {
Eric Christopherd9134482014-08-04 21:25:23 +0000876 unsigned j = IsLE ? 0 : 1;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000877 for (unsigned i = 0; i != 8; ++i)
Bill Schmidtf910a062014-06-10 14:35:01 +0000878 if (!isConstantOrUndef(N->getMaskElt(i), i*2+j) ||
879 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000880 return false;
881 }
Chris Lattner1d338192006-04-06 18:26:28 +0000882 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000883}
884
885/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
886/// VPKUWUM instruction.
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000887/// The ShuffleKind distinguishes between big-endian operations with
888/// two different inputs (0), either-endian operations with two identical
889/// inputs (1), and little-endian operantion with two different inputs (2).
890/// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
891bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
Bill Schmidtf910a062014-06-10 14:35:01 +0000892 SelectionDAG &DAG) {
Eric Christopherd9134482014-08-04 21:25:23 +0000893 bool IsLE =
894 DAG.getTarget().getSubtargetImpl()->getDataLayout()->isLittleEndian();
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000895 if (ShuffleKind == 0) {
Eric Christopherd9134482014-08-04 21:25:23 +0000896 if (IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000897 return false;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000898 for (unsigned i = 0; i != 16; i += 2)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000899 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
900 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000901 return false;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000902 } else if (ShuffleKind == 2) {
Eric Christopherd9134482014-08-04 21:25:23 +0000903 if (!IsLE)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000904 return false;
905 for (unsigned i = 0; i != 16; i += 2)
906 if (!isConstantOrUndef(N->getMaskElt(i ), i*2) ||
907 !isConstantOrUndef(N->getMaskElt(i+1), i*2+1))
908 return false;
909 } else if (ShuffleKind == 1) {
Eric Christopherd9134482014-08-04 21:25:23 +0000910 unsigned j = IsLE ? 0 : 2;
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000911 for (unsigned i = 0; i != 8; i += 2)
Ulrich Weigandcc9909b2014-08-04 13:53:40 +0000912 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+j) ||
913 !isConstantOrUndef(N->getMaskElt(i+1), i*2+j+1) ||
914 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j) ||
915 !isConstantOrUndef(N->getMaskElt(i+9), i*2+j+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000916 return false;
917 }
Chris Lattner1d338192006-04-06 18:26:28 +0000918 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000919}
920
Chris Lattnerf38e0332006-04-06 22:02:42 +0000921/// isVMerge - Common function, used to match vmrg* shuffles.
922///
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000923static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnerf38e0332006-04-06 22:02:42 +0000924 unsigned LHSStart, unsigned RHSStart) {
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000925 if (N->getValueType(0) != MVT::v16i8)
926 return false;
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000927 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
928 "Unsupported merge size!");
Scott Michelcf0da6c2009-02-17 22:15:04 +0000929
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000930 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
931 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000932 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000933 LHSStart+j+i*UnitSize) ||
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000934 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000935 RHSStart+j+i*UnitSize))
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000936 return false;
937 }
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000938 return true;
Chris Lattnerf38e0332006-04-06 22:02:42 +0000939}
940
941/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
Bill Schmidtf910a062014-06-10 14:35:01 +0000942/// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes).
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000943/// The ShuffleKind distinguishes between big-endian merges with two
944/// different inputs (0), either-endian merges with two identical inputs (1),
945/// and little-endian merges with two different inputs (2). For the latter,
946/// the input operands are swapped (see PPCInstrAltivec.td).
Wesley Peck527da1b2010-11-23 03:31:01 +0000947bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000948 unsigned ShuffleKind, SelectionDAG &DAG) {
Eric Christopherd9134482014-08-04 21:25:23 +0000949 if (DAG.getTarget().getSubtargetImpl()->getDataLayout()->isLittleEndian()) {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000950 if (ShuffleKind == 1) // unary
951 return isVMerge(N, UnitSize, 0, 0);
952 else if (ShuffleKind == 2) // swapped
Bill Schmidtf910a062014-06-10 14:35:01 +0000953 return isVMerge(N, UnitSize, 0, 16);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000954 else
955 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +0000956 } else {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000957 if (ShuffleKind == 1) // unary
958 return isVMerge(N, UnitSize, 8, 8);
959 else if (ShuffleKind == 0) // normal
Bill Schmidtf910a062014-06-10 14:35:01 +0000960 return isVMerge(N, UnitSize, 8, 24);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000961 else
962 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +0000963 }
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000964}
965
966/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
Bill Schmidtf910a062014-06-10 14:35:01 +0000967/// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes).
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000968/// The ShuffleKind distinguishes between big-endian merges with two
969/// different inputs (0), either-endian merges with two identical inputs (1),
970/// and little-endian merges with two different inputs (2). For the latter,
971/// the input operands are swapped (see PPCInstrAltivec.td).
Wesley Peck527da1b2010-11-23 03:31:01 +0000972bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000973 unsigned ShuffleKind, SelectionDAG &DAG) {
Eric Christopherd9134482014-08-04 21:25:23 +0000974 if (DAG.getTarget().getSubtargetImpl()->getDataLayout()->isLittleEndian()) {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000975 if (ShuffleKind == 1) // unary
976 return isVMerge(N, UnitSize, 8, 8);
977 else if (ShuffleKind == 2) // swapped
Bill Schmidtf910a062014-06-10 14:35:01 +0000978 return isVMerge(N, UnitSize, 8, 24);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000979 else
980 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +0000981 } else {
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000982 if (ShuffleKind == 1) // unary
983 return isVMerge(N, UnitSize, 0, 0);
984 else if (ShuffleKind == 0) // normal
Bill Schmidtf910a062014-06-10 14:35:01 +0000985 return isVMerge(N, UnitSize, 0, 16);
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +0000986 else
987 return false;
Bill Schmidtf910a062014-06-10 14:35:01 +0000988 }
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000989}
990
991
Chris Lattner1d338192006-04-06 18:26:28 +0000992/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
993/// amount, otherwise return -1.
Bill Schmidtf910a062014-06-10 14:35:01 +0000994int PPC::isVSLDOIShuffleMask(SDNode *N, bool isUnary, SelectionDAG &DAG) {
Hal Finkeldf3e34d2014-03-26 22:58:37 +0000995 if (N->getValueType(0) != MVT::v16i8)
Hal Finkela775e512014-04-08 19:00:27 +0000996 return -1;
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000997
998 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Wesley Peck527da1b2010-11-23 03:31:01 +0000999
Chris Lattner1d338192006-04-06 18:26:28 +00001000 // Find the first non-undef value in the shuffle mask.
1001 unsigned i;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001002 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattner1d338192006-04-06 18:26:28 +00001003 /*search*/;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001004
Chris Lattner1d338192006-04-06 18:26:28 +00001005 if (i == 16) return -1; // all undef.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001006
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001007 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattner1d338192006-04-06 18:26:28 +00001008 // numbered from this value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001009 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattner1d338192006-04-06 18:26:28 +00001010 if (ShiftAmt < i) return -1;
Chris Lattnere8b83b42006-04-06 17:23:16 +00001011
Eric Christopherd9134482014-08-04 21:25:23 +00001012 if (DAG.getTarget().getSubtargetImpl()->getDataLayout()->isLittleEndian()) {
Bill Schmidtf910a062014-06-10 14:35:01 +00001013
1014 ShiftAmt += i;
1015
1016 if (!isUnary) {
1017 // Check the rest of the elements to see if they are consecutive.
1018 for (++i; i != 16; ++i)
1019 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt - i))
1020 return -1;
1021 } else {
1022 // Check the rest of the elements to see if they are consecutive.
1023 for (++i; i != 16; ++i)
1024 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt - i) & 15))
1025 return -1;
1026 }
1027
1028 } else { // Big Endian
1029
1030 ShiftAmt -= i;
1031
1032 if (!isUnary) {
1033 // Check the rest of the elements to see if they are consecutive.
1034 for (++i; i != 16; ++i)
1035 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1036 return -1;
1037 } else {
1038 // Check the rest of the elements to see if they are consecutive.
1039 for (++i; i != 16; ++i)
1040 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
1041 return -1;
1042 }
Chris Lattnera4bbfae2006-04-06 22:28:36 +00001043 }
Chris Lattner1d338192006-04-06 18:26:28 +00001044 return ShiftAmt;
1045}
Chris Lattnerffc47562006-03-20 06:33:01 +00001046
1047/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
1048/// specifies a splat of a single element that is suitable for input to
1049/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001050bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson9f944592009-08-11 20:47:22 +00001051 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner95c7adc2006-04-04 17:25:31 +00001052 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001053
Chris Lattnera8fbb6d2006-03-20 06:37:44 +00001054 // This is a splat operation if each element of the permute is the same, and
1055 // if the value doesn't reference the second vector.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001056 unsigned ElementBase = N->getMaskElt(0);
Wesley Peck527da1b2010-11-23 03:31:01 +00001057
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001058 // FIXME: Handle UNDEF elements too!
1059 if (ElementBase >= 16)
Chris Lattner95c7adc2006-04-04 17:25:31 +00001060 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001061
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001062 // Check that the indices are consecutive, in the case of a multi-byte element
1063 // splatted with a v16i8 mask.
1064 for (unsigned i = 1; i != EltSize; ++i)
1065 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner95c7adc2006-04-04 17:25:31 +00001066 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001067
Chris Lattner95c7adc2006-04-04 17:25:31 +00001068 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001069 if (N->getMaskElt(i) < 0) continue;
Chris Lattner95c7adc2006-04-04 17:25:31 +00001070 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001071 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner95c7adc2006-04-04 17:25:31 +00001072 return false;
Chris Lattnera8fbb6d2006-03-20 06:37:44 +00001073 }
Chris Lattner95c7adc2006-04-04 17:25:31 +00001074 return true;
Chris Lattnerffc47562006-03-20 06:33:01 +00001075}
1076
Evan Cheng581d2792007-07-30 07:51:22 +00001077/// isAllNegativeZeroVector - Returns true if all elements of build_vector
1078/// are -0.0.
1079bool PPC::isAllNegativeZeroVector(SDNode *N) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001080 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
1081
1082 APInt APVal, APUndef;
1083 unsigned BitSize;
1084 bool HasAnyUndefs;
Wesley Peck527da1b2010-11-23 03:31:01 +00001085
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00001086 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001087 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001088 return CFP->getValueAPF().isNegZero();
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001089
Evan Cheng581d2792007-07-30 07:51:22 +00001090 return false;
1091}
1092
Chris Lattnerffc47562006-03-20 06:33:01 +00001093/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
1094/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Bill Schmidtf910a062014-06-10 14:35:01 +00001095unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize,
1096 SelectionDAG &DAG) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00001097 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1098 assert(isSplatShuffleMask(SVOp, EltSize));
Eric Christopherd9134482014-08-04 21:25:23 +00001099 if (DAG.getTarget().getSubtargetImpl()->getDataLayout()->isLittleEndian())
Bill Schmidtf910a062014-06-10 14:35:01 +00001100 return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize);
1101 else
1102 return SVOp->getMaskElt(0) / EltSize;
Chris Lattnerffc47562006-03-20 06:33:01 +00001103}
1104
Chris Lattner74cf9ff2006-04-12 17:37:20 +00001105/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattnerd71a1f92006-04-08 06:46:53 +00001106/// by using a vspltis[bhw] instruction of the specified element size, return
1107/// the constant being splatted. The ByteSize field indicates the number of
1108/// bytes of each element [124] -> [bhw].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001109SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001110 SDValue OpVal(nullptr, 0);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001111
1112 // If ByteSize of the splat is bigger than the element size of the
1113 // build_vector, then we have a case where we are checking for a splat where
1114 // multiple elements of the buildvector are folded together into a single
1115 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
1116 unsigned EltSize = 16/N->getNumOperands();
1117 if (EltSize < ByteSize) {
1118 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001119 SDValue UniquedVals[4];
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001120 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelcf0da6c2009-02-17 22:15:04 +00001121
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001122 // See if all of the elements in the buildvector agree across.
1123 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1124 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1125 // If the element isn't a constant, bail fully out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001126 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001127
Scott Michelcf0da6c2009-02-17 22:15:04 +00001128
Craig Topper062a2ba2014-04-25 05:30:21 +00001129 if (!UniquedVals[i&(Multiple-1)].getNode())
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001130 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
1131 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001132 return SDValue(); // no match.
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001133 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001134
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001135 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
1136 // either constant or undef values that are identical for each chunk. See
1137 // if these chunks can form into a larger vspltis*.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001138
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001139 // Check to see if all of the leading entries are either 0 or -1. If
1140 // neither, then this won't fit into the immediate field.
1141 bool LeadingZero = true;
1142 bool LeadingOnes = true;
1143 for (unsigned i = 0; i != Multiple-1; ++i) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001144 if (!UniquedVals[i].getNode()) continue; // Must have been undefs.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001145
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001146 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
1147 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
1148 }
1149 // Finally, check the least significant entry.
1150 if (LeadingZero) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001151 if (!UniquedVals[Multiple-1].getNode())
Owen Anderson9f944592009-08-11 20:47:22 +00001152 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
Dan Gohmaneffb8942008-09-12 16:56:44 +00001153 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001154 if (Val < 16)
Owen Anderson9f944592009-08-11 20:47:22 +00001155 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001156 }
1157 if (LeadingOnes) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001158 if (!UniquedVals[Multiple-1].getNode())
Owen Anderson9f944592009-08-11 20:47:22 +00001159 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
Dan Gohman6e054832008-09-26 21:54:37 +00001160 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001161 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Owen Anderson9f944592009-08-11 20:47:22 +00001162 return DAG.getTargetConstant(Val, MVT::i32);
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001163 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001164
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001165 return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +00001166 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001167
Chris Lattner2771e2c2006-03-25 06:12:06 +00001168 // Check to see if this buildvec has a single non-undef value in its elements.
1169 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1170 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Craig Topper062a2ba2014-04-25 05:30:21 +00001171 if (!OpVal.getNode())
Chris Lattner2771e2c2006-03-25 06:12:06 +00001172 OpVal = N->getOperand(i);
1173 else if (OpVal != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001174 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001175 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001176
Craig Topper062a2ba2014-04-25 05:30:21 +00001177 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001178
Eli Friedman9c6ab1a2009-05-24 02:03:36 +00001179 unsigned ValSizeInBytes = EltSize;
Nate Begeman1b392872006-03-28 04:15:58 +00001180 uint64_t Value = 0;
Chris Lattner2771e2c2006-03-25 06:12:06 +00001181 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001182 Value = CN->getZExtValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001183 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson9f944592009-08-11 20:47:22 +00001184 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johannesen3cf889f2007-08-31 04:03:46 +00001185 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner2771e2c2006-03-25 06:12:06 +00001186 }
1187
1188 // If the splat value is larger than the element value, then we can never do
1189 // this splat. The only case that we could fit the replicated bits into our
1190 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001191 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001192
Chris Lattner2771e2c2006-03-25 06:12:06 +00001193 // If the element value is larger than the splat value, cut it in half and
1194 // check to see if the two halves are equal. Continue doing this until we
1195 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
1196 while (ValSizeInBytes > ByteSize) {
1197 ValSizeInBytes >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001198
Chris Lattner2771e2c2006-03-25 06:12:06 +00001199 // If the top half equals the bottom half, we're still ok.
Chris Lattner39cc7172006-04-05 17:39:25 +00001200 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
1201 (Value & ((1 << (8*ValSizeInBytes))-1)))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001202 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001203 }
1204
1205 // Properly sign extend the value.
Richard Smith228e6d42012-08-24 23:29:28 +00001206 int MaskVal = SignExtend32(Value, ByteSize * 8);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001207
Evan Chengb1ddc982006-03-26 09:52:32 +00001208 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001209 if (MaskVal == 0) return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001210
Chris Lattnerd71a1f92006-04-08 06:46:53 +00001211 // Finally, if this value fits in a 5 bit sext field, return it
Richard Smith228e6d42012-08-24 23:29:28 +00001212 if (SignExtend32<5>(MaskVal) == MaskVal)
Owen Anderson9f944592009-08-11 20:47:22 +00001213 return DAG.getTargetConstant(MaskVal, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001214 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +00001215}
1216
Chris Lattner4211ca92006-04-14 06:01:58 +00001217//===----------------------------------------------------------------------===//
Chris Lattnera801fced2006-11-08 02:15:41 +00001218// Addressing Mode Selection
1219//===----------------------------------------------------------------------===//
1220
1221/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
1222/// or 64-bit immediate, and if the value can be accurately represented as a
1223/// sign extension from a 16-bit value. If so, this returns true and the
1224/// immediate.
1225static bool isIntS16Immediate(SDNode *N, short &Imm) {
Adam Nemet571eb5f2014-05-20 17:20:34 +00001226 if (!isa<ConstantSDNode>(N))
Chris Lattnera801fced2006-11-08 02:15:41 +00001227 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001228
Dan Gohmaneffb8942008-09-12 16:56:44 +00001229 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson9f944592009-08-11 20:47:22 +00001230 if (N->getValueType(0) == MVT::i32)
Dan Gohmaneffb8942008-09-12 16:56:44 +00001231 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001232 else
Dan Gohmaneffb8942008-09-12 16:56:44 +00001233 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001234}
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001235static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001236 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnera801fced2006-11-08 02:15:41 +00001237}
1238
1239
1240/// SelectAddressRegReg - Given the specified addressed, check to see if it
1241/// can be represented as an indexed [r+r] operation. Returns false if it
1242/// can be more efficiently represented with [r+imm].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001243bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1244 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001245 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001246 short imm = 0;
1247 if (N.getOpcode() == ISD::ADD) {
1248 if (isIntS16Immediate(N.getOperand(1), imm))
1249 return false; // r+i
1250 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1251 return false; // r+i
Scott Michelcf0da6c2009-02-17 22:15:04 +00001252
Chris Lattnera801fced2006-11-08 02:15:41 +00001253 Base = N.getOperand(0);
1254 Index = N.getOperand(1);
1255 return true;
1256 } else if (N.getOpcode() == ISD::OR) {
1257 if (isIntS16Immediate(N.getOperand(1), imm))
1258 return false; // r+i can fold it if we can.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001259
Chris Lattnera801fced2006-11-08 02:15:41 +00001260 // If this is an or of disjoint bitfields, we can codegen this as an add
1261 // (for better address arithmetic) if the LHS and RHS of the OR are provably
1262 // disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001263 APInt LHSKnownZero, LHSKnownOne;
1264 APInt RHSKnownZero, RHSKnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001265 DAG.computeKnownBits(N.getOperand(0),
1266 LHSKnownZero, LHSKnownOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001267
Dan Gohmanf19609a2008-02-27 01:23:58 +00001268 if (LHSKnownZero.getBoolValue()) {
Jay Foada0653a32014-05-14 21:14:37 +00001269 DAG.computeKnownBits(N.getOperand(1),
1270 RHSKnownZero, RHSKnownOne);
Chris Lattnera801fced2006-11-08 02:15:41 +00001271 // If all of the bits are known zero on the LHS or RHS, the add won't
1272 // carry.
Dan Gohman26854f22008-02-27 21:12:32 +00001273 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001274 Base = N.getOperand(0);
1275 Index = N.getOperand(1);
1276 return true;
1277 }
1278 }
1279 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001280
Chris Lattnera801fced2006-11-08 02:15:41 +00001281 return false;
1282}
1283
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001284// If we happen to be doing an i64 load or store into a stack slot that has
1285// less than a 4-byte alignment, then the frame-index elimination may need to
1286// use an indexed load or store instruction (because the offset may not be a
1287// multiple of 4). The extra register needed to hold the offset comes from the
1288// register scavenger, and it is possible that the scavenger will need to use
1289// an emergency spill slot. As a result, we need to make sure that a spill slot
1290// is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1291// stack slot.
1292static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1293 // FIXME: This does not handle the LWA case.
1294 if (VT != MVT::i64)
1295 return;
1296
Hal Finkel7ab3db52013-07-10 15:29:01 +00001297 // NOTE: We'll exclude negative FIs here, which come from argument
1298 // lowering, because there are no known test cases triggering this problem
1299 // using packed structures (or similar). We can remove this exclusion if
1300 // we find such a test case. The reason why this is so test-case driven is
1301 // because this entire 'fixup' is only to prevent crashes (from the
1302 // register scavenger) on not-really-valid inputs. For example, if we have:
1303 // %a = alloca i1
1304 // %b = bitcast i1* %a to i64*
1305 // store i64* a, i64 b
1306 // then the store should really be marked as 'align 1', but is not. If it
1307 // were marked as 'align 1' then the indexed form would have been
1308 // instruction-selected initially, and the problem this 'fixup' is preventing
1309 // won't happen regardless.
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001310 if (FrameIdx < 0)
1311 return;
1312
1313 MachineFunction &MF = DAG.getMachineFunction();
1314 MachineFrameInfo *MFI = MF.getFrameInfo();
1315
1316 unsigned Align = MFI->getObjectAlignment(FrameIdx);
1317 if (Align >= 4)
1318 return;
1319
1320 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1321 FuncInfo->setHasNonRISpills();
1322}
1323
Chris Lattnera801fced2006-11-08 02:15:41 +00001324/// Returns true if the address N can be represented by a base register plus
1325/// a signed 16-bit displacement [r+imm], and if it is not better
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001326/// represented as reg+reg. If Aligned is true, only accept displacements
1327/// suitable for STD and friends, i.e. multiples of 4.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001328bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman02b93132009-01-15 16:29:45 +00001329 SDValue &Base,
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001330 SelectionDAG &DAG,
1331 bool Aligned) const {
Dale Johannesenab8e4422009-02-06 19:16:40 +00001332 // FIXME dl should come from parent load or store, not from address
Andrew Trickef9de2a2013-05-25 02:42:55 +00001333 SDLoc dl(N);
Chris Lattnera801fced2006-11-08 02:15:41 +00001334 // If this can be more profitably realized as r+r, fail.
1335 if (SelectAddressRegReg(N, Disp, Base, DAG))
1336 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001337
Chris Lattnera801fced2006-11-08 02:15:41 +00001338 if (N.getOpcode() == ISD::ADD) {
1339 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001340 if (isIntS16Immediate(N.getOperand(1), imm) &&
1341 (!Aligned || (imm & 3) == 0)) {
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001342 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001343 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1344 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001345 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001346 } else {
1347 Base = N.getOperand(0);
1348 }
1349 return true; // [r+i]
1350 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1351 // Match LOAD (ADD (X, Lo(G))).
Gabor Greifc8a9abe2012-04-20 11:41:38 +00001352 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnera801fced2006-11-08 02:15:41 +00001353 && "Cannot handle constant offsets yet!");
1354 Disp = N.getOperand(1).getOperand(0); // The global address.
1355 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
Roman Divackye3f15c982012-06-04 17:36:38 +00001356 Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
Chris Lattnera801fced2006-11-08 02:15:41 +00001357 Disp.getOpcode() == ISD::TargetConstantPool ||
1358 Disp.getOpcode() == ISD::TargetJumpTable);
1359 Base = N.getOperand(0);
1360 return true; // [&g+r]
1361 }
1362 } else if (N.getOpcode() == ISD::OR) {
1363 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001364 if (isIntS16Immediate(N.getOperand(1), imm) &&
1365 (!Aligned || (imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001366 // If this is an or of disjoint bitfields, we can codegen this as an add
1367 // (for better address arithmetic) if the LHS and RHS of the OR are
1368 // provably disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001369 APInt LHSKnownZero, LHSKnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00001370 DAG.computeKnownBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
Bill Wendling63061832008-03-24 23:16:37 +00001371
Dan Gohmanf19609a2008-02-27 01:23:58 +00001372 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001373 // If all of the bits are known zero on the LHS or RHS, the add won't
1374 // carry.
Ulrich Weigand55a96652014-07-20 22:26:40 +00001375 if (FrameIndexSDNode *FI =
1376 dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1377 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1378 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1379 } else {
1380 Base = N.getOperand(0);
1381 }
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001382 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001383 return true;
1384 }
1385 }
1386 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1387 // Loading from a constant address.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001388
Chris Lattnera801fced2006-11-08 02:15:41 +00001389 // If this address fits entirely in a 16-bit sext immediate field, codegen
1390 // this as "d, 0"
1391 short Imm;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001392 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001393 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001394 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
Hal Finkelf70c41e2013-03-21 23:45:03 +00001395 CN->getValueType(0));
Chris Lattnera801fced2006-11-08 02:15:41 +00001396 return true;
1397 }
Chris Lattner4a9c0bb2007-02-17 06:44:03 +00001398
1399 // Handle 32-bit sext immediates with LIS + addr mode.
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001400 if ((CN->getValueType(0) == MVT::i32 ||
1401 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1402 (!Aligned || (CN->getZExtValue() & 3) == 0)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001403 int Addr = (int)CN->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001404
Chris Lattnera801fced2006-11-08 02:15:41 +00001405 // Otherwise, break this down into an LIS + disp.
Owen Anderson9f944592009-08-11 20:47:22 +00001406 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001407
Owen Anderson9f944592009-08-11 20:47:22 +00001408 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
1409 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dan Gohman32f71d72009-09-25 18:54:59 +00001410 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnera801fced2006-11-08 02:15:41 +00001411 return true;
1412 }
1413 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001414
Chris Lattnera801fced2006-11-08 02:15:41 +00001415 Disp = DAG.getTargetConstant(0, getPointerTy());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001416 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001417 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001418 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1419 } else
Chris Lattnera801fced2006-11-08 02:15:41 +00001420 Base = N;
1421 return true; // [r+0]
1422}
1423
1424/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1425/// represented as an indexed [r+r] operation.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001426bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1427 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001428 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001429 // Check to see if we can easily represent this as an [r+r] address. This
1430 // will fail if it thinks that the address is more profitably represented as
1431 // reg+imm, e.g. where imm = 0.
1432 if (SelectAddressRegReg(N, Base, Index, DAG))
1433 return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001434
Chris Lattnera801fced2006-11-08 02:15:41 +00001435 // If the operand is an addition, always emit this as [r+r], since this is
1436 // better (for code size, and execution, as the memop does the add for free)
1437 // than emitting an explicit add.
1438 if (N.getOpcode() == ISD::ADD) {
1439 Base = N.getOperand(0);
1440 Index = N.getOperand(1);
1441 return true;
1442 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001443
Chris Lattnera801fced2006-11-08 02:15:41 +00001444 // Otherwise, do it the hard way, using R0 as the base register.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001445 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
Hal Finkelf70c41e2013-03-21 23:45:03 +00001446 N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001447 Index = N;
1448 return true;
1449}
1450
Chris Lattnera801fced2006-11-08 02:15:41 +00001451/// getPreIndexedAddressParts - returns true by value, base pointer and
1452/// offset pointer and addressing mode by reference if the node's address
1453/// can be legally represented as pre-indexed load / store address.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001454bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1455 SDValue &Offset,
Evan Chengb1500072006-11-09 17:55:04 +00001456 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +00001457 SelectionDAG &DAG) const {
Hal Finkel595817e2012-06-04 02:21:00 +00001458 if (DisablePPCPreinc) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001459
Ulrich Weigande90b0222013-03-22 14:58:48 +00001460 bool isLoad = true;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001461 SDValue Ptr;
Owen Anderson53aa7a92009-08-10 22:56:29 +00001462 EVT VT;
Hal Finkelb09680b2013-03-18 23:00:58 +00001463 unsigned Alignment;
Chris Lattnera801fced2006-11-08 02:15:41 +00001464 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1465 Ptr = LD->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001466 VT = LD->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001467 Alignment = LD->getAlignment();
Chris Lattnera801fced2006-11-08 02:15:41 +00001468 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner68371252006-11-14 01:38:31 +00001469 Ptr = ST->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001470 VT = ST->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001471 Alignment = ST->getAlignment();
Ulrich Weigande90b0222013-03-22 14:58:48 +00001472 isLoad = false;
Chris Lattnera801fced2006-11-08 02:15:41 +00001473 } else
1474 return false;
1475
Chris Lattner68371252006-11-14 01:38:31 +00001476 // PowerPC doesn't have preinc load/store instructions for vectors.
Duncan Sands13237ac2008-06-06 12:08:01 +00001477 if (VT.isVector())
Chris Lattner68371252006-11-14 01:38:31 +00001478 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001479
Ulrich Weigande90b0222013-03-22 14:58:48 +00001480 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1481
1482 // Common code will reject creating a pre-inc form if the base pointer
1483 // is a frame index, or if N is a store and the base pointer is either
1484 // the same as or a predecessor of the value being stored. Check for
1485 // those situations here, and try with swapped Base/Offset instead.
1486 bool Swap = false;
1487
1488 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1489 Swap = true;
1490 else if (!isLoad) {
1491 SDValue Val = cast<StoreSDNode>(N)->getValue();
1492 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1493 Swap = true;
1494 }
1495
1496 if (Swap)
1497 std::swap(Base, Offset);
1498
Hal Finkelca542be2012-06-20 15:43:03 +00001499 AM = ISD::PRE_INC;
1500 return true;
Hal Finkel1cc27e42012-06-19 02:34:32 +00001501 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001502
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001503 // LDU/STU can only handle immediates that are a multiple of 4.
Owen Anderson9f944592009-08-11 20:47:22 +00001504 if (VT != MVT::i64) {
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001505 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
Chris Lattner474b5b72006-11-15 19:55:13 +00001506 return false;
1507 } else {
Hal Finkelb09680b2013-03-18 23:00:58 +00001508 // LDU/STU need an address with at least 4-byte alignment.
1509 if (Alignment < 4)
1510 return false;
1511
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001512 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
Chris Lattner474b5b72006-11-15 19:55:13 +00001513 return false;
1514 }
Chris Lattnerb314b152006-11-11 00:08:42 +00001515
Chris Lattnerb314b152006-11-11 00:08:42 +00001516 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner474b5b72006-11-15 19:55:13 +00001517 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1518 // sext i32 to i64 when addr mode is r+i.
Owen Anderson9f944592009-08-11 20:47:22 +00001519 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerb314b152006-11-11 00:08:42 +00001520 LD->getExtensionType() == ISD::SEXTLOAD &&
1521 isa<ConstantSDNode>(Offset))
1522 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001523 }
1524
Chris Lattnerce645542006-11-10 02:08:47 +00001525 AM = ISD::PRE_INC;
1526 return true;
Chris Lattnera801fced2006-11-08 02:15:41 +00001527}
1528
1529//===----------------------------------------------------------------------===//
Chris Lattner4211ca92006-04-14 06:01:58 +00001530// LowerOperation implementation
1531//===----------------------------------------------------------------------===//
1532
Chris Lattneredb9d842010-11-15 02:46:57 +00001533/// GetLabelAccessInfo - Return true if we should reference labels using a
1534/// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1535static bool GetLabelAccessInfo(const TargetMachine &TM, unsigned &HiOpFlags,
Craig Topper062a2ba2014-04-25 05:30:21 +00001536 unsigned &LoOpFlags,
1537 const GlobalValue *GV = nullptr) {
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001538 HiOpFlags = PPCII::MO_HA;
1539 LoOpFlags = PPCII::MO_LO;
Wesley Peck527da1b2010-11-23 03:31:01 +00001540
Hal Finkel3ee2af72014-07-18 23:29:49 +00001541 // Don't use the pic base if not in PIC relocation model.
1542 bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
1543
Chris Lattnerdd6df842010-11-15 03:13:19 +00001544 if (isPIC) {
1545 HiOpFlags |= PPCII::MO_PIC_FLAG;
1546 LoOpFlags |= PPCII::MO_PIC_FLAG;
1547 }
1548
1549 // If this is a reference to a global value that requires a non-lazy-ptr, make
1550 // sure that instruction lowering adds it.
1551 if (GV && TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV, TM)) {
1552 HiOpFlags |= PPCII::MO_NLP_FLAG;
1553 LoOpFlags |= PPCII::MO_NLP_FLAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00001554
Chris Lattnerdd6df842010-11-15 03:13:19 +00001555 if (GV->hasHiddenVisibility()) {
1556 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1557 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1558 }
1559 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001560
Chris Lattneredb9d842010-11-15 02:46:57 +00001561 return isPIC;
1562}
1563
1564static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1565 SelectionDAG &DAG) {
1566 EVT PtrVT = HiPart.getValueType();
1567 SDValue Zero = DAG.getConstant(0, PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001568 SDLoc DL(HiPart);
Chris Lattneredb9d842010-11-15 02:46:57 +00001569
1570 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1571 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
Wesley Peck527da1b2010-11-23 03:31:01 +00001572
Chris Lattneredb9d842010-11-15 02:46:57 +00001573 // With PIC, the first instruction is actually "GR+hi(&G)".
1574 if (isPIC)
1575 Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1576 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
Wesley Peck527da1b2010-11-23 03:31:01 +00001577
Chris Lattneredb9d842010-11-15 02:46:57 +00001578 // Generate non-pic code that has direct accesses to the constant pool.
1579 // The address of the global is just (hi(&g)+lo(&g)).
1580 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1581}
1582
Scott Michelcf0da6c2009-02-17 22:15:04 +00001583SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001584 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001585 EVT PtrVT = Op.getValueType();
Chris Lattner4211ca92006-04-14 06:01:58 +00001586 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001587 const Constant *C = CP->getConstVal();
Chris Lattner4211ca92006-04-14 06:01:58 +00001588
Roman Divackyace47072012-08-24 16:26:02 +00001589 // 64-bit SVR4 ABI code is always position-independent.
1590 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001591 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Roman Divackyace47072012-08-24 16:26:02 +00001592 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001593 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001594 DAG.getRegister(PPC::X2, MVT::i64));
1595 }
1596
Chris Lattneredb9d842010-11-15 02:46:57 +00001597 unsigned MOHiFlag, MOLoFlag;
1598 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00001599
1600 if (isPIC && Subtarget.isSVR4ABI()) {
1601 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(),
1602 PPCII::MO_PIC_FLAG);
1603 SDLoc DL(CP);
1604 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1605 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1606 }
1607
Chris Lattneredb9d842010-11-15 02:46:57 +00001608 SDValue CPIHi =
1609 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1610 SDValue CPILo =
1611 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1612 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00001613}
1614
Dan Gohman21cea8a2010-04-17 15:26:15 +00001615SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001616 EVT PtrVT = Op.getValueType();
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001617 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peck527da1b2010-11-23 03:31:01 +00001618
Roman Divackyace47072012-08-24 16:26:02 +00001619 // 64-bit SVR4 ABI code is always position-independent.
1620 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001621 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Roman Divackyace47072012-08-24 16:26:02 +00001622 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001623 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001624 DAG.getRegister(PPC::X2, MVT::i64));
1625 }
1626
Chris Lattneredb9d842010-11-15 02:46:57 +00001627 unsigned MOHiFlag, MOLoFlag;
1628 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
Hal Finkel3ee2af72014-07-18 23:29:49 +00001629
1630 if (isPIC && Subtarget.isSVR4ABI()) {
1631 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
1632 PPCII::MO_PIC_FLAG);
1633 SDLoc DL(GA);
1634 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), PtrVT, GA,
1635 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1636 }
1637
Chris Lattneredb9d842010-11-15 02:46:57 +00001638 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1639 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1640 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio09d73c02007-07-11 17:19:51 +00001641}
1642
Dan Gohman21cea8a2010-04-17 15:26:15 +00001643SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1644 SelectionDAG &DAG) const {
Bob Wilsonf84f7102009-11-04 21:31:18 +00001645 EVT PtrVT = Op.getValueType();
Bob Wilsonf84f7102009-11-04 21:31:18 +00001646
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001647 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Wesley Peck527da1b2010-11-23 03:31:01 +00001648
Chris Lattneredb9d842010-11-15 02:46:57 +00001649 unsigned MOHiFlag, MOLoFlag;
1650 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
Michael Liaoabb87d42012-09-12 21:43:09 +00001651 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1652 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattneredb9d842010-11-15 02:46:57 +00001653 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1654}
1655
Roman Divackye3f15c982012-06-04 17:36:38 +00001656SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1657 SelectionDAG &DAG) const {
1658
Bill Schmidtbdae03f2013-09-17 20:22:05 +00001659 // FIXME: TLS addresses currently use medium model code sequences,
1660 // which is the most useful form. Eventually support for small and
1661 // large models could be added if users need it, at the cost of
1662 // additional complexity.
Roman Divackye3f15c982012-06-04 17:36:38 +00001663 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001664 SDLoc dl(GA);
Roman Divackye3f15c982012-06-04 17:36:38 +00001665 const GlobalValue *GV = GA->getGlobal();
1666 EVT PtrVT = getPointerTy();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001667 bool is64bit = Subtarget.isPPC64();
Roman Divackye3f15c982012-06-04 17:36:38 +00001668
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001669 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackye3f15c982012-06-04 17:36:38 +00001670
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001671 if (Model == TLSModel::LocalExec) {
1672 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001673 PPCII::MO_TPREL_HA);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001674 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001675 PPCII::MO_TPREL_LO);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001676 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1677 is64bit ? MVT::i64 : MVT::i32);
1678 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1679 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1680 }
Roman Divackye3f15c982012-06-04 17:36:38 +00001681
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001682 if (Model == TLSModel::InitialExec) {
Bill Schmidt732eb912012-12-13 18:45:54 +00001683 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001684 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1685 PPCII::MO_TLS);
Roman Divacky32143e22013-12-20 18:08:54 +00001686 SDValue GOTPtr;
1687 if (is64bit) {
1688 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1689 GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1690 PtrVT, GOTReg, TGA);
1691 } else
1692 GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +00001693 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
Roman Divacky32143e22013-12-20 18:08:54 +00001694 PtrVT, TGA, GOTPtr);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001695 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001696 }
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001697
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001698 if (Model == TLSModel::GeneralDynamic) {
1699 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001700 SDValue GOTPtr;
1701 if (is64bit) {
1702 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1703 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1704 GOTReg, TGA);
1705 } else {
1706 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
1707 }
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001708 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl, PtrVT,
Hal Finkel7c8ae532014-07-25 17:47:22 +00001709 GOTPtr, TGA);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001710
1711 // We need a chain node, and don't have one handy. The underlying
1712 // call has no side effects, so using the function entry node
1713 // suffices.
1714 SDValue Chain = DAG.getEntryNode();
Hal Finkel7c8ae532014-07-25 17:47:22 +00001715 Chain = DAG.getCopyToReg(Chain, dl,
1716 is64bit ? PPC::X3 : PPC::R3, GOTEntry);
1717 SDValue ParmReg = DAG.getRegister(is64bit ? PPC::X3 : PPC::R3,
1718 is64bit ? MVT::i64 : MVT::i32);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001719 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLS_ADDR, dl,
1720 PtrVT, ParmReg, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001721 // The return value from GET_TLS_ADDR really is in X3 already, but
1722 // some hacks are needed here to tie everything together. The extra
1723 // copies dissolve during subsequent transforms.
Hal Finkel7c8ae532014-07-25 17:47:22 +00001724 Chain = DAG.getCopyToReg(Chain, dl, is64bit ? PPC::X3 : PPC::R3, TLSAddr);
1725 return DAG.getCopyFromReg(Chain, dl, is64bit ? PPC::X3 : PPC::R3, PtrVT);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001726 }
1727
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001728 if (Model == TLSModel::LocalDynamic) {
1729 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Hal Finkel7c8ae532014-07-25 17:47:22 +00001730 SDValue GOTPtr;
1731 if (is64bit) {
1732 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1733 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1734 GOTReg, TGA);
1735 } else {
1736 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
1737 }
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001738 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT,
Hal Finkel7c8ae532014-07-25 17:47:22 +00001739 GOTPtr, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001740
1741 // We need a chain node, and don't have one handy. The underlying
1742 // call has no side effects, so using the function entry node
1743 // suffices.
1744 SDValue Chain = DAG.getEntryNode();
Hal Finkel7c8ae532014-07-25 17:47:22 +00001745 Chain = DAG.getCopyToReg(Chain, dl,
1746 is64bit ? PPC::X3 : PPC::R3, GOTEntry);
1747 SDValue ParmReg = DAG.getRegister(is64bit ? PPC::X3 : PPC::R3,
1748 is64bit ? MVT::i64 : MVT::i32);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001749 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLSLD_ADDR, dl,
1750 PtrVT, ParmReg, TGA);
1751 // The return value from GET_TLSLD_ADDR really is in X3 already, but
1752 // some hacks are needed here to tie everything together. The extra
1753 // copies dissolve during subsequent transforms.
Hal Finkel7c8ae532014-07-25 17:47:22 +00001754 Chain = DAG.getCopyToReg(Chain, dl, is64bit ? PPC::X3 : PPC::R3, TLSAddr);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001755 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, PtrVT,
Bill Schmidt9ed4dbc2012-12-13 20:57:10 +00001756 Chain, ParmReg, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001757 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1758 }
1759
1760 llvm_unreachable("Unknown TLS model!");
Roman Divackye3f15c982012-06-04 17:36:38 +00001761}
1762
Chris Lattneredb9d842010-11-15 02:46:57 +00001763SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1764 SelectionDAG &DAG) const {
1765 EVT PtrVT = Op.getValueType();
1766 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001767 SDLoc DL(GSDN);
Chris Lattneredb9d842010-11-15 02:46:57 +00001768 const GlobalValue *GV = GSDN->getGlobal();
1769
Chris Lattneredb9d842010-11-15 02:46:57 +00001770 // 64-bit SVR4 ABI code is always position-independent.
1771 // The actual address of the GlobalValue is stored in the TOC.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00001772 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
Chris Lattneredb9d842010-11-15 02:46:57 +00001773 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1774 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1775 DAG.getRegister(PPC::X2, MVT::i64));
1776 }
1777
Chris Lattnerdd6df842010-11-15 03:13:19 +00001778 unsigned MOHiFlag, MOLoFlag;
1779 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag, GV);
Chris Lattneredb9d842010-11-15 02:46:57 +00001780
Hal Finkel3ee2af72014-07-18 23:29:49 +00001781 if (isPIC && Subtarget.isSVR4ABI()) {
1782 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT,
1783 GSDN->getOffset(),
1784 PPCII::MO_PIC_FLAG);
1785 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1786 DAG.getNode(PPCISD::GlobalBaseReg, DL, MVT::i32));
1787 }
1788
Chris Lattnerdd6df842010-11-15 03:13:19 +00001789 SDValue GAHi =
1790 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1791 SDValue GALo =
1792 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peck527da1b2010-11-23 03:31:01 +00001793
Chris Lattnerdd6df842010-11-15 03:13:19 +00001794 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00001795
Chris Lattnerdd6df842010-11-15 03:13:19 +00001796 // If the global reference is actually to a non-lazy-pointer, we have to do an
1797 // extra load to get the address of the global.
1798 if (MOHiFlag & PPCII::MO_NLP_FLAG)
1799 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001800 false, false, false, 0);
Chris Lattnerdd6df842010-11-15 03:13:19 +00001801 return Ptr;
Chris Lattner4211ca92006-04-14 06:01:58 +00001802}
1803
Dan Gohman21cea8a2010-04-17 15:26:15 +00001804SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00001805 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001806 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001807
Hal Finkel777c9dd2014-03-29 16:04:40 +00001808 if (Op.getValueType() == MVT::v2i64) {
1809 // When the operands themselves are v2i64 values, we need to do something
1810 // special because VSX has no underlying comparison operations for these.
1811 if (Op.getOperand(0).getValueType() == MVT::v2i64) {
1812 // Equality can be handled by casting to the legal type for Altivec
1813 // comparisons, everything else needs to be expanded.
1814 if (CC == ISD::SETEQ || CC == ISD::SETNE) {
1815 return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
1816 DAG.getSetCC(dl, MVT::v4i32,
1817 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)),
1818 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)),
1819 CC));
1820 }
1821
1822 return SDValue();
1823 }
1824
1825 // We handle most of these in the usual way.
1826 return Op;
1827 }
1828
Chris Lattner4211ca92006-04-14 06:01:58 +00001829 // If we're comparing for equality to zero, expose the fact that this is
1830 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1831 // fold the new nodes.
1832 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1833 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001834 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001835 SDValue Zext = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00001836 if (VT.bitsLT(MVT::i32)) {
1837 VT = MVT::i32;
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001838 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001839 }
Duncan Sands13237ac2008-06-06 12:08:01 +00001840 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001841 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1842 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson9f944592009-08-11 20:47:22 +00001843 DAG.getConstant(Log2b, MVT::i32));
1844 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner4211ca92006-04-14 06:01:58 +00001845 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001846 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner4211ca92006-04-14 06:01:58 +00001847 // optimized. FIXME: revisit this when we can custom lower all setcc
1848 // optimizations.
1849 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001850 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001851 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001852
Chris Lattner4211ca92006-04-14 06:01:58 +00001853 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattner97ff46b2006-11-14 05:28:08 +00001854 // by xor'ing the rhs with the lhs, which is faster than setting a
1855 // condition register, reading it back out, and masking the correct bit. The
1856 // normal approach here uses sub to do this instead of xor. Using xor exposes
1857 // the result to other bit-twiddling opportunities.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001858 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00001859 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001860 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001861 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner4211ca92006-04-14 06:01:58 +00001862 Op.getOperand(1));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001863 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner4211ca92006-04-14 06:01:58 +00001864 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001865 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001866}
1867
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001868SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001869 const PPCSubtarget &Subtarget) const {
Roman Divacky4394e682011-06-28 15:30:42 +00001870 SDNode *Node = Op.getNode();
1871 EVT VT = Node->getValueType(0);
1872 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1873 SDValue InChain = Node->getOperand(0);
1874 SDValue VAListPtr = Node->getOperand(1);
1875 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001876 SDLoc dl(Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001877
Roman Divacky4394e682011-06-28 15:30:42 +00001878 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1879
1880 // gpr_index
1881 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1882 VAListPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001883 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001884 InChain = GprIndex.getValue(1);
1885
1886 if (VT == MVT::i64) {
1887 // Check if GprIndex is even
1888 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1889 DAG.getConstant(1, MVT::i32));
1890 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1891 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1892 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1893 DAG.getConstant(1, MVT::i32));
1894 // Align GprIndex to be even if it isn't
1895 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1896 GprIndex);
1897 }
1898
1899 // fpr index is 1 byte after gpr
1900 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1901 DAG.getConstant(1, MVT::i32));
1902
1903 // fpr
1904 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1905 FprPtr, MachinePointerInfo(SV), MVT::i8,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001906 false, false, false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001907 InChain = FprIndex.getValue(1);
1908
1909 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1910 DAG.getConstant(8, MVT::i32));
1911
1912 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1913 DAG.getConstant(4, MVT::i32));
1914
1915 // areas
1916 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001917 MachinePointerInfo(), false, false,
1918 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001919 InChain = OverflowArea.getValue(1);
1920
1921 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001922 MachinePointerInfo(), false, false,
1923 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001924 InChain = RegSaveArea.getValue(1);
1925
1926 // select overflow_area if index > 8
1927 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1928 DAG.getConstant(8, MVT::i32), ISD::SETLT);
1929
Roman Divacky4394e682011-06-28 15:30:42 +00001930 // adjustment constant gpr_index * 4/8
1931 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1932 VT.isInteger() ? GprIndex : FprIndex,
1933 DAG.getConstant(VT.isInteger() ? 4 : 8,
1934 MVT::i32));
1935
1936 // OurReg = RegSaveArea + RegConstant
1937 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1938 RegConstant);
1939
1940 // Floating types are 32 bytes into RegSaveArea
1941 if (VT.isFloatingPoint())
1942 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1943 DAG.getConstant(32, MVT::i32));
1944
1945 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1946 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1947 VT.isInteger() ? GprIndex : FprIndex,
1948 DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1949 MVT::i32));
1950
1951 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1952 VT.isInteger() ? VAListPtr : FprPtr,
1953 MachinePointerInfo(SV),
1954 MVT::i8, false, false, 0);
1955
1956 // determine if we should load from reg_save_area or overflow_area
1957 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1958
1959 // increase overflow_area by 4/8 if gpr/fpr > 8
1960 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1961 DAG.getConstant(VT.isInteger() ? 4 : 8,
1962 MVT::i32));
1963
1964 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1965 OverflowAreaPlusN);
1966
1967 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
1968 OverflowAreaPtr,
1969 MachinePointerInfo(),
1970 MVT::i32, false, false, 0);
1971
NAKAMURA Takumi8ad54e02012-08-30 15:52:23 +00001972 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001973 false, false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001974}
1975
Roman Divackyc3825df2013-07-25 21:36:47 +00001976SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
1977 const PPCSubtarget &Subtarget) const {
1978 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
1979
1980 // We have to copy the entire va_list struct:
1981 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
1982 return DAG.getMemcpy(Op.getOperand(0), Op,
1983 Op.getOperand(1), Op.getOperand(2),
1984 DAG.getConstant(12, MVT::i32), 8, false, true,
1985 MachinePointerInfo(), MachinePointerInfo());
1986}
1987
Duncan Sandsa0984362011-09-06 13:37:06 +00001988SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
1989 SelectionDAG &DAG) const {
1990 return Op.getOperand(0);
1991}
1992
1993SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
1994 SelectionDAG &DAG) const {
Bill Wendling95e1af22008-09-17 00:30:57 +00001995 SDValue Chain = Op.getOperand(0);
1996 SDValue Trmp = Op.getOperand(1); // trampoline
1997 SDValue FPtr = Op.getOperand(2); // nested function
1998 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickef9de2a2013-05-25 02:42:55 +00001999 SDLoc dl(Op);
Bill Wendling95e1af22008-09-17 00:30:57 +00002000
Owen Anderson53aa7a92009-08-10 22:56:29 +00002001 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00002002 bool isPPC64 = (PtrVT == MVT::i64);
Chris Lattner229907c2011-07-18 04:54:35 +00002003 Type *IntPtrTy =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00002004 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
Chandler Carruth7ec50852012-11-01 08:07:29 +00002005 *DAG.getContext());
Bill Wendling95e1af22008-09-17 00:30:57 +00002006
Scott Michelcf0da6c2009-02-17 22:15:04 +00002007 TargetLowering::ArgListTy Args;
Bill Wendling95e1af22008-09-17 00:30:57 +00002008 TargetLowering::ArgListEntry Entry;
2009
2010 Entry.Ty = IntPtrTy;
2011 Entry.Node = Trmp; Args.push_back(Entry);
2012
2013 // TrampSize == (isPPC64 ? 48 : 40);
2014 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson9f944592009-08-11 20:47:22 +00002015 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling95e1af22008-09-17 00:30:57 +00002016 Args.push_back(Entry);
2017
2018 Entry.Node = FPtr; Args.push_back(Entry);
2019 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002020
Bill Wendling95e1af22008-09-17 00:30:57 +00002021 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002022 TargetLowering::CallLoweringInfo CLI(DAG);
2023 CLI.setDebugLoc(dl).setChain(Chain)
2024 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002025 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
2026 std::move(Args), 0);
Bill Wendling95e1af22008-09-17 00:30:57 +00002027
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002028 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Duncan Sandsa0984362011-09-06 13:37:06 +00002029 return CallResult.second;
Bill Wendling95e1af22008-09-17 00:30:57 +00002030}
2031
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002032SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002033 const PPCSubtarget &Subtarget) const {
Dan Gohman31ae5862010-04-17 14:41:14 +00002034 MachineFunction &MF = DAG.getMachineFunction();
2035 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2036
Andrew Trickef9de2a2013-05-25 02:42:55 +00002037 SDLoc dl(Op);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002038
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002039 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002040 // vastart just stores the address of the VarArgsFrameIndex slot into the
2041 // memory location argument.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002042 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman31ae5862010-04-17 14:41:14 +00002043 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002044 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner676c61d2010-09-21 18:41:36 +00002045 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2046 MachinePointerInfo(SV),
David Greene87a5abe2010-02-15 16:56:53 +00002047 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002048 }
2049
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002050 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002051 // We suppose the given va_list is already allocated.
2052 //
2053 // typedef struct {
2054 // char gpr; /* index into the array of 8 GPRs
2055 // * stored in the register save area
2056 // * gpr=0 corresponds to r3,
2057 // * gpr=1 to r4, etc.
2058 // */
2059 // char fpr; /* index into the array of 8 FPRs
2060 // * stored in the register save area
2061 // * fpr=0 corresponds to f1,
2062 // * fpr=1 to f2, etc.
2063 // */
2064 // char *overflow_arg_area;
2065 // /* location on stack that holds
2066 // * the next overflow argument
2067 // */
2068 // char *reg_save_area;
2069 // /* where r3:r10 and f1:f8 (if saved)
2070 // * are stored
2071 // */
2072 // } va_list[1];
2073
2074
Dan Gohman31ae5862010-04-17 14:41:14 +00002075 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
2076 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002077
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002078
Owen Anderson53aa7a92009-08-10 22:56:29 +00002079 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002080
Dan Gohman31ae5862010-04-17 14:41:14 +00002081 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
2082 PtrVT);
2083 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
2084 PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002085
Duncan Sands13237ac2008-06-06 12:08:01 +00002086 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002087 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002088
Duncan Sands13237ac2008-06-06 12:08:01 +00002089 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002090 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002091
2092 uint64_t FPROffset = 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002093 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002094
Dan Gohman2d489b52008-02-06 22:27:42 +00002095 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002096
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002097 // Store first byte : number of int regs
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002098 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattner6963c1f2010-09-21 17:42:31 +00002099 Op.getOperand(1),
2100 MachinePointerInfo(SV),
2101 MVT::i8, false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002102 uint64_t nextOffset = FPROffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002103 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002104 ConstFPROffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002105
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002106 // Store second byte : number of float regs
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002107 SDValue secondStore =
Chris Lattner6963c1f2010-09-21 17:42:31 +00002108 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
2109 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene87a5abe2010-02-15 16:56:53 +00002110 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002111 nextOffset += StackOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002112 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002113
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002114 // Store second word : arguments given on stack
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002115 SDValue thirdStore =
Chris Lattner676c61d2010-09-21 18:41:36 +00002116 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
2117 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002118 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00002119 nextOffset += FrameOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00002120 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002121
2122 // Store third word : arguments given in registers
Chris Lattner676c61d2010-09-21 18:41:36 +00002123 return DAG.getStore(thirdStore, dl, FR, nextPtr,
2124 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00002125 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00002126
Chris Lattner4211ca92006-04-14 06:01:58 +00002127}
2128
Chris Lattner4f2e4e02007-03-06 00:59:59 +00002129#include "PPCGenCallingConv.inc"
2130
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002131// Function whose sole purpose is to kill compiler warnings
2132// stemming from unused functions included from PPCGenCallingConv.inc.
2133CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
Bill Schmidt8470b0f2013-08-30 22:18:55 +00002134 return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
Bill Schmidt8c3976e2013-08-26 20:11:46 +00002135}
2136
Bill Schmidt230b4512013-06-12 16:39:22 +00002137bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
2138 CCValAssign::LocInfo &LocInfo,
2139 ISD::ArgFlagsTy &ArgFlags,
2140 CCState &State) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002141 return true;
2142}
2143
Bill Schmidt230b4512013-06-12 16:39:22 +00002144bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
2145 MVT &LocVT,
2146 CCValAssign::LocInfo &LocInfo,
2147 ISD::ArgFlagsTy &ArgFlags,
2148 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002149 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002150 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2151 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2152 };
2153 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002154
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002155 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2156
2157 // Skip one register if the first unallocated register has an even register
2158 // number and there are still argument registers available which have not been
2159 // allocated yet. RegNum is actually an index into ArgRegs, which means we
2160 // need to skip a register if RegNum is odd.
2161 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
2162 State.AllocateReg(ArgRegs[RegNum]);
2163 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002164
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002165 // Always return false here, as this function only makes sure that the first
2166 // unallocated register has an odd register number and does not actually
2167 // allocate a register for the current argument.
2168 return false;
2169}
2170
Bill Schmidt230b4512013-06-12 16:39:22 +00002171bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
2172 MVT &LocVT,
2173 CCValAssign::LocInfo &LocInfo,
2174 ISD::ArgFlagsTy &ArgFlags,
2175 CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +00002176 static const MCPhysReg ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002177 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2178 PPC::F8
2179 };
2180
2181 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00002182
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002183 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2184
2185 // If there is only one Floating-point register left we need to put both f64
2186 // values of a split ppc_fp128 value on the stack.
2187 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
2188 State.AllocateReg(ArgRegs[RegNum]);
2189 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002190
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002191 // Always return false here, as this function only makes sure that the two f64
2192 // values a ppc_fp128 value is split into are both passed in registers or both
2193 // passed on the stack and does not actually allocate a register for the
2194 // current argument.
2195 return false;
2196}
2197
Chris Lattner43df5b32007-02-25 05:34:32 +00002198/// GetFPR - Get the set of FP registers that should be allocated for arguments,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002199/// on Darwin.
Craig Topper840beec2014-04-04 05:16:06 +00002200static const MCPhysReg *GetFPR() {
2201 static const MCPhysReg FPR[] = {
Chris Lattner43df5b32007-02-25 05:34:32 +00002202 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002203 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
Chris Lattner43df5b32007-02-25 05:34:32 +00002204 };
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002205
Chris Lattner43df5b32007-02-25 05:34:32 +00002206 return FPR;
2207}
2208
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002209/// CalculateStackSlotSize - Calculates the size reserved for this argument on
2210/// the stack.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002211static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002212 unsigned PtrByteSize) {
Hal Finkel940ab932014-02-28 00:27:01 +00002213 unsigned ArgSize = ArgVT.getStoreSize();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002214 if (Flags.isByVal())
2215 ArgSize = Flags.getByValSize();
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002216
2217 // Round up to multiples of the pointer size, except for array members,
2218 // which are always packed.
2219 if (!Flags.isInConsecutiveRegs())
2220 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002221
2222 return ArgSize;
2223}
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002224
2225/// CalculateStackSlotAlignment - Calculates the alignment of this argument
2226/// on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002227static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT,
2228 ISD::ArgFlagsTy Flags,
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002229 unsigned PtrByteSize) {
2230 unsigned Align = PtrByteSize;
2231
2232 // Altivec parameters are padded to a 16 byte boundary.
2233 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2234 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2235 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2236 Align = 16;
2237
2238 // ByVal parameters are aligned as requested.
2239 if (Flags.isByVal()) {
2240 unsigned BVAlign = Flags.getByValAlign();
2241 if (BVAlign > PtrByteSize) {
2242 if (BVAlign % PtrByteSize != 0)
2243 llvm_unreachable(
2244 "ByVal alignment is not a multiple of the pointer size");
2245
2246 Align = BVAlign;
2247 }
2248 }
2249
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002250 // Array members are always packed to their original alignment.
2251 if (Flags.isInConsecutiveRegs()) {
2252 // If the array member was split into multiple registers, the first
2253 // needs to be aligned to the size of the full type. (Except for
2254 // ppcf128, which is only aligned as its f64 components.)
2255 if (Flags.isSplit() && OrigVT != MVT::ppcf128)
2256 Align = OrigVT.getStoreSize();
2257 else
2258 Align = ArgVT.getStoreSize();
2259 }
2260
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002261 return Align;
2262}
2263
Ulrich Weigand8658f172014-07-20 23:43:15 +00002264/// CalculateStackSlotUsed - Return whether this argument will use its
2265/// stack slot (instead of being passed in registers). ArgOffset,
2266/// AvailableFPRs, and AvailableVRs must hold the current argument
2267/// position, and will be updated to account for this argument.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002268static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT,
2269 ISD::ArgFlagsTy Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00002270 unsigned PtrByteSize,
2271 unsigned LinkageSize,
2272 unsigned ParamAreaSize,
2273 unsigned &ArgOffset,
2274 unsigned &AvailableFPRs,
2275 unsigned &AvailableVRs) {
2276 bool UseMemory = false;
2277
2278 // Respect alignment of argument on the stack.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002279 unsigned Align =
2280 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigand8658f172014-07-20 23:43:15 +00002281 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2282 // If there's no space left in the argument save area, we must
2283 // use memory (this check also catches zero-sized arguments).
2284 if (ArgOffset >= LinkageSize + ParamAreaSize)
2285 UseMemory = true;
2286
2287 // Allocate argument on the stack.
2288 ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002289 if (Flags.isInConsecutiveRegsLast())
2290 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand8658f172014-07-20 23:43:15 +00002291 // If we overran the argument save area, we must use memory
2292 // (this check catches arguments passed partially in memory)
2293 if (ArgOffset > LinkageSize + ParamAreaSize)
2294 UseMemory = true;
2295
2296 // However, if the argument is actually passed in an FPR or a VR,
2297 // we don't use memory after all.
2298 if (!Flags.isByVal()) {
2299 if (ArgVT == MVT::f32 || ArgVT == MVT::f64)
2300 if (AvailableFPRs > 0) {
2301 --AvailableFPRs;
2302 return false;
2303 }
2304 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2305 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2306 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2307 if (AvailableVRs > 0) {
2308 --AvailableVRs;
2309 return false;
2310 }
2311 }
2312
2313 return UseMemory;
2314}
2315
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002316/// EnsureStackAlignment - Round stack frame size up from NumBytes to
2317/// ensure minimum alignment required for target.
2318static unsigned EnsureStackAlignment(const TargetMachine &Target,
2319 unsigned NumBytes) {
Eric Christopherd9134482014-08-04 21:25:23 +00002320 unsigned TargetAlign =
2321 Target.getSubtargetImpl()->getFrameLowering()->getStackAlignment();
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002322 unsigned AlignMask = TargetAlign - 1;
2323 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2324 return NumBytes;
2325}
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002326
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002327SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002328PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002329 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002330 const SmallVectorImpl<ISD::InputArg>
2331 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002332 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002333 SmallVectorImpl<SDValue> &InVals)
2334 const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002335 if (Subtarget.isSVR4ABI()) {
2336 if (Subtarget.isPPC64())
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002337 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
2338 dl, DAG, InVals);
2339 else
2340 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
2341 dl, DAG, InVals);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002342 } else {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002343 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
2344 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002345 }
2346}
2347
2348SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002349PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002350 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002351 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002352 const SmallVectorImpl<ISD::InputArg>
2353 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002354 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002355 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002356
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002357 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002358 // +-----------------------------------+
2359 // +--> | Back chain |
2360 // | +-----------------------------------+
2361 // | | Floating-point register save area |
2362 // | +-----------------------------------+
2363 // | | General register save area |
2364 // | +-----------------------------------+
2365 // | | CR save word |
2366 // | +-----------------------------------+
2367 // | | VRSAVE save word |
2368 // | +-----------------------------------+
2369 // | | Alignment padding |
2370 // | +-----------------------------------+
2371 // | | Vector register save area |
2372 // | +-----------------------------------+
2373 // | | Local variable space |
2374 // | +-----------------------------------+
2375 // | | Parameter list area |
2376 // | +-----------------------------------+
2377 // | | LR save word |
2378 // | +-----------------------------------+
2379 // SP--> +--- | Back chain |
2380 // +-----------------------------------+
2381 //
2382 // Specifications:
2383 // System V Application Binary Interface PowerPC Processor Supplement
2384 // AltiVec Technology Programming Interface Manual
Wesley Peck527da1b2010-11-23 03:31:01 +00002385
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002386 MachineFunction &MF = DAG.getMachineFunction();
2387 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002388 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002389
Owen Anderson53aa7a92009-08-10 22:56:29 +00002390 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002391 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002392 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2393 (CallConv == CallingConv::Fast));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002394 unsigned PtrByteSize = 4;
2395
2396 // Assign locations to all of the incoming arguments.
2397 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002398 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00002399 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002400
2401 // Reserve space for the linkage area on the stack.
Ulrich Weigand8658f172014-07-20 23:43:15 +00002402 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(false, false, false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002403 CCInfo.AllocateStack(LinkageSize, PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002404
Bill Schmidtef17c142013-02-06 17:33:58 +00002405 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peck527da1b2010-11-23 03:31:01 +00002406
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002407 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2408 CCValAssign &VA = ArgLocs[i];
Wesley Peck527da1b2010-11-23 03:31:01 +00002409
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002410 // Arguments stored in registers.
2411 if (VA.isRegLoc()) {
Craig Topper760b1342012-02-22 05:59:10 +00002412 const TargetRegisterClass *RC;
Owen Anderson53aa7a92009-08-10 22:56:29 +00002413 EVT ValVT = VA.getValVT();
Wesley Peck527da1b2010-11-23 03:31:01 +00002414
Owen Anderson9f944592009-08-11 20:47:22 +00002415 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002416 default:
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002417 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Hal Finkel940ab932014-02-28 00:27:01 +00002418 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00002419 case MVT::i32:
Craig Topperabadc662012-04-20 06:31:50 +00002420 RC = &PPC::GPRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002421 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002422 case MVT::f32:
Craig Topperabadc662012-04-20 06:31:50 +00002423 RC = &PPC::F4RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002424 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002425 case MVT::f64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002426 if (Subtarget.hasVSX())
Hal Finkel19be5062014-03-29 05:29:01 +00002427 RC = &PPC::VSFRCRegClass;
2428 else
2429 RC = &PPC::F8RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002430 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002431 case MVT::v16i8:
2432 case MVT::v8i16:
2433 case MVT::v4i32:
2434 case MVT::v4f32:
Hal Finkel7811c612014-03-28 19:58:11 +00002435 RC = &PPC::VRRCRegClass;
2436 break;
Hal Finkel27774d92014-03-13 07:58:58 +00002437 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00002438 case MVT::v2i64:
Hal Finkel7811c612014-03-28 19:58:11 +00002439 RC = &PPC::VSHRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002440 break;
2441 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002442
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002443 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00002444 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Hal Finkel940ab932014-02-28 00:27:01 +00002445 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg,
2446 ValVT == MVT::i1 ? MVT::i32 : ValVT);
2447
2448 if (ValVT == MVT::i1)
2449 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002450
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002451 InVals.push_back(ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002452 } else {
2453 // Argument stored in memory.
2454 assert(VA.isMemLoc());
2455
Hal Finkel940ab932014-02-28 00:27:01 +00002456 unsigned ArgSize = VA.getLocVT().getStoreSize();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002457 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Cheng0664a672010-07-03 00:40:23 +00002458 isImmutable);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002459
2460 // Create load nodes to retrieve arguments from the stack.
2461 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002462 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2463 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002464 false, false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002465 }
2466 }
2467
2468 // Assign locations to all of the incoming aggregate by value arguments.
2469 // Aggregates passed by value are stored in the local variable space of the
2470 // caller's stack frame, right above the parameter list area.
2471 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002472 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00002473 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002474
2475 // Reserve stack space for the allocations in CCInfo.
2476 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2477
Bill Schmidtef17c142013-02-06 17:33:58 +00002478 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002479
2480 // Area that is at least reserved in the caller of this function.
2481 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002482 MinReservedArea = std::max(MinReservedArea, LinkageSize);
Wesley Peck527da1b2010-11-23 03:31:01 +00002483
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002484 // Set the size that is at least reserved in caller of this function. Tail
2485 // call optimized function's reserved stack space needs to be aligned so that
2486 // taking the difference between two stack areas will result in an aligned
2487 // stack.
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002488 MinReservedArea = EnsureStackAlignment(MF.getTarget(), MinReservedArea);
2489 FuncInfo->setMinReservedArea(MinReservedArea);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002490
2491 SmallVector<SDValue, 8> MemOps;
Wesley Peck527da1b2010-11-23 03:31:01 +00002492
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002493 // If the function takes variable number of arguments, make a frame index for
2494 // the start of the first vararg value... for expansion of llvm.va_start.
2495 if (isVarArg) {
Craig Topper840beec2014-04-04 05:16:06 +00002496 static const MCPhysReg GPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002497 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2498 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2499 };
2500 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2501
Craig Topper840beec2014-04-04 05:16:06 +00002502 static const MCPhysReg FPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002503 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2504 PPC::F8
2505 };
2506 const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2507
Dan Gohman31ae5862010-04-17 14:41:14 +00002508 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2509 NumGPArgRegs));
2510 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2511 NumFPArgRegs));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002512
2513 // Make room for NumGPArgRegs and NumFPArgRegs.
2514 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Owen Anderson9f944592009-08-11 20:47:22 +00002515 NumFPArgRegs * EVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002516
Dan Gohman31ae5862010-04-17 14:41:14 +00002517 FuncInfo->setVarArgsStackOffset(
2518 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002519 CCInfo.getNextStackOffset(), true));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002520
Dan Gohman31ae5862010-04-17 14:41:14 +00002521 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2522 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002523
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002524 // The fixed integer arguments of a variadic function are stored to the
2525 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2526 // the result of va_next.
2527 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2528 // Get an existing live-in vreg, or add a new one.
2529 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2530 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002531 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002532
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002533 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002534 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2535 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002536 MemOps.push_back(Store);
2537 // Increment the address by four for the next argument to store
2538 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2539 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2540 }
2541
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002542 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2543 // is set.
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002544 // The double arguments are stored to the VarArgsFrameIndex
2545 // on the stack.
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002546 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2547 // Get an existing live-in vreg, or add a new one.
2548 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2549 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002550 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002551
Owen Anderson9f944592009-08-11 20:47:22 +00002552 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner676c61d2010-09-21 18:41:36 +00002553 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2554 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002555 MemOps.push_back(Store);
2556 // Increment the address by eight for the next argument to store
Owen Anderson9f944592009-08-11 20:47:22 +00002557 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002558 PtrVT);
2559 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2560 }
2561 }
2562
2563 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00002564 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002565
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002566 return Chain;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002567}
2568
Bill Schmidt57d6de52012-10-23 15:51:16 +00002569// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2570// value to MVT::i64 and then truncate to the correct register size.
2571SDValue
2572PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2573 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002574 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00002575 if (Flags.isSExt())
2576 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2577 DAG.getValueType(ObjectVT));
2578 else if (Flags.isZExt())
2579 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2580 DAG.getValueType(ObjectVT));
Matt Arsenault758659232013-05-18 00:21:46 +00002581
Hal Finkel940ab932014-02-28 00:27:01 +00002582 return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal);
Bill Schmidt57d6de52012-10-23 15:51:16 +00002583}
2584
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002585SDValue
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002586PPCTargetLowering::LowerFormalArguments_64SVR4(
2587 SDValue Chain,
2588 CallingConv::ID CallConv, bool isVarArg,
2589 const SmallVectorImpl<ISD::InputArg>
2590 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002591 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002592 SmallVectorImpl<SDValue> &InVals) const {
2593 // TODO: add description of PPC stack frame format, or at least some docs.
2594 //
Ulrich Weigand8658f172014-07-20 23:43:15 +00002595 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00002596 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002597 MachineFunction &MF = DAG.getMachineFunction();
2598 MachineFrameInfo *MFI = MF.getFrameInfo();
2599 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2600
2601 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2602 // Potential tail calls could cause overwriting of argument stack slots.
2603 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2604 (CallConv == CallingConv::Fast));
2605 unsigned PtrByteSize = 8;
2606
Ulrich Weigand8658f172014-07-20 23:43:15 +00002607 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false,
2608 isELFv2ABI);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002609
Craig Topper840beec2014-04-04 05:16:06 +00002610 static const MCPhysReg GPR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002611 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2612 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2613 };
2614
Craig Topper840beec2014-04-04 05:16:06 +00002615 static const MCPhysReg *FPR = GetFPR();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002616
Craig Topper840beec2014-04-04 05:16:06 +00002617 static const MCPhysReg VR[] = {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002618 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2619 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2620 };
Craig Topper840beec2014-04-04 05:16:06 +00002621 static const MCPhysReg VSRH[] = {
Hal Finkel7811c612014-03-28 19:58:11 +00002622 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
2623 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
2624 };
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002625
2626 const unsigned Num_GPR_Regs = array_lengthof(GPR);
2627 const unsigned Num_FPR_Regs = 13;
2628 const unsigned Num_VR_Regs = array_lengthof(VR);
2629
Ulrich Weigand8658f172014-07-20 23:43:15 +00002630 // Do a first pass over the arguments to determine whether the ABI
2631 // guarantees that our caller has allocated the parameter save area
2632 // on its stack frame. In the ELFv1 ABI, this is always the case;
2633 // in the ELFv2 ABI, it is true if this is a vararg function or if
2634 // any parameter is located in a stack slot.
2635
2636 bool HasParameterArea = !isELFv2ABI || isVarArg;
2637 unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize;
2638 unsigned NumBytes = LinkageSize;
2639 unsigned AvailableFPRs = Num_FPR_Regs;
2640 unsigned AvailableVRs = Num_VR_Regs;
2641 for (unsigned i = 0, e = Ins.size(); i != e; ++i)
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002642 if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags,
Ulrich Weigand8658f172014-07-20 23:43:15 +00002643 PtrByteSize, LinkageSize, ParamAreaSize,
2644 NumBytes, AvailableFPRs, AvailableVRs))
2645 HasParameterArea = true;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002646
2647 // Add DAG nodes to load the arguments or copy them out of registers. On
2648 // entry to a function on PPC, the arguments start after the linkage area,
2649 // although the first ones are often in registers.
2650
Ulrich Weigand8658f172014-07-20 23:43:15 +00002651 unsigned ArgOffset = LinkageSize;
2652 unsigned GPR_idx, FPR_idx = 0, VR_idx = 0;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002653 SmallVector<SDValue, 8> MemOps;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002654 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt6631e942013-02-20 17:31:41 +00002655 unsigned CurArgIdx = 0;
2656 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002657 SDValue ArgVal;
2658 bool needsLoad = false;
2659 EVT ObjectVT = Ins[ArgNo].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002660 EVT OrigVT = Ins[ArgNo].ArgVT;
Hal Finkel940ab932014-02-28 00:27:01 +00002661 unsigned ObjSize = ObjectVT.getStoreSize();
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002662 unsigned ArgSize = ObjSize;
2663 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt6631e942013-02-20 17:31:41 +00002664 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2665 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002666
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002667 /* Respect alignment of argument on the stack. */
2668 unsigned Align =
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002669 CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002670 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002671 unsigned CurArgOffset = ArgOffset;
2672
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002673 /* Compute GPR index associated with argument offset. */
2674 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2675 GPR_idx = std::min(GPR_idx, Num_GPR_Regs);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002676
2677 // FIXME the codegen can be much improved in some cases.
2678 // We do not have to keep everything in memory.
2679 if (Flags.isByVal()) {
2680 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2681 ObjSize = Flags.getByValSize();
2682 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt9953cf22012-10-31 01:15:05 +00002683 // Empty aggregate parameters do not take up registers. Examples:
2684 // struct { } a;
2685 // union { } b;
2686 // int c[0];
2687 // etc. However, we have to provide a place-holder in InVals, so
2688 // pretend we have an 8-byte item at the current address for that
2689 // purpose.
2690 if (!ObjSize) {
2691 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2692 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2693 InVals.push_back(FIN);
2694 continue;
2695 }
Hal Finkel262a2242013-09-12 23:20:06 +00002696
Ulrich Weigand24195972014-07-20 22:36:52 +00002697 // Create a stack object covering all stack doublewords occupied
Ulrich Weigand8658f172014-07-20 23:43:15 +00002698 // by the argument. If the argument is (fully or partially) on
2699 // the stack, or if the argument is fully in registers but the
2700 // caller has allocated the parameter save anyway, we can refer
2701 // directly to the caller's stack frame. Otherwise, create a
2702 // local copy in our own frame.
2703 int FI;
2704 if (HasParameterArea ||
2705 ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize)
Ulrich Weigand08760682014-08-01 14:35:58 +00002706 FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false);
Ulrich Weigand8658f172014-07-20 23:43:15 +00002707 else
2708 FI = MFI->CreateStackObject(ArgSize, Align, false);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002709 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002710
Ulrich Weigand24195972014-07-20 22:36:52 +00002711 // Handle aggregates smaller than 8 bytes.
2712 if (ObjSize < PtrByteSize) {
2713 // The value of the object is its address, which differs from the
2714 // address of the enclosing doubleword on big-endian systems.
2715 SDValue Arg = FIN;
2716 if (!isLittleEndian) {
2717 SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, PtrVT);
2718 Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff);
2719 }
2720 InVals.push_back(Arg);
2721
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002722 if (GPR_idx != Num_GPR_Regs) {
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002723 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002724 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002725 SDValue Store;
2726
2727 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2728 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2729 (ObjSize == 2 ? MVT::i16 : MVT::i32));
Ulrich Weigand24195972014-07-20 22:36:52 +00002730 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002731 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002732 ObjType, false, false, 0);
2733 } else {
2734 // For sizes that don't fit a truncating store (3, 5, 6, 7),
2735 // store the whole register as-is to the parameter save area
Ulrich Weigand24195972014-07-20 22:36:52 +00002736 // slot.
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002737 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002738 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002739 false, false, 0);
2740 }
2741
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002742 MemOps.push_back(Store);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002743 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002744 // Whether we copied from a register or not, advance the offset
2745 // into the parameter save area by a full doubleword.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002746 ArgOffset += PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002747 continue;
2748 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002749
Ulrich Weigand24195972014-07-20 22:36:52 +00002750 // The value of the object is its address, which is the address of
2751 // its first stack doubleword.
2752 InVals.push_back(FIN);
2753
2754 // Store whatever pieces of the object are in registers to memory.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002755 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
Ulrich Weigand24195972014-07-20 22:36:52 +00002756 if (GPR_idx == Num_GPR_Regs)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002757 break;
Ulrich Weigand24195972014-07-20 22:36:52 +00002758
2759 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2760 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2761 SDValue Addr = FIN;
2762 if (j) {
2763 SDValue Off = DAG.getConstant(j, PtrVT);
2764 Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002765 }
Ulrich Weigand24195972014-07-20 22:36:52 +00002766 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, Addr,
2767 MachinePointerInfo(FuncArg, j),
2768 false, false, 0);
2769 MemOps.push_back(Store);
2770 ++GPR_idx;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002771 }
Ulrich Weigand24195972014-07-20 22:36:52 +00002772 ArgOffset += ArgSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002773 continue;
2774 }
2775
2776 switch (ObjectVT.getSimpleVT().SimpleTy) {
2777 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel940ab932014-02-28 00:27:01 +00002778 case MVT::i1:
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002779 case MVT::i32:
2780 case MVT::i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002781 // These can be scalar arguments or elements of an integer array type
2782 // passed directly. Clang may use those instead of "byval" aggregate
2783 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002784 if (GPR_idx != Num_GPR_Regs) {
2785 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2786 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2787
Hal Finkel940ab932014-02-28 00:27:01 +00002788 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002789 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2790 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002791 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002792 } else {
2793 needsLoad = true;
2794 ArgSize = PtrByteSize;
2795 }
2796 ArgOffset += 8;
2797 break;
2798
2799 case MVT::f32:
2800 case MVT::f64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002801 // These can be scalar arguments or elements of a float array type
2802 // passed directly. The latter are used to implement ELFv2 homogenous
2803 // float aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002804 if (FPR_idx != Num_FPR_Regs) {
2805 unsigned VReg;
2806
2807 if (ObjectVT == MVT::f32)
2808 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2809 else
Eric Christopherb1aaebe2014-06-12 22:38:18 +00002810 VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX() ?
Hal Finkel19be5062014-03-29 05:29:01 +00002811 &PPC::VSFRCRegClass :
2812 &PPC::F8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002813
2814 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2815 ++FPR_idx;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002816 } else if (GPR_idx != Num_GPR_Regs) {
2817 // This can only ever happen in the presence of f32 array types,
2818 // since otherwise we never run out of FPRs before running out
2819 // of GPRs.
2820 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2821 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2822
2823 if (ObjectVT == MVT::f32) {
2824 if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0))
2825 ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal,
2826 DAG.getConstant(32, MVT::i32));
2827 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2828 }
2829
2830 ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002831 } else {
2832 needsLoad = true;
2833 }
2834
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002835 // When passing an array of floats, the array occupies consecutive
2836 // space in the argument area; only round up to the next doubleword
2837 // at the end of the array. Otherwise, each float takes 8 bytes.
2838 ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize;
2839 ArgOffset += ArgSize;
2840 if (Flags.isInConsecutiveRegsLast())
2841 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002842 break;
2843 case MVT::v4f32:
2844 case MVT::v4i32:
2845 case MVT::v8i16:
2846 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00002847 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00002848 case MVT::v2i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00002849 // These can be scalar arguments or elements of a vector array type
2850 // passed directly. The latter are used to implement ELFv2 homogenous
2851 // vector aggregates.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002852 if (VR_idx != Num_VR_Regs) {
Hal Finkel7811c612014-03-28 19:58:11 +00002853 unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ?
2854 MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) :
2855 MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002856 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002857 ++VR_idx;
2858 } else {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002859 needsLoad = true;
2860 }
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00002861 ArgOffset += 16;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002862 break;
2863 }
2864
2865 // We need to load the argument to a virtual register if we determined
2866 // above that we ran out of physical registers of the appropriate type.
2867 if (needsLoad) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00002868 if (ObjSize < ArgSize && !isLittleEndian)
2869 CurArgOffset += ArgSize - ObjSize;
2870 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002871 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2872 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2873 false, false, false, 0);
2874 }
2875
2876 InVals.push_back(ArgVal);
2877 }
2878
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002879 // Area that is at least reserved in the caller of this function.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002880 unsigned MinReservedArea;
Ulrich Weigand8658f172014-07-20 23:43:15 +00002881 if (HasParameterArea)
2882 MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize);
2883 else
2884 MinReservedArea = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002885
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002886 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00002887 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002888 // taking the difference between two stack areas will result in an aligned
2889 // stack.
Ulrich Weigand2bffb952014-06-23 13:08:27 +00002890 MinReservedArea = EnsureStackAlignment(MF.getTarget(), MinReservedArea);
2891 FuncInfo->setMinReservedArea(MinReservedArea);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002892
2893 // If the function takes variable number of arguments, make a frame index for
2894 // the start of the first vararg value... for expansion of llvm.va_start.
2895 if (isVarArg) {
2896 int Depth = ArgOffset;
2897
2898 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt57d6de52012-10-23 15:51:16 +00002899 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002900 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2901
2902 // If this function is vararg, store any remaining integer argument regs
2903 // to their spots on the stack so that they may be loaded by deferencing the
2904 // result of va_next.
Ulrich Weigandec2bf932014-07-07 19:26:41 +00002905 for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2906 GPR_idx < Num_GPR_Regs; ++GPR_idx) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002907 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2908 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2909 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2910 MachinePointerInfo(), false, false, 0);
2911 MemOps.push_back(Store);
2912 // Increment the address by four for the next argument to store
Bill Schmidt57d6de52012-10-23 15:51:16 +00002913 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002914 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2915 }
2916 }
2917
2918 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00002919 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002920
2921 return Chain;
2922}
2923
2924SDValue
2925PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002926 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002927 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002928 const SmallVectorImpl<ISD::InputArg>
2929 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002930 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002931 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002932 // TODO: add description of PPC stack frame format, or at least some docs.
2933 //
2934 MachineFunction &MF = DAG.getMachineFunction();
2935 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002936 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002937
Owen Anderson53aa7a92009-08-10 22:56:29 +00002938 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00002939 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002940 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002941 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2942 (CallConv == CallingConv::Fast));
Jim Laskeyf4e2e002006-11-28 14:53:52 +00002943 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey48850c12006-11-16 22:43:37 +00002944
Ulrich Weigand8658f172014-07-20 23:43:15 +00002945 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true,
2946 false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00002947 unsigned ArgOffset = LinkageSize;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002948 // Area that is at least reserved in caller of this function.
2949 unsigned MinReservedArea = ArgOffset;
2950
Craig Topper840beec2014-04-04 05:16:06 +00002951 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattner4302e8f2006-05-16 18:18:50 +00002952 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2953 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2954 };
Craig Topper840beec2014-04-04 05:16:06 +00002955 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00002956 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2957 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2958 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00002959
Craig Topper840beec2014-04-04 05:16:06 +00002960 static const MCPhysReg *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002961
Craig Topper840beec2014-04-04 05:16:06 +00002962 static const MCPhysReg VR[] = {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002963 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2964 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2965 };
Chris Lattnerec78cad2006-06-26 22:48:35 +00002966
Owen Andersone2f23a32007-09-07 04:06:50 +00002967 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002968 const unsigned Num_FPR_Regs = 13;
Owen Andersone2f23a32007-09-07 04:06:50 +00002969 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey48850c12006-11-16 22:43:37 +00002970
2971 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002972
Craig Topper840beec2014-04-04 05:16:06 +00002973 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002974
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002975 // In 32-bit non-varargs functions, the stack space for vectors is after the
2976 // stack space for non-vectors. We do not use this space unless we have
2977 // too many vectors to fit in registers, something that only occurs in
Scott Michelcf0da6c2009-02-17 22:15:04 +00002978 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002979 // that out...for the pathological case, compute VecArgOffset as the
2980 // start of the vector parameter area. Computing VecArgOffset is the
2981 // entire point of the following loop.
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002982 unsigned VecArgOffset = ArgOffset;
2983 if (!isVarArg && !isPPC64) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002984 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002985 ++ArgNo) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002986 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002987 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002988
Duncan Sandsd97eea32008-03-21 09:14:45 +00002989 if (Flags.isByVal()) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002990 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer084b9f42012-01-20 14:42:32 +00002991 unsigned ObjSize = Flags.getByValSize();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002992 unsigned ArgSize =
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002993 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2994 VecArgOffset += ArgSize;
2995 continue;
2996 }
2997
Owen Anderson9f944592009-08-11 20:47:22 +00002998 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002999 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003000 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003001 case MVT::i32:
3002 case MVT::f32:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003003 VecArgOffset += 4;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003004 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003005 case MVT::i64: // PPC64
3006 case MVT::f64:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003007 // FIXME: We are guaranteed to be !isPPC64 at this point.
3008 // Does MVT::i64 apply?
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003009 VecArgOffset += 8;
3010 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003011 case MVT::v4f32:
3012 case MVT::v4i32:
3013 case MVT::v8i16:
3014 case MVT::v16i8:
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003015 // Nothing to do, we're only looking at Nonvector args here.
3016 break;
3017 }
3018 }
3019 }
3020 // We've found where the vector parameter area in memory is. Skip the
3021 // first 12 parameters; these don't use that memory.
3022 VecArgOffset = ((VecArgOffset+15)/16)*16;
3023 VecArgOffset += 12*16;
3024
Chris Lattner4302e8f2006-05-16 18:18:50 +00003025 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey48850c12006-11-16 22:43:37 +00003026 // entry to a function on PPC, the arguments start after the linkage area,
3027 // although the first ones are often in registers.
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00003028
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003029 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003030 unsigned nAltivecParamsAtEnd = 0;
Roman Divackyca103892012-09-24 20:47:19 +00003031 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt38b6cb52013-05-08 17:22:33 +00003032 unsigned CurArgIdx = 0;
3033 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003034 SDValue ArgVal;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003035 bool needsLoad = false;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003036 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands13237ac2008-06-06 12:08:01 +00003037 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey152671f2006-11-29 13:37:09 +00003038 unsigned ArgSize = ObjSize;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003039 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt38b6cb52013-05-08 17:22:33 +00003040 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
3041 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003042
Chris Lattner318f0d22006-05-16 18:51:52 +00003043 unsigned CurArgOffset = ArgOffset;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003044
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003045 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00003046 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
3047 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003048 if (isVarArg || isPPC64) {
3049 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003050 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003051 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003052 PtrByteSize);
3053 } else nAltivecParamsAtEnd++;
3054 } else
3055 // Calculate min reserved area.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003056 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00003057 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003058 PtrByteSize);
3059
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003060 // FIXME the codegen can be much improved in some cases.
3061 // We do not have to keep everything in memory.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003062 if (Flags.isByVal()) {
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003063 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sandsd97eea32008-03-21 09:14:45 +00003064 ObjSize = Flags.getByValSize();
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003065 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003066 // Objects of size 1 and 2 are right justified, everything else is
3067 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen21a8f142008-03-08 01:41:42 +00003068 if (ObjSize==1 || ObjSize==2) {
3069 CurArgOffset = CurArgOffset + (4 - ObjSize);
3070 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003071 // The value of the object is its address.
Evan Cheng0664a672010-07-03 00:40:23 +00003072 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003073 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003074 InVals.push_back(FIN);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003075 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen21a8f142008-03-08 01:41:42 +00003076 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003077 unsigned VReg;
3078 if (isPPC64)
3079 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3080 else
3081 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003082 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt57d6de52012-10-23 15:51:16 +00003083 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003084 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00003085 MachinePointerInfo(FuncArg),
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003086 ObjType, false, false, 0);
Dale Johannesen21a8f142008-03-08 01:41:42 +00003087 MemOps.push_back(Store);
3088 ++GPR_idx;
Dale Johannesen21a8f142008-03-08 01:41:42 +00003089 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003090
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003091 ArgOffset += PtrByteSize;
Wesley Peck527da1b2010-11-23 03:31:01 +00003092
Dale Johannesen21a8f142008-03-08 01:41:42 +00003093 continue;
3094 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003095 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3096 // Store whatever pieces of the object are in registers
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003097 // to memory. ArgOffset will be the address of the beginning
3098 // of the object.
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003099 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00003100 unsigned VReg;
3101 if (isPPC64)
3102 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3103 else
3104 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Cheng0664a672010-07-03 00:40:23 +00003105 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003106 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003107 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00003108 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00003109 MachinePointerInfo(FuncArg, j),
David Greene87a5abe2010-02-15 16:56:53 +00003110 false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003111 MemOps.push_back(Store);
3112 ++GPR_idx;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003113 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003114 } else {
3115 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
3116 break;
3117 }
3118 }
3119 continue;
3120 }
3121
Owen Anderson9f944592009-08-11 20:47:22 +00003122 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003123 default: llvm_unreachable("Unhandled argument type!");
Hal Finkel5cae2162014-02-28 01:17:25 +00003124 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00003125 case MVT::i32:
Bill Wendling968f32c2008-03-07 20:49:02 +00003126 if (!isPPC64) {
Bill Wendling968f32c2008-03-07 20:49:02 +00003127 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003128 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003129 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Hal Finkel7f908e82014-03-06 00:45:19 +00003130
3131 if (ObjectVT == MVT::i1)
3132 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal);
3133
Bill Wendling968f32c2008-03-07 20:49:02 +00003134 ++GPR_idx;
3135 } else {
3136 needsLoad = true;
3137 ArgSize = PtrByteSize;
3138 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003139 // All int arguments reserve stack space in the Darwin ABI.
3140 ArgOffset += PtrByteSize;
Bill Wendling968f32c2008-03-07 20:49:02 +00003141 break;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003142 }
Bill Wendling968f32c2008-03-07 20:49:02 +00003143 // FALLTHROUGH
Owen Anderson9f944592009-08-11 20:47:22 +00003144 case MVT::i64: // PPC64
Chris Lattnerec78cad2006-06-26 22:48:35 +00003145 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003146 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00003147 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling968f32c2008-03-07 20:49:02 +00003148
Hal Finkel940ab932014-02-28 00:27:01 +00003149 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
Bill Wendling968f32c2008-03-07 20:49:02 +00003150 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson9f944592009-08-11 20:47:22 +00003151 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00003152 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling968f32c2008-03-07 20:49:02 +00003153
Chris Lattnerec78cad2006-06-26 22:48:35 +00003154 ++GPR_idx;
3155 } else {
3156 needsLoad = true;
Evan Cheng0f0aee22008-07-24 08:17:07 +00003157 ArgSize = PtrByteSize;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003158 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003159 // All int arguments reserve stack space in the Darwin ABI.
3160 ArgOffset += 8;
Chris Lattnerec78cad2006-06-26 22:48:35 +00003161 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003162
Owen Anderson9f944592009-08-11 20:47:22 +00003163 case MVT::f32:
3164 case MVT::f64:
Chris Lattner318f0d22006-05-16 18:51:52 +00003165 // Every 4 bytes of argument space consumes one of the GPRs available for
3166 // argument passing.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003167 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003168 ++GPR_idx;
Chris Lattner2cca3852006-11-18 01:57:19 +00003169 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003170 ++GPR_idx;
Chris Lattner318f0d22006-05-16 18:51:52 +00003171 }
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003172 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner4302e8f2006-05-16 18:18:50 +00003173 unsigned VReg;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003174
Owen Anderson9f944592009-08-11 20:47:22 +00003175 if (ObjectVT == MVT::f32)
Devang Patelf3292b22011-02-21 23:21:26 +00003176 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003177 else
Devang Patelf3292b22011-02-21 23:21:26 +00003178 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00003179
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003180 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003181 ++FPR_idx;
3182 } else {
3183 needsLoad = true;
3184 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003185
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003186 // All FP arguments reserve stack space in the Darwin ABI.
3187 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003188 break;
Owen Anderson9f944592009-08-11 20:47:22 +00003189 case MVT::v4f32:
3190 case MVT::v4i32:
3191 case MVT::v8i16:
3192 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00003193 // Note that vector arguments in registers don't reserve stack space,
3194 // except in varargs functions.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003195 if (VR_idx != Num_VR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00003196 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003197 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesenb28456e2008-03-12 00:22:17 +00003198 if (isVarArg) {
3199 while ((ArgOffset % 16) != 0) {
3200 ArgOffset += PtrByteSize;
3201 if (GPR_idx != Num_GPR_Regs)
3202 GPR_idx++;
3203 }
3204 ArgOffset += 16;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003205 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesenb28456e2008-03-12 00:22:17 +00003206 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003207 ++VR_idx;
3208 } else {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00003209 if (!isVarArg && !isPPC64) {
3210 // Vectors go after all the nonvectors.
3211 CurArgOffset = VecArgOffset;
3212 VecArgOffset += 16;
3213 } else {
3214 // Vectors are aligned.
3215 ArgOffset = ((ArgOffset+15)/16)*16;
3216 CurArgOffset = ArgOffset;
3217 ArgOffset += 16;
Dale Johannesen0d982562008-03-12 00:49:20 +00003218 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003219 needsLoad = true;
3220 }
3221 break;
3222 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003223
Chris Lattner4302e8f2006-05-16 18:18:50 +00003224 // We need to load the argument to a virtual register if we determined above
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003225 // that we ran out of physical registers of the appropriate type.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003226 if (needsLoad) {
Chris Lattnerf6518cf2008-02-13 07:35:30 +00003227 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003228 CurArgOffset + (ArgSize - ObjSize),
Evan Cheng0664a672010-07-03 00:40:23 +00003229 isImmutable);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003230 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00003231 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003232 false, false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003233 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003234
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003235 InVals.push_back(ArgVal);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003236 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003237
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003238 // Allow for Altivec parameters at the end, if needed.
3239 if (nAltivecParamsAtEnd) {
3240 MinReservedArea = ((MinReservedArea+15)/16)*16;
3241 MinReservedArea += 16*nAltivecParamsAtEnd;
3242 }
3243
3244 // Area that is at least reserved in the caller of this function.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00003245 MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003246
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003247 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00003248 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003249 // taking the difference between two stack areas will result in an aligned
3250 // stack.
Ulrich Weigand2bffb952014-06-23 13:08:27 +00003251 MinReservedArea = EnsureStackAlignment(MF.getTarget(), MinReservedArea);
3252 FuncInfo->setMinReservedArea(MinReservedArea);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003253
Chris Lattner4302e8f2006-05-16 18:18:50 +00003254 // If the function takes variable number of arguments, make a frame index for
3255 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner4302e8f2006-05-16 18:18:50 +00003256 if (isVarArg) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003257 int Depth = ArgOffset;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003258
Dan Gohman31ae5862010-04-17 14:41:14 +00003259 FuncInfo->setVarArgsFrameIndex(
3260 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00003261 Depth, true));
Dan Gohman31ae5862010-04-17 14:41:14 +00003262 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00003263
Chris Lattner4302e8f2006-05-16 18:18:50 +00003264 // If this function is vararg, store any remaining integer argument regs
3265 // to their spots on the stack so that they may be loaded by deferencing the
3266 // result of va_next.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00003267 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattner2cca3852006-11-18 01:57:19 +00003268 unsigned VReg;
Wesley Peck527da1b2010-11-23 03:31:01 +00003269
Chris Lattner2cca3852006-11-18 01:57:19 +00003270 if (isPPC64)
Devang Patelf3292b22011-02-21 23:21:26 +00003271 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003272 else
Devang Patelf3292b22011-02-21 23:21:26 +00003273 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00003274
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003275 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00003276 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3277 MachinePointerInfo(), false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003278 MemOps.push_back(Store);
3279 // Increment the address by four for the next argument to store
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003280 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen679073b2009-02-04 02:34:38 +00003281 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner4302e8f2006-05-16 18:18:50 +00003282 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00003283 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00003284
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003285 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003286 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00003287
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003288 return Chain;
Chris Lattner4302e8f2006-05-16 18:18:50 +00003289}
3290
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003291/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003292/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesen86dcae12009-11-24 01:09:07 +00003293static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003294 unsigned ParamSize) {
3295
Dale Johannesen86dcae12009-11-24 01:09:07 +00003296 if (!isTailCall) return 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003297
3298 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
3299 unsigned CallerMinReservedArea = FI->getMinReservedArea();
3300 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
3301 // Remember only if the new adjustement is bigger.
3302 if (SPDiff < FI->getTailCallSPDelta())
3303 FI->setTailCallSPDelta(SPDiff);
3304
3305 return SPDiff;
3306}
3307
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003308/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3309/// for tail call optimization. Targets which want to do tail call
3310/// optimization should implement this function.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003311bool
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003312PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003313 CallingConv::ID CalleeCC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003314 bool isVarArg,
3315 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003316 SelectionDAG& DAG) const {
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003317 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng25217ff2010-01-29 23:05:56 +00003318 return false;
3319
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003320 // Variable argument functions are not supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003321 if (isVarArg)
Dan Gohmaneffb8942008-09-12 16:56:44 +00003322 return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003323
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003324 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel68c5f472009-09-02 08:44:58 +00003325 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003326 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
3327 // Functions containing by val parameters are not supported.
3328 for (unsigned i = 0; i != Ins.size(); i++) {
3329 ISD::ArgFlagsTy Flags = Ins[i].Flags;
3330 if (Flags.isByVal()) return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003331 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003332
Alp Tokerf907b892013-12-05 05:44:44 +00003333 // Non-PIC/GOT tail calls are supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003334 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
3335 return true;
3336
3337 // At the moment we can only do local tail calls (in same module, hidden
3338 // or protected) if we are generating PIC.
3339 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3340 return G->getGlobal()->hasHiddenVisibility()
3341 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003342 }
3343
3344 return false;
3345}
3346
Chris Lattnereb755fc2006-05-17 19:00:46 +00003347/// isCallCompatibleAddress - Return the immediate to use if the specified
3348/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003349static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnereb755fc2006-05-17 19:00:46 +00003350 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
Craig Topper062a2ba2014-04-25 05:30:21 +00003351 if (!C) return nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00003352
Dan Gohmaneffb8942008-09-12 16:56:44 +00003353 int Addr = C->getZExtValue();
Chris Lattnereb755fc2006-05-17 19:00:46 +00003354 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith228e6d42012-08-24 23:29:28 +00003355 SignExtend32<26>(Addr) != Addr)
Craig Topper062a2ba2014-04-25 05:30:21 +00003356 return nullptr; // Top 6 bits have to be sext of immediate.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003357
Dan Gohmaneffb8942008-09-12 16:56:44 +00003358 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greiff304a7a2008-08-28 21:40:38 +00003359 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnereb755fc2006-05-17 19:00:46 +00003360}
3361
Dan Gohmand78c4002008-05-13 00:00:25 +00003362namespace {
3363
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003364struct TailCallArgumentInfo {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003365 SDValue Arg;
3366 SDValue FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003367 int FrameIdx;
3368
3369 TailCallArgumentInfo() : FrameIdx(0) {}
3370};
3371
Dan Gohmand78c4002008-05-13 00:00:25 +00003372}
3373
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003374/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
3375static void
3376StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00003377 SDValue Chain,
Craig Topperb94011f2013-07-14 04:42:23 +00003378 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
3379 SmallVectorImpl<SDValue> &MemOpChains,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003380 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003381 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003382 SDValue Arg = TailCallArgs[i].Arg;
3383 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003384 int FI = TailCallArgs[i].FrameIdx;
3385 // Store relative to framepointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00003386 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Chris Lattner7727d052010-09-21 06:44:06 +00003387 MachinePointerInfo::getFixedStack(FI),
3388 false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003389 }
3390}
3391
3392/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
3393/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003394static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003395 MachineFunction &MF,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003396 SDValue Chain,
3397 SDValue OldRetAddr,
3398 SDValue OldFP,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003399 int SPDiff,
3400 bool isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003401 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003402 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003403 if (SPDiff) {
3404 // Calculate the new stack slot for the return address.
3405 int SlotSize = isPPC64 ? 8 : 4;
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003406 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003407 isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003408 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Cheng0664a672010-07-03 00:40:23 +00003409 NewRetAddrLoc, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003410 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003411 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen021052a2009-02-04 20:06:27 +00003412 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003413 MachinePointerInfo::getFixedStack(NewRetAddr),
David Greene87a5abe2010-02-15 16:56:53 +00003414 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003415
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003416 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3417 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003418 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003419 int NewFPLoc =
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003420 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
David Greene1fbe0542009-11-12 20:49:22 +00003421 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Cheng0664a672010-07-03 00:40:23 +00003422 true);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003423 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3424 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003425 MachinePointerInfo::getFixedStack(NewFPIdx),
David Greene87a5abe2010-02-15 16:56:53 +00003426 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003427 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003428 }
3429 return Chain;
3430}
3431
3432/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3433/// the position of the argument.
3434static void
3435CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003436 SDValue Arg, int SPDiff, unsigned ArgOffset,
Craig Topperb94011f2013-07-14 04:42:23 +00003437 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003438 int Offset = ArgOffset + SPDiff;
Duncan Sands13237ac2008-06-06 12:08:01 +00003439 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Cheng0664a672010-07-03 00:40:23 +00003440 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003441 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003442 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003443 TailCallArgumentInfo Info;
3444 Info.Arg = Arg;
3445 Info.FrameIdxOp = FIN;
3446 Info.FrameIdx = FI;
3447 TailCallArguments.push_back(Info);
3448}
3449
3450/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3451/// stack slot. Returns the chain as result and the loaded frame pointers in
3452/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003453SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen021052a2009-02-04 20:06:27 +00003454 int SPDiff,
3455 SDValue Chain,
3456 SDValue &LROpOut,
3457 SDValue &FPOpOut,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003458 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003459 SDLoc dl) const {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003460 if (SPDiff) {
3461 // Load the LR and FP stack slot for later adjusting.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003462 EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003463 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003464 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003465 false, false, false, 0);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003466 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peck527da1b2010-11-23 03:31:01 +00003467
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003468 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3469 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003470 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003471 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003472 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003473 false, false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003474 Chain = SDValue(FPOpOut.getNode(), 1);
3475 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003476 }
3477 return Chain;
3478}
3479
Dale Johannesen85d41a12008-03-04 23:17:14 +00003480/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelcf0da6c2009-02-17 22:15:04 +00003481/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen85d41a12008-03-04 23:17:14 +00003482/// specified by the specific parameter attribute. The copy will be passed as
3483/// a byval function parameter.
3484/// Sometimes what we are copying is the end of a larger object, the part that
3485/// does not fit in registers.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003486static SDValue
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003487CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sandsd97eea32008-03-21 09:14:45 +00003488 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003489 SDLoc dl) {
Owen Anderson9f944592009-08-11 20:47:22 +00003490 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen85263882009-02-04 01:17:06 +00003491 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Nick Lewyckyaad475b2014-04-15 07:22:52 +00003492 false, false, MachinePointerInfo(),
3493 MachinePointerInfo());
Dale Johannesen85d41a12008-03-04 23:17:14 +00003494}
Chris Lattner43df5b32007-02-25 05:34:32 +00003495
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003496/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3497/// tail calls.
3498static void
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003499LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3500 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003501 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003502 bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3503 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003504 SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003505 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003506 if (!isTailCall) {
3507 if (isVector) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003508 SDValue StackPtr;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003509 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00003510 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003511 else
Owen Anderson9f944592009-08-11 20:47:22 +00003512 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00003513 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003514 DAG.getConstant(ArgOffset, PtrVT));
3515 }
Chris Lattner676c61d2010-09-21 18:41:36 +00003516 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3517 MachinePointerInfo(), false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003518 // Calculate and remember argument location.
3519 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3520 TailCallArguments);
3521}
3522
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003523static
3524void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003525 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003526 SDValue LROp, SDValue FPOp, bool isDarwinABI,
Craig Topperb94011f2013-07-14 04:42:23 +00003527 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003528 MachineFunction &MF = DAG.getMachineFunction();
3529
3530 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3531 // might overwrite each other in case of tail call optimization.
3532 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003533 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003534 InFlag = SDValue();
3535 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3536 MemOpChains2, dl);
3537 if (!MemOpChains2.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00003538 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003539
3540 // Store the return address to the appropriate stack slot.
3541 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3542 isPPC64, isDarwinABI, dl);
3543
3544 // Emit callseq_end just before tailcall node.
3545 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003546 DAG.getIntPtrConstant(0, true), InFlag, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003547 InFlag = Chain.getValue(1);
3548}
3549
3550static
3551unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003552 SDValue &Chain, SDLoc dl, int SPDiff, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003553 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
3554 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003555 const PPCSubtarget &Subtarget) {
Wesley Peck527da1b2010-11-23 03:31:01 +00003556
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003557 bool isPPC64 = Subtarget.isPPC64();
3558 bool isSVR4ABI = Subtarget.isSVR4ABI();
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003559 bool isELFv2ABI = Subtarget.isELFv2ABI();
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003560
Owen Anderson53aa7a92009-08-10 22:56:29 +00003561 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00003562 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003563 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003564
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003565 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003566
Torok Edwin31e90d22010-08-04 20:47:44 +00003567 bool needIndirectCall = true;
Ulrich Weigand9aa09ef2014-06-18 16:14:04 +00003568 if (!isSVR4ABI || !isPPC64)
3569 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
3570 // If this is an absolute destination address, use the munged value.
3571 Callee = SDValue(Dest, 0);
3572 needIndirectCall = false;
3573 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003574
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003575 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3576 // XXX Work around for http://llvm.org/bugs/show_bug.cgi?id=5201
3577 // Use indirect calls for ALL functions calls in JIT mode, since the
3578 // far-call stubs may be outside relocation limits for a BL instruction.
3579 if (!DAG.getTarget().getSubtarget<PPCSubtarget>().isJITCodeModel()) {
3580 unsigned OpFlags = 0;
Hal Finkel3ee2af72014-07-18 23:29:49 +00003581 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003582 (Subtarget.getTargetTriple().isMacOSX() &&
3583 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003584 (G->getGlobal()->isDeclaration() ||
Hal Finkel3ee2af72014-07-18 23:29:49 +00003585 G->getGlobal()->isWeakForLinker())) ||
3586 (Subtarget.isTargetELF() && !isPPC64 &&
3587 !G->getGlobal()->hasLocalLinkage() &&
3588 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003589 // PC-relative references to external symbols should go through $stub,
3590 // unless we're building with the leopard linker or later, which
3591 // automatically synthesizes these stubs.
Hal Finkel3ee2af72014-07-18 23:29:49 +00003592 OpFlags = PPCII::MO_PLT_OR_STUB;
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003593 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003594
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003595 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3596 // every direct call is) turn it into a TargetGlobalAddress /
3597 // TargetExternalSymbol node so that legalize doesn't hack it.
Torok Edwin31e90d22010-08-04 20:47:44 +00003598 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003599 Callee.getValueType(),
3600 0, OpFlags);
Torok Edwin31e90d22010-08-04 20:47:44 +00003601 needIndirectCall = false;
Wesley Peck527da1b2010-11-23 03:31:01 +00003602 }
Torok Edwin31e90d22010-08-04 20:47:44 +00003603 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003604
Torok Edwin31e90d22010-08-04 20:47:44 +00003605 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003606 unsigned char OpFlags = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00003607
Hal Finkel3ee2af72014-07-18 23:29:49 +00003608 if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
3609 (Subtarget.getTargetTriple().isMacOSX() &&
3610 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) ||
3611 (Subtarget.isTargetELF() && !isPPC64 &&
3612 DAG.getTarget().getRelocationModel() == Reloc::PIC_) ) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003613 // PC-relative references to external symbols should go through $stub,
3614 // unless we're building with the leopard linker or later, which
3615 // automatically synthesizes these stubs.
Hal Finkel3ee2af72014-07-18 23:29:49 +00003616 OpFlags = PPCII::MO_PLT_OR_STUB;
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003617 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003618
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003619 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3620 OpFlags);
3621 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00003622 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003623
Torok Edwin31e90d22010-08-04 20:47:44 +00003624 if (needIndirectCall) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003625 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
3626 // to do the call, we can't use PPCISD::CALL.
3627 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller79fef932009-12-18 13:00:15 +00003628
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003629 if (isSVR4ABI && isPPC64 && !isELFv2ABI) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003630 // Function pointers in the 64-bit SVR4 ABI do not point to the function
3631 // entry point, but to the function descriptor (the function entry point
3632 // address is part of the function descriptor though).
3633 // The function descriptor is a three doubleword structure with the
3634 // following fields: function entry point, TOC base address and
3635 // environment pointer.
3636 // Thus for a call through a function pointer, the following actions need
3637 // to be performed:
3638 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt57d6de52012-10-23 15:51:16 +00003639 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller79fef932009-12-18 13:00:15 +00003640 // 2. Load the address of the function entry point from the function
3641 // descriptor.
3642 // 3. Load the TOC of the callee from the function descriptor into r2.
3643 // 4. Load the environment pointer from the function descriptor into
3644 // r11.
3645 // 5. Branch to the function entry point address.
3646 // 6. On return of the callee, the TOC of the caller needs to be
3647 // restored (this is done in FinishCall()).
3648 //
3649 // All those operations are flagged together to ensure that no other
3650 // operations can be scheduled in between. E.g. without flagging the
3651 // operations together, a TOC access in the caller could be scheduled
3652 // between the load of the callee TOC and the branch to the callee, which
3653 // results in the TOC access going through the TOC of the callee instead
3654 // of going through the TOC of the caller, which leads to incorrect code.
3655
3656 // Load the address of the function entry point from the function
3657 // descriptor.
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003658 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::Other, MVT::Glue);
Craig Topper48d114b2014-04-26 18:35:24 +00003659 SDValue LoadFuncPtr = DAG.getNode(PPCISD::LOAD, dl, VTs,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00003660 makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
Tilmann Scheller79fef932009-12-18 13:00:15 +00003661 Chain = LoadFuncPtr.getValue(1);
3662 InFlag = LoadFuncPtr.getValue(2);
3663
3664 // Load environment pointer into r11.
3665 // Offset of the environment pointer within the function descriptor.
3666 SDValue PtrOff = DAG.getIntPtrConstant(16);
3667
3668 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
3669 SDValue LoadEnvPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, Chain, AddPtr,
3670 InFlag);
3671 Chain = LoadEnvPtr.getValue(1);
3672 InFlag = LoadEnvPtr.getValue(2);
3673
3674 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3675 InFlag);
3676 Chain = EnvVal.getValue(0);
3677 InFlag = EnvVal.getValue(1);
3678
3679 // Load TOC of the callee into r2. We are using a target-specific load
3680 // with r2 hard coded, because the result of a target-independent load
3681 // would never go directly into r2, since r2 is a reserved register (which
3682 // prevents the register allocator from allocating it), resulting in an
3683 // additional register being allocated and an unnecessary move instruction
3684 // being generated.
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003685 VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Ulrich Weigandad0cb912014-06-18 17:52:49 +00003686 SDValue TOCOff = DAG.getIntPtrConstant(8);
3687 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003688 SDValue LoadTOCPtr = DAG.getNode(PPCISD::LOAD_TOC, dl, VTs, Chain,
Ulrich Weigandad0cb912014-06-18 17:52:49 +00003689 AddTOC, InFlag);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003690 Chain = LoadTOCPtr.getValue(0);
3691 InFlag = LoadTOCPtr.getValue(1);
3692
3693 MTCTROps[0] = Chain;
3694 MTCTROps[1] = LoadFuncPtr;
3695 MTCTROps[2] = InFlag;
3696 }
3697
Craig Topper48d114b2014-04-26 18:35:24 +00003698 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00003699 makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003700 InFlag = Chain.getValue(1);
3701
3702 NodeTys.clear();
Owen Anderson9f944592009-08-11 20:47:22 +00003703 NodeTys.push_back(MVT::Other);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003704 NodeTys.push_back(MVT::Glue);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003705 Ops.push_back(Chain);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003706 CallOpc = PPCISD::BCTRL;
Craig Topper062a2ba2014-04-25 05:30:21 +00003707 Callee.setNode(nullptr);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003708 // Add use of X11 (holding environment pointer)
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003709 if (isSVR4ABI && isPPC64 && !isELFv2ABI)
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003710 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003711 // Add CTR register as callee so a bctr can be emitted later.
3712 if (isTailCall)
Roman Divackya4a59ae2011-06-03 15:47:49 +00003713 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003714 }
3715
3716 // If this is a direct call, pass the chain and the callee.
3717 if (Callee.getNode()) {
3718 Ops.push_back(Chain);
3719 Ops.push_back(Callee);
3720 }
3721 // If this is a tail call add stack pointer delta.
3722 if (isTailCall)
Owen Anderson9f944592009-08-11 20:47:22 +00003723 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003724
3725 // Add argument registers to the end of the list so that they are known live
3726 // into the call.
3727 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3728 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3729 RegsToPass[i].second.getValueType()));
3730
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00003731 // Direct calls in the ELFv2 ABI need the TOC register live into the call.
3732 if (Callee.getNode() && isELFv2ABI)
3733 Ops.push_back(DAG.getRegister(PPC::X2, PtrVT));
3734
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003735 return CallOpc;
3736}
3737
Roman Divacky76293062012-09-18 16:47:58 +00003738static
3739bool isLocalCall(const SDValue &Callee)
3740{
3741 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Roman Divacky09adf3d2012-09-18 18:27:49 +00003742 return !G->getGlobal()->isDeclaration() &&
3743 !G->getGlobal()->isWeakForLinker();
Roman Divacky76293062012-09-18 16:47:58 +00003744 return false;
3745}
3746
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003747SDValue
3748PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003749 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003750 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003751 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003752 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003753
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003754 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003755 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003756 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003757 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003758
3759 // Copy all of the result registers out of their specified physreg.
3760 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3761 CCValAssign &VA = RVLocs[i];
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003762 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00003763
3764 SDValue Val = DAG.getCopyFromReg(Chain, dl,
3765 VA.getLocReg(), VA.getLocVT(), InFlag);
3766 Chain = Val.getValue(1);
3767 InFlag = Val.getValue(2);
3768
3769 switch (VA.getLocInfo()) {
3770 default: llvm_unreachable("Unknown loc info!");
3771 case CCValAssign::Full: break;
3772 case CCValAssign::AExt:
3773 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3774 break;
3775 case CCValAssign::ZExt:
3776 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3777 DAG.getValueType(VA.getValVT()));
3778 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3779 break;
3780 case CCValAssign::SExt:
3781 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3782 DAG.getValueType(VA.getValVT()));
3783 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3784 break;
3785 }
3786
3787 InVals.push_back(Val);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003788 }
3789
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003790 return Chain;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003791}
3792
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003793SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00003794PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003795 bool isTailCall, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003796 SelectionDAG &DAG,
3797 SmallVector<std::pair<unsigned, SDValue>, 8>
3798 &RegsToPass,
3799 SDValue InFlag, SDValue Chain,
3800 SDValue &Callee,
3801 int SPDiff, unsigned NumBytes,
3802 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003803 SmallVectorImpl<SDValue> &InVals) const {
Ulrich Weigand8658f172014-07-20 23:43:15 +00003804
3805 bool isELFv2ABI = Subtarget.isELFv2ABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003806 std::vector<EVT> NodeTys;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003807 SmallVector<SDValue, 8> Ops;
3808 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, dl, SPDiff,
3809 isTailCall, RegsToPass, Ops, NodeTys,
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003810 Subtarget);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003811
Hal Finkel5ab37802012-08-28 02:10:27 +00003812 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003813 if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64())
Hal Finkel5ab37802012-08-28 02:10:27 +00003814 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3815
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003816 // When performing tail call optimization the callee pops its arguments off
3817 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky8da87162013-02-21 20:05:00 +00003818 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003819 int BytesCalleePops =
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003820 (CallConv == CallingConv::Fast &&
3821 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003822
Roman Divackyef21be22012-03-06 16:41:49 +00003823 // Add a register mask operand representing the call-preserved registers.
Eric Christopherd9134482014-08-04 21:25:23 +00003824 const TargetRegisterInfo *TRI =
3825 getTargetMachine().getSubtargetImpl()->getRegisterInfo();
Roman Divackyef21be22012-03-06 16:41:49 +00003826 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3827 assert(Mask && "Missing call preserved mask for calling convention");
3828 Ops.push_back(DAG.getRegisterMask(Mask));
3829
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003830 if (InFlag.getNode())
3831 Ops.push_back(InFlag);
3832
3833 // Emit tail call.
3834 if (isTailCall) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003835 assert(((Callee.getOpcode() == ISD::Register &&
3836 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3837 Callee.getOpcode() == ISD::TargetExternalSymbol ||
3838 Callee.getOpcode() == ISD::TargetGlobalAddress ||
3839 isa<ConstantSDNode>(Callee)) &&
3840 "Expecting an global address, external symbol, absolute value or register");
3841
Craig Topper48d114b2014-04-26 18:35:24 +00003842 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003843 }
3844
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003845 // Add a NOP immediately after the branch instruction when using the 64-bit
3846 // SVR4 ABI. At link time, if caller and callee are in a different module and
3847 // thus have a different TOC, the call will be replaced with a call to a stub
3848 // function which saves the current TOC, loads the TOC of the callee and
3849 // branches to the callee. The NOP will be replaced with a load instruction
3850 // which restores the TOC of the caller from the TOC save slot of the current
3851 // stack frame. If caller and callee belong to the same module (and have the
3852 // same TOC), the NOP will remain unchanged.
Hal Finkel51861b42012-03-31 14:45:15 +00003853
3854 bool needsTOCRestore = false;
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003855 if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64()) {
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003856 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003857 // This is a call through a function pointer.
3858 // Restore the caller TOC from the save area into R2.
3859 // See PrepareCall() for more information about calls through function
3860 // pointers in the 64-bit SVR4 ABI.
3861 // We are using a target-specific load with r2 hard coded, because the
3862 // result of a target-independent load would never go directly into r2,
3863 // since r2 is a reserved register (which prevents the register allocator
3864 // from allocating it), resulting in an additional register being
3865 // allocated and an unnecessary move instruction being generated.
Hal Finkel51861b42012-03-31 14:45:15 +00003866 needsTOCRestore = true;
Bill Schmidtcea15962013-09-26 17:09:28 +00003867 } else if ((CallOpc == PPCISD::CALL) &&
3868 (!isLocalCall(Callee) ||
3869 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
Roman Divacky76293062012-09-18 16:47:58 +00003870 // Otherwise insert NOP for non-local calls.
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003871 CallOpc = PPCISD::CALL_NOP;
Tilmann Scheller79fef932009-12-18 13:00:15 +00003872 }
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003873 }
3874
Craig Topper48d114b2014-04-26 18:35:24 +00003875 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
Hal Finkel51861b42012-03-31 14:45:15 +00003876 InFlag = Chain.getValue(1);
3877
3878 if (needsTOCRestore) {
3879 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Ulrich Weigandad0cb912014-06-18 17:52:49 +00003880 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3881 SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT);
Ulrich Weigand8658f172014-07-20 23:43:15 +00003882 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI);
Ulrich Weigandad0cb912014-06-18 17:52:49 +00003883 SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset);
3884 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff);
3885 Chain = DAG.getNode(PPCISD::LOAD_TOC, dl, VTs, Chain, AddTOC, InFlag);
Hal Finkel51861b42012-03-31 14:45:15 +00003886 InFlag = Chain.getValue(1);
3887 }
3888
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003889 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3890 DAG.getIntPtrConstant(BytesCalleePops, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003891 InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003892 if (!Ins.empty())
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003893 InFlag = Chain.getValue(1);
3894
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003895 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3896 Ins, dl, DAG, InVals);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003897}
3898
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003899SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00003900PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003901 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00003902 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +00003903 SDLoc &dl = CLI.DL;
3904 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
3905 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
3906 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00003907 SDValue Chain = CLI.Chain;
3908 SDValue Callee = CLI.Callee;
3909 bool &isTailCall = CLI.IsTailCall;
3910 CallingConv::ID CallConv = CLI.CallConv;
3911 bool isVarArg = CLI.IsVarArg;
3912
Evan Cheng67a69dd2010-01-27 00:07:07 +00003913 if (isTailCall)
3914 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
3915 Ins, DAG);
3916
Reid Kleckner5772b772014-04-24 20:14:34 +00003917 if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall())
3918 report_fatal_error("failed to perform tail call elimination on a call "
3919 "site marked musttail");
3920
Eric Christopherb1aaebe2014-06-12 22:38:18 +00003921 if (Subtarget.isSVR4ABI()) {
3922 if (Subtarget.isPPC64())
Bill Schmidt57d6de52012-10-23 15:51:16 +00003923 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
3924 isTailCall, Outs, OutVals, Ins,
3925 dl, DAG, InVals);
3926 else
3927 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
3928 isTailCall, Outs, OutVals, Ins,
3929 dl, DAG, InVals);
3930 }
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003931
Bill Schmidt57d6de52012-10-23 15:51:16 +00003932 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
3933 isTailCall, Outs, OutVals, Ins,
3934 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003935}
3936
3937SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003938PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
3939 CallingConv::ID CallConv, bool isVarArg,
3940 bool isTailCall,
3941 const SmallVectorImpl<ISD::OutputArg> &Outs,
3942 const SmallVectorImpl<SDValue> &OutVals,
3943 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003944 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003945 SmallVectorImpl<SDValue> &InVals) const {
3946 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003947 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003948
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003949 assert((CallConv == CallingConv::C ||
3950 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003951
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003952 unsigned PtrByteSize = 4;
3953
3954 MachineFunction &MF = DAG.getMachineFunction();
3955
3956 // Mark this function as potentially containing a function that contains a
3957 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3958 // and restoring the callers stack pointer in this functions epilog. This is
3959 // done because by tail calling the called function might overwrite the value
3960 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003961 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3962 CallConv == CallingConv::Fast)
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003963 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peck527da1b2010-11-23 03:31:01 +00003964
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003965 // Count how many bytes are to be pushed on the stack, including the linkage
3966 // area, parameter list area and the part of the local variable space which
3967 // contains copies of aggregates which are passed by value.
3968
3969 // Assign locations to all of the outgoing arguments.
3970 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003971 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003972 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003973
3974 // Reserve space for the linkage area on the stack.
Ulrich Weigand8658f172014-07-20 23:43:15 +00003975 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false, false),
3976 PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003977
3978 if (isVarArg) {
3979 // Handle fixed and variable vector arguments differently.
3980 // Fixed vector arguments go into registers as long as registers are
3981 // available. Variable vector arguments always go into memory.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003982 unsigned NumArgs = Outs.size();
Wesley Peck527da1b2010-11-23 03:31:01 +00003983
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003984 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00003985 MVT ArgVT = Outs[i].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003986 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003987 bool Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00003988
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003989 if (Outs[i].IsFixed) {
Bill Schmidtef17c142013-02-06 17:33:58 +00003990 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
3991 CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003992 } else {
Bill Schmidtef17c142013-02-06 17:33:58 +00003993 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
3994 ArgFlags, CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003995 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003996
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003997 if (Result) {
Torok Edwinfb8d6d52009-07-08 20:53:28 +00003998#ifndef NDEBUG
Chris Lattner13626022009-08-23 06:03:38 +00003999 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sandsf5dda012010-11-03 11:35:31 +00004000 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwinfb8d6d52009-07-08 20:53:28 +00004001#endif
Craig Toppere73658d2014-04-28 04:05:08 +00004002 llvm_unreachable(nullptr);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004003 }
4004 }
4005 } else {
4006 // All arguments are treated the same.
Bill Schmidtef17c142013-02-06 17:33:58 +00004007 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004008 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004009
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004010 // Assign locations to all of the outgoing aggregate by value arguments.
4011 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00004012 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00004013 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004014
4015 // Reserve stack space for the allocations in CCInfo.
4016 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
4017
Bill Schmidtef17c142013-02-06 17:33:58 +00004018 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004019
4020 // Size of the linkage area, parameter list area and the part of the local
4021 // space variable where copies of aggregates which are passed by value are
4022 // stored.
4023 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004024
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004025 // Calculate by how many bytes the stack has to be adjusted in case of tail
4026 // call optimization.
4027 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4028
4029 // Adjust the stack pointer for the new arguments...
4030 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004031 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4032 dl);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004033 SDValue CallSeqStart = Chain;
4034
4035 // Load the return address and frame pointer so it can be moved somewhere else
4036 // later.
4037 SDValue LROp, FPOp;
4038 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
4039 dl);
4040
4041 // Set up a copy of the stack pointer for use loading and storing any
4042 // arguments that may not fit in the registers available for argument
4043 // passing.
Owen Anderson9f944592009-08-11 20:47:22 +00004044 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peck527da1b2010-11-23 03:31:01 +00004045
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004046 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4047 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4048 SmallVector<SDValue, 8> MemOpChains;
4049
Roman Divacky71038e72011-08-30 17:04:16 +00004050 bool seenFloatArg = false;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004051 // Walk the register/memloc assignments, inserting copies/loads.
4052 for (unsigned i = 0, j = 0, e = ArgLocs.size();
4053 i != e;
4054 ++i) {
4055 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004056 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004057 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peck527da1b2010-11-23 03:31:01 +00004058
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004059 if (Flags.isByVal()) {
4060 // Argument is an aggregate which is passed by value, thus we need to
4061 // create a copy of it in the local variable space of the current stack
4062 // frame (which is the stack frame of the caller) and pass the address of
4063 // this copy to the callee.
4064 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
4065 CCValAssign &ByValVA = ByValArgLocs[j++];
4066 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peck527da1b2010-11-23 03:31:01 +00004067
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004068 // Memory reserved in the local variable space of the callers stack frame.
4069 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00004070
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004071 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4072 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Wesley Peck527da1b2010-11-23 03:31:01 +00004073
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004074 // Create a copy of the argument in the local area of the current
4075 // stack frame.
4076 SDValue MemcpyCall =
4077 CreateCopyOfByValArgument(Arg, PtrOff,
4078 CallSeqStart.getNode()->getOperand(0),
4079 Flags, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00004080
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004081 // This must go outside the CALLSEQ_START..END.
4082 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004083 CallSeqStart.getNode()->getOperand(1),
4084 SDLoc(MemcpyCall));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004085 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4086 NewCallSeqStart.getNode());
4087 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peck527da1b2010-11-23 03:31:01 +00004088
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004089 // Pass the address of the aggregate copy on the stack either in a
4090 // physical register or in the parameter list area of the current stack
4091 // frame to the callee.
4092 Arg = PtrOff;
4093 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004094
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004095 if (VA.isRegLoc()) {
Hal Finkel2a9d3182014-03-06 00:23:33 +00004096 if (Arg.getValueType() == MVT::i1)
4097 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg);
4098
Roman Divacky71038e72011-08-30 17:04:16 +00004099 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004100 // Put argument in a physical register.
4101 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
4102 } else {
4103 // Put argument in the parameter list area of the current stack frame.
4104 assert(VA.isMemLoc());
4105 unsigned LocMemOffset = VA.getLocMemOffset();
4106
4107 if (!isTailCall) {
4108 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4109 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
4110
4111 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner676c61d2010-09-21 18:41:36 +00004112 MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00004113 false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004114 } else {
4115 // Calculate and remember argument location.
4116 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
4117 TailCallArguments);
4118 }
4119 }
4120 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004121
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004122 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004123 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Wesley Peck527da1b2010-11-23 03:31:01 +00004124
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004125 // Build a sequence of copy-to-reg nodes chained together with token chain
4126 // and flag operands which copy the outgoing args into the appropriate regs.
4127 SDValue InFlag;
4128 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4129 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4130 RegsToPass[i].second, InFlag);
4131 InFlag = Chain.getValue(1);
4132 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004133
Hal Finkel5ab37802012-08-28 02:10:27 +00004134 // Set CR bit 6 to true if this is a vararg call with floating args passed in
4135 // registers.
4136 if (isVarArg) {
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004137 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
4138 SDValue Ops[] = { Chain, InFlag };
4139
Hal Finkel5ab37802012-08-28 02:10:27 +00004140 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00004141 dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1));
NAKAMURA Takumiac490292012-08-30 15:52:29 +00004142
Hal Finkel5ab37802012-08-28 02:10:27 +00004143 InFlag = Chain.getValue(1);
4144 }
4145
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004146 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004147 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
4148 false, TailCallArguments);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004149
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004150 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4151 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4152 Ins, InVals);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004153}
4154
Bill Schmidt57d6de52012-10-23 15:51:16 +00004155// Copy an argument into memory, being careful to do this outside the
4156// call sequence for the call to which the argument belongs.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004157SDValue
Bill Schmidt57d6de52012-10-23 15:51:16 +00004158PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
4159 SDValue CallSeqStart,
4160 ISD::ArgFlagsTy Flags,
4161 SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004162 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004163 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
4164 CallSeqStart.getNode()->getOperand(0),
4165 Flags, DAG, dl);
4166 // The MEMCPY must go outside the CALLSEQ_START..END.
4167 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00004168 CallSeqStart.getNode()->getOperand(1),
4169 SDLoc(MemcpyCall));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004170 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4171 NewCallSeqStart.getNode());
4172 return NewCallSeqStart;
4173}
4174
4175SDValue
4176PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004177 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004178 bool isTailCall,
4179 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004180 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004181 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004182 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004183 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004184
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004185 bool isELFv2ABI = Subtarget.isELFv2ABI();
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004186 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004187 unsigned NumOps = Outs.size();
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004188
Bill Schmidt57d6de52012-10-23 15:51:16 +00004189 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
4190 unsigned PtrByteSize = 8;
4191
4192 MachineFunction &MF = DAG.getMachineFunction();
4193
4194 // Mark this function as potentially containing a function that contains a
4195 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4196 // and restoring the callers stack pointer in this functions epilog. This is
4197 // done because by tail calling the called function might overwrite the value
4198 // in this function's (MF) stack pointer stack slot 0(SP).
4199 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4200 CallConv == CallingConv::Fast)
4201 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4202
Bill Schmidt57d6de52012-10-23 15:51:16 +00004203 // Count how many bytes are to be pushed on the stack, including the linkage
Ulrich Weigand8658f172014-07-20 23:43:15 +00004204 // area, and parameter passing area. On ELFv1, the linkage area is 48 bytes
4205 // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage
4206 // area is 32 bytes reserved space for [SP][CR][LR][TOC].
4207 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false,
4208 isELFv2ABI);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004209 unsigned NumBytes = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004210
4211 // Add up all the space actually used.
4212 for (unsigned i = 0; i != NumOps; ++i) {
4213 ISD::ArgFlagsTy Flags = Outs[i].Flags;
4214 EVT ArgVT = Outs[i].VT;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004215 EVT OrigVT = Outs[i].ArgVT;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004216
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004217 /* Respect alignment of argument on the stack. */
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004218 unsigned Align =
4219 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004220 NumBytes = ((NumBytes + Align - 1) / Align) * Align;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004221
4222 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004223 if (Flags.isInConsecutiveRegsLast())
4224 NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004225 }
4226
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004227 unsigned NumBytesActuallyUsed = NumBytes;
4228
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004229 // The prolog code of the callee may store up to 8 GPR argument registers to
4230 // the stack, allowing va_start to index over them in memory if its varargs.
4231 // Because we cannot tell if this is needed on the caller side, we have to
4232 // conservatively assume that it is needed. As such, make sure we have at
4233 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004234 // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004235 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004236
4237 // Tail call needs the stack to be aligned.
4238 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4239 CallConv == CallingConv::Fast)
4240 NumBytes = EnsureStackAlignment(MF.getTarget(), NumBytes);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004241
4242 // Calculate by how many bytes the stack has to be adjusted in case of tail
4243 // call optimization.
4244 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4245
4246 // To protect arguments on the stack from being clobbered in a tail call,
4247 // force all the loads to happen before doing any other lowering.
4248 if (isTailCall)
4249 Chain = DAG.getStackArgumentTokenFactor(Chain);
4250
4251 // Adjust the stack pointer for the new arguments...
4252 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004253 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4254 dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004255 SDValue CallSeqStart = Chain;
4256
4257 // Load the return address and frame pointer so it can be move somewhere else
4258 // later.
4259 SDValue LROp, FPOp;
4260 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4261 dl);
4262
4263 // Set up a copy of the stack pointer for use loading and storing any
4264 // arguments that may not fit in the registers available for argument
4265 // passing.
4266 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4267
4268 // Figure out which arguments are going to go in registers, and which in
4269 // memory. Also, if this is a vararg function, floating point operations
4270 // must be stored to our stack, and loaded into integer regs as well, if
4271 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004272 unsigned ArgOffset = LinkageSize;
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004273 unsigned GPR_idx, FPR_idx = 0, VR_idx = 0;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004274
Craig Topper840beec2014-04-04 05:16:06 +00004275 static const MCPhysReg GPR[] = {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004276 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4277 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4278 };
Craig Topper840beec2014-04-04 05:16:06 +00004279 static const MCPhysReg *FPR = GetFPR();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004280
Craig Topper840beec2014-04-04 05:16:06 +00004281 static const MCPhysReg VR[] = {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004282 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4283 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4284 };
Craig Topper840beec2014-04-04 05:16:06 +00004285 static const MCPhysReg VSRH[] = {
Hal Finkel7811c612014-03-28 19:58:11 +00004286 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
4287 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
4288 };
4289
Bill Schmidt57d6de52012-10-23 15:51:16 +00004290 const unsigned NumGPRs = array_lengthof(GPR);
4291 const unsigned NumFPRs = 13;
4292 const unsigned NumVRs = array_lengthof(VR);
4293
4294 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4295 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4296
4297 SmallVector<SDValue, 8> MemOpChains;
4298 for (unsigned i = 0; i != NumOps; ++i) {
4299 SDValue Arg = OutVals[i];
4300 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004301 EVT ArgVT = Outs[i].VT;
4302 EVT OrigVT = Outs[i].ArgVT;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004303
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004304 /* Respect alignment of argument on the stack. */
4305 unsigned Align =
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004306 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004307 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
4308
4309 /* Compute GPR index associated with argument offset. */
4310 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
4311 GPR_idx = std::min(GPR_idx, NumGPRs);
4312
Bill Schmidt57d6de52012-10-23 15:51:16 +00004313 // PtrOff will be used to store the current argument to the stack if a
4314 // register cannot be found for it.
4315 SDValue PtrOff;
4316
4317 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
4318
4319 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4320
4321 // Promote integers to 64-bit values.
Hal Finkel940ab932014-02-28 00:27:01 +00004322 if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004323 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4324 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4325 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
4326 }
4327
4328 // FIXME memcpy is used way more than necessary. Correctness first.
4329 // Note: "by value" is code for passing a structure by value, not
4330 // basic types.
4331 if (Flags.isByVal()) {
4332 // Note: Size includes alignment padding, so
4333 // struct x { short a; char b; }
4334 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
4335 // These are the proper values we need for right-justifying the
4336 // aggregate in a parameter register.
4337 unsigned Size = Flags.getByValSize();
Bill Schmidt9953cf22012-10-31 01:15:05 +00004338
4339 // An empty aggregate parameter takes up no storage and no
4340 // registers.
4341 if (Size == 0)
4342 continue;
4343
Bill Schmidt57d6de52012-10-23 15:51:16 +00004344 // All aggregates smaller than 8 bytes must be passed right-justified.
4345 if (Size==1 || Size==2 || Size==4) {
4346 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
4347 if (GPR_idx != NumGPRs) {
4348 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
4349 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00004350 false, false, false, 0);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004351 MemOpChains.push_back(Load.getValue(1));
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004352 RegsToPass.push_back(std::make_pair(GPR[GPR_idx], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004353
4354 ArgOffset += PtrByteSize;
4355 continue;
4356 }
4357 }
4358
4359 if (GPR_idx == NumGPRs && Size < 8) {
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004360 SDValue AddPtr = PtrOff;
4361 if (!isLittleEndian) {
4362 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4363 PtrOff.getValueType());
4364 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4365 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004366 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4367 CallSeqStart,
4368 Flags, DAG, dl);
4369 ArgOffset += PtrByteSize;
4370 continue;
4371 }
4372 // Copy entire object into memory. There are cases where gcc-generated
4373 // code assumes it is there, even if it could be put entirely into
4374 // registers. (This is not what the doc says.)
4375
4376 // FIXME: The above statement is likely due to a misunderstanding of the
4377 // documents. All arguments must be copied into the parameter area BY
4378 // THE CALLEE in the event that the callee takes the address of any
4379 // formal argument. That has not yet been implemented. However, it is
4380 // reasonable to use the stack area as a staging area for the register
4381 // load.
4382
4383 // Skip this for small aggregates, as we will use the same slot for a
4384 // right-justified copy, below.
4385 if (Size >= 8)
4386 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4387 CallSeqStart,
4388 Flags, DAG, dl);
4389
4390 // When a register is available, pass a small aggregate right-justified.
4391 if (Size < 8 && GPR_idx != NumGPRs) {
4392 // The easiest way to get this right-justified in a register
4393 // is to copy the structure into the rightmost portion of a
4394 // local variable slot, then load the whole slot into the
4395 // register.
4396 // FIXME: The memcpy seems to produce pretty awful code for
4397 // small aggregates, particularly for packed ones.
Matt Arsenault758659232013-05-18 00:21:46 +00004398 // FIXME: It would be preferable to use the slot in the
Bill Schmidt57d6de52012-10-23 15:51:16 +00004399 // parameter save area instead of a new local variable.
Ulrich Weigand59c6ab22014-06-20 16:34:05 +00004400 SDValue AddPtr = PtrOff;
4401 if (!isLittleEndian) {
4402 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
4403 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4404 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004405 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4406 CallSeqStart,
4407 Flags, DAG, dl);
4408
4409 // Load the slot into the register.
4410 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
4411 MachinePointerInfo(),
4412 false, false, false, 0);
4413 MemOpChains.push_back(Load.getValue(1));
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004414 RegsToPass.push_back(std::make_pair(GPR[GPR_idx], Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004415
4416 // Done with this argument.
4417 ArgOffset += PtrByteSize;
4418 continue;
4419 }
4420
4421 // For aggregates larger than PtrByteSize, copy the pieces of the
4422 // object that fit into registers from the parameter save area.
4423 for (unsigned j=0; j<Size; j+=PtrByteSize) {
4424 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
4425 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
4426 if (GPR_idx != NumGPRs) {
4427 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4428 MachinePointerInfo(),
4429 false, false, false, 0);
4430 MemOpChains.push_back(Load.getValue(1));
4431 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4432 ArgOffset += PtrByteSize;
4433 } else {
4434 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
4435 break;
4436 }
4437 }
4438 continue;
4439 }
4440
Craig Topper56710102013-08-15 02:33:50 +00004441 switch (Arg.getSimpleValueType().SimpleTy) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004442 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel940ab932014-02-28 00:27:01 +00004443 case MVT::i1:
Bill Schmidt57d6de52012-10-23 15:51:16 +00004444 case MVT::i32:
4445 case MVT::i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004446 // These can be scalar arguments or elements of an integer array type
4447 // passed directly. Clang may use those instead of "byval" aggregate
4448 // types to avoid forcing arguments to memory unnecessarily.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004449 if (GPR_idx != NumGPRs) {
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004450 RegsToPass.push_back(std::make_pair(GPR[GPR_idx], Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004451 } else {
4452 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4453 true, isTailCall, false, MemOpChains,
4454 TailCallArguments, dl);
4455 }
4456 ArgOffset += PtrByteSize;
4457 break;
4458 case MVT::f32:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004459 case MVT::f64: {
4460 // These can be scalar arguments or elements of a float array type
4461 // passed directly. The latter are used to implement ELFv2 homogenous
4462 // float aggregates.
4463
4464 // Named arguments go into FPRs first, and once they overflow, the
4465 // remaining arguments go into GPRs and then the parameter save area.
4466 // Unnamed arguments for vararg functions always go to GPRs and
4467 // then the parameter save area. For now, put all arguments to vararg
4468 // routines always in both locations (FPR *and* GPR or stack slot).
4469 bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs;
4470
4471 // First load the argument into the next available FPR.
4472 if (FPR_idx != NumFPRs)
Bill Schmidt57d6de52012-10-23 15:51:16 +00004473 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4474
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004475 // Next, load the argument into GPR or stack slot if needed.
4476 if (!NeedGPROrStack)
4477 ;
4478 else if (GPR_idx != NumGPRs) {
4479 // In the non-vararg case, this can only ever happen in the
4480 // presence of f32 array types, since otherwise we never run
4481 // out of FPRs before running out of GPRs.
4482 SDValue ArgVal;
Bill Schmidtbd4ac262012-10-29 21:18:16 +00004483
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004484 // Double values are always passed in a single GPR.
4485 if (Arg.getValueType() != MVT::f32) {
4486 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004487
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004488 // Non-array float values are extended and passed in a GPR.
4489 } else if (!Flags.isInConsecutiveRegs()) {
4490 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4491 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4492
4493 // If we have an array of floats, we collect every odd element
4494 // together with its predecessor into one GPR.
4495 } else if (ArgOffset % PtrByteSize != 0) {
4496 SDValue Lo, Hi;
4497 Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]);
4498 Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4499 if (!isLittleEndian)
4500 std::swap(Lo, Hi);
4501 ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4502
4503 // The final element, if even, goes into the first half of a GPR.
4504 } else if (Flags.isInConsecutiveRegsLast()) {
4505 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4506 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4507 if (!isLittleEndian)
4508 ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal,
4509 DAG.getConstant(32, MVT::i32));
4510
4511 // Non-final even elements are skipped; they will be handled
4512 // together the with subsequent argument on the next go-around.
4513 } else
4514 ArgVal = SDValue();
4515
4516 if (ArgVal.getNode())
4517 RegsToPass.push_back(std::make_pair(GPR[GPR_idx], ArgVal));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004518 } else {
4519 // Single-precision floating-point values are mapped to the
4520 // second (rightmost) word of the stack doubleword.
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004521 if (Arg.getValueType() == MVT::f32 &&
4522 !isLittleEndian && !Flags.isInConsecutiveRegs()) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004523 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4524 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4525 }
4526
4527 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4528 true, isTailCall, false, MemOpChains,
4529 TailCallArguments, dl);
4530 }
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004531 // When passing an array of floats, the array occupies consecutive
4532 // space in the argument area; only round up to the next doubleword
4533 // at the end of the array. Otherwise, each float takes 8 bytes.
4534 ArgOffset += (Arg.getValueType() == MVT::f32 &&
4535 Flags.isInConsecutiveRegs()) ? 4 : 8;
4536 if (Flags.isInConsecutiveRegsLast())
4537 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004538 break;
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004539 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004540 case MVT::v4f32:
4541 case MVT::v4i32:
4542 case MVT::v8i16:
4543 case MVT::v16i8:
Hal Finkel27774d92014-03-13 07:58:58 +00004544 case MVT::v2f64:
Hal Finkela6c8b512014-03-26 16:12:58 +00004545 case MVT::v2i64:
Ulrich Weigand85d5df22014-07-21 00:13:26 +00004546 // These can be scalar arguments or elements of a vector array type
4547 // passed directly. The latter are used to implement ELFv2 homogenous
4548 // vector aggregates.
4549
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00004550 // For a varargs call, named arguments go into VRs or on the stack as
4551 // usual; unnamed arguments always go to the stack or the corresponding
4552 // GPRs when within range. For now, we always put the value in both
4553 // locations (or even all three).
Bill Schmidt57d6de52012-10-23 15:51:16 +00004554 if (isVarArg) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004555 // We could elide this store in the case where the object fits
4556 // entirely in R registers. Maybe later.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004557 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4558 MachinePointerInfo(), false, false, 0);
4559 MemOpChains.push_back(Store);
4560 if (VR_idx != NumVRs) {
4561 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
4562 MachinePointerInfo(),
4563 false, false, false, 0);
4564 MemOpChains.push_back(Load.getValue(1));
Hal Finkel7811c612014-03-28 19:58:11 +00004565
4566 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4567 Arg.getSimpleValueType() == MVT::v2i64) ?
4568 VSRH[VR_idx] : VR[VR_idx];
4569 ++VR_idx;
4570
4571 RegsToPass.push_back(std::make_pair(VReg, Load));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004572 }
4573 ArgOffset += 16;
4574 for (unsigned i=0; i<16; i+=PtrByteSize) {
4575 if (GPR_idx == NumGPRs)
4576 break;
4577 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4578 DAG.getConstant(i, PtrVT));
4579 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4580 false, false, false, 0);
4581 MemOpChains.push_back(Load.getValue(1));
4582 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4583 }
4584 break;
4585 }
4586
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00004587 // Non-varargs Altivec params go into VRs or on the stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00004588 if (VR_idx != NumVRs) {
Hal Finkel7811c612014-03-28 19:58:11 +00004589 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4590 Arg.getSimpleValueType() == MVT::v2i64) ?
4591 VSRH[VR_idx] : VR[VR_idx];
4592 ++VR_idx;
4593
4594 RegsToPass.push_back(std::make_pair(VReg, Arg));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004595 } else {
4596 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4597 true, isTailCall, true, MemOpChains,
4598 TailCallArguments, dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004599 }
Ulrich Weigand9ba552d2014-06-23 12:36:34 +00004600 ArgOffset += 16;
Bill Schmidt57d6de52012-10-23 15:51:16 +00004601 break;
4602 }
4603 }
4604
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004605 assert(NumBytesActuallyUsed == ArgOffset);
Ulrich Weigandde8641b2014-07-07 19:39:44 +00004606 (void)NumBytesActuallyUsed;
Ulrich Weigandec2bf932014-07-07 19:26:41 +00004607
Bill Schmidt57d6de52012-10-23 15:51:16 +00004608 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00004609 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004610
4611 // Check if this is an indirect call (MTCTR/BCTRL).
4612 // See PrepareCall() for more information about calls through function
4613 // pointers in the 64-bit SVR4 ABI.
4614 if (!isTailCall &&
4615 !dyn_cast<GlobalAddressSDNode>(Callee) &&
Ulrich Weigand9aa09ef2014-06-18 16:14:04 +00004616 !dyn_cast<ExternalSymbolSDNode>(Callee)) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004617 // Load r2 into a virtual register and store it to the TOC save area.
4618 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4619 // TOC save area offset.
Ulrich Weigand8658f172014-07-20 23:43:15 +00004620 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI);
Ulrich Weigandad0cb912014-06-18 17:52:49 +00004621 SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004622 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4623 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr, MachinePointerInfo(),
4624 false, false, 0);
Ulrich Weigandaa0ac4f2014-07-20 23:31:44 +00004625 // In the ELFv2 ABI, R12 must contain the address of an indirect callee.
4626 // This does not mean the MTCTR instruction must use R12; it's easier
4627 // to model this as an extra parameter, so do that.
4628 if (isELFv2ABI)
4629 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
Bill Schmidt57d6de52012-10-23 15:51:16 +00004630 }
4631
4632 // Build a sequence of copy-to-reg nodes chained together with token chain
4633 // and flag operands which copy the outgoing args into the appropriate regs.
4634 SDValue InFlag;
4635 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4636 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4637 RegsToPass[i].second, InFlag);
4638 InFlag = Chain.getValue(1);
4639 }
4640
4641 if (isTailCall)
4642 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4643 FPOp, true, TailCallArguments);
4644
4645 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4646 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4647 Ins, InVals);
4648}
4649
4650SDValue
4651PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4652 CallingConv::ID CallConv, bool isVarArg,
4653 bool isTailCall,
4654 const SmallVectorImpl<ISD::OutputArg> &Outs,
4655 const SmallVectorImpl<SDValue> &OutVals,
4656 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004657 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt57d6de52012-10-23 15:51:16 +00004658 SmallVectorImpl<SDValue> &InVals) const {
4659
4660 unsigned NumOps = Outs.size();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004661
Owen Anderson53aa7a92009-08-10 22:56:29 +00004662 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00004663 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004664 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004665
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004666 MachineFunction &MF = DAG.getMachineFunction();
4667
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004668 // Mark this function as potentially containing a function that contains a
4669 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4670 // and restoring the callers stack pointer in this functions epilog. This is
4671 // done because by tail calling the called function might overwrite the value
4672 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004673 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4674 CallConv == CallingConv::Fast)
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004675 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4676
Chris Lattneraa40ec12006-05-16 22:56:08 +00004677 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerec78cad2006-06-26 22:48:35 +00004678 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerb7552a82006-05-17 00:15:40 +00004679 // prereserved space for [SP][CR][LR][3 x unused].
Ulrich Weigand8658f172014-07-20 23:43:15 +00004680 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true,
4681 false);
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004682 unsigned NumBytes = LinkageSize;
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004683
4684 // Add up all the space actually used.
4685 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
4686 // they all go in registers, but we must reserve stack space for them for
4687 // possible use by the caller. In varargs or 64-bit calls, parameters are
4688 // assigned stack space in order, with padding so Altivec parameters are
4689 // 16-byte aligned.
4690 unsigned nAltivecParamsAtEnd = 0;
4691 for (unsigned i = 0; i != NumOps; ++i) {
4692 ISD::ArgFlagsTy Flags = Outs[i].Flags;
4693 EVT ArgVT = Outs[i].VT;
4694 // Varargs Altivec parameters are padded to a 16 byte boundary.
4695 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
4696 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
4697 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) {
4698 if (!isVarArg && !isPPC64) {
4699 // Non-varargs Altivec parameters go after all the non-Altivec
4700 // parameters; handle those later so we know how much padding we need.
4701 nAltivecParamsAtEnd++;
4702 continue;
4703 }
4704 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
4705 NumBytes = ((NumBytes+15)/16)*16;
4706 }
4707 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
4708 }
4709
4710 // Allow for Altivec parameters at the end, if needed.
4711 if (nAltivecParamsAtEnd) {
4712 NumBytes = ((NumBytes+15)/16)*16;
4713 NumBytes += 16*nAltivecParamsAtEnd;
4714 }
4715
4716 // The prolog code of the callee may store up to 8 GPR argument registers to
4717 // the stack, allowing va_start to index over them in memory if its varargs.
4718 // Because we cannot tell if this is needed on the caller side, we have to
4719 // conservatively assume that it is needed. As such, make sure we have at
4720 // least enough stack space for the caller to store the 8 GPRs.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004721 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
Ulrich Weigand2bffb952014-06-23 13:08:27 +00004722
4723 // Tail call needs the stack to be aligned.
4724 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4725 CallConv == CallingConv::Fast)
4726 NumBytes = EnsureStackAlignment(MF.getTarget(), NumBytes);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004727
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004728 // Calculate by how many bytes the stack has to be adjusted in case of tail
4729 // call optimization.
4730 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004731
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004732 // To protect arguments on the stack from being clobbered in a tail call,
4733 // force all the loads to happen before doing any other lowering.
4734 if (isTailCall)
4735 Chain = DAG.getStackArgumentTokenFactor(Chain);
4736
Chris Lattnerb7552a82006-05-17 00:15:40 +00004737 // Adjust the stack pointer for the new arguments...
4738 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004739 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4740 dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004741 SDValue CallSeqStart = Chain;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004742
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004743 // Load the return address and frame pointer so it can be move somewhere else
4744 // later.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004745 SDValue LROp, FPOp;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004746 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4747 dl);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004748
Chris Lattnerb7552a82006-05-17 00:15:40 +00004749 // Set up a copy of the stack pointer for use loading and storing any
4750 // arguments that may not fit in the registers available for argument
4751 // passing.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004752 SDValue StackPtr;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004753 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00004754 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004755 else
Owen Anderson9f944592009-08-11 20:47:22 +00004756 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004757
Chris Lattnerb7552a82006-05-17 00:15:40 +00004758 // Figure out which arguments are going to go in registers, and which in
4759 // memory. Also, if this is a vararg function, floating point operations
4760 // must be stored to our stack, and loaded into integer regs as well, if
4761 // any integer regs are available for argument passing.
Ulrich Weigand8ca988f2014-06-23 14:15:53 +00004762 unsigned ArgOffset = LinkageSize;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004763 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004764
Craig Topper840beec2014-04-04 05:16:06 +00004765 static const MCPhysReg GPR_32[] = { // 32-bit registers.
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004766 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4767 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4768 };
Craig Topper840beec2014-04-04 05:16:06 +00004769 static const MCPhysReg GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00004770 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4771 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4772 };
Craig Topper840beec2014-04-04 05:16:06 +00004773 static const MCPhysReg *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004774
Craig Topper840beec2014-04-04 05:16:06 +00004775 static const MCPhysReg VR[] = {
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004776 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4777 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4778 };
Owen Andersone2f23a32007-09-07 04:06:50 +00004779 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004780 const unsigned NumFPRs = 13;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00004781 const unsigned NumVRs = array_lengthof(VR);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004782
Craig Topper840beec2014-04-04 05:16:06 +00004783 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004784
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004785 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004786 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4787
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004788 SmallVector<SDValue, 8> MemOpChains;
Evan Chengc2cd4732006-05-25 00:57:32 +00004789 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004790 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004791 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004792
Chris Lattnerb7552a82006-05-17 00:15:40 +00004793 // PtrOff will be used to store the current argument to the stack if a
4794 // register cannot be found for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004795 SDValue PtrOff;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004796
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004797 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004798
Dale Johannesen679073b2009-02-04 02:34:38 +00004799 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004800
4801 // On PPC64, promote integers to 64-bit values.
Owen Anderson9f944592009-08-11 20:47:22 +00004802 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sandsd97eea32008-03-21 09:14:45 +00004803 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4804 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson9f944592009-08-11 20:47:22 +00004805 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004806 }
Dale Johannesen85d41a12008-03-04 23:17:14 +00004807
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004808 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004809 // Note: "by value" is code for passing a structure by value, not
4810 // basic types.
Duncan Sandsd97eea32008-03-21 09:14:45 +00004811 if (Flags.isByVal()) {
4812 unsigned Size = Flags.getByValSize();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004813 // Very small objects are passed right-justified. Everything else is
4814 // passed left-justified.
4815 if (Size==1 || Size==2) {
4816 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004817 if (GPR_idx != NumGPRs) {
Stuart Hastings81c43062011-02-16 16:23:55 +00004818 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d178ed2010-09-21 17:04:51 +00004819 MachinePointerInfo(), VT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00004820 false, false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004821 MemOpChains.push_back(Load.getValue(1));
4822 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004823
4824 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004825 } else {
Bill Schmidt48081ca2012-10-16 13:30:53 +00004826 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4827 PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004828 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004829 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4830 CallSeqStart,
4831 Flags, DAG, dl);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004832 ArgOffset += PtrByteSize;
4833 }
4834 continue;
4835 }
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00004836 // Copy entire object into memory. There are cases where gcc-generated
4837 // code assumes it is there, even if it could be put entirely into
4838 // registers. (This is not what the doc says.)
Bill Schmidt57d6de52012-10-23 15:51:16 +00004839 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4840 CallSeqStart,
4841 Flags, DAG, dl);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004842
4843 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
4844 // copy the pieces of the object that fit into registers from the
4845 // parameter save area.
Dale Johannesen85d41a12008-03-04 23:17:14 +00004846 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004847 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004848 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen85d41a12008-03-04 23:17:14 +00004849 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00004850 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4851 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004852 false, false, false, 0);
Dale Johannesen0d235052008-03-05 23:31:27 +00004853 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen85d41a12008-03-04 23:17:14 +00004854 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004855 ArgOffset += PtrByteSize;
Dale Johannesen85d41a12008-03-04 23:17:14 +00004856 } else {
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00004857 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004858 break;
Dale Johannesen85d41a12008-03-04 23:17:14 +00004859 }
4860 }
4861 continue;
4862 }
4863
Craig Topper56710102013-08-15 02:33:50 +00004864 switch (Arg.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00004865 default: llvm_unreachable("Unexpected ValueType for argument!");
Hal Finkel5cae2162014-02-28 01:17:25 +00004866 case MVT::i1:
Owen Anderson9f944592009-08-11 20:47:22 +00004867 case MVT::i32:
4868 case MVT::i64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004869 if (GPR_idx != NumGPRs) {
Hal Finkel7f908e82014-03-06 00:45:19 +00004870 if (Arg.getValueType() == MVT::i1)
4871 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg);
4872
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004873 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerb7552a82006-05-17 00:15:40 +00004874 } else {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004875 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4876 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004877 TailCallArguments, dl);
Chris Lattnerb7552a82006-05-17 00:15:40 +00004878 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004879 ArgOffset += PtrByteSize;
Chris Lattnerb7552a82006-05-17 00:15:40 +00004880 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004881 case MVT::f32:
4882 case MVT::f64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004883 if (FPR_idx != NumFPRs) {
4884 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4885
Chris Lattnerb7552a82006-05-17 00:15:40 +00004886 if (isVarArg) {
Chris Lattner676c61d2010-09-21 18:41:36 +00004887 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4888 MachinePointerInfo(), false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004889 MemOpChains.push_back(Store);
4890
Chris Lattnerb7552a82006-05-17 00:15:40 +00004891 // Float varargs are always shadowed in available integer registers
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004892 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00004893 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004894 MachinePointerInfo(), false, false,
4895 false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004896 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004897 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerb7552a82006-05-17 00:15:40 +00004898 }
Owen Anderson9f944592009-08-11 20:47:22 +00004899 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004900 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004901 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattner7727d052010-09-21 06:44:06 +00004902 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4903 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004904 false, false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004905 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004906 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattneraa40ec12006-05-16 22:56:08 +00004907 }
4908 } else {
Chris Lattnerb7552a82006-05-17 00:15:40 +00004909 // If we have any FPRs remaining, we may also have GPRs remaining.
4910 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
4911 // GPRs.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004912 if (GPR_idx != NumGPRs)
4913 ++GPR_idx;
Owen Anderson9f944592009-08-11 20:47:22 +00004914 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004915 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
4916 ++GPR_idx;
Chris Lattneraa40ec12006-05-16 22:56:08 +00004917 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004918 } else
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004919 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4920 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004921 TailCallArguments, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004922 if (isPPC64)
4923 ArgOffset += 8;
4924 else
Owen Anderson9f944592009-08-11 20:47:22 +00004925 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerb7552a82006-05-17 00:15:40 +00004926 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004927 case MVT::v4f32:
4928 case MVT::v4i32:
4929 case MVT::v8i16:
4930 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00004931 if (isVarArg) {
4932 // These go aligned on the stack, or in the corresponding R registers
Scott Michelcf0da6c2009-02-17 22:15:04 +00004933 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesenb28456e2008-03-12 00:22:17 +00004934 // V registers; in fact gcc does this only for arguments that are
4935 // prototyped, not for those that match the ... We do it for all
4936 // arguments, seems to work.
4937 while (ArgOffset % 16 !=0) {
4938 ArgOffset += PtrByteSize;
4939 if (GPR_idx != NumGPRs)
4940 GPR_idx++;
4941 }
4942 // We could elide this store in the case where the object fits
4943 // entirely in R registers. Maybe later.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004944 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesenb28456e2008-03-12 00:22:17 +00004945 DAG.getConstant(ArgOffset, PtrVT));
Chris Lattner676c61d2010-09-21 18:41:36 +00004946 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4947 MachinePointerInfo(), false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004948 MemOpChains.push_back(Store);
4949 if (VR_idx != NumVRs) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004950 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattner7727d052010-09-21 06:44:06 +00004951 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004952 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004953 MemOpChains.push_back(Load.getValue(1));
4954 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4955 }
4956 ArgOffset += 16;
4957 for (unsigned i=0; i<16; i+=PtrByteSize) {
4958 if (GPR_idx == NumGPRs)
4959 break;
Dale Johannesen679073b2009-02-04 02:34:38 +00004960 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesenb28456e2008-03-12 00:22:17 +00004961 DAG.getConstant(i, PtrVT));
Chris Lattner7727d052010-09-21 06:44:06 +00004962 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004963 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004964 MemOpChains.push_back(Load.getValue(1));
4965 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4966 }
4967 break;
4968 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004969
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004970 // Non-varargs Altivec params generally go in registers, but have
4971 // stack space allocated at the end.
4972 if (VR_idx != NumVRs) {
4973 // Doesn't have GPR space allocated.
4974 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4975 } else if (nAltivecParamsAtEnd==0) {
4976 // We are emitting Altivec params in order.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004977 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4978 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004979 TailCallArguments, dl);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004980 ArgOffset += 16;
Dale Johannesenb28456e2008-03-12 00:22:17 +00004981 }
Chris Lattnerb7552a82006-05-17 00:15:40 +00004982 break;
Chris Lattneraa40ec12006-05-16 22:56:08 +00004983 }
Chris Lattneraa40ec12006-05-16 22:56:08 +00004984 }
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004985 // If all Altivec parameters fit in registers, as they usually do,
4986 // they get stack space following the non-Altivec parameters. We
4987 // don't track this here because nobody below needs it.
4988 // If there are more Altivec parameters than fit in registers emit
4989 // the stores here.
4990 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
4991 unsigned j = 0;
4992 // Offset is aligned; skip 1st 12 params which go in V registers.
4993 ArgOffset = ((ArgOffset+15)/16)*16;
4994 ArgOffset += 12*16;
4995 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004996 SDValue Arg = OutVals[i];
4997 EVT ArgType = Outs[i].VT;
Owen Anderson9f944592009-08-11 20:47:22 +00004998 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
4999 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005000 if (++j > NumVRs) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005001 SDValue PtrOff;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005002 // We are emitting Altivec params in order.
5003 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5004 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00005005 TailCallArguments, dl);
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00005006 ArgOffset += 16;
5007 }
5008 }
5009 }
5010 }
5011
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005012 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00005013 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005014
Dale Johannesen90eab672010-03-09 20:15:42 +00005015 // On Darwin, R12 must contain the address of an indirect callee. This does
5016 // not mean the MTCTR instruction must use R12; it's easier to model this as
5017 // an extra parameter, so do that.
Wesley Peck527da1b2010-11-23 03:31:01 +00005018 if (!isTailCall &&
Dale Johannesen90eab672010-03-09 20:15:42 +00005019 !dyn_cast<GlobalAddressSDNode>(Callee) &&
5020 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
5021 !isBLACompatibleAddress(Callee, DAG))
5022 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
5023 PPC::R12), Callee));
5024
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005025 // Build a sequence of copy-to-reg nodes chained together with token chain
5026 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005027 SDValue InFlag;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005028 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00005029 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen679073b2009-02-04 02:34:38 +00005030 RegsToPass[i].second, InFlag);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00005031 InFlag = Chain.getValue(1);
5032 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005033
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00005034 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005035 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
5036 FPOp, true, TailCallArguments);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005037
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005038 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
5039 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
5040 Ins, InVals);
Chris Lattneraa40ec12006-05-16 22:56:08 +00005041}
5042
Hal Finkel450128a2011-10-14 19:51:36 +00005043bool
5044PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
5045 MachineFunction &MF, bool isVarArg,
5046 const SmallVectorImpl<ISD::OutputArg> &Outs,
5047 LLVMContext &Context) const {
5048 SmallVector<CCValAssign, 16> RVLocs;
5049 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
5050 RVLocs, Context);
5051 return CCInfo.CheckReturn(Outs, RetCC_PPC);
5052}
5053
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005054SDValue
5055PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00005056 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005057 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00005058 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005059 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005060
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005061 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00005062 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00005063 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00005064 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005065
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005066 SDValue Flag;
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005067 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005068
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005069 // Copy the result values into the output registers.
5070 for (unsigned i = 0; i != RVLocs.size(); ++i) {
5071 CCValAssign &VA = RVLocs[i];
5072 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00005073
5074 SDValue Arg = OutVals[i];
5075
5076 switch (VA.getLocInfo()) {
5077 default: llvm_unreachable("Unknown loc info!");
5078 case CCValAssign::Full: break;
5079 case CCValAssign::AExt:
5080 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
5081 break;
5082 case CCValAssign::ZExt:
5083 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
5084 break;
5085 case CCValAssign::SExt:
5086 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
5087 break;
5088 }
5089
5090 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005091 Flag = Chain.getValue(1);
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005092 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner4f2e4e02007-03-06 00:59:59 +00005093 }
5094
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005095 RetOps[0] = Chain; // Update chain.
5096
5097 // Add the flag if we have it.
Gabor Greiff304a7a2008-08-28 21:40:38 +00005098 if (Flag.getNode())
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00005099 RetOps.push_back(Flag);
5100
Craig Topper48d114b2014-04-26 18:35:24 +00005101 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps);
Chris Lattner4211ca92006-04-14 06:01:58 +00005102}
5103
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005104SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005105 const PPCSubtarget &Subtarget) const {
Jim Laskeye4f4d042006-12-04 22:04:42 +00005106 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005107 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005108
Jim Laskeye4f4d042006-12-04 22:04:42 +00005109 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005110 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeye4f4d042006-12-04 22:04:42 +00005111
5112 // Construct the stack pointer operand.
Dale Johannesen86dcae12009-11-24 01:09:07 +00005113 bool isPPC64 = Subtarget.isPPC64();
5114 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005115 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeye4f4d042006-12-04 22:04:42 +00005116
5117 // Get the operands for the STACKRESTORE.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005118 SDValue Chain = Op.getOperand(0);
5119 SDValue SaveSP = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005120
Jim Laskeye4f4d042006-12-04 22:04:42 +00005121 // Load the old link SP.
Chris Lattner7727d052010-09-21 06:44:06 +00005122 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
5123 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005124 false, false, false, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005125
Jim Laskeye4f4d042006-12-04 22:04:42 +00005126 // Restore the stack pointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00005127 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005128
Jim Laskeye4f4d042006-12-04 22:04:42 +00005129 // Store the old link SP.
Chris Lattner676c61d2010-09-21 18:41:36 +00005130 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00005131 false, false, 0);
Jim Laskeye4f4d042006-12-04 22:04:42 +00005132}
5133
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005134
5135
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005136SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005137PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey48850c12006-11-16 22:43:37 +00005138 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005139 bool isPPC64 = Subtarget.isPPC64();
5140 bool isDarwinABI = Subtarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005141 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005142
5143 // Get current frame pointer save index. The users of this index will be
5144 // primarily DYNALLOC instructions.
5145 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5146 int RASI = FI->getReturnAddrSaveIndex();
5147
5148 // If the frame pointer save index hasn't been defined yet.
5149 if (!RASI) {
5150 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00005151 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005152 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00005153 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, true);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005154 // Save the result.
5155 FI->setReturnAddrSaveIndex(RASI);
5156 }
5157 return DAG.getFrameIndex(RASI, PtrVT);
5158}
5159
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005160SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005161PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
5162 MachineFunction &MF = DAG.getMachineFunction();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005163 bool isPPC64 = Subtarget.isPPC64();
5164 bool isDarwinABI = Subtarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005165 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00005166
5167 // Get current frame pointer save index. The users of this index will be
5168 // primarily DYNALLOC instructions.
5169 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5170 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005171
Jim Laskey48850c12006-11-16 22:43:37 +00005172 // If the frame pointer save index hasn't been defined yet.
5173 if (!FPSI) {
5174 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00005175 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00005176 isDarwinABI);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005177
Jim Laskey48850c12006-11-16 22:43:37 +00005178 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00005179 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey48850c12006-11-16 22:43:37 +00005180 // Save the result.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005181 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey48850c12006-11-16 22:43:37 +00005182 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005183 return DAG.getFrameIndex(FPSI, PtrVT);
5184}
Jim Laskey48850c12006-11-16 22:43:37 +00005185
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005186SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00005187 SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005188 const PPCSubtarget &Subtarget) const {
Jim Laskey48850c12006-11-16 22:43:37 +00005189 // Get the inputs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005190 SDValue Chain = Op.getOperand(0);
5191 SDValue Size = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005192 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005193
Jim Laskey48850c12006-11-16 22:43:37 +00005194 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005195 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00005196 // Negate the size.
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005197 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey48850c12006-11-16 22:43:37 +00005198 DAG.getConstant(0, PtrVT), Size);
5199 // Construct a node for the frame pointer save index.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005200 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey48850c12006-11-16 22:43:37 +00005201 // Build a DYNALLOC node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005202 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson9f944592009-08-11 20:47:22 +00005203 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Craig Topper48d114b2014-04-26 18:35:24 +00005204 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops);
Jim Laskey48850c12006-11-16 22:43:37 +00005205}
5206
Hal Finkel756810f2013-03-21 21:37:52 +00005207SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
5208 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005209 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00005210 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
5211 DAG.getVTList(MVT::i32, MVT::Other),
5212 Op.getOperand(0), Op.getOperand(1));
5213}
5214
5215SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
5216 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005217 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00005218 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
5219 Op.getOperand(0), Op.getOperand(1));
5220}
5221
Hal Finkel940ab932014-02-28 00:27:01 +00005222SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
5223 assert(Op.getValueType() == MVT::i1 &&
5224 "Custom lowering only for i1 loads");
5225
5226 // First, load 8 bits into 32 bits, then truncate to 1 bit.
5227
5228 SDLoc dl(Op);
5229 LoadSDNode *LD = cast<LoadSDNode>(Op);
5230
5231 SDValue Chain = LD->getChain();
5232 SDValue BasePtr = LD->getBasePtr();
5233 MachineMemOperand *MMO = LD->getMemOperand();
5234
5235 SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(), Chain,
5236 BasePtr, MVT::i8, MMO);
5237 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD);
5238
5239 SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) };
Craig Topper64941d92014-04-27 19:20:57 +00005240 return DAG.getMergeValues(Ops, dl);
Hal Finkel940ab932014-02-28 00:27:01 +00005241}
5242
5243SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
5244 assert(Op.getOperand(1).getValueType() == MVT::i1 &&
5245 "Custom lowering only for i1 stores");
5246
5247 // First, zero extend to 32 bits, then use a truncating store to 8 bits.
5248
5249 SDLoc dl(Op);
5250 StoreSDNode *ST = cast<StoreSDNode>(Op);
5251
5252 SDValue Chain = ST->getChain();
5253 SDValue BasePtr = ST->getBasePtr();
5254 SDValue Value = ST->getValue();
5255 MachineMemOperand *MMO = ST->getMemOperand();
5256
5257 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(), Value);
5258 return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO);
5259}
5260
5261// FIXME: Remove this once the ANDI glue bug is fixed:
5262SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
5263 assert(Op.getValueType() == MVT::i1 &&
5264 "Custom lowering only for i1 results");
5265
5266 SDLoc DL(Op);
5267 return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1,
5268 Op.getOperand(0));
5269}
5270
Chris Lattner4211ca92006-04-14 06:01:58 +00005271/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
5272/// possible.
Dan Gohman21cea8a2010-04-17 15:26:15 +00005273SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00005274 // Not FP? Not a fsel.
Duncan Sands13237ac2008-06-06 12:08:01 +00005275 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
5276 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedman5806e182009-05-28 04:31:08 +00005277 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005278
Hal Finkel81f87992013-04-07 22:11:09 +00005279 // We might be able to do better than this under some circumstances, but in
5280 // general, fsel-based lowering of select is a finite-math-only optimization.
5281 // For more information, see section F.3 of the 2.06 ISA specification.
5282 if (!DAG.getTarget().Options.NoInfsFPMath ||
5283 !DAG.getTarget().Options.NoNaNsFPMath)
5284 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005285
Hal Finkel81f87992013-04-07 22:11:09 +00005286 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005287
Owen Anderson53aa7a92009-08-10 22:56:29 +00005288 EVT ResVT = Op.getValueType();
5289 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005290 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
5291 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005292 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005293
Chris Lattner4211ca92006-04-14 06:01:58 +00005294 // If the RHS of the comparison is a 0.0, we don't need to do the
5295 // subtraction at all.
Hal Finkel81f87992013-04-07 22:11:09 +00005296 SDValue Sel1;
Chris Lattner4211ca92006-04-14 06:01:58 +00005297 if (isFloatingPointZero(RHS))
5298 switch (CC) {
5299 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00005300 case ISD::SETNE:
5301 std::swap(TV, FV);
5302 case ISD::SETEQ:
5303 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5304 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5305 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
5306 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
5307 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5308 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5309 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005310 case ISD::SETULT:
5311 case ISD::SETLT:
5312 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005313 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005314 case ISD::SETGE:
Owen Anderson9f944592009-08-11 20:47:22 +00005315 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5316 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005317 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005318 case ISD::SETUGT:
5319 case ISD::SETGT:
5320 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005321 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005322 case ISD::SETLE:
Owen Anderson9f944592009-08-11 20:47:22 +00005323 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
5324 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005325 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005326 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005327 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005328
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005329 SDValue Cmp;
Chris Lattner4211ca92006-04-14 06:01:58 +00005330 switch (CC) {
5331 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00005332 case ISD::SETNE:
5333 std::swap(TV, FV);
5334 case ISD::SETEQ:
5335 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
5336 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5337 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5338 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
5339 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
5340 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5341 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5342 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005343 case ISD::SETULT:
5344 case ISD::SETLT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005345 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005346 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5347 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005348 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005349 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005350 case ISD::SETGE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005351 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005352 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5353 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005354 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005355 case ISD::SETUGT:
5356 case ISD::SETGT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005357 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005358 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5359 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005360 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00005361 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00005362 case ISD::SETLE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00005363 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005364 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
5365 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00005366 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00005367 }
Eli Friedman5806e182009-05-28 04:31:08 +00005368 return Op;
Chris Lattner4211ca92006-04-14 06:01:58 +00005369}
5370
Chris Lattner57ee7c62007-11-28 18:44:47 +00005371// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen37bc85f2009-06-04 20:53:52 +00005372SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005373 SDLoc dl) const {
Duncan Sands13237ac2008-06-06 12:08:01 +00005374 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005375 SDValue Src = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00005376 if (Src.getValueType() == MVT::f32)
5377 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sands2a287912008-07-19 16:26:02 +00005378
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005379 SDValue Tmp;
Craig Topper56710102013-08-15 02:33:50 +00005380 switch (Op.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005381 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson9f944592009-08-11 20:47:22 +00005382 case MVT::i32:
Dale Johannesen37bc85f2009-06-04 20:53:52 +00005383 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ :
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005384 (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ :
Hal Finkelf6d45f22013-04-01 17:52:07 +00005385 PPCISD::FCTIDZ),
Owen Anderson9f944592009-08-11 20:47:22 +00005386 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00005387 break;
Owen Anderson9f944592009-08-11 20:47:22 +00005388 case MVT::i64:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005389 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
Hal Finkel3f88d082013-04-01 18:42:58 +00005390 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkelf6d45f22013-04-01 17:52:07 +00005391 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
5392 PPCISD::FCTIDUZ,
5393 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00005394 break;
5395 }
Duncan Sands2a287912008-07-19 16:26:02 +00005396
Chris Lattner4211ca92006-04-14 06:01:58 +00005397 // Convert the FP value to an int value through memory.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005398 bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() &&
5399 (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT());
Hal Finkelf6d45f22013-04-01 17:52:07 +00005400 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
5401 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
5402 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
Duncan Sands2a287912008-07-19 16:26:02 +00005403
Chris Lattner06a49542007-10-15 20:14:52 +00005404 // Emit a store to the stack slot.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005405 SDValue Chain;
5406 if (i32Stack) {
5407 MachineFunction &MF = DAG.getMachineFunction();
5408 MachineMemOperand *MMO =
5409 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
5410 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
5411 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +00005412 DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO);
Hal Finkelf6d45f22013-04-01 17:52:07 +00005413 } else
5414 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
5415 MPI, false, false, 0);
Chris Lattner06a49542007-10-15 20:14:52 +00005416
5417 // Result is a load from the stack slot. If loading 4 bytes, make sure to
5418 // add in a bias.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005419 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen021052a2009-02-04 20:06:27 +00005420 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner06a49542007-10-15 20:14:52 +00005421 DAG.getConstant(4, FIPtr.getValueType()));
Hal Finkelf6d45f22013-04-01 17:52:07 +00005422 MPI = MachinePointerInfo();
5423 }
5424
5425 return DAG.getLoad(Op.getValueType(), dl, Chain, FIPtr, MPI,
Pete Cooper82cd9e82011-11-08 18:42:53 +00005426 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00005427}
5428
Hal Finkelf6d45f22013-04-01 17:52:07 +00005429SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005430 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005431 SDLoc dl(Op);
Dan Gohmand6819da2008-03-11 01:59:03 +00005432 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson9f944592009-08-11 20:47:22 +00005433 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005434 return SDValue();
Dan Gohmand6819da2008-03-11 01:59:03 +00005435
Hal Finkel6a56b212014-03-05 22:14:00 +00005436 if (Op.getOperand(0).getValueType() == MVT::i1)
5437 return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0),
5438 DAG.getConstantFP(1.0, Op.getValueType()),
5439 DAG.getConstantFP(0.0, Op.getValueType()));
5440
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005441 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005442 "UINT_TO_FP is supported only with FPCVT");
5443
5444 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel93d75ea2013-04-02 03:29:51 +00005445 // Otherwise, convert to double-precision and then round.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005446 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
Hal Finkelf6d45f22013-04-01 17:52:07 +00005447 (Op.getOpcode() == ISD::UINT_TO_FP ?
5448 PPCISD::FCFIDUS : PPCISD::FCFIDS) :
5449 (Op.getOpcode() == ISD::UINT_TO_FP ?
5450 PPCISD::FCFIDU : PPCISD::FCFID);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005451 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
Hal Finkelf6d45f22013-04-01 17:52:07 +00005452 MVT::f32 : MVT::f64;
5453
Owen Anderson9f944592009-08-11 20:47:22 +00005454 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00005455 SDValue SINT = Op.getOperand(0);
5456 // When converting to single-precision, we actually need to convert
5457 // to double-precision first and then round to single-precision.
5458 // To avoid double-rounding effects during that operation, we have
5459 // to prepare the input operand. Bits that might be truncated when
5460 // converting to double-precision are replaced by a bit that won't
5461 // be lost at this stage, but is below the single-precision rounding
5462 // position.
5463 //
5464 // However, if -enable-unsafe-fp-math is in effect, accept double
5465 // rounding to avoid the extra overhead.
5466 if (Op.getValueType() == MVT::f32 &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005467 !Subtarget.hasFPCVT() &&
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00005468 !DAG.getTarget().Options.UnsafeFPMath) {
5469
5470 // Twiddle input to make sure the low 11 bits are zero. (If this
5471 // is the case, we are guaranteed the value will fit into the 53 bit
5472 // mantissa of an IEEE double-precision value without rounding.)
5473 // If any of those low 11 bits were not zero originally, make sure
5474 // bit 12 (value 2048) is set instead, so that the final rounding
5475 // to single-precision gets the correct result.
5476 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5477 SINT, DAG.getConstant(2047, MVT::i64));
5478 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
5479 Round, DAG.getConstant(2047, MVT::i64));
5480 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
5481 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5482 Round, DAG.getConstant(-2048, MVT::i64));
5483
5484 // However, we cannot use that value unconditionally: if the magnitude
5485 // of the input value is small, the bit-twiddling we did above might
5486 // end up visibly changing the output. Fortunately, in that case, we
5487 // don't need to twiddle bits since the original input will convert
5488 // exactly to double-precision floating-point already. Therefore,
5489 // construct a conditional to use the original value if the top 11
5490 // bits are all sign-bit copies, and use the rounded value computed
5491 // above otherwise.
5492 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
5493 SINT, DAG.getConstant(53, MVT::i32));
5494 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
5495 Cond, DAG.getConstant(1, MVT::i64));
5496 Cond = DAG.getSetCC(dl, MVT::i32,
5497 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
5498
5499 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
5500 }
Hal Finkelf6d45f22013-04-01 17:52:07 +00005501
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00005502 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
Hal Finkelf6d45f22013-04-01 17:52:07 +00005503 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
5504
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005505 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Scott Michelcf0da6c2009-02-17 22:15:04 +00005506 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005507 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00005508 return FP;
5509 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005510
Owen Anderson9f944592009-08-11 20:47:22 +00005511 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005512 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner4211ca92006-04-14 06:01:58 +00005513 // Since we only generate this in 64-bit mode, we can take advantage of
5514 // 64-bit registers. In particular, sign extend the input value into the
5515 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
5516 // then lfd it and fcfid it.
Dan Gohman48b185d2009-09-25 20:36:54 +00005517 MachineFunction &MF = DAG.getMachineFunction();
5518 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005519 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005520
Hal Finkelbeb296b2013-03-31 10:12:51 +00005521 SDValue Ld;
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005522 if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) {
Hal Finkelbeb296b2013-03-31 10:12:51 +00005523 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
5524 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005525
Hal Finkelbeb296b2013-03-31 10:12:51 +00005526 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
5527 MachinePointerInfo::getFixedStack(FrameIdx),
5528 false, false, 0);
Hal Finkele53429a2013-03-31 01:58:02 +00005529
Hal Finkelbeb296b2013-03-31 10:12:51 +00005530 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
5531 "Expected an i32 store");
5532 MachineMemOperand *MMO =
5533 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
5534 MachineMemOperand::MOLoad, 4, 4);
5535 SDValue Ops[] = { Store, FIdx };
Hal Finkelf6d45f22013-04-01 17:52:07 +00005536 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
5537 PPCISD::LFIWZX : PPCISD::LFIWAX,
5538 dl, DAG.getVTList(MVT::f64, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00005539 Ops, MVT::i32, MMO);
Hal Finkelbeb296b2013-03-31 10:12:51 +00005540 } else {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005541 assert(Subtarget.isPPC64() &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00005542 "i32->FP without LFIWAX supported only on PPC64");
5543
Hal Finkelbeb296b2013-03-31 10:12:51 +00005544 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
5545 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5546
5547 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
5548 Op.getOperand(0));
5549
5550 // STD the extended value into the stack slot.
5551 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
5552 MachinePointerInfo::getFixedStack(FrameIdx),
5553 false, false, 0);
5554
5555 // Load the value as a double.
5556 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
5557 MachinePointerInfo::getFixedStack(FrameIdx),
5558 false, false, false, 0);
5559 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005560
Chris Lattner4211ca92006-04-14 06:01:58 +00005561 // FCFID it and return it.
Hal Finkelf6d45f22013-04-01 17:52:07 +00005562 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005563 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
Owen Anderson9f944592009-08-11 20:47:22 +00005564 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00005565 return FP;
5566}
5567
Dan Gohman21cea8a2010-04-17 15:26:15 +00005568SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
5569 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005570 SDLoc dl(Op);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005571 /*
5572 The rounding mode is in bits 30:31 of FPSR, and has the following
5573 settings:
5574 00 Round to nearest
5575 01 Round to 0
5576 10 Round to +inf
5577 11 Round to -inf
5578
5579 FLT_ROUNDS, on the other hand, expects the following:
5580 -1 Undefined
5581 0 Round to 0
5582 1 Round to nearest
5583 2 Round to +inf
5584 3 Round to -inf
5585
5586 To perform the conversion, we do:
5587 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
5588 */
5589
5590 MachineFunction &MF = DAG.getMachineFunction();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005591 EVT VT = Op.getValueType();
5592 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005593
5594 // Save FP Control Word to register
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005595 EVT NodeTys[] = {
5596 MVT::f64, // return register
5597 MVT::Glue // unused in this context
5598 };
Craig Topper2d2aa0c2014-04-30 07:17:30 +00005599 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005600
5601 // Save FP register to stack slot
David Greene1fbe0542009-11-12 20:49:22 +00005602 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005603 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005604 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner676c61d2010-09-21 18:41:36 +00005605 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005606
5607 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005608 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005609 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattner7727d052010-09-21 06:44:06 +00005610 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005611 false, false, false, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005612
5613 // Transform as necessary
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005614 SDValue CWD1 =
Owen Anderson9f944592009-08-11 20:47:22 +00005615 DAG.getNode(ISD::AND, dl, MVT::i32,
5616 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005617 SDValue CWD2 =
Owen Anderson9f944592009-08-11 20:47:22 +00005618 DAG.getNode(ISD::SRL, dl, MVT::i32,
5619 DAG.getNode(ISD::AND, dl, MVT::i32,
5620 DAG.getNode(ISD::XOR, dl, MVT::i32,
5621 CWD, DAG.getConstant(3, MVT::i32)),
5622 DAG.getConstant(3, MVT::i32)),
5623 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005624
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005625 SDValue RetVal =
Owen Anderson9f944592009-08-11 20:47:22 +00005626 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005627
Duncan Sands13237ac2008-06-06 12:08:01 +00005628 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen021052a2009-02-04 20:06:27 +00005629 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005630}
5631
Dan Gohman21cea8a2010-04-17 15:26:15 +00005632SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005633 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005634 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005635 SDLoc dl(Op);
Dan Gohman8d2ead22008-03-07 20:36:53 +00005636 assert(Op.getNumOperands() == 3 &&
5637 VT == Op.getOperand(1).getValueType() &&
5638 "Unexpected SHL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005639
Chris Lattner601b8652006-09-20 03:47:40 +00005640 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005641 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005642 SDValue Lo = Op.getOperand(0);
5643 SDValue Hi = Op.getOperand(1);
5644 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005645 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005646
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005647 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005648 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005649 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
5650 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
5651 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
5652 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005653 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005654 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
5655 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5656 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005657 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00005658 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005659}
5660
Dan Gohman21cea8a2010-04-17 15:26:15 +00005661SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005662 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005663 SDLoc dl(Op);
Duncan Sands13237ac2008-06-06 12:08:01 +00005664 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00005665 assert(Op.getNumOperands() == 3 &&
5666 VT == Op.getOperand(1).getValueType() &&
5667 "Unexpected SRL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005668
Dan Gohman8d2ead22008-03-07 20:36:53 +00005669 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005670 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005671 SDValue Lo = Op.getOperand(0);
5672 SDValue Hi = Op.getOperand(1);
5673 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005674 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005675
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005676 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005677 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005678 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5679 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5680 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5681 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005682 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005683 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
5684 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5685 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005686 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00005687 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005688}
5689
Dan Gohman21cea8a2010-04-17 15:26:15 +00005690SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005691 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005692 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005693 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00005694 assert(Op.getNumOperands() == 3 &&
5695 VT == Op.getOperand(1).getValueType() &&
5696 "Unexpected SRA!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005697
Dan Gohman8d2ead22008-03-07 20:36:53 +00005698 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005699 SDValue Lo = Op.getOperand(0);
5700 SDValue Hi = Op.getOperand(1);
5701 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005702 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005703
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005704 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005705 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005706 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5707 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5708 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5709 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005710 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005711 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
5712 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
5713 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands13105742008-10-30 19:28:32 +00005714 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005715 SDValue OutOps[] = { OutLo, OutHi };
Craig Topper64941d92014-04-27 19:20:57 +00005716 return DAG.getMergeValues(OutOps, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005717}
5718
5719//===----------------------------------------------------------------------===//
5720// Vector related lowering.
5721//
5722
Chris Lattner2a099c02006-04-17 06:00:21 +00005723/// BuildSplatI - Build a canonical splati of Val with an element size of
5724/// SplatSize. Cast the result to VT.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005725static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005726 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner2a099c02006-04-17 06:00:21 +00005727 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005728
Owen Anderson53aa7a92009-08-10 22:56:29 +00005729 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson9f944592009-08-11 20:47:22 +00005730 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner2a099c02006-04-17 06:00:21 +00005731 };
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005732
Owen Anderson9f944592009-08-11 20:47:22 +00005733 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005734
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005735 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
5736 if (Val == -1)
5737 SplatSize = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005738
Owen Anderson53aa7a92009-08-10 22:56:29 +00005739 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005740
Chris Lattner2a099c02006-04-17 06:00:21 +00005741 // Build a canonical splat for this value.
Owen Anderson9f944592009-08-11 20:47:22 +00005742 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005743 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00005744 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Craig Topper48d114b2014-04-26 18:35:24 +00005745 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00005746 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00005747}
5748
Hal Finkelcf2e9082013-05-24 23:00:14 +00005749/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
5750/// specified intrinsic ID.
5751static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005752 SelectionDAG &DAG, SDLoc dl,
Hal Finkelcf2e9082013-05-24 23:00:14 +00005753 EVT DestVT = MVT::Other) {
5754 if (DestVT == MVT::Other) DestVT = Op.getValueType();
5755 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
5756 DAG.getConstant(IID, MVT::i32), Op);
5757}
5758
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005759/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner1b3806a2006-04-17 06:58:41 +00005760/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005761static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005762 SelectionDAG &DAG, SDLoc dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005763 EVT DestVT = MVT::Other) {
5764 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005765 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005766 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005767}
5768
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005769/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
5770/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005771static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005772 SDValue Op2, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005773 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson9f944592009-08-11 20:47:22 +00005774 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005775 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005776 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005777}
5778
5779
Chris Lattner264c9082006-04-17 17:55:10 +00005780/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
5781/// amount. The result has the specified value type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005782static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005783 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattner264c9082006-04-17 17:55:10 +00005784 // Force LHS/RHS to be the right type.
Wesley Peck527da1b2010-11-23 03:31:01 +00005785 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
5786 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005787
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005788 int Ops[16];
Chris Lattner264c9082006-04-17 17:55:10 +00005789 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005790 Ops[i] = i + Amt;
Owen Anderson9f944592009-08-11 20:47:22 +00005791 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00005792 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner264c9082006-04-17 17:55:10 +00005793}
5794
Chris Lattner19e90552006-04-14 05:19:18 +00005795// If this is a case we can't handle, return null and let the default
5796// expansion code take care of it. If we CAN select this case, and if it
5797// selects to a single instruction, return Op. Otherwise, if we can codegen
5798// this case more efficiently than a constant pool load, lower it to the
5799// sequence of ops that should be used.
Dan Gohman21cea8a2010-04-17 15:26:15 +00005800SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
5801 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005802 SDLoc dl(Op);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00005803 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
Craig Toppere73658d2014-04-28 04:05:08 +00005804 assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Michelbb878282009-02-25 03:12:50 +00005805
Bob Wilson85cefe82009-03-02 23:24:16 +00005806 // Check if this is a splat of a constant value.
5807 APInt APSplatBits, APSplatUndef;
5808 unsigned SplatBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00005809 bool HasAnyUndefs;
Bob Wilson530e0382009-03-03 19:26:27 +00005810 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00005811 HasAnyUndefs, 0, true) || SplatBitSize > 32)
Bob Wilson530e0382009-03-03 19:26:27 +00005812 return SDValue();
Evan Chenga49de9d2009-02-25 22:49:59 +00005813
Bob Wilson530e0382009-03-03 19:26:27 +00005814 unsigned SplatBits = APSplatBits.getZExtValue();
5815 unsigned SplatUndef = APSplatUndef.getZExtValue();
5816 unsigned SplatSize = SplatBitSize / 8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005817
Bob Wilson530e0382009-03-03 19:26:27 +00005818 // First, handle single instruction cases.
5819
5820 // All zeros?
5821 if (SplatBits == 0) {
5822 // Canonicalize all zero vectors to be v4i32.
Owen Anderson9f944592009-08-11 20:47:22 +00005823 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
5824 SDValue Z = DAG.getConstant(0, MVT::i32);
5825 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Wesley Peck527da1b2010-11-23 03:31:01 +00005826 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattner19e90552006-04-14 05:19:18 +00005827 }
Bob Wilson530e0382009-03-03 19:26:27 +00005828 return Op;
5829 }
Chris Lattnerfa5aa392006-04-16 01:01:29 +00005830
Bob Wilson530e0382009-03-03 19:26:27 +00005831 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
5832 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
5833 (32-SplatBitSize));
5834 if (SextVal >= -16 && SextVal <= 15)
5835 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005836
5837
Bob Wilson530e0382009-03-03 19:26:27 +00005838 // Two instruction sequences.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005839
Bob Wilson530e0382009-03-03 19:26:27 +00005840 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtc6cbecc2013-02-20 20:41:42 +00005841 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
5842 // If this value is in the range [17,31] and is odd, use:
5843 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
5844 // If this value is in the range [-31,-17] and is odd, use:
5845 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
5846 // Note the last two are three-instruction sequences.
5847 if (SextVal >= -32 && SextVal <= 31) {
5848 // To avoid having these optimizations undone by constant folding,
5849 // we convert to a pseudo that will be expanded later into one of
5850 // the above forms.
5851 SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
Bill Schmidt71dddd52014-05-27 15:57:51 +00005852 EVT VT = (SplatSize == 1 ? MVT::v16i8 :
5853 (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32));
5854 SDValue EltSize = DAG.getConstant(SplatSize, MVT::i32);
5855 SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
5856 if (VT == Op.getValueType())
5857 return RetVal;
5858 else
5859 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal);
Bob Wilson530e0382009-03-03 19:26:27 +00005860 }
5861
5862 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
5863 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
5864 // for fneg/fabs.
5865 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
5866 // Make -1 and vspltisw -1:
Owen Anderson9f944592009-08-11 20:47:22 +00005867 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005868
5869 // Make the VSLW intrinsic, computing 0x8000_0000.
5870 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
5871 OnesV, DAG, dl);
5872
5873 // xor by OnesV to invert it.
Owen Anderson9f944592009-08-11 20:47:22 +00005874 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peck527da1b2010-11-23 03:31:01 +00005875 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00005876 }
5877
Bill Schmidt4aedff82014-06-06 14:06:26 +00005878 // The remaining cases assume either big endian element order or
5879 // a splat-size that equates to the element size of the vector
5880 // to be built. An example that doesn't work for little endian is
5881 // {0, -1, 0, -1, 0, -1, 0, -1} which has a splat size of 32 bits
5882 // and a vector element size of 16 bits. The code below will
5883 // produce the vector in big endian element order, which for little
5884 // endian is {-1, 0, -1, 0, -1, 0, -1, 0}.
5885
5886 // For now, just avoid these optimizations in that case.
5887 // FIXME: Develop correct optimizations for LE with mismatched
5888 // splat and element sizes.
5889
Eric Christopherb1aaebe2014-06-12 22:38:18 +00005890 if (Subtarget.isLittleEndian() &&
Bill Schmidt4aedff82014-06-06 14:06:26 +00005891 SplatSize != Op.getValueType().getVectorElementType().getSizeInBits())
5892 return SDValue();
5893
Bob Wilson530e0382009-03-03 19:26:27 +00005894 // Check to see if this is a wide variety of vsplti*, binop self cases.
5895 static const signed char SplatCsts[] = {
5896 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
5897 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
5898 };
5899
5900 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
5901 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
5902 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
5903 int i = SplatCsts[idx];
5904
5905 // Figure out what shift amount will be used by altivec if shifted by i in
5906 // this splat size.
5907 unsigned TypeShiftAmt = i & (SplatBitSize-1);
5908
5909 // vsplti + shl self.
Richard Smith228e6d42012-08-24 23:29:28 +00005910 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005911 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005912 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5913 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
5914 Intrinsic::ppc_altivec_vslw
5915 };
5916 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005917 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00005918 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005919
Bob Wilson530e0382009-03-03 19:26:27 +00005920 // vsplti + srl self.
5921 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005922 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005923 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5924 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
5925 Intrinsic::ppc_altivec_vsrw
5926 };
5927 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005928 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005929 }
5930
Bob Wilson530e0382009-03-03 19:26:27 +00005931 // vsplti + sra self.
5932 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005933 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005934 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5935 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
5936 Intrinsic::ppc_altivec_vsraw
5937 };
5938 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005939 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005940 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005941
Bob Wilson530e0382009-03-03 19:26:27 +00005942 // vsplti + rol self.
5943 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
5944 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005945 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005946 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5947 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
5948 Intrinsic::ppc_altivec_vrlw
5949 };
5950 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005951 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00005952 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005953
Bob Wilson530e0382009-03-03 19:26:27 +00005954 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith228e6d42012-08-24 23:29:28 +00005955 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005956 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005957 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnere54133c2006-04-17 18:09:22 +00005958 }
Bob Wilson530e0382009-03-03 19:26:27 +00005959 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith228e6d42012-08-24 23:29:28 +00005960 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005961 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005962 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattner19e90552006-04-14 05:19:18 +00005963 }
Bob Wilson530e0382009-03-03 19:26:27 +00005964 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith228e6d42012-08-24 23:29:28 +00005965 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005966 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005967 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
5968 }
5969 }
5970
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005971 return SDValue();
Chris Lattner19e90552006-04-14 05:19:18 +00005972}
5973
Chris Lattner071ad012006-04-17 05:28:54 +00005974/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5975/// the specified operations to build the shuffle.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005976static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005977 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005978 SDLoc dl) {
Chris Lattner071ad012006-04-17 05:28:54 +00005979 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling95e1af22008-09-17 00:30:57 +00005980 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner071ad012006-04-17 05:28:54 +00005981 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005982
Chris Lattner071ad012006-04-17 05:28:54 +00005983 enum {
Chris Lattnerd2ca9ab2006-05-16 04:20:24 +00005984 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 +00005985 OP_VMRGHW,
5986 OP_VMRGLW,
5987 OP_VSPLTISW0,
5988 OP_VSPLTISW1,
5989 OP_VSPLTISW2,
5990 OP_VSPLTISW3,
5991 OP_VSLDOI4,
5992 OP_VSLDOI8,
Chris Lattneraa2372562006-05-24 17:04:05 +00005993 OP_VSLDOI12
Chris Lattner071ad012006-04-17 05:28:54 +00005994 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00005995
Chris Lattner071ad012006-04-17 05:28:54 +00005996 if (OpNum == OP_COPY) {
5997 if (LHSID == (1*9+2)*9+3) return LHS;
5998 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5999 return RHS;
6000 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006001
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006002 SDValue OpLHS, OpRHS;
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006003 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
6004 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006005
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006006 int ShufIdxs[16];
Chris Lattner071ad012006-04-17 05:28:54 +00006007 switch (OpNum) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006008 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner071ad012006-04-17 05:28:54 +00006009 case OP_VMRGHW:
6010 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
6011 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
6012 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
6013 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
6014 break;
6015 case OP_VMRGLW:
6016 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
6017 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
6018 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
6019 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
6020 break;
6021 case OP_VSPLTISW0:
6022 for (unsigned i = 0; i != 16; ++i)
6023 ShufIdxs[i] = (i&3)+0;
6024 break;
6025 case OP_VSPLTISW1:
6026 for (unsigned i = 0; i != 16; ++i)
6027 ShufIdxs[i] = (i&3)+4;
6028 break;
6029 case OP_VSPLTISW2:
6030 for (unsigned i = 0; i != 16; ++i)
6031 ShufIdxs[i] = (i&3)+8;
6032 break;
6033 case OP_VSPLTISW3:
6034 for (unsigned i = 0; i != 16; ++i)
6035 ShufIdxs[i] = (i&3)+12;
6036 break;
6037 case OP_VSLDOI4:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006038 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006039 case OP_VSLDOI8:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006040 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006041 case OP_VSLDOI12:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006042 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006043 }
Owen Anderson53aa7a92009-08-10 22:56:29 +00006044 EVT VT = OpLHS.getValueType();
Wesley Peck527da1b2010-11-23 03:31:01 +00006045 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
6046 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson9f944592009-08-11 20:47:22 +00006047 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peck527da1b2010-11-23 03:31:01 +00006048 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner071ad012006-04-17 05:28:54 +00006049}
6050
Chris Lattner19e90552006-04-14 05:19:18 +00006051/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
6052/// is a shuffle we can handle in a single instruction, return it. Otherwise,
6053/// return the code it can be lowered into. Worst case, it can always be
6054/// lowered into a vperm.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006055SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006056 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006057 SDLoc dl(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006058 SDValue V1 = Op.getOperand(0);
6059 SDValue V2 = Op.getOperand(1);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006060 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00006061 EVT VT = Op.getValueType();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006062 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006063
Chris Lattner19e90552006-04-14 05:19:18 +00006064 // Cases that are handled by instructions that take permute immediates
6065 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
6066 // selected by the instruction selector.
6067 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006068 if (PPC::isSplatShuffleMask(SVOp, 1) ||
6069 PPC::isSplatShuffleMask(SVOp, 2) ||
6070 PPC::isSplatShuffleMask(SVOp, 4) ||
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00006071 PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) ||
6072 PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) ||
Bill Schmidtf910a062014-06-10 14:35:01 +00006073 PPC::isVSLDOIShuffleMask(SVOp, true, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006074 PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) ||
6075 PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) ||
6076 PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) ||
6077 PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) ||
6078 PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) ||
6079 PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG)) {
Chris Lattner19e90552006-04-14 05:19:18 +00006080 return Op;
6081 }
6082 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006083
Chris Lattner19e90552006-04-14 05:19:18 +00006084 // Altivec has a variety of "shuffle immediates" that take two vector inputs
6085 // and produce a fixed permutation. If any of these match, do not lower to
6086 // VPERM.
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006087 unsigned int ShuffleKind = isLittleEndian ? 2 : 0;
Ulrich Weigandcc9909b2014-08-04 13:53:40 +00006088 if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) ||
6089 PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) ||
Bill Schmidtf910a062014-06-10 14:35:01 +00006090 PPC::isVSLDOIShuffleMask(SVOp, false, DAG) != -1 ||
Bill Schmidtc9fa5dd2014-07-25 01:55:55 +00006091 PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6092 PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6093 PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
6094 PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6095 PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6096 PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG))
Chris Lattner19e90552006-04-14 05:19:18 +00006097 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006098
Chris Lattner071ad012006-04-17 05:28:54 +00006099 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
6100 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramer339ced42012-01-15 13:16:05 +00006101 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peck527da1b2010-11-23 03:31:01 +00006102
Chris Lattner071ad012006-04-17 05:28:54 +00006103 unsigned PFIndexes[4];
6104 bool isFourElementShuffle = true;
6105 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
6106 unsigned EltNo = 8; // Start out undef.
6107 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006108 if (PermMask[i*4+j] < 0)
Chris Lattner071ad012006-04-17 05:28:54 +00006109 continue; // Undef, ignore it.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006110
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006111 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner071ad012006-04-17 05:28:54 +00006112 if ((ByteSource & 3) != j) {
6113 isFourElementShuffle = false;
6114 break;
6115 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006116
Chris Lattner071ad012006-04-17 05:28:54 +00006117 if (EltNo == 8) {
6118 EltNo = ByteSource/4;
6119 } else if (EltNo != ByteSource/4) {
6120 isFourElementShuffle = false;
6121 break;
6122 }
6123 }
6124 PFIndexes[i] = EltNo;
6125 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006126
6127 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner071ad012006-04-17 05:28:54 +00006128 // perfect shuffle vector to determine if it is cost effective to do this as
6129 // discrete instructions, or whether we should use a vperm.
Bill Schmidtf910a062014-06-10 14:35:01 +00006130 // For now, we skip this for little endian until such time as we have a
6131 // little-endian perfect shuffle table.
6132 if (isFourElementShuffle && !isLittleEndian) {
Chris Lattner071ad012006-04-17 05:28:54 +00006133 // Compute the index in the perfect shuffle table.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006134 unsigned PFTableIndex =
Chris Lattner071ad012006-04-17 05:28:54 +00006135 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006136
Chris Lattner071ad012006-04-17 05:28:54 +00006137 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6138 unsigned Cost = (PFEntry >> 30);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006139
Chris Lattner071ad012006-04-17 05:28:54 +00006140 // Determining when to avoid vperm is tricky. Many things affect the cost
6141 // of vperm, particularly how many times the perm mask needs to be computed.
6142 // For example, if the perm mask can be hoisted out of a loop or is already
6143 // used (perhaps because there are multiple permutes with the same shuffle
6144 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
6145 // the loop requires an extra register.
6146 //
6147 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelcf0da6c2009-02-17 22:15:04 +00006148 // generated in 3 or fewer operations. When we have loop information
Chris Lattner071ad012006-04-17 05:28:54 +00006149 // available, if this block is within a loop, we should avoid using vperm
6150 // for 3-operation perms and use a constant pool load instead.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006151 if (Cost < 3)
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006152 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00006153 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006154
Chris Lattner19e90552006-04-14 05:19:18 +00006155 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
6156 // vector that will get spilled to the constant pool.
6157 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006158
Chris Lattner19e90552006-04-14 05:19:18 +00006159 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
6160 // that it is in input element units, not in bytes. Convert now.
Bill Schmidt4aedff82014-06-06 14:06:26 +00006161
6162 // For little endian, the order of the input vectors is reversed, and
6163 // the permutation mask is complemented with respect to 31. This is
6164 // necessary to produce proper semantics with the big-endian-biased vperm
6165 // instruction.
Owen Anderson53aa7a92009-08-10 22:56:29 +00006166 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands13237ac2008-06-06 12:08:01 +00006167 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006168
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006169 SmallVector<SDValue, 16> ResultMask;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006170 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
6171 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelcf0da6c2009-02-17 22:15:04 +00006172
Chris Lattner19e90552006-04-14 05:19:18 +00006173 for (unsigned j = 0; j != BytesPerElement; ++j)
Bill Schmidt4aedff82014-06-06 14:06:26 +00006174 if (isLittleEndian)
6175 ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement+j),
6176 MVT::i32));
6177 else
6178 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
6179 MVT::i32));
Chris Lattner19e90552006-04-14 05:19:18 +00006180 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006181
Owen Anderson9f944592009-08-11 20:47:22 +00006182 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Craig Topper48d114b2014-04-26 18:35:24 +00006183 ResultMask);
Bill Schmidt4aedff82014-06-06 14:06:26 +00006184 if (isLittleEndian)
6185 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6186 V2, V1, VPermMask);
6187 else
6188 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6189 V1, V2, VPermMask);
Chris Lattner19e90552006-04-14 05:19:18 +00006190}
6191
Chris Lattner9754d142006-04-18 17:59:36 +00006192/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
6193/// altivec comparison. If it is, return true and fill in Opc/isDot with
6194/// information about the intrinsic.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006195static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner9754d142006-04-18 17:59:36 +00006196 bool &isDot) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00006197 unsigned IntrinsicID =
6198 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00006199 CompareOpc = -1;
6200 isDot = false;
6201 switch (IntrinsicID) {
6202 default: return false;
6203 // Comparison predicates.
Chris Lattner4211ca92006-04-14 06:01:58 +00006204 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
6205 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
6206 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
6207 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
6208 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
6209 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
6210 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
6211 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
6212 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
6213 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
6214 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
6215 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
6216 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006217
Chris Lattner4211ca92006-04-14 06:01:58 +00006218 // Normal Comparisons.
6219 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
6220 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
6221 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
6222 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
6223 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
6224 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
6225 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
6226 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
6227 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
6228 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
6229 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
6230 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
6231 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
6232 }
Chris Lattner9754d142006-04-18 17:59:36 +00006233 return true;
6234}
6235
6236/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
6237/// lower, do it, otherwise return null.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006238SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006239 SelectionDAG &DAG) const {
Chris Lattner9754d142006-04-18 17:59:36 +00006240 // If this is a lowered altivec predicate compare, CompareOpc is set to the
6241 // opcode number of the comparison.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006242 SDLoc dl(Op);
Chris Lattner9754d142006-04-18 17:59:36 +00006243 int CompareOpc;
6244 bool isDot;
6245 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006246 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006247
Chris Lattner9754d142006-04-18 17:59:36 +00006248 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner4211ca92006-04-14 06:01:58 +00006249 if (!isDot) {
Dale Johannesenf80493b2009-02-05 22:07:54 +00006250 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner9fa851b2010-03-14 22:44:11 +00006251 Op.getOperand(1), Op.getOperand(2),
6252 DAG.getConstant(CompareOpc, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00006253 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner4211ca92006-04-14 06:01:58 +00006254 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006255
Chris Lattner4211ca92006-04-14 06:01:58 +00006256 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006257 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00006258 Op.getOperand(2), // LHS
6259 Op.getOperand(3), // RHS
Owen Anderson9f944592009-08-11 20:47:22 +00006260 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00006261 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00006262 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +00006263 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006264
Chris Lattner4211ca92006-04-14 06:01:58 +00006265 // Now that we have the comparison, emit a copy from the CR to a GPR.
6266 // This is flagged to the above dot comparison.
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00006267 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
Owen Anderson9f944592009-08-11 20:47:22 +00006268 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelcf0da6c2009-02-17 22:15:04 +00006269 CompNode.getValue(1));
6270
Chris Lattner4211ca92006-04-14 06:01:58 +00006271 // Unpack the result based on how the target uses it.
6272 unsigned BitNo; // Bit # of CR6.
6273 bool InvertBit; // Invert result?
Dan Gohmaneffb8942008-09-12 16:56:44 +00006274 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner4211ca92006-04-14 06:01:58 +00006275 default: // Can't happen, don't crash on invalid number though.
6276 case 0: // Return the value of the EQ bit of CR6.
6277 BitNo = 0; InvertBit = false;
6278 break;
6279 case 1: // Return the inverted value of the EQ bit of CR6.
6280 BitNo = 0; InvertBit = true;
6281 break;
6282 case 2: // Return the value of the LT bit of CR6.
6283 BitNo = 2; InvertBit = false;
6284 break;
6285 case 3: // Return the inverted value of the LT bit of CR6.
6286 BitNo = 2; InvertBit = true;
6287 break;
6288 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00006289
Chris Lattner4211ca92006-04-14 06:01:58 +00006290 // Shift the bit into the low position.
Owen Anderson9f944592009-08-11 20:47:22 +00006291 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
6292 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00006293 // Isolate the bit.
Owen Anderson9f944592009-08-11 20:47:22 +00006294 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
6295 DAG.getConstant(1, MVT::i32));
Scott Michelcf0da6c2009-02-17 22:15:04 +00006296
Chris Lattner4211ca92006-04-14 06:01:58 +00006297 // If we are supposed to, toggle the bit.
6298 if (InvertBit)
Owen Anderson9f944592009-08-11 20:47:22 +00006299 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
6300 DAG.getConstant(1, MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00006301 return Flags;
6302}
6303
Hal Finkel5c0d1452014-03-30 13:22:59 +00006304SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
6305 SelectionDAG &DAG) const {
6306 SDLoc dl(Op);
6307 // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int
6308 // instructions), but for smaller types, we need to first extend up to v2i32
6309 // before doing going farther.
6310 if (Op.getValueType() == MVT::v2i64) {
6311 EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
6312 if (ExtVT != MVT::v2i32) {
6313 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0));
6314 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op,
6315 DAG.getValueType(EVT::getVectorVT(*DAG.getContext(),
6316 ExtVT.getVectorElementType(), 4)));
6317 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op);
6318 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op,
6319 DAG.getValueType(MVT::v2i32));
6320 }
6321
6322 return Op;
6323 }
6324
6325 return SDValue();
6326}
6327
Scott Michelcf0da6c2009-02-17 22:15:04 +00006328SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006329 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006330 SDLoc dl(Op);
Chris Lattner4211ca92006-04-14 06:01:58 +00006331 // Create a stack slot that is 16-byte aligned.
6332 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00006333 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Dale Johannesen81bfca72010-05-03 22:59:34 +00006334 EVT PtrVT = getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006335 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006336
Chris Lattner4211ca92006-04-14 06:01:58 +00006337 // Store the input value into Value#0 of the stack slot.
Dale Johannesen021052a2009-02-04 20:06:27 +00006338 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00006339 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00006340 false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00006341 // Load it out.
Chris Lattner7727d052010-09-21 06:44:06 +00006342 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00006343 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00006344}
6345
Dan Gohman21cea8a2010-04-17 15:26:15 +00006346SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006347 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00006348 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006349 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006350
Owen Anderson9f944592009-08-11 20:47:22 +00006351 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
6352 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006353
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006354 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006355 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006356
Chris Lattner7e4398742006-04-18 03:43:48 +00006357 // Shrinkify inputs to v8i16.
Wesley Peck527da1b2010-11-23 03:31:01 +00006358 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
6359 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
6360 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006361
Chris Lattner7e4398742006-04-18 03:43:48 +00006362 // Low parts multiplied together, generating 32-bit results (we ignore the
6363 // top parts).
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006364 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson9f944592009-08-11 20:47:22 +00006365 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006366
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006367 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson9f944592009-08-11 20:47:22 +00006368 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner7e4398742006-04-18 03:43:48 +00006369 // Shift the high parts up 16 bits.
Scott Michelcf0da6c2009-02-17 22:15:04 +00006370 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006371 Neg16, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00006372 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
6373 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006374 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006375
Owen Anderson9f944592009-08-11 20:47:22 +00006376 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner7e4398742006-04-18 03:43:48 +00006377
Chris Lattner96d50482006-04-18 04:28:57 +00006378 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00006379 LHS, RHS, Zero, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00006380 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006381 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006382 bool isLittleEndian = Subtarget.isLittleEndian();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006383
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006384 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006385 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson9f944592009-08-11 20:47:22 +00006386 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00006387 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006388
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006389 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00006390 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson9f944592009-08-11 20:47:22 +00006391 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00006392 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006393
Bill Schmidt42995e82014-06-09 16:06:29 +00006394 // Merge the results together. Because vmuleub and vmuloub are
6395 // instructions with a big-endian bias, we must reverse the
6396 // element numbering and reverse the meaning of "odd" and "even"
6397 // when generating little endian code.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00006398 int Ops[16];
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006399 for (unsigned i = 0; i != 8; ++i) {
Bill Schmidt42995e82014-06-09 16:06:29 +00006400 if (isLittleEndian) {
6401 Ops[i*2 ] = 2*i;
6402 Ops[i*2+1] = 2*i+16;
6403 } else {
6404 Ops[i*2 ] = 2*i+1;
6405 Ops[i*2+1] = 2*i+1+16;
6406 }
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00006407 }
Bill Schmidt42995e82014-06-09 16:06:29 +00006408 if (isLittleEndian)
6409 return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops);
6410 else
6411 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner7e4398742006-04-18 03:43:48 +00006412 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006413 llvm_unreachable("Unknown mul to lower!");
Chris Lattner7e4398742006-04-18 03:43:48 +00006414 }
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006415}
6416
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006417/// LowerOperation - Provide custom lowering hooks for some operations.
6418///
Dan Gohman21cea8a2010-04-17 15:26:15 +00006419SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006420 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006421 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner4211ca92006-04-14 06:01:58 +00006422 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00006423 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006424 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackye3f15c982012-06-04 17:36:38 +00006425 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00006426 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006427 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sandsa0984362011-09-06 13:37:06 +00006428 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
6429 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006430 case ISD::VASTART:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006431 return LowerVASTART(Op, DAG, Subtarget);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006432
6433 case ISD::VAARG:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006434 return LowerVAARG(Op, DAG, Subtarget);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00006435
Roman Divackyc3825df2013-07-25 21:36:47 +00006436 case ISD::VACOPY:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006437 return LowerVACOPY(Op, DAG, Subtarget);
Roman Divackyc3825df2013-07-25 21:36:47 +00006438
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006439 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, Subtarget);
Chris Lattner43df5b32007-02-25 05:34:32 +00006440 case ISD::DYNAMIC_STACKALLOC:
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006441 return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget);
Evan Cheng51096af2008-04-19 01:30:48 +00006442
Hal Finkel756810f2013-03-21 21:37:52 +00006443 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
6444 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
6445
Hal Finkel940ab932014-02-28 00:27:01 +00006446 case ISD::LOAD: return LowerLOAD(Op, DAG);
6447 case ISD::STORE: return LowerSTORE(Op, DAG);
6448 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00006449 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen37bc85f2009-06-04 20:53:52 +00006450 case ISD::FP_TO_UINT:
6451 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00006452 SDLoc(Op));
Hal Finkelf6d45f22013-04-01 17:52:07 +00006453 case ISD::UINT_TO_FP:
6454 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman9ba4d762008-01-31 00:41:03 +00006455 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00006456
Chris Lattner4211ca92006-04-14 06:01:58 +00006457 // Lower 64-bit shifts.
Chris Lattner601b8652006-09-20 03:47:40 +00006458 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
6459 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
6460 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00006461
Chris Lattner4211ca92006-04-14 06:01:58 +00006462 // Vector-related lowering.
6463 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6464 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6465 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6466 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Hal Finkel5c0d1452014-03-30 13:22:59 +00006467 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00006468 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006469
Hal Finkel25c19922013-05-15 21:37:41 +00006470 // For counter-based loop handling.
6471 case ISD::INTRINSIC_W_CHAIN: return SDValue();
6472
Chris Lattnerf6a81562007-12-08 06:59:59 +00006473 // Frame & Return address.
6474 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00006475 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnere675a082005-08-31 20:23:54 +00006476 }
Chris Lattnerf3d06c62005-08-26 00:52:45 +00006477}
6478
Duncan Sands6ed40142008-12-01 11:39:25 +00006479void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
6480 SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006481 SelectionDAG &DAG) const {
Roman Divacky4394e682011-06-28 15:30:42 +00006482 const TargetMachine &TM = getTargetMachine();
Andrew Trickef9de2a2013-05-25 02:42:55 +00006483 SDLoc dl(N);
Chris Lattner57ee7c62007-11-28 18:44:47 +00006484 switch (N->getOpcode()) {
Duncan Sands4068a7f2008-10-28 15:00:32 +00006485 default:
Craig Toppere55c5562012-02-07 02:50:20 +00006486 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkel25c19922013-05-15 21:37:41 +00006487 case ISD::INTRINSIC_W_CHAIN: {
6488 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
6489 Intrinsic::ppc_is_decremented_ctr_nonzero)
6490 break;
6491
6492 assert(N->getValueType(0) == MVT::i1 &&
6493 "Unexpected result type for CTR decrement intrinsic");
Matt Arsenault758659232013-05-18 00:21:46 +00006494 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
Hal Finkel25c19922013-05-15 21:37:41 +00006495 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
6496 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
6497 N->getOperand(1));
6498
6499 Results.push_back(NewInt);
6500 Results.push_back(NewInt.getValue(1));
6501 break;
6502 }
Roman Divacky4394e682011-06-28 15:30:42 +00006503 case ISD::VAARG: {
6504 if (!TM.getSubtarget<PPCSubtarget>().isSVR4ABI()
6505 || TM.getSubtarget<PPCSubtarget>().isPPC64())
6506 return;
6507
6508 EVT VT = N->getValueType(0);
6509
6510 if (VT == MVT::i64) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006511 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget);
Roman Divacky4394e682011-06-28 15:30:42 +00006512
6513 Results.push_back(NewNode);
6514 Results.push_back(NewNode.getValue(1));
6515 }
6516 return;
6517 }
Duncan Sands6ed40142008-12-01 11:39:25 +00006518 case ISD::FP_ROUND_INREG: {
Owen Anderson9f944592009-08-11 20:47:22 +00006519 assert(N->getValueType(0) == MVT::ppcf128);
6520 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006521 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006522 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00006523 DAG.getIntPtrConstant(0));
Dale Johannesenf80493b2009-02-05 22:07:54 +00006524 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00006525 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00006526 DAG.getIntPtrConstant(1));
6527
Ulrich Weigand874fc622013-03-26 10:56:22 +00006528 // Add the two halves of the long double in round-to-zero mode.
6529 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands6ed40142008-12-01 11:39:25 +00006530
6531 // We know the low half is about to be thrown away, so just use something
6532 // convenient.
Owen Anderson9f944592009-08-11 20:47:22 +00006533 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesenf80493b2009-02-05 22:07:54 +00006534 FPreg, FPreg));
Duncan Sands6ed40142008-12-01 11:39:25 +00006535 return;
Duncan Sands2a287912008-07-19 16:26:02 +00006536 }
Duncan Sands6ed40142008-12-01 11:39:25 +00006537 case ISD::FP_TO_SINT:
Bill Schmidt41221692013-07-09 18:50:20 +00006538 // LowerFP_TO_INT() can only handle f32 and f64.
6539 if (N->getOperand(0).getValueType() == MVT::ppcf128)
6540 return;
Dale Johannesen37bc85f2009-06-04 20:53:52 +00006541 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands6ed40142008-12-01 11:39:25 +00006542 return;
Chris Lattner57ee7c62007-11-28 18:44:47 +00006543 }
6544}
6545
6546
Chris Lattner4211ca92006-04-14 06:01:58 +00006547//===----------------------------------------------------------------------===//
6548// Other Lowering Code
6549//===----------------------------------------------------------------------===//
6550
Chris Lattner9b577f12005-08-26 21:23:58 +00006551MachineBasicBlock *
Dale Johannesend4eb0522008-08-25 22:34:37 +00006552PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman747e55b2009-02-07 16:15:20 +00006553 bool is64bit, unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006554 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christopherd9134482014-08-04 21:25:23 +00006555 const TargetInstrInfo *TII =
6556 getTargetMachine().getSubtargetImpl()->getInstrInfo();
Dale Johannesend4eb0522008-08-25 22:34:37 +00006557
6558 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6559 MachineFunction *F = BB->getParent();
6560 MachineFunction::iterator It = BB;
6561 ++It;
6562
6563 unsigned dest = MI->getOperand(0).getReg();
6564 unsigned ptrA = MI->getOperand(1).getReg();
6565 unsigned ptrB = MI->getOperand(2).getReg();
6566 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006567 DebugLoc dl = MI->getDebugLoc();
Dale Johannesend4eb0522008-08-25 22:34:37 +00006568
6569 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
6570 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6571 F->insert(It, loopMBB);
6572 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006573 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00006574 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00006575 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006576
6577 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006578 unsigned TmpReg = (!BinOpcode) ? incr :
6579 RegInfo.createVirtualRegister(
Dale Johannesenbc698292008-09-02 20:30:23 +00006580 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
6581 (const TargetRegisterClass *) &PPC::GPRCRegClass);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006582
6583 // thisMBB:
6584 // ...
6585 // fallthrough --> loopMBB
6586 BB->addSuccessor(loopMBB);
6587
6588 // loopMBB:
6589 // l[wd]arx dest, ptr
6590 // add r0, dest, incr
6591 // st[wd]cx. r0, ptr
6592 // bne- loopMBB
6593 // fallthrough --> exitMBB
6594 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006595 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesend4eb0522008-08-25 22:34:37 +00006596 .addReg(ptrA).addReg(ptrB);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006597 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006598 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
6599 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesend4eb0522008-08-25 22:34:37 +00006600 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006601 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00006602 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006603 BB->addSuccessor(loopMBB);
6604 BB->addSuccessor(exitMBB);
6605
6606 // exitMBB:
6607 // ...
6608 BB = exitMBB;
6609 return BB;
6610}
6611
6612MachineBasicBlock *
Scott Michelcf0da6c2009-02-17 22:15:04 +00006613PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesena32affb2008-08-28 17:53:09 +00006614 MachineBasicBlock *BB,
6615 bool is8bit, // operation
Dan Gohman747e55b2009-02-07 16:15:20 +00006616 unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006617 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Eric Christopherd9134482014-08-04 21:25:23 +00006618 const TargetInstrInfo *TII =
6619 getTargetMachine().getSubtargetImpl()->getInstrInfo();
Dale Johannesena32affb2008-08-28 17:53:09 +00006620 // In 64 bit mode we have to use 64 bits for addresses, even though the
6621 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
6622 // registers without caring whether they're 32 or 64, but here we're
6623 // doing actual arithmetic on the addresses.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006624 bool is64bit = Subtarget.isPPC64();
Hal Finkelf70c41e2013-03-21 23:45:03 +00006625 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesena32affb2008-08-28 17:53:09 +00006626
6627 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6628 MachineFunction *F = BB->getParent();
6629 MachineFunction::iterator It = BB;
6630 ++It;
6631
6632 unsigned dest = MI->getOperand(0).getReg();
6633 unsigned ptrA = MI->getOperand(1).getReg();
6634 unsigned ptrB = MI->getOperand(2).getReg();
6635 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006636 DebugLoc dl = MI->getDebugLoc();
Dale Johannesena32affb2008-08-28 17:53:09 +00006637
6638 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
6639 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6640 F->insert(It, loopMBB);
6641 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006642 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00006643 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00006644 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesena32affb2008-08-28 17:53:09 +00006645
6646 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006647 const TargetRegisterClass *RC =
Dale Johannesenbc698292008-09-02 20:30:23 +00006648 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
6649 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesena32affb2008-08-28 17:53:09 +00006650 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
6651 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
6652 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
6653 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
6654 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
6655 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
6656 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
6657 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
6658 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
6659 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006660 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00006661 unsigned Ptr1Reg;
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006662 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00006663
6664 // thisMBB:
6665 // ...
6666 // fallthrough --> loopMBB
6667 BB->addSuccessor(loopMBB);
6668
6669 // The 4-byte load must be aligned, while a char or short may be
6670 // anywhere in the word. Hence all this nasty bookkeeping code.
6671 // add ptr1, ptrA, ptrB [copy if ptrA==0]
6672 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00006673 // xori shift, shift1, 24 [16]
Dale Johannesena32affb2008-08-28 17:53:09 +00006674 // rlwinm ptr, ptr1, 0, 0, 29
6675 // slw incr2, incr, shift
6676 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
6677 // slw mask, mask2, shift
6678 // loopMBB:
Dale Johannesen340d2642008-08-30 00:08:53 +00006679 // lwarx tmpDest, ptr
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006680 // add tmp, tmpDest, incr2
6681 // andc tmp2, tmpDest, mask
Dale Johannesena32affb2008-08-28 17:53:09 +00006682 // and tmp3, tmp, mask
6683 // or tmp4, tmp3, tmp2
Dale Johannesen340d2642008-08-30 00:08:53 +00006684 // stwcx. tmp4, ptr
Dale Johannesena32affb2008-08-28 17:53:09 +00006685 // bne- loopMBB
6686 // fallthrough --> exitMBB
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006687 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006688 if (ptrA != ZeroReg) {
Dale Johannesena32affb2008-08-28 17:53:09 +00006689 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006690 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006691 .addReg(ptrA).addReg(ptrB);
6692 } else {
6693 Ptr1Reg = ptrB;
6694 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006695 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006696 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006697 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006698 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
6699 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006700 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006701 .addReg(Ptr1Reg).addImm(0).addImm(61);
6702 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00006703 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006704 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006705 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006706 .addReg(incr).addReg(ShiftReg);
6707 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006708 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesena32affb2008-08-28 17:53:09 +00006709 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00006710 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6711 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesena32affb2008-08-28 17:53:09 +00006712 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006713 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006714 .addReg(Mask2Reg).addReg(ShiftReg);
6715
6716 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006717 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006718 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006719 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006720 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006721 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006722 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006723 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006724 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006725 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006726 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006727 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidt3581cd42013-04-02 18:37:08 +00006728 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006729 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006730 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00006731 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesena32affb2008-08-28 17:53:09 +00006732 BB->addSuccessor(loopMBB);
6733 BB->addSuccessor(exitMBB);
6734
6735 // exitMBB:
6736 // ...
6737 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00006738 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
6739 .addReg(ShiftReg);
Dale Johannesena32affb2008-08-28 17:53:09 +00006740 return BB;
6741}
6742
Hal Finkel756810f2013-03-21 21:37:52 +00006743llvm::MachineBasicBlock*
6744PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
6745 MachineBasicBlock *MBB) const {
6746 DebugLoc DL = MI->getDebugLoc();
Eric Christopherd9134482014-08-04 21:25:23 +00006747 const TargetInstrInfo *TII =
6748 getTargetMachine().getSubtargetImpl()->getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00006749
6750 MachineFunction *MF = MBB->getParent();
6751 MachineRegisterInfo &MRI = MF->getRegInfo();
6752
6753 const BasicBlock *BB = MBB->getBasicBlock();
6754 MachineFunction::iterator I = MBB;
6755 ++I;
6756
6757 // Memory Reference
6758 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6759 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6760
6761 unsigned DstReg = MI->getOperand(0).getReg();
6762 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
6763 assert(RC->hasType(MVT::i32) && "Invalid destination!");
6764 unsigned mainDstReg = MRI.createVirtualRegister(RC);
6765 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
6766
6767 MVT PVT = getPointerTy();
6768 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6769 "Invalid Pointer Size!");
6770 // For v = setjmp(buf), we generate
6771 //
6772 // thisMBB:
6773 // SjLjSetup mainMBB
6774 // bl mainMBB
6775 // v_restore = 1
6776 // b sinkMBB
6777 //
6778 // mainMBB:
6779 // buf[LabelOffset] = LR
6780 // v_main = 0
6781 //
6782 // sinkMBB:
6783 // v = phi(main, restore)
6784 //
6785
6786 MachineBasicBlock *thisMBB = MBB;
6787 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
6788 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
6789 MF->insert(I, mainMBB);
6790 MF->insert(I, sinkMBB);
6791
6792 MachineInstrBuilder MIB;
6793
6794 // Transfer the remainder of BB and its successor edges to sinkMBB.
6795 sinkMBB->splice(sinkMBB->begin(), MBB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00006796 std::next(MachineBasicBlock::iterator(MI)), MBB->end());
Hal Finkel756810f2013-03-21 21:37:52 +00006797 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
6798
6799 // Note that the structure of the jmp_buf used here is not compatible
6800 // with that used by libc, and is not designed to be. Specifically, it
6801 // stores only those 'reserved' registers that LLVM does not otherwise
6802 // understand how to spill. Also, by convention, by the time this
6803 // intrinsic is called, Clang has already stored the frame address in the
6804 // first slot of the buffer and stack address in the third. Following the
6805 // X86 target code, we'll store the jump address in the second slot. We also
6806 // need to save the TOC pointer (R2) to handle jumps between shared
6807 // libraries, and that will be stored in the fourth slot. The thread
6808 // identifier (R13) is not affected.
6809
6810 // thisMBB:
6811 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6812 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00006813 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00006814
6815 // Prepare IP either in reg.
6816 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
6817 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
6818 unsigned BufReg = MI->getOperand(1).getReg();
6819
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006820 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) {
Hal Finkel756810f2013-03-21 21:37:52 +00006821 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
6822 .addReg(PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006823 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006824 .addReg(BufReg);
Hal Finkel756810f2013-03-21 21:37:52 +00006825 MIB.setMemRefs(MMOBegin, MMOEnd);
6826 }
6827
Hal Finkelf05d6c72013-07-17 23:50:51 +00006828 // Naked functions never have a base pointer, and so we use r1. For all
6829 // other functions, this decision must be delayed until during PEI.
6830 unsigned BaseReg;
6831 if (MF->getFunction()->getAttributes().hasAttribute(
6832 AttributeSet::FunctionIndex, Attribute::Naked))
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006833 BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
Hal Finkelf05d6c72013-07-17 23:50:51 +00006834 else
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006835 BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP;
Hal Finkelf05d6c72013-07-17 23:50:51 +00006836
6837 MIB = BuildMI(*thisMBB, MI, DL,
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006838 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW))
Hal Finkelf05d6c72013-07-17 23:50:51 +00006839 .addReg(BaseReg)
6840 .addImm(BPOffset)
6841 .addReg(BufReg);
6842 MIB.setMemRefs(MMOBegin, MMOEnd);
6843
Hal Finkel756810f2013-03-21 21:37:52 +00006844 // Setup
Hal Finkele5680b32013-04-04 22:55:54 +00006845 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Bill Wendling5e7656b2013-06-07 07:55:53 +00006846 const PPCRegisterInfo *TRI =
Eric Christopherd9134482014-08-04 21:25:23 +00006847 getTargetMachine().getSubtarget<PPCSubtarget>().getRegisterInfo();
Bill Wendling5e7656b2013-06-07 07:55:53 +00006848 MIB.addRegMask(TRI->getNoPreservedMask());
Hal Finkel756810f2013-03-21 21:37:52 +00006849
6850 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
6851
6852 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
6853 .addMBB(mainMBB);
6854 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
6855
6856 thisMBB->addSuccessor(mainMBB, /* weight */ 0);
6857 thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
6858
6859 // mainMBB:
6860 // mainDstReg = 0
6861 MIB = BuildMI(mainMBB, DL,
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006862 TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
Hal Finkel756810f2013-03-21 21:37:52 +00006863
6864 // Store IP
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006865 if (Subtarget.isPPC64()) {
Hal Finkel756810f2013-03-21 21:37:52 +00006866 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
6867 .addReg(LabelReg)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006868 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006869 .addReg(BufReg);
6870 } else {
6871 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
6872 .addReg(LabelReg)
6873 .addImm(LabelOffset)
6874 .addReg(BufReg);
6875 }
6876
6877 MIB.setMemRefs(MMOBegin, MMOEnd);
6878
6879 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
6880 mainMBB->addSuccessor(sinkMBB);
6881
6882 // sinkMBB:
6883 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
6884 TII->get(PPC::PHI), DstReg)
6885 .addReg(mainDstReg).addMBB(mainMBB)
6886 .addReg(restoreDstReg).addMBB(thisMBB);
6887
6888 MI->eraseFromParent();
6889 return sinkMBB;
6890}
6891
6892MachineBasicBlock *
6893PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
6894 MachineBasicBlock *MBB) const {
6895 DebugLoc DL = MI->getDebugLoc();
Eric Christopherd9134482014-08-04 21:25:23 +00006896 const TargetInstrInfo *TII =
6897 getTargetMachine().getSubtargetImpl()->getInstrInfo();
Hal Finkel756810f2013-03-21 21:37:52 +00006898
6899 MachineFunction *MF = MBB->getParent();
6900 MachineRegisterInfo &MRI = MF->getRegInfo();
6901
6902 // Memory Reference
6903 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6904 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6905
6906 MVT PVT = getPointerTy();
6907 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6908 "Invalid Pointer Size!");
6909
6910 const TargetRegisterClass *RC =
6911 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
6912 unsigned Tmp = MRI.createVirtualRegister(RC);
6913 // Since FP is only updated here but NOT referenced, it's treated as GPR.
6914 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
6915 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
Hal Finkel3ee2af72014-07-18 23:29:49 +00006916 unsigned BP = (PVT == MVT::i64) ? PPC::X30 :
6917 (Subtarget.isSVR4ABI() &&
6918 MF->getTarget().getRelocationModel() == Reloc::PIC_ ?
6919 PPC::R29 : PPC::R30);
Hal Finkel756810f2013-03-21 21:37:52 +00006920
6921 MachineInstrBuilder MIB;
6922
6923 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6924 const int64_t SPOffset = 2 * PVT.getStoreSize();
6925 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00006926 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00006927
6928 unsigned BufReg = MI->getOperand(0).getReg();
6929
6930 // Reload FP (the jumped-to function may not have had a
6931 // frame pointer, and if so, then its r31 will be restored
6932 // as necessary).
6933 if (PVT == MVT::i64) {
6934 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
6935 .addImm(0)
6936 .addReg(BufReg);
6937 } else {
6938 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
6939 .addImm(0)
6940 .addReg(BufReg);
6941 }
6942 MIB.setMemRefs(MMOBegin, MMOEnd);
6943
6944 // Reload IP
6945 if (PVT == MVT::i64) {
6946 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006947 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006948 .addReg(BufReg);
6949 } else {
6950 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
6951 .addImm(LabelOffset)
6952 .addReg(BufReg);
6953 }
6954 MIB.setMemRefs(MMOBegin, MMOEnd);
6955
6956 // Reload SP
6957 if (PVT == MVT::i64) {
6958 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006959 .addImm(SPOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006960 .addReg(BufReg);
6961 } else {
6962 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
6963 .addImm(SPOffset)
6964 .addReg(BufReg);
6965 }
6966 MIB.setMemRefs(MMOBegin, MMOEnd);
6967
Hal Finkelf05d6c72013-07-17 23:50:51 +00006968 // Reload BP
6969 if (PVT == MVT::i64) {
6970 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
6971 .addImm(BPOffset)
6972 .addReg(BufReg);
6973 } else {
6974 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
6975 .addImm(BPOffset)
6976 .addReg(BufReg);
6977 }
6978 MIB.setMemRefs(MMOBegin, MMOEnd);
Hal Finkel756810f2013-03-21 21:37:52 +00006979
6980 // Reload TOC
Eric Christopherb1aaebe2014-06-12 22:38:18 +00006981 if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) {
Hal Finkel756810f2013-03-21 21:37:52 +00006982 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006983 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006984 .addReg(BufReg);
6985
6986 MIB.setMemRefs(MMOBegin, MMOEnd);
6987 }
6988
6989 // Jump
6990 BuildMI(*MBB, MI, DL,
6991 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
6992 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
6993
6994 MI->eraseFromParent();
6995 return MBB;
6996}
6997
Dale Johannesena32affb2008-08-28 17:53:09 +00006998MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00006999PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00007000 MachineBasicBlock *BB) const {
Hal Finkel756810f2013-03-21 21:37:52 +00007001 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
7002 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
7003 return emitEHSjLjSetJmp(MI, BB);
7004 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
7005 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
7006 return emitEHSjLjLongJmp(MI, BB);
7007 }
7008
Eric Christopherd9134482014-08-04 21:25:23 +00007009 const TargetInstrInfo *TII =
7010 getTargetMachine().getSubtargetImpl()->getInstrInfo();
Evan Cheng32e376f2008-07-12 02:23:19 +00007011
7012 // To "insert" these instructions we actually have to insert their
7013 // control-flow patterns.
Chris Lattner9b577f12005-08-26 21:23:58 +00007014 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman3b460302008-07-07 23:14:23 +00007015 MachineFunction::iterator It = BB;
Chris Lattner9b577f12005-08-26 21:23:58 +00007016 ++It;
Evan Cheng32e376f2008-07-12 02:23:19 +00007017
Dan Gohman3b460302008-07-07 23:14:23 +00007018 MachineFunction *F = BB->getParent();
Evan Cheng32e376f2008-07-12 02:23:19 +00007019
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007020 if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
Hal Finkel940ab932014-02-28 00:27:01 +00007021 MI->getOpcode() == PPC::SELECT_CC_I8 ||
7022 MI->getOpcode() == PPC::SELECT_I4 ||
7023 MI->getOpcode() == PPC::SELECT_I8)) {
Hal Finkeled6a2852013-04-05 23:29:01 +00007024 SmallVector<MachineOperand, 2> Cond;
Hal Finkel940ab932014-02-28 00:27:01 +00007025 if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7026 MI->getOpcode() == PPC::SELECT_CC_I8)
7027 Cond.push_back(MI->getOperand(4));
7028 else
7029 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
Hal Finkeled6a2852013-04-05 23:29:01 +00007030 Cond.push_back(MI->getOperand(1));
7031
Hal Finkel460e94d2012-06-22 23:10:08 +00007032 DebugLoc dl = MI->getDebugLoc();
Eric Christopherd9134482014-08-04 21:25:23 +00007033 const TargetInstrInfo *TII =
7034 getTargetMachine().getSubtargetImpl()->getInstrInfo();
Bill Wendling5e7656b2013-06-07 07:55:53 +00007035 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
7036 Cond, MI->getOperand(2).getReg(),
7037 MI->getOperand(3).getReg());
Hal Finkel460e94d2012-06-22 23:10:08 +00007038 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7039 MI->getOpcode() == PPC::SELECT_CC_I8 ||
7040 MI->getOpcode() == PPC::SELECT_CC_F4 ||
7041 MI->getOpcode() == PPC::SELECT_CC_F8 ||
Hal Finkel940ab932014-02-28 00:27:01 +00007042 MI->getOpcode() == PPC::SELECT_CC_VRRC ||
7043 MI->getOpcode() == PPC::SELECT_I4 ||
7044 MI->getOpcode() == PPC::SELECT_I8 ||
7045 MI->getOpcode() == PPC::SELECT_F4 ||
7046 MI->getOpcode() == PPC::SELECT_F8 ||
7047 MI->getOpcode() == PPC::SELECT_VRRC) {
Evan Cheng32e376f2008-07-12 02:23:19 +00007048 // The incoming instruction knows the destination vreg to set, the
7049 // condition code register to branch on, the true/false values to
7050 // select between, and a branch opcode to use.
7051
7052 // thisMBB:
7053 // ...
7054 // TrueVal = ...
7055 // cmpTY ccX, r1, r2
7056 // bCC copy1MBB
7057 // fallthrough --> copy0MBB
7058 MachineBasicBlock *thisMBB = BB;
7059 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7060 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007061 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00007062 F->insert(It, copy0MBB);
7063 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007064
7065 // Transfer the remainder of BB and its successor edges to sinkMBB.
7066 sinkMBB->splice(sinkMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007067 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007068 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7069
Evan Cheng32e376f2008-07-12 02:23:19 +00007070 // Next, add the true and fallthrough blocks as its successors.
7071 BB->addSuccessor(copy0MBB);
7072 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007073
Hal Finkel940ab932014-02-28 00:27:01 +00007074 if (MI->getOpcode() == PPC::SELECT_I4 ||
7075 MI->getOpcode() == PPC::SELECT_I8 ||
7076 MI->getOpcode() == PPC::SELECT_F4 ||
7077 MI->getOpcode() == PPC::SELECT_F8 ||
7078 MI->getOpcode() == PPC::SELECT_VRRC) {
7079 BuildMI(BB, dl, TII->get(PPC::BC))
7080 .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7081 } else {
7082 unsigned SelectPred = MI->getOperand(4).getImm();
7083 BuildMI(BB, dl, TII->get(PPC::BCC))
7084 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7085 }
Dan Gohman34396292010-07-06 20:24:04 +00007086
Evan Cheng32e376f2008-07-12 02:23:19 +00007087 // copy0MBB:
7088 // %FalseValue = ...
7089 // # fallthrough to sinkMBB
7090 BB = copy0MBB;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007091
Evan Cheng32e376f2008-07-12 02:23:19 +00007092 // Update machine-CFG edges
7093 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007094
Evan Cheng32e376f2008-07-12 02:23:19 +00007095 // sinkMBB:
7096 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7097 // ...
7098 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00007099 BuildMI(*BB, BB->begin(), dl,
7100 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng32e376f2008-07-12 02:23:19 +00007101 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
7102 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7103 }
Dale Johannesena32affb2008-08-28 17:53:09 +00007104 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
7105 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
7106 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
7107 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007108 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
7109 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
7110 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
7111 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007112
7113 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
7114 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
7115 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
7116 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007117 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
7118 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
7119 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
7120 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007121
7122 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
7123 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
7124 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
7125 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007126 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
7127 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
7128 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
7129 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007130
7131 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
7132 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
7133 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
7134 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007135 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
7136 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
7137 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
7138 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007139
7140 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007141 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND);
Dale Johannesena32affb2008-08-28 17:53:09 +00007142 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007143 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007144 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007145 BB = EmitAtomicBinary(MI, BB, false, PPC::NAND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007146 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Ulrich Weigand862d8b82014-07-08 16:16:02 +00007147 BB = EmitAtomicBinary(MI, BB, true, PPC::NAND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007148
7149 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
7150 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
7151 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
7152 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesend4eb0522008-08-25 22:34:37 +00007153 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
7154 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
7155 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
7156 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesena32affb2008-08-28 17:53:09 +00007157
Dale Johannesenf0a88d62008-08-29 18:29:46 +00007158 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
7159 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
7160 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
7161 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
7162 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
7163 BB = EmitAtomicBinary(MI, BB, false, 0);
7164 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
7165 BB = EmitAtomicBinary(MI, BB, true, 0);
7166
Evan Cheng32e376f2008-07-12 02:23:19 +00007167 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
7168 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
7169 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
7170
7171 unsigned dest = MI->getOperand(0).getReg();
7172 unsigned ptrA = MI->getOperand(1).getReg();
7173 unsigned ptrB = MI->getOperand(2).getReg();
7174 unsigned oldval = MI->getOperand(3).getReg();
7175 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00007176 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00007177
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007178 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7179 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7180 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007181 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007182 F->insert(It, loop1MBB);
7183 F->insert(It, loop2MBB);
7184 F->insert(It, midMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007185 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007186 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007187 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007188 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007189
7190 // thisMBB:
7191 // ...
7192 // fallthrough --> loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007193 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007194
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007195 // loop1MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00007196 // l[wd]arx dest, ptr
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007197 // cmp[wd] dest, oldval
7198 // bne- midMBB
7199 // loop2MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00007200 // st[wd]cx. newval, ptr
7201 // bne- loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007202 // b exitBB
7203 // midMBB:
7204 // st[wd]cx. dest, ptr
7205 // exitBB:
7206 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007207 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng32e376f2008-07-12 02:23:19 +00007208 .addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007209 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng32e376f2008-07-12 02:23:19 +00007210 .addReg(oldval).addReg(dest);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007211 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007212 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7213 BB->addSuccessor(loop2MBB);
7214 BB->addSuccessor(midMBB);
7215
7216 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007217 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng32e376f2008-07-12 02:23:19 +00007218 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007219 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007220 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007221 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007222 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00007223 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007224
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007225 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007226 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00007227 .addReg(dest).addReg(ptrA).addReg(ptrB);
7228 BB->addSuccessor(exitMBB);
7229
Evan Cheng32e376f2008-07-12 02:23:19 +00007230 // exitMBB:
7231 // ...
7232 BB = exitMBB;
Dale Johannesen340d2642008-08-30 00:08:53 +00007233 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
7234 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
7235 // We must use 64-bit registers for addresses when targeting 64-bit,
7236 // since we're actually doing arithmetic on them. Other registers
7237 // can be 32-bit.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007238 bool is64bit = Subtarget.isPPC64();
Dale Johannesen340d2642008-08-30 00:08:53 +00007239 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
7240
7241 unsigned dest = MI->getOperand(0).getReg();
7242 unsigned ptrA = MI->getOperand(1).getReg();
7243 unsigned ptrB = MI->getOperand(2).getReg();
7244 unsigned oldval = MI->getOperand(3).getReg();
7245 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00007246 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen340d2642008-08-30 00:08:53 +00007247
7248 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7249 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7250 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
7251 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
7252 F->insert(It, loop1MBB);
7253 F->insert(It, loop2MBB);
7254 F->insert(It, midMBB);
7255 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007256 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007257 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007258 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen340d2642008-08-30 00:08:53 +00007259
7260 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelcf0da6c2009-02-17 22:15:04 +00007261 const TargetRegisterClass *RC =
Dale Johannesenbc698292008-09-02 20:30:23 +00007262 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
7263 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesen340d2642008-08-30 00:08:53 +00007264 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
7265 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
7266 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
7267 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
7268 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
7269 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
7270 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
7271 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
7272 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
7273 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
7274 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
7275 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
7276 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
7277 unsigned Ptr1Reg;
7278 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkelf70c41e2013-03-21 23:45:03 +00007279 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen340d2642008-08-30 00:08:53 +00007280 // thisMBB:
7281 // ...
7282 // fallthrough --> loopMBB
7283 BB->addSuccessor(loop1MBB);
7284
7285 // The 4-byte load must be aligned, while a char or short may be
7286 // anywhere in the word. Hence all this nasty bookkeeping code.
7287 // add ptr1, ptrA, ptrB [copy if ptrA==0]
7288 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00007289 // xori shift, shift1, 24 [16]
Dale Johannesen340d2642008-08-30 00:08:53 +00007290 // rlwinm ptr, ptr1, 0, 0, 29
7291 // slw newval2, newval, shift
7292 // slw oldval2, oldval,shift
7293 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
7294 // slw mask, mask2, shift
7295 // and newval3, newval2, mask
7296 // and oldval3, oldval2, mask
7297 // loop1MBB:
7298 // lwarx tmpDest, ptr
7299 // and tmp, tmpDest, mask
7300 // cmpw tmp, oldval3
7301 // bne- midMBB
7302 // loop2MBB:
7303 // andc tmp2, tmpDest, mask
7304 // or tmp4, tmp2, newval3
7305 // stwcx. tmp4, ptr
7306 // bne- loop1MBB
7307 // b exitBB
7308 // midMBB:
7309 // stwcx. tmpDest, ptr
7310 // exitBB:
7311 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007312 if (ptrA != ZeroReg) {
Dale Johannesen340d2642008-08-30 00:08:53 +00007313 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007314 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007315 .addReg(ptrA).addReg(ptrB);
7316 } else {
7317 Ptr1Reg = ptrB;
7318 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007319 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007320 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007321 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007322 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
7323 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007324 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007325 .addReg(Ptr1Reg).addImm(0).addImm(61);
7326 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00007327 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007328 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007329 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007330 .addReg(newval).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007331 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007332 .addReg(oldval).addReg(ShiftReg);
7333 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00007334 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen340d2642008-08-30 00:08:53 +00007335 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00007336 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
7337 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
7338 .addReg(Mask3Reg).addImm(65535);
Dale Johannesen340d2642008-08-30 00:08:53 +00007339 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00007340 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007341 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007342 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007343 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007344 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00007345 .addReg(OldVal2Reg).addReg(MaskReg);
7346
7347 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007348 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007349 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007350 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
7351 .addReg(TmpDestReg).addReg(MaskReg);
7352 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesen340d2642008-08-30 00:08:53 +00007353 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007354 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00007355 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7356 BB->addSuccessor(loop2MBB);
7357 BB->addSuccessor(midMBB);
7358
7359 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007360 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
7361 .addReg(TmpDestReg).addReg(MaskReg);
7362 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
7363 .addReg(Tmp2Reg).addReg(NewVal3Reg);
7364 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007365 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007366 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00007367 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00007368 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen340d2642008-08-30 00:08:53 +00007369 BB->addSuccessor(loop1MBB);
7370 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007371
Dale Johannesen340d2642008-08-30 00:08:53 +00007372 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00007373 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00007374 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00007375 BB->addSuccessor(exitMBB);
7376
7377 // exitMBB:
7378 // ...
7379 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00007380 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
7381 .addReg(ShiftReg);
Ulrich Weigand874fc622013-03-26 10:56:22 +00007382 } else if (MI->getOpcode() == PPC::FADDrtz) {
7383 // This pseudo performs an FADD with rounding mode temporarily forced
7384 // to round-to-zero. We emit this via custom inserter since the FPSCR
7385 // is not modeled at the SelectionDAG level.
7386 unsigned Dest = MI->getOperand(0).getReg();
7387 unsigned Src1 = MI->getOperand(1).getReg();
7388 unsigned Src2 = MI->getOperand(2).getReg();
7389 DebugLoc dl = MI->getDebugLoc();
7390
7391 MachineRegisterInfo &RegInfo = F->getRegInfo();
7392 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
7393
7394 // Save FPSCR value.
7395 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
7396
7397 // Set rounding mode to round-to-zero.
7398 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
7399 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
7400
7401 // Perform addition.
7402 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
7403
7404 // Restore FPSCR value.
7405 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSF)).addImm(1).addReg(MFFSReg);
Hal Finkel940ab932014-02-28 00:27:01 +00007406 } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7407 MI->getOpcode() == PPC::ANDIo_1_GT_BIT ||
7408 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7409 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) {
7410 unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7411 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ?
7412 PPC::ANDIo8 : PPC::ANDIo;
7413 bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7414 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8);
7415
7416 MachineRegisterInfo &RegInfo = F->getRegInfo();
7417 unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ?
7418 &PPC::GPRCRegClass :
7419 &PPC::G8RCRegClass);
7420
7421 DebugLoc dl = MI->getDebugLoc();
7422 BuildMI(*BB, MI, dl, TII->get(Opcode), Dest)
7423 .addReg(MI->getOperand(1).getReg()).addImm(1);
7424 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY),
7425 MI->getOperand(0).getReg())
7426 .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT);
Dale Johannesen340d2642008-08-30 00:08:53 +00007427 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00007428 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng32e376f2008-07-12 02:23:19 +00007429 }
Chris Lattner9b577f12005-08-26 21:23:58 +00007430
Dan Gohman34396292010-07-06 20:24:04 +00007431 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner9b577f12005-08-26 21:23:58 +00007432 return BB;
7433}
7434
Chris Lattner4211ca92006-04-14 06:01:58 +00007435//===----------------------------------------------------------------------===//
7436// Target Optimization Hooks
7437//===----------------------------------------------------------------------===//
7438
Hal Finkelb0c810f2013-04-03 17:44:56 +00007439SDValue PPCTargetLowering::DAGCombineFastRecip(SDValue Op,
7440 DAGCombinerInfo &DCI) const {
Hal Finkel2e103312013-04-03 04:01:11 +00007441 if (DCI.isAfterLegalizeVectorOps())
7442 return SDValue();
7443
Hal Finkelb0c810f2013-04-03 17:44:56 +00007444 EVT VT = Op.getValueType();
7445
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007446 if ((VT == MVT::f32 && Subtarget.hasFRES()) ||
7447 (VT == MVT::f64 && Subtarget.hasFRE()) ||
7448 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7449 (VT == MVT::v2f64 && Subtarget.hasVSX())) {
Hal Finkel2e103312013-04-03 04:01:11 +00007450
7451 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
7452 // For the reciprocal, we need to find the zero of the function:
7453 // F(X) = A X - 1 [which has a zero at X = 1/A]
7454 // =>
7455 // X_{i+1} = X_i (2 - A X_i) = X_i + X_i (1 - A X_i) [this second form
7456 // does not require additional intermediate precision]
7457
7458 // Convergence is quadratic, so we essentially double the number of digits
7459 // correct after every iteration. The minimum architected relative
7460 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
7461 // 23 digits and double has 52 digits.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007462 int Iterations = Subtarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00007463 if (VT.getScalarType() == MVT::f64)
Hal Finkel2e103312013-04-03 04:01:11 +00007464 ++Iterations;
7465
7466 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00007467 SDLoc dl(Op);
Hal Finkel2e103312013-04-03 04:01:11 +00007468
7469 SDValue FPOne =
Hal Finkelb0c810f2013-04-03 17:44:56 +00007470 DAG.getConstantFP(1.0, VT.getScalarType());
7471 if (VT.isVector()) {
7472 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel2e103312013-04-03 04:01:11 +00007473 "Unknown vector type");
Hal Finkelb0c810f2013-04-03 17:44:56 +00007474 FPOne = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
Hal Finkel2e103312013-04-03 04:01:11 +00007475 FPOne, FPOne, FPOne, FPOne);
7476 }
7477
Hal Finkelb0c810f2013-04-03 17:44:56 +00007478 SDValue Est = DAG.getNode(PPCISD::FRE, dl, VT, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00007479 DCI.AddToWorklist(Est.getNode());
7480
7481 // Newton iterations: Est = Est + Est (1 - Arg * Est)
7482 for (int i = 0; i < Iterations; ++i) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00007483 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Op, Est);
Hal Finkel2e103312013-04-03 04:01:11 +00007484 DCI.AddToWorklist(NewEst.getNode());
7485
Hal Finkelb0c810f2013-04-03 17:44:56 +00007486 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPOne, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00007487 DCI.AddToWorklist(NewEst.getNode());
7488
Hal Finkelb0c810f2013-04-03 17:44:56 +00007489 NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00007490 DCI.AddToWorklist(NewEst.getNode());
7491
Hal Finkelb0c810f2013-04-03 17:44:56 +00007492 Est = DAG.getNode(ISD::FADD, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00007493 DCI.AddToWorklist(Est.getNode());
7494 }
7495
7496 return Est;
7497 }
7498
7499 return SDValue();
7500}
7501
Hal Finkelb0c810f2013-04-03 17:44:56 +00007502SDValue PPCTargetLowering::DAGCombineFastRecipFSQRT(SDValue Op,
Hal Finkel2e103312013-04-03 04:01:11 +00007503 DAGCombinerInfo &DCI) const {
7504 if (DCI.isAfterLegalizeVectorOps())
7505 return SDValue();
7506
Hal Finkelb0c810f2013-04-03 17:44:56 +00007507 EVT VT = Op.getValueType();
7508
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007509 if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) ||
7510 (VT == MVT::f64 && Subtarget.hasFRSQRTE()) ||
7511 (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7512 (VT == MVT::v2f64 && Subtarget.hasVSX())) {
Hal Finkel2e103312013-04-03 04:01:11 +00007513
7514 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
7515 // For the reciprocal sqrt, we need to find the zero of the function:
7516 // F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)]
7517 // =>
7518 // X_{i+1} = X_i (1.5 - A X_i^2 / 2)
7519 // As a result, we precompute A/2 prior to the iteration loop.
7520
7521 // Convergence is quadratic, so we essentially double the number of digits
7522 // correct after every iteration. The minimum architected relative
7523 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
7524 // 23 digits and double has 52 digits.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007525 int Iterations = Subtarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00007526 if (VT.getScalarType() == MVT::f64)
Hal Finkel2e103312013-04-03 04:01:11 +00007527 ++Iterations;
7528
7529 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00007530 SDLoc dl(Op);
Hal Finkel2e103312013-04-03 04:01:11 +00007531
Hal Finkelb0c810f2013-04-03 17:44:56 +00007532 SDValue FPThreeHalves =
7533 DAG.getConstantFP(1.5, VT.getScalarType());
7534 if (VT.isVector()) {
7535 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel2e103312013-04-03 04:01:11 +00007536 "Unknown vector type");
Hal Finkelb0c810f2013-04-03 17:44:56 +00007537 FPThreeHalves = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
7538 FPThreeHalves, FPThreeHalves,
7539 FPThreeHalves, FPThreeHalves);
Hal Finkel2e103312013-04-03 04:01:11 +00007540 }
7541
Hal Finkelb0c810f2013-04-03 17:44:56 +00007542 SDValue Est = DAG.getNode(PPCISD::FRSQRTE, dl, VT, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00007543 DCI.AddToWorklist(Est.getNode());
7544
7545 // We now need 0.5*Arg which we can write as (1.5*Arg - Arg) so that
7546 // this entire sequence requires only one FP constant.
Hal Finkelb0c810f2013-04-03 17:44:56 +00007547 SDValue HalfArg = DAG.getNode(ISD::FMUL, dl, VT, FPThreeHalves, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00007548 DCI.AddToWorklist(HalfArg.getNode());
7549
Hal Finkelb0c810f2013-04-03 17:44:56 +00007550 HalfArg = DAG.getNode(ISD::FSUB, dl, VT, HalfArg, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00007551 DCI.AddToWorklist(HalfArg.getNode());
7552
7553 // Newton iterations: Est = Est * (1.5 - HalfArg * Est * Est)
7554 for (int i = 0; i < Iterations; ++i) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00007555 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, Est);
Hal Finkel2e103312013-04-03 04:01:11 +00007556 DCI.AddToWorklist(NewEst.getNode());
7557
Hal Finkelb0c810f2013-04-03 17:44:56 +00007558 NewEst = DAG.getNode(ISD::FMUL, dl, VT, HalfArg, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00007559 DCI.AddToWorklist(NewEst.getNode());
7560
Hal Finkelb0c810f2013-04-03 17:44:56 +00007561 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPThreeHalves, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00007562 DCI.AddToWorklist(NewEst.getNode());
7563
Hal Finkelb0c810f2013-04-03 17:44:56 +00007564 Est = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00007565 DCI.AddToWorklist(Est.getNode());
7566 }
7567
7568 return Est;
7569 }
7570
7571 return SDValue();
7572}
7573
Hal Finkel3604bf72014-08-01 01:02:01 +00007574static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base,
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007575 unsigned Bytes, int Dist,
7576 SelectionDAG &DAG) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007577 if (VT.getSizeInBits() / 8 != Bytes)
7578 return false;
7579
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007580 SDValue BaseLoc = Base->getBasePtr();
7581 if (Loc.getOpcode() == ISD::FrameIndex) {
7582 if (BaseLoc.getOpcode() != ISD::FrameIndex)
7583 return false;
7584 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7585 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
7586 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
7587 int FS = MFI->getObjectSize(FI);
7588 int BFS = MFI->getObjectSize(BFI);
7589 if (FS != BFS || FS != (int)Bytes) return false;
7590 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
7591 }
7592
7593 // Handle X+C
7594 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
7595 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
7596 return true;
7597
7598 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Craig Topper062a2ba2014-04-25 05:30:21 +00007599 const GlobalValue *GV1 = nullptr;
7600 const GlobalValue *GV2 = nullptr;
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007601 int64_t Offset1 = 0;
7602 int64_t Offset2 = 0;
7603 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
7604 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
7605 if (isGA1 && isGA2 && GV1 == GV2)
7606 return Offset1 == (Offset2 + Dist*Bytes);
7607 return false;
7608}
7609
Hal Finkel3604bf72014-08-01 01:02:01 +00007610// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
7611// not enforce equality of the chain operands.
7612static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base,
7613 unsigned Bytes, int Dist,
7614 SelectionDAG &DAG) {
7615 if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) {
7616 EVT VT = LS->getMemoryVT();
7617 SDValue Loc = LS->getBasePtr();
7618 return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG);
7619 }
7620
7621 if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
7622 EVT VT;
7623 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7624 default: return false;
7625 case Intrinsic::ppc_altivec_lvx:
7626 case Intrinsic::ppc_altivec_lvxl:
7627 VT = MVT::v4i32;
7628 break;
7629 case Intrinsic::ppc_altivec_lvebx:
7630 VT = MVT::i8;
7631 break;
7632 case Intrinsic::ppc_altivec_lvehx:
7633 VT = MVT::i16;
7634 break;
7635 case Intrinsic::ppc_altivec_lvewx:
7636 VT = MVT::i32;
7637 break;
7638 }
7639
7640 return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG);
7641 }
7642
7643 if (N->getOpcode() == ISD::INTRINSIC_VOID) {
7644 EVT VT;
7645 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7646 default: return false;
7647 case Intrinsic::ppc_altivec_stvx:
7648 case Intrinsic::ppc_altivec_stvxl:
7649 VT = MVT::v4i32;
7650 break;
7651 case Intrinsic::ppc_altivec_stvebx:
7652 VT = MVT::i8;
7653 break;
7654 case Intrinsic::ppc_altivec_stvehx:
7655 VT = MVT::i16;
7656 break;
7657 case Intrinsic::ppc_altivec_stvewx:
7658 VT = MVT::i32;
7659 break;
7660 }
7661
7662 return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG);
7663 }
7664
7665 return false;
7666}
7667
Hal Finkel7d8a6912013-05-26 18:08:30 +00007668// Return true is there is a nearyby consecutive load to the one provided
7669// (regardless of alignment). We search up and down the chain, looking though
Matt Arsenault57e74d22014-07-29 00:02:40 +00007670// token factors and other loads (but nothing else). As a result, a true result
7671// indicates that it is safe to create a new consecutive load adjacent to the
7672// load provided.
Hal Finkel7d8a6912013-05-26 18:08:30 +00007673static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
7674 SDValue Chain = LD->getChain();
7675 EVT VT = LD->getMemoryVT();
7676
7677 SmallSet<SDNode *, 16> LoadRoots;
7678 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
7679 SmallSet<SDNode *, 16> Visited;
7680
7681 // First, search up the chain, branching to follow all token-factor operands.
7682 // If we find a consecutive load, then we're done, otherwise, record all
7683 // nodes just above the top-level loads and token factors.
7684 while (!Queue.empty()) {
7685 SDNode *ChainNext = Queue.pop_back_val();
7686 if (!Visited.insert(ChainNext))
7687 continue;
7688
Hal Finkel3604bf72014-08-01 01:02:01 +00007689 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007690 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00007691 return true;
7692
7693 if (!Visited.count(ChainLD->getChain().getNode()))
7694 Queue.push_back(ChainLD->getChain().getNode());
7695 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
Craig Topper66e588b2014-06-29 00:40:57 +00007696 for (const SDUse &O : ChainNext->ops())
7697 if (!Visited.count(O.getNode()))
7698 Queue.push_back(O.getNode());
Hal Finkel7d8a6912013-05-26 18:08:30 +00007699 } else
7700 LoadRoots.insert(ChainNext);
7701 }
7702
7703 // Second, search down the chain, starting from the top-level nodes recorded
7704 // in the first phase. These top-level nodes are the nodes just above all
7705 // loads and token factors. Starting with their uses, recursively look though
7706 // all loads (just the chain uses) and token factors to find a consecutive
7707 // load.
7708 Visited.clear();
7709 Queue.clear();
7710
7711 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
7712 IE = LoadRoots.end(); I != IE; ++I) {
7713 Queue.push_back(*I);
7714
7715 while (!Queue.empty()) {
7716 SDNode *LoadRoot = Queue.pop_back_val();
7717 if (!Visited.insert(LoadRoot))
7718 continue;
7719
Hal Finkel3604bf72014-08-01 01:02:01 +00007720 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot))
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00007721 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00007722 return true;
7723
7724 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
7725 UE = LoadRoot->use_end(); UI != UE; ++UI)
Hal Finkel3604bf72014-08-01 01:02:01 +00007726 if (((isa<MemSDNode>(*UI) &&
7727 cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
Hal Finkel7d8a6912013-05-26 18:08:30 +00007728 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
7729 Queue.push_back(*UI);
7730 }
7731 }
7732
7733 return false;
7734}
7735
Hal Finkel940ab932014-02-28 00:27:01 +00007736SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N,
7737 DAGCombinerInfo &DCI) const {
7738 SelectionDAG &DAG = DCI.DAG;
7739 SDLoc dl(N);
7740
Eric Christopherb1aaebe2014-06-12 22:38:18 +00007741 assert(Subtarget.useCRBits() &&
Hal Finkel940ab932014-02-28 00:27:01 +00007742 "Expecting to be tracking CR bits");
7743 // If we're tracking CR bits, we need to be careful that we don't have:
7744 // trunc(binary-ops(zext(x), zext(y)))
7745 // or
7746 // trunc(binary-ops(binary-ops(zext(x), zext(y)), ...)
7747 // such that we're unnecessarily moving things into GPRs when it would be
7748 // better to keep them in CR bits.
7749
7750 // Note that trunc here can be an actual i1 trunc, or can be the effective
7751 // truncation that comes from a setcc or select_cc.
7752 if (N->getOpcode() == ISD::TRUNCATE &&
7753 N->getValueType(0) != MVT::i1)
7754 return SDValue();
7755
7756 if (N->getOperand(0).getValueType() != MVT::i32 &&
7757 N->getOperand(0).getValueType() != MVT::i64)
7758 return SDValue();
7759
7760 if (N->getOpcode() == ISD::SETCC ||
7761 N->getOpcode() == ISD::SELECT_CC) {
7762 // If we're looking at a comparison, then we need to make sure that the
7763 // high bits (all except for the first) don't matter the result.
7764 ISD::CondCode CC =
7765 cast<CondCodeSDNode>(N->getOperand(
7766 N->getOpcode() == ISD::SETCC ? 2 : 4))->get();
7767 unsigned OpBits = N->getOperand(0).getValueSizeInBits();
7768
7769 if (ISD::isSignedIntSetCC(CC)) {
7770 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
7771 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
7772 return SDValue();
7773 } else if (ISD::isUnsignedIntSetCC(CC)) {
7774 if (!DAG.MaskedValueIsZero(N->getOperand(0),
7775 APInt::getHighBitsSet(OpBits, OpBits-1)) ||
7776 !DAG.MaskedValueIsZero(N->getOperand(1),
7777 APInt::getHighBitsSet(OpBits, OpBits-1)))
7778 return SDValue();
7779 } else {
7780 // This is neither a signed nor an unsigned comparison, just make sure
7781 // that the high bits are equal.
7782 APInt Op1Zero, Op1One;
7783 APInt Op2Zero, Op2One;
Jay Foada0653a32014-05-14 21:14:37 +00007784 DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One);
7785 DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One);
Hal Finkel940ab932014-02-28 00:27:01 +00007786
7787 // We don't really care about what is known about the first bit (if
7788 // anything), so clear it in all masks prior to comparing them.
7789 Op1Zero.clearBit(0); Op1One.clearBit(0);
7790 Op2Zero.clearBit(0); Op2One.clearBit(0);
7791
7792 if (Op1Zero != Op2Zero || Op1One != Op2One)
7793 return SDValue();
7794 }
7795 }
7796
7797 // We now know that the higher-order bits are irrelevant, we just need to
7798 // make sure that all of the intermediate operations are bit operations, and
7799 // all inputs are extensions.
7800 if (N->getOperand(0).getOpcode() != ISD::AND &&
7801 N->getOperand(0).getOpcode() != ISD::OR &&
7802 N->getOperand(0).getOpcode() != ISD::XOR &&
7803 N->getOperand(0).getOpcode() != ISD::SELECT &&
7804 N->getOperand(0).getOpcode() != ISD::SELECT_CC &&
7805 N->getOperand(0).getOpcode() != ISD::TRUNCATE &&
7806 N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND &&
7807 N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND &&
7808 N->getOperand(0).getOpcode() != ISD::ANY_EXTEND)
7809 return SDValue();
7810
7811 if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) &&
7812 N->getOperand(1).getOpcode() != ISD::AND &&
7813 N->getOperand(1).getOpcode() != ISD::OR &&
7814 N->getOperand(1).getOpcode() != ISD::XOR &&
7815 N->getOperand(1).getOpcode() != ISD::SELECT &&
7816 N->getOperand(1).getOpcode() != ISD::SELECT_CC &&
7817 N->getOperand(1).getOpcode() != ISD::TRUNCATE &&
7818 N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND &&
7819 N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND &&
7820 N->getOperand(1).getOpcode() != ISD::ANY_EXTEND)
7821 return SDValue();
7822
7823 SmallVector<SDValue, 4> Inputs;
7824 SmallVector<SDValue, 8> BinOps, PromOps;
7825 SmallPtrSet<SDNode *, 16> Visited;
7826
7827 for (unsigned i = 0; i < 2; ++i) {
7828 if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
7829 N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
7830 N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
7831 N->getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
7832 isa<ConstantSDNode>(N->getOperand(i)))
7833 Inputs.push_back(N->getOperand(i));
7834 else
7835 BinOps.push_back(N->getOperand(i));
7836
7837 if (N->getOpcode() == ISD::TRUNCATE)
7838 break;
7839 }
7840
7841 // Visit all inputs, collect all binary operations (and, or, xor and
7842 // select) that are all fed by extensions.
7843 while (!BinOps.empty()) {
7844 SDValue BinOp = BinOps.back();
7845 BinOps.pop_back();
7846
7847 if (!Visited.insert(BinOp.getNode()))
7848 continue;
7849
7850 PromOps.push_back(BinOp);
7851
7852 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
7853 // The condition of the select is not promoted.
7854 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
7855 continue;
7856 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
7857 continue;
7858
7859 if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
7860 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
7861 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
7862 BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
7863 isa<ConstantSDNode>(BinOp.getOperand(i))) {
7864 Inputs.push_back(BinOp.getOperand(i));
7865 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
7866 BinOp.getOperand(i).getOpcode() == ISD::OR ||
7867 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
7868 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
7869 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC ||
7870 BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
7871 BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
7872 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
7873 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) {
7874 BinOps.push_back(BinOp.getOperand(i));
7875 } else {
7876 // We have an input that is not an extension or another binary
7877 // operation; we'll abort this transformation.
7878 return SDValue();
7879 }
7880 }
7881 }
7882
7883 // Make sure that this is a self-contained cluster of operations (which
7884 // is not quite the same thing as saying that everything has only one
7885 // use).
7886 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
7887 if (isa<ConstantSDNode>(Inputs[i]))
7888 continue;
7889
7890 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
7891 UE = Inputs[i].getNode()->use_end();
7892 UI != UE; ++UI) {
7893 SDNode *User = *UI;
7894 if (User != N && !Visited.count(User))
7895 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00007896
7897 // Make sure that we're not going to promote the non-output-value
7898 // operand(s) or SELECT or SELECT_CC.
7899 // FIXME: Although we could sometimes handle this, and it does occur in
7900 // practice that one of the condition inputs to the select is also one of
7901 // the outputs, we currently can't deal with this.
7902 if (User->getOpcode() == ISD::SELECT) {
7903 if (User->getOperand(0) == Inputs[i])
7904 return SDValue();
7905 } else if (User->getOpcode() == ISD::SELECT_CC) {
7906 if (User->getOperand(0) == Inputs[i] ||
7907 User->getOperand(1) == Inputs[i])
7908 return SDValue();
7909 }
Hal Finkel940ab932014-02-28 00:27:01 +00007910 }
7911 }
7912
7913 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
7914 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
7915 UE = PromOps[i].getNode()->use_end();
7916 UI != UE; ++UI) {
7917 SDNode *User = *UI;
7918 if (User != N && !Visited.count(User))
7919 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00007920
7921 // Make sure that we're not going to promote the non-output-value
7922 // operand(s) or SELECT or SELECT_CC.
7923 // FIXME: Although we could sometimes handle this, and it does occur in
7924 // practice that one of the condition inputs to the select is also one of
7925 // the outputs, we currently can't deal with this.
7926 if (User->getOpcode() == ISD::SELECT) {
7927 if (User->getOperand(0) == PromOps[i])
7928 return SDValue();
7929 } else if (User->getOpcode() == ISD::SELECT_CC) {
7930 if (User->getOperand(0) == PromOps[i] ||
7931 User->getOperand(1) == PromOps[i])
7932 return SDValue();
7933 }
Hal Finkel940ab932014-02-28 00:27:01 +00007934 }
7935 }
7936
7937 // Replace all inputs with the extension operand.
7938 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
7939 // Constants may have users outside the cluster of to-be-promoted nodes,
7940 // and so we need to replace those as we do the promotions.
7941 if (isa<ConstantSDNode>(Inputs[i]))
7942 continue;
7943 else
7944 DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0));
7945 }
7946
7947 // Replace all operations (these are all the same, but have a different
7948 // (i1) return type). DAG.getNode will validate that the types of
7949 // a binary operator match, so go through the list in reverse so that
7950 // we've likely promoted both operands first. Any intermediate truncations or
7951 // extensions disappear.
7952 while (!PromOps.empty()) {
7953 SDValue PromOp = PromOps.back();
7954 PromOps.pop_back();
7955
7956 if (PromOp.getOpcode() == ISD::TRUNCATE ||
7957 PromOp.getOpcode() == ISD::SIGN_EXTEND ||
7958 PromOp.getOpcode() == ISD::ZERO_EXTEND ||
7959 PromOp.getOpcode() == ISD::ANY_EXTEND) {
7960 if (!isa<ConstantSDNode>(PromOp.getOperand(0)) &&
7961 PromOp.getOperand(0).getValueType() != MVT::i1) {
7962 // The operand is not yet ready (see comment below).
7963 PromOps.insert(PromOps.begin(), PromOp);
7964 continue;
7965 }
7966
7967 SDValue RepValue = PromOp.getOperand(0);
7968 if (isa<ConstantSDNode>(RepValue))
7969 RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue);
7970
7971 DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue);
7972 continue;
7973 }
7974
7975 unsigned C;
7976 switch (PromOp.getOpcode()) {
7977 default: C = 0; break;
7978 case ISD::SELECT: C = 1; break;
7979 case ISD::SELECT_CC: C = 2; break;
7980 }
7981
7982 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
7983 PromOp.getOperand(C).getValueType() != MVT::i1) ||
7984 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
7985 PromOp.getOperand(C+1).getValueType() != MVT::i1)) {
7986 // The to-be-promoted operands of this node have not yet been
7987 // promoted (this should be rare because we're going through the
7988 // list backward, but if one of the operands has several users in
7989 // this cluster of to-be-promoted nodes, it is possible).
7990 PromOps.insert(PromOps.begin(), PromOp);
7991 continue;
7992 }
7993
7994 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
7995 PromOp.getNode()->op_end());
7996
7997 // If there are any constant inputs, make sure they're replaced now.
7998 for (unsigned i = 0; i < 2; ++i)
7999 if (isa<ConstantSDNode>(Ops[C+i]))
8000 Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]);
8001
8002 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +00008003 DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops));
Hal Finkel940ab932014-02-28 00:27:01 +00008004 }
8005
8006 // Now we're left with the initial truncation itself.
8007 if (N->getOpcode() == ISD::TRUNCATE)
8008 return N->getOperand(0);
8009
8010 // Otherwise, this is a comparison. The operands to be compared have just
8011 // changed type (to i1), but everything else is the same.
8012 return SDValue(N, 0);
8013}
8014
8015SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N,
8016 DAGCombinerInfo &DCI) const {
8017 SelectionDAG &DAG = DCI.DAG;
8018 SDLoc dl(N);
8019
Hal Finkel940ab932014-02-28 00:27:01 +00008020 // If we're tracking CR bits, we need to be careful that we don't have:
8021 // zext(binary-ops(trunc(x), trunc(y)))
8022 // or
8023 // zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...)
8024 // such that we're unnecessarily moving things into CR bits that can more
8025 // efficiently stay in GPRs. Note that if we're not certain that the high
8026 // bits are set as required by the final extension, we still may need to do
8027 // some masking to get the proper behavior.
8028
Hal Finkel46043ed2014-03-01 21:36:57 +00008029 // This same functionality is important on PPC64 when dealing with
8030 // 32-to-64-bit extensions; these occur often when 32-bit values are used as
8031 // the return values of functions. Because it is so similar, it is handled
8032 // here as well.
8033
Hal Finkel940ab932014-02-28 00:27:01 +00008034 if (N->getValueType(0) != MVT::i32 &&
8035 N->getValueType(0) != MVT::i64)
8036 return SDValue();
8037
Hal Finkel46043ed2014-03-01 21:36:57 +00008038 if (!((N->getOperand(0).getValueType() == MVT::i1 &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008039 Subtarget.useCRBits()) ||
Hal Finkel46043ed2014-03-01 21:36:57 +00008040 (N->getOperand(0).getValueType() == MVT::i32 &&
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008041 Subtarget.isPPC64())))
Hal Finkel940ab932014-02-28 00:27:01 +00008042 return SDValue();
8043
8044 if (N->getOperand(0).getOpcode() != ISD::AND &&
8045 N->getOperand(0).getOpcode() != ISD::OR &&
8046 N->getOperand(0).getOpcode() != ISD::XOR &&
8047 N->getOperand(0).getOpcode() != ISD::SELECT &&
8048 N->getOperand(0).getOpcode() != ISD::SELECT_CC)
8049 return SDValue();
8050
8051 SmallVector<SDValue, 4> Inputs;
8052 SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps;
8053 SmallPtrSet<SDNode *, 16> Visited;
8054
8055 // Visit all inputs, collect all binary operations (and, or, xor and
8056 // select) that are all fed by truncations.
8057 while (!BinOps.empty()) {
8058 SDValue BinOp = BinOps.back();
8059 BinOps.pop_back();
8060
8061 if (!Visited.insert(BinOp.getNode()))
8062 continue;
8063
8064 PromOps.push_back(BinOp);
8065
8066 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
8067 // The condition of the select is not promoted.
8068 if (BinOp.getOpcode() == ISD::SELECT && i == 0)
8069 continue;
8070 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
8071 continue;
8072
8073 if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
8074 isa<ConstantSDNode>(BinOp.getOperand(i))) {
8075 Inputs.push_back(BinOp.getOperand(i));
8076 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
8077 BinOp.getOperand(i).getOpcode() == ISD::OR ||
8078 BinOp.getOperand(i).getOpcode() == ISD::XOR ||
8079 BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
8080 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) {
8081 BinOps.push_back(BinOp.getOperand(i));
8082 } else {
8083 // We have an input that is not a truncation or another binary
8084 // operation; we'll abort this transformation.
8085 return SDValue();
8086 }
8087 }
8088 }
8089
8090 // Make sure that this is a self-contained cluster of operations (which
8091 // is not quite the same thing as saying that everything has only one
8092 // use).
8093 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8094 if (isa<ConstantSDNode>(Inputs[i]))
8095 continue;
8096
8097 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
8098 UE = Inputs[i].getNode()->use_end();
8099 UI != UE; ++UI) {
8100 SDNode *User = *UI;
8101 if (User != N && !Visited.count(User))
8102 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008103
8104 // Make sure that we're not going to promote the non-output-value
8105 // operand(s) or SELECT or SELECT_CC.
8106 // FIXME: Although we could sometimes handle this, and it does occur in
8107 // practice that one of the condition inputs to the select is also one of
8108 // the outputs, we currently can't deal with this.
8109 if (User->getOpcode() == ISD::SELECT) {
8110 if (User->getOperand(0) == Inputs[i])
8111 return SDValue();
8112 } else if (User->getOpcode() == ISD::SELECT_CC) {
8113 if (User->getOperand(0) == Inputs[i] ||
8114 User->getOperand(1) == Inputs[i])
8115 return SDValue();
8116 }
Hal Finkel940ab932014-02-28 00:27:01 +00008117 }
8118 }
8119
8120 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
8121 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
8122 UE = PromOps[i].getNode()->use_end();
8123 UI != UE; ++UI) {
8124 SDNode *User = *UI;
8125 if (User != N && !Visited.count(User))
8126 return SDValue();
Hal Finkel46043ed2014-03-01 21:36:57 +00008127
8128 // Make sure that we're not going to promote the non-output-value
8129 // operand(s) or SELECT or SELECT_CC.
8130 // FIXME: Although we could sometimes handle this, and it does occur in
8131 // practice that one of the condition inputs to the select is also one of
8132 // the outputs, we currently can't deal with this.
8133 if (User->getOpcode() == ISD::SELECT) {
8134 if (User->getOperand(0) == PromOps[i])
8135 return SDValue();
8136 } else if (User->getOpcode() == ISD::SELECT_CC) {
8137 if (User->getOperand(0) == PromOps[i] ||
8138 User->getOperand(1) == PromOps[i])
8139 return SDValue();
8140 }
Hal Finkel940ab932014-02-28 00:27:01 +00008141 }
8142 }
8143
Hal Finkel46043ed2014-03-01 21:36:57 +00008144 unsigned PromBits = N->getOperand(0).getValueSizeInBits();
Hal Finkel940ab932014-02-28 00:27:01 +00008145 bool ReallyNeedsExt = false;
8146 if (N->getOpcode() != ISD::ANY_EXTEND) {
8147 // If all of the inputs are not already sign/zero extended, then
8148 // we'll still need to do that at the end.
8149 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8150 if (isa<ConstantSDNode>(Inputs[i]))
8151 continue;
8152
8153 unsigned OpBits =
8154 Inputs[i].getOperand(0).getValueSizeInBits();
Hal Finkel46043ed2014-03-01 21:36:57 +00008155 assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
8156
Hal Finkel940ab932014-02-28 00:27:01 +00008157 if ((N->getOpcode() == ISD::ZERO_EXTEND &&
8158 !DAG.MaskedValueIsZero(Inputs[i].getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +00008159 APInt::getHighBitsSet(OpBits,
8160 OpBits-PromBits))) ||
Hal Finkel940ab932014-02-28 00:27:01 +00008161 (N->getOpcode() == ISD::SIGN_EXTEND &&
Hal Finkel46043ed2014-03-01 21:36:57 +00008162 DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) <
8163 (OpBits-(PromBits-1)))) {
Hal Finkel940ab932014-02-28 00:27:01 +00008164 ReallyNeedsExt = true;
8165 break;
8166 }
8167 }
8168 }
8169
8170 // Replace all inputs, either with the truncation operand, or a
8171 // truncation or extension to the final output type.
8172 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8173 // Constant inputs need to be replaced with the to-be-promoted nodes that
8174 // use them because they might have users outside of the cluster of
8175 // promoted nodes.
8176 if (isa<ConstantSDNode>(Inputs[i]))
8177 continue;
8178
8179 SDValue InSrc = Inputs[i].getOperand(0);
8180 if (Inputs[i].getValueType() == N->getValueType(0))
8181 DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc);
8182 else if (N->getOpcode() == ISD::SIGN_EXTEND)
8183 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8184 DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0)));
8185 else if (N->getOpcode() == ISD::ZERO_EXTEND)
8186 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8187 DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0)));
8188 else
8189 DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8190 DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0)));
8191 }
8192
8193 // Replace all operations (these are all the same, but have a different
8194 // (promoted) return type). DAG.getNode will validate that the types of
8195 // a binary operator match, so go through the list in reverse so that
8196 // we've likely promoted both operands first.
8197 while (!PromOps.empty()) {
8198 SDValue PromOp = PromOps.back();
8199 PromOps.pop_back();
8200
8201 unsigned C;
8202 switch (PromOp.getOpcode()) {
8203 default: C = 0; break;
8204 case ISD::SELECT: C = 1; break;
8205 case ISD::SELECT_CC: C = 2; break;
8206 }
8207
8208 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
8209 PromOp.getOperand(C).getValueType() != N->getValueType(0)) ||
8210 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
8211 PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) {
8212 // The to-be-promoted operands of this node have not yet been
8213 // promoted (this should be rare because we're going through the
8214 // list backward, but if one of the operands has several users in
8215 // this cluster of to-be-promoted nodes, it is possible).
8216 PromOps.insert(PromOps.begin(), PromOp);
8217 continue;
8218 }
8219
8220 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
8221 PromOp.getNode()->op_end());
8222
8223 // If this node has constant inputs, then they'll need to be promoted here.
8224 for (unsigned i = 0; i < 2; ++i) {
8225 if (!isa<ConstantSDNode>(Ops[C+i]))
8226 continue;
8227 if (Ops[C+i].getValueType() == N->getValueType(0))
8228 continue;
8229
8230 if (N->getOpcode() == ISD::SIGN_EXTEND)
8231 Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8232 else if (N->getOpcode() == ISD::ZERO_EXTEND)
8233 Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8234 else
8235 Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8236 }
8237
8238 DAG.ReplaceAllUsesOfValueWith(PromOp,
Craig Topper48d114b2014-04-26 18:35:24 +00008239 DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops));
Hal Finkel940ab932014-02-28 00:27:01 +00008240 }
8241
8242 // Now we're left with the initial extension itself.
8243 if (!ReallyNeedsExt)
8244 return N->getOperand(0);
8245
Hal Finkel46043ed2014-03-01 21:36:57 +00008246 // To zero extend, just mask off everything except for the first bit (in the
8247 // i1 case).
Hal Finkel940ab932014-02-28 00:27:01 +00008248 if (N->getOpcode() == ISD::ZERO_EXTEND)
8249 return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0),
Hal Finkel46043ed2014-03-01 21:36:57 +00008250 DAG.getConstant(APInt::getLowBitsSet(
8251 N->getValueSizeInBits(0), PromBits),
8252 N->getValueType(0)));
Hal Finkel940ab932014-02-28 00:27:01 +00008253
8254 assert(N->getOpcode() == ISD::SIGN_EXTEND &&
8255 "Invalid extension type");
8256 EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0));
8257 SDValue ShiftCst =
Hal Finkel46043ed2014-03-01 21:36:57 +00008258 DAG.getConstant(N->getValueSizeInBits(0)-PromBits, ShiftAmountTy);
Hal Finkel940ab932014-02-28 00:27:01 +00008259 return DAG.getNode(ISD::SRA, dl, N->getValueType(0),
8260 DAG.getNode(ISD::SHL, dl, N->getValueType(0),
8261 N->getOperand(0), ShiftCst), ShiftCst);
8262}
8263
Duncan Sandsdc2dac12008-11-24 14:53:14 +00008264SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
8265 DAGCombinerInfo &DCI) const {
Dan Gohman57c732b2010-04-21 01:34:56 +00008266 const TargetMachine &TM = getTargetMachine();
Chris Lattnerf4184352006-03-01 04:57:39 +00008267 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008268 SDLoc dl(N);
Chris Lattnerf4184352006-03-01 04:57:39 +00008269 switch (N->getOpcode()) {
8270 default: break;
Chris Lattner3c48ea52006-09-19 05:22:59 +00008271 case PPCISD::SHL:
8272 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008273 if (C->isNullValue()) // 0 << V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008274 return N->getOperand(0);
8275 }
8276 break;
8277 case PPCISD::SRL:
8278 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008279 if (C->isNullValue()) // 0 >>u V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008280 return N->getOperand(0);
8281 }
8282 break;
8283 case PPCISD::SRA:
8284 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00008285 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00008286 C->isAllOnesValue()) // -1 >>s V -> -1.
8287 return N->getOperand(0);
8288 }
8289 break;
Hal Finkel940ab932014-02-28 00:27:01 +00008290 case ISD::SIGN_EXTEND:
8291 case ISD::ZERO_EXTEND:
8292 case ISD::ANY_EXTEND:
8293 return DAGCombineExtBoolTrunc(N, DCI);
8294 case ISD::TRUNCATE:
8295 case ISD::SETCC:
8296 case ISD::SELECT_CC:
8297 return DAGCombineTruncBoolExt(N, DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00008298 case ISD::FDIV: {
8299 assert(TM.Options.UnsafeFPMath &&
8300 "Reciprocal estimates require UnsafeFPMath");
Scott Michelcf0da6c2009-02-17 22:15:04 +00008301
Hal Finkel2e103312013-04-03 04:01:11 +00008302 if (N->getOperand(1).getOpcode() == ISD::FSQRT) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00008303 SDValue RV =
8304 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0), DCI);
Craig Topper062a2ba2014-04-25 05:30:21 +00008305 if (RV.getNode()) {
Hal Finkel2e103312013-04-03 04:01:11 +00008306 DCI.AddToWorklist(RV.getNode());
8307 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
8308 N->getOperand(0), RV);
8309 }
Hal Finkelf96c18e2013-04-04 22:44:12 +00008310 } else if (N->getOperand(1).getOpcode() == ISD::FP_EXTEND &&
8311 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
8312 SDValue RV =
8313 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
8314 DCI);
Craig Topper062a2ba2014-04-25 05:30:21 +00008315 if (RV.getNode()) {
Hal Finkelf96c18e2013-04-04 22:44:12 +00008316 DCI.AddToWorklist(RV.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00008317 RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N->getOperand(1)),
Hal Finkelf96c18e2013-04-04 22:44:12 +00008318 N->getValueType(0), RV);
8319 DCI.AddToWorklist(RV.getNode());
8320 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
8321 N->getOperand(0), RV);
8322 }
8323 } else if (N->getOperand(1).getOpcode() == ISD::FP_ROUND &&
8324 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
8325 SDValue RV =
8326 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
8327 DCI);
Craig Topper062a2ba2014-04-25 05:30:21 +00008328 if (RV.getNode()) {
Hal Finkelf96c18e2013-04-04 22:44:12 +00008329 DCI.AddToWorklist(RV.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00008330 RV = DAG.getNode(ISD::FP_ROUND, SDLoc(N->getOperand(1)),
Hal Finkelf96c18e2013-04-04 22:44:12 +00008331 N->getValueType(0), RV,
8332 N->getOperand(1).getOperand(1));
8333 DCI.AddToWorklist(RV.getNode());
8334 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
8335 N->getOperand(0), RV);
8336 }
Hal Finkel2e103312013-04-03 04:01:11 +00008337 }
8338
Hal Finkelb0c810f2013-04-03 17:44:56 +00008339 SDValue RV = DAGCombineFastRecip(N->getOperand(1), DCI);
Craig Topper062a2ba2014-04-25 05:30:21 +00008340 if (RV.getNode()) {
Hal Finkel2e103312013-04-03 04:01:11 +00008341 DCI.AddToWorklist(RV.getNode());
8342 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
8343 N->getOperand(0), RV);
8344 }
8345
8346 }
8347 break;
8348 case ISD::FSQRT: {
8349 assert(TM.Options.UnsafeFPMath &&
8350 "Reciprocal estimates require UnsafeFPMath");
8351
8352 // Compute this as 1/(1/sqrt(X)), which is the reciprocal of the
8353 // reciprocal sqrt.
Hal Finkelb0c810f2013-04-03 17:44:56 +00008354 SDValue RV = DAGCombineFastRecipFSQRT(N->getOperand(0), DCI);
Craig Topper062a2ba2014-04-25 05:30:21 +00008355 if (RV.getNode()) {
Hal Finkel2e103312013-04-03 04:01:11 +00008356 DCI.AddToWorklist(RV.getNode());
Hal Finkelb0c810f2013-04-03 17:44:56 +00008357 RV = DAGCombineFastRecip(RV, DCI);
Craig Topper062a2ba2014-04-25 05:30:21 +00008358 if (RV.getNode()) {
Eric Christopher174c6622014-05-30 22:47:48 +00008359 // Unfortunately, RV is now NaN if the input was exactly 0. Select out
8360 // this case and force the answer to 0.
Hal Finkel1e2e3ea2013-09-12 19:04:12 +00008361
8362 EVT VT = RV.getValueType();
8363
8364 SDValue Zero = DAG.getConstantFP(0.0, VT.getScalarType());
8365 if (VT.isVector()) {
8366 assert(VT.getVectorNumElements() == 4 && "Unknown vector type");
8367 Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Zero, Zero, Zero, Zero);
8368 }
8369
8370 SDValue ZeroCmp =
8371 DAG.getSetCC(dl, getSetCCResultType(*DAG.getContext(), VT),
8372 N->getOperand(0), Zero, ISD::SETEQ);
8373 DCI.AddToWorklist(ZeroCmp.getNode());
8374 DCI.AddToWorklist(RV.getNode());
8375
8376 RV = DAG.getNode(VT.isVector() ? ISD::VSELECT : ISD::SELECT, dl, VT,
8377 ZeroCmp, Zero, RV);
Hal Finkel2e103312013-04-03 04:01:11 +00008378 return RV;
Hal Finkel1e2e3ea2013-09-12 19:04:12 +00008379 }
Hal Finkel2e103312013-04-03 04:01:11 +00008380 }
8381
8382 }
8383 break;
Chris Lattnerf4184352006-03-01 04:57:39 +00008384 case ISD::SINT_TO_FP:
Chris Lattnera35f3062006-06-16 17:34:12 +00008385 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattner4a66d692006-03-22 05:30:33 +00008386 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
8387 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
8388 // We allow the src/dst to be either f32/f64, but the intermediate
8389 // type must be i64.
Owen Anderson9f944592009-08-11 20:47:22 +00008390 if (N->getOperand(0).getValueType() == MVT::i64 &&
8391 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008392 SDValue Val = N->getOperand(0).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00008393 if (Val.getValueType() == MVT::f32) {
8394 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008395 DCI.AddToWorklist(Val.getNode());
Chris Lattner4a66d692006-03-22 05:30:33 +00008396 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008397
Owen Anderson9f944592009-08-11 20:47:22 +00008398 Val = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008399 DCI.AddToWorklist(Val.getNode());
Owen Anderson9f944592009-08-11 20:47:22 +00008400 Val = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008401 DCI.AddToWorklist(Val.getNode());
Owen Anderson9f944592009-08-11 20:47:22 +00008402 if (N->getValueType(0) == MVT::f32) {
8403 Val = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Val,
Chris Lattner72733e52008-01-17 07:00:52 +00008404 DAG.getIntPtrConstant(0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00008405 DCI.AddToWorklist(Val.getNode());
Chris Lattner4a66d692006-03-22 05:30:33 +00008406 }
8407 return Val;
Owen Anderson9f944592009-08-11 20:47:22 +00008408 } else if (N->getOperand(0).getValueType() == MVT::i32) {
Chris Lattner4a66d692006-03-22 05:30:33 +00008409 // If the intermediate type is i32, we can avoid the load/store here
8410 // too.
Chris Lattnerf4184352006-03-01 04:57:39 +00008411 }
Chris Lattnerf4184352006-03-01 04:57:39 +00008412 }
8413 }
8414 break;
Chris Lattner27f53452006-03-01 05:50:56 +00008415 case ISD::STORE:
8416 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
8417 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnerf5b46f72008-01-18 16:54:56 +00008418 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner27f53452006-03-01 05:50:56 +00008419 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson9f944592009-08-11 20:47:22 +00008420 N->getOperand(1).getValueType() == MVT::i32 &&
8421 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008422 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00008423 if (Val.getValueType() == MVT::f32) {
8424 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008425 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008426 }
Owen Anderson9f944592009-08-11 20:47:22 +00008427 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00008428 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008429
Hal Finkel60c75102013-04-01 15:37:53 +00008430 SDValue Ops[] = {
8431 N->getOperand(0), Val, N->getOperand(2),
8432 DAG.getValueType(N->getOperand(1).getValueType())
8433 };
8434
8435 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
Craig Topper206fcd42014-04-26 19:29:41 +00008436 DAG.getVTList(MVT::Other), Ops,
Hal Finkel60c75102013-04-01 15:37:53 +00008437 cast<StoreSDNode>(N)->getMemoryVT(),
8438 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greiff304a7a2008-08-28 21:40:38 +00008439 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00008440 return Val;
8441 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008442
Chris Lattnera7976d32006-07-10 20:56:58 +00008443 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman28328db2009-09-25 00:57:30 +00008444 if (cast<StoreSDNode>(N)->isUnindexed() &&
8445 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00008446 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson9f944592009-08-11 20:47:22 +00008447 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkel31d29562013-03-28 19:25:55 +00008448 N->getOperand(1).getValueType() == MVT::i16 ||
8449 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel22e41c42013-03-28 20:23:46 +00008450 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00008451 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008452 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnera7976d32006-07-10 20:56:58 +00008453 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson9f944592009-08-11 20:47:22 +00008454 if (BSwapOp.getValueType() == MVT::i16)
8455 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnera7976d32006-07-10 20:56:58 +00008456
Dan Gohman48b185d2009-09-25 20:36:54 +00008457 SDValue Ops[] = {
8458 N->getOperand(0), BSwapOp, N->getOperand(2),
8459 DAG.getValueType(N->getOperand(1).getValueType())
8460 };
8461 return
8462 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00008463 Ops, cast<StoreSDNode>(N)->getMemoryVT(),
Dan Gohman48b185d2009-09-25 20:36:54 +00008464 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00008465 }
8466 break;
Hal Finkelcf2e9082013-05-24 23:00:14 +00008467 case ISD::LOAD: {
8468 LoadSDNode *LD = cast<LoadSDNode>(N);
8469 EVT VT = LD->getValueType(0);
8470 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
8471 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
8472 if (ISD::isNON_EXTLoad(N) && VT.isVector() &&
8473 TM.getSubtarget<PPCSubtarget>().hasAltivec() &&
Hal Finkel40c34782013-09-15 22:09:58 +00008474 (VT == MVT::v16i8 || VT == MVT::v8i16 ||
8475 VT == MVT::v4i32 || VT == MVT::v4f32) &&
Hal Finkelcf2e9082013-05-24 23:00:14 +00008476 LD->getAlignment() < ABIAlignment) {
8477 // This is a type-legal unaligned Altivec load.
8478 SDValue Chain = LD->getChain();
8479 SDValue Ptr = LD->getBasePtr();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008480 bool isLittleEndian = Subtarget.isLittleEndian();
Hal Finkelcf2e9082013-05-24 23:00:14 +00008481
8482 // This implements the loading of unaligned vectors as described in
8483 // the venerable Apple Velocity Engine overview. Specifically:
8484 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
8485 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
8486 //
8487 // The general idea is to expand a sequence of one or more unaligned
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008488 // loads into an alignment-based permutation-control instruction (lvsl
8489 // or lvsr), a series of regular vector loads (which always truncate
8490 // their input address to an aligned address), and a series of
8491 // permutations. The results of these permutations are the requested
8492 // loaded values. The trick is that the last "extra" load is not taken
8493 // from the address you might suspect (sizeof(vector) bytes after the
8494 // last requested load), but rather sizeof(vector) - 1 bytes after the
8495 // last requested vector. The point of this is to avoid a page fault if
8496 // the base address happened to be aligned. This works because if the
8497 // base address is aligned, then adding less than a full vector length
8498 // will cause the last vector in the sequence to be (re)loaded.
8499 // Otherwise, the next vector will be fetched as you might suspect was
8500 // necessary.
Hal Finkelcf2e9082013-05-24 23:00:14 +00008501
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008502 // We might be able to reuse the permutation generation from
Hal Finkelcf2e9082013-05-24 23:00:14 +00008503 // a different base address offset from this one by an aligned amount.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008504 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
8505 // optimization later.
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008506 Intrinsic::ID Intr = (isLittleEndian ?
8507 Intrinsic::ppc_altivec_lvsr :
8508 Intrinsic::ppc_altivec_lvsl);
8509 SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, MVT::v16i8);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008510
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008511 // Create the new MMO for the new base load. It is like the original MMO,
8512 // but represents an area in memory almost twice the vector size centered
8513 // on the original address. If the address is unaligned, we might start
8514 // reading up to (sizeof(vector)-1) bytes below the address of the
8515 // original unaligned load.
Hal Finkelcf2e9082013-05-24 23:00:14 +00008516 MachineFunction &MF = DAG.getMachineFunction();
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008517 MachineMemOperand *BaseMMO =
8518 MF.getMachineMemOperand(LD->getMemOperand(),
8519 -LD->getMemoryVT().getStoreSize()+1,
8520 2*LD->getMemoryVT().getStoreSize()-1);
8521
8522 // Create the new base load.
8523 SDValue LDXIntID = DAG.getTargetConstant(Intrinsic::ppc_altivec_lvx,
8524 getPointerTy());
8525 SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr };
8526 SDValue BaseLoad =
8527 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
8528 DAG.getVTList(MVT::v4i32, MVT::Other),
8529 BaseLoadOps, MVT::v4i32, BaseMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008530
8531 // Note that the value of IncOffset (which is provided to the next
8532 // load's pointer info offset value, and thus used to calculate the
8533 // alignment), and the value of IncValue (which is actually used to
8534 // increment the pointer value) are different! This is because we
8535 // require the next load to appear to be aligned, even though it
8536 // is actually offset from the base pointer by a lesser amount.
8537 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel7d8a6912013-05-26 18:08:30 +00008538 int IncValue = IncOffset;
8539
8540 // Walk (both up and down) the chain looking for another load at the real
8541 // (aligned) offset (the alignment of the other load does not matter in
8542 // this case). If found, then do not use the offset reduction trick, as
8543 // that will prevent the loads from being later combined (as they would
8544 // otherwise be duplicates).
8545 if (!findConsecutiveLoad(LD, DAG))
8546 --IncValue;
8547
Hal Finkelcf2e9082013-05-24 23:00:14 +00008548 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
8549 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
8550
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008551 MachineMemOperand *ExtraMMO =
8552 MF.getMachineMemOperand(LD->getMemOperand(),
8553 1, 2*LD->getMemoryVT().getStoreSize()-1);
8554 SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr };
Hal Finkelcf2e9082013-05-24 23:00:14 +00008555 SDValue ExtraLoad =
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008556 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
8557 DAG.getVTList(MVT::v4i32, MVT::Other),
8558 ExtraLoadOps, MVT::v4i32, ExtraMMO);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008559
8560 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8561 BaseLoad.getValue(1), ExtraLoad.getValue(1));
8562
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008563 // Because vperm has a big-endian bias, we must reverse the order
8564 // of the input vectors and complement the permute control vector
8565 // when generating little endian code. We have already handled the
8566 // latter by using lvsr instead of lvsl, so just reverse BaseLoad
8567 // and ExtraLoad here.
8568 SDValue Perm;
8569 if (isLittleEndian)
8570 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
8571 ExtraLoad, BaseLoad, PermCntl, DAG, dl);
8572 else
8573 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
8574 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008575
8576 if (VT != MVT::v4i32)
8577 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
8578
Hal Finkelb6d0d6b2014-08-01 05:20:41 +00008579 // The output of the permutation is our loaded result, the TokenFactor is
8580 // our new chain.
8581 DCI.CombineTo(N, Perm, TF);
Hal Finkelcf2e9082013-05-24 23:00:14 +00008582 return SDValue(N, 0);
8583 }
8584 }
8585 break;
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008586 case ISD::INTRINSIC_WO_CHAIN: {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008587 bool isLittleEndian = Subtarget.isLittleEndian();
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008588 Intrinsic::ID Intr = (isLittleEndian ?
8589 Intrinsic::ppc_altivec_lvsr :
8590 Intrinsic::ppc_altivec_lvsl);
8591 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() == Intr &&
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008592 N->getOperand(1)->getOpcode() == ISD::ADD) {
8593 SDValue Add = N->getOperand(1);
8594
8595 if (DAG.MaskedValueIsZero(Add->getOperand(1),
8596 APInt::getAllOnesValue(4 /* 16 byte alignment */).zext(
8597 Add.getValueType().getScalarType().getSizeInBits()))) {
8598 SDNode *BasePtr = Add->getOperand(0).getNode();
8599 for (SDNode::use_iterator UI = BasePtr->use_begin(),
8600 UE = BasePtr->use_end(); UI != UE; ++UI) {
8601 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
8602 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008603 Intr) {
8604 // We've found another LVSL/LVSR, and this address is an aligned
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00008605 // multiple of that one. The results will be the same, so use the
8606 // one we've just found instead.
8607
8608 return SDValue(*UI, 0);
8609 }
8610 }
8611 }
8612 }
Bill Schmidt6b5a7df2014-06-09 22:00:52 +00008613 }
Hal Finkelc3cfbf82013-09-13 20:09:02 +00008614
8615 break;
Chris Lattnera7976d32006-07-10 20:56:58 +00008616 case ISD::BSWAP:
8617 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greiff304a7a2008-08-28 21:40:38 +00008618 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnera7976d32006-07-10 20:56:58 +00008619 N->getOperand(0).hasOneUse() &&
Hal Finkel31d29562013-03-28 19:25:55 +00008620 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
8621 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel22e41c42013-03-28 20:23:46 +00008622 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00008623 N->getValueType(0) == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008624 SDValue Load = N->getOperand(0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00008625 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnera7976d32006-07-10 20:56:58 +00008626 // Create the byte-swapping load.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008627 SDValue Ops[] = {
Evan Chenge71fe34d2006-10-09 20:57:25 +00008628 LD->getChain(), // Chain
8629 LD->getBasePtr(), // Ptr
Chris Lattnerd66f14e2006-08-11 17:18:05 +00008630 DAG.getValueType(N->getValueType(0)) // VT
8631 };
Dan Gohman48b185d2009-09-25 20:36:54 +00008632 SDValue BSLoad =
8633 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkel31d29562013-03-28 19:25:55 +00008634 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
8635 MVT::i64 : MVT::i32, MVT::Other),
Craig Topper206fcd42014-04-26 19:29:41 +00008636 Ops, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00008637
Scott Michelcf0da6c2009-02-17 22:15:04 +00008638 // If this is an i16 load, insert the truncate.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008639 SDValue ResVal = BSLoad;
Owen Anderson9f944592009-08-11 20:47:22 +00008640 if (N->getValueType(0) == MVT::i16)
8641 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008642
Chris Lattnera7976d32006-07-10 20:56:58 +00008643 // First, combine the bswap away. This makes the value produced by the
8644 // load dead.
8645 DCI.CombineTo(N, ResVal);
8646
8647 // Next, combine the load away, we give it a bogus result value but a real
8648 // chain result. The result value is dead because the bswap is dead.
Gabor Greiff304a7a2008-08-28 21:40:38 +00008649 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00008650
Chris Lattnera7976d32006-07-10 20:56:58 +00008651 // Return N so it doesn't get rechecked!
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008652 return SDValue(N, 0);
Chris Lattnera7976d32006-07-10 20:56:58 +00008653 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008654
Chris Lattner27f53452006-03-01 05:50:56 +00008655 break;
Chris Lattnerd4058a52006-03-31 06:02:07 +00008656 case PPCISD::VCMP: {
8657 // If a VCMPo node already exists with exactly the same operands as this
8658 // node, use its result instead of this node (VCMPo computes both a CR6 and
8659 // a normal output).
8660 //
8661 if (!N->getOperand(0).hasOneUse() &&
8662 !N->getOperand(1).hasOneUse() &&
8663 !N->getOperand(2).hasOneUse()) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00008664
Chris Lattnerd4058a52006-03-31 06:02:07 +00008665 // Scan all of the users of the LHS, looking for VCMPo's that match.
Craig Topper062a2ba2014-04-25 05:30:21 +00008666 SDNode *VCMPoNode = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00008667
Gabor Greiff304a7a2008-08-28 21:40:38 +00008668 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattnerd4058a52006-03-31 06:02:07 +00008669 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
8670 UI != E; ++UI)
Dan Gohman91e5dcb2008-07-27 20:43:25 +00008671 if (UI->getOpcode() == PPCISD::VCMPo &&
8672 UI->getOperand(1) == N->getOperand(1) &&
8673 UI->getOperand(2) == N->getOperand(2) &&
8674 UI->getOperand(0) == N->getOperand(0)) {
8675 VCMPoNode = *UI;
Chris Lattnerd4058a52006-03-31 06:02:07 +00008676 break;
8677 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008678
Chris Lattner518834c2006-04-18 18:28:22 +00008679 // If there is no VCMPo node, or if the flag value has a single use, don't
8680 // transform this.
8681 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
8682 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00008683
8684 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner518834c2006-04-18 18:28:22 +00008685 // chain, this transformation is more complex. Note that multiple things
8686 // could use the value result, which we should ignore.
Craig Topper062a2ba2014-04-25 05:30:21 +00008687 SDNode *FlagUser = nullptr;
Scott Michelcf0da6c2009-02-17 22:15:04 +00008688 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Craig Topper062a2ba2014-04-25 05:30:21 +00008689 FlagUser == nullptr; ++UI) {
Chris Lattner518834c2006-04-18 18:28:22 +00008690 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman91e5dcb2008-07-27 20:43:25 +00008691 SDNode *User = *UI;
Chris Lattner518834c2006-04-18 18:28:22 +00008692 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008693 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner518834c2006-04-18 18:28:22 +00008694 FlagUser = User;
8695 break;
8696 }
8697 }
8698 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008699
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00008700 // If the user is a MFOCRF instruction, we know this is safe.
8701 // Otherwise we give up for right now.
8702 if (FlagUser->getOpcode() == PPCISD::MFOCRF)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008703 return SDValue(VCMPoNode, 0);
Chris Lattnerd4058a52006-03-31 06:02:07 +00008704 }
8705 break;
8706 }
Hal Finkel940ab932014-02-28 00:27:01 +00008707 case ISD::BRCOND: {
8708 SDValue Cond = N->getOperand(1);
8709 SDValue Target = N->getOperand(2);
8710
8711 if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
8712 cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() ==
8713 Intrinsic::ppc_is_decremented_ctr_nonzero) {
8714
8715 // We now need to make the intrinsic dead (it cannot be instruction
8716 // selected).
8717 DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0));
8718 assert(Cond.getNode()->hasOneUse() &&
8719 "Counter decrement has more than one use");
8720
8721 return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other,
8722 N->getOperand(0), Target);
8723 }
8724 }
8725 break;
Chris Lattner9754d142006-04-18 17:59:36 +00008726 case ISD::BR_CC: {
8727 // If this is a branch on an altivec predicate comparison, lower this so
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00008728 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This
Chris Lattner9754d142006-04-18 17:59:36 +00008729 // lowering is done pre-legalize, because the legalizer lowers the predicate
8730 // compare down to code that is difficult to reassemble.
8731 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008732 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkel25c19922013-05-15 21:37:41 +00008733
8734 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
8735 // value. If so, pass-through the AND to get to the intrinsic.
8736 if (LHS.getOpcode() == ISD::AND &&
8737 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
8738 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
8739 Intrinsic::ppc_is_decremented_ctr_nonzero &&
8740 isa<ConstantSDNode>(LHS.getOperand(1)) &&
8741 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
8742 isZero())
8743 LHS = LHS.getOperand(0);
8744
8745 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
8746 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
8747 Intrinsic::ppc_is_decremented_ctr_nonzero &&
8748 isa<ConstantSDNode>(RHS)) {
8749 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
8750 "Counter decrement comparison is not EQ or NE");
8751
8752 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
8753 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
8754 (CC == ISD::SETNE && !Val);
8755
8756 // We now need to make the intrinsic dead (it cannot be instruction
8757 // selected).
8758 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
8759 assert(LHS.getNode()->hasOneUse() &&
8760 "Counter decrement has more than one use");
8761
8762 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
8763 N->getOperand(0), N->getOperand(4));
8764 }
8765
Chris Lattner9754d142006-04-18 17:59:36 +00008766 int CompareOpc;
8767 bool isDot;
Scott Michelcf0da6c2009-02-17 22:15:04 +00008768
Chris Lattner9754d142006-04-18 17:59:36 +00008769 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
8770 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
8771 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
8772 assert(isDot && "Can't compare against a vector result!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00008773
Chris Lattner9754d142006-04-18 17:59:36 +00008774 // If this is a comparison against something other than 0/1, then we know
8775 // that the condition is never/always true.
Dan Gohmaneffb8942008-09-12 16:56:44 +00008776 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00008777 if (Val != 0 && Val != 1) {
8778 if (CC == ISD::SETEQ) // Cond never true, remove branch.
8779 return N->getOperand(0);
8780 // Always !=, turn it into an unconditional branch.
Owen Anderson9f944592009-08-11 20:47:22 +00008781 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner9754d142006-04-18 17:59:36 +00008782 N->getOperand(0), N->getOperand(4));
8783 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008784
Chris Lattner9754d142006-04-18 17:59:36 +00008785 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008786
Chris Lattner9754d142006-04-18 17:59:36 +00008787 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008788 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00008789 LHS.getOperand(2), // LHS of compare
8790 LHS.getOperand(3), // RHS of compare
Owen Anderson9f944592009-08-11 20:47:22 +00008791 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00008792 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00008793 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Craig Topper48d114b2014-04-26 18:35:24 +00008794 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
Scott Michelcf0da6c2009-02-17 22:15:04 +00008795
Chris Lattner9754d142006-04-18 17:59:36 +00008796 // Unpack the result based on how the target uses it.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00008797 PPC::Predicate CompOpc;
Dan Gohmaneffb8942008-09-12 16:56:44 +00008798 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner9754d142006-04-18 17:59:36 +00008799 default: // Can't happen, don't crash on invalid number though.
8800 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00008801 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner9754d142006-04-18 17:59:36 +00008802 break;
8803 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00008804 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner9754d142006-04-18 17:59:36 +00008805 break;
8806 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00008807 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner9754d142006-04-18 17:59:36 +00008808 break;
8809 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00008810 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner9754d142006-04-18 17:59:36 +00008811 break;
8812 }
8813
Owen Anderson9f944592009-08-11 20:47:22 +00008814 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
8815 DAG.getConstant(CompOpc, MVT::i32),
8816 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner9754d142006-04-18 17:59:36 +00008817 N->getOperand(4), CompNode.getValue(1));
8818 }
8819 break;
8820 }
Chris Lattnerf4184352006-03-01 04:57:39 +00008821 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008822
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00008823 return SDValue();
Chris Lattnerf4184352006-03-01 04:57:39 +00008824}
8825
Chris Lattner4211ca92006-04-14 06:01:58 +00008826//===----------------------------------------------------------------------===//
8827// Inline Assembly Support
8828//===----------------------------------------------------------------------===//
8829
Jay Foada0653a32014-05-14 21:14:37 +00008830void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
8831 APInt &KnownZero,
8832 APInt &KnownOne,
8833 const SelectionDAG &DAG,
8834 unsigned Depth) const {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00008835 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerc5287c02006-04-02 06:26:07 +00008836 switch (Op.getOpcode()) {
8837 default: break;
Chris Lattnera7976d32006-07-10 20:56:58 +00008838 case PPCISD::LBRX: {
8839 // lhbrx is known to have the top bits cleared out.
Dan Gohmana5fc0352009-09-27 23:17:47 +00008840 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnera7976d32006-07-10 20:56:58 +00008841 KnownZero = 0xFFFF0000;
8842 break;
8843 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00008844 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmaneffb8942008-09-12 16:56:44 +00008845 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerc5287c02006-04-02 06:26:07 +00008846 default: break;
8847 case Intrinsic::ppc_altivec_vcmpbfp_p:
8848 case Intrinsic::ppc_altivec_vcmpeqfp_p:
8849 case Intrinsic::ppc_altivec_vcmpequb_p:
8850 case Intrinsic::ppc_altivec_vcmpequh_p:
8851 case Intrinsic::ppc_altivec_vcmpequw_p:
8852 case Intrinsic::ppc_altivec_vcmpgefp_p:
8853 case Intrinsic::ppc_altivec_vcmpgtfp_p:
8854 case Intrinsic::ppc_altivec_vcmpgtsb_p:
8855 case Intrinsic::ppc_altivec_vcmpgtsh_p:
8856 case Intrinsic::ppc_altivec_vcmpgtsw_p:
8857 case Intrinsic::ppc_altivec_vcmpgtub_p:
8858 case Intrinsic::ppc_altivec_vcmpgtuh_p:
8859 case Intrinsic::ppc_altivec_vcmpgtuw_p:
8860 KnownZero = ~1U; // All bits but the low one are known to be zero.
8861 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00008862 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00008863 }
8864 }
8865}
8866
8867
Chris Lattnerd6855142007-03-25 02:14:49 +00008868/// getConstraintType - Given a constraint, return the type of
Chris Lattner203b2f12006-02-07 20:16:30 +00008869/// constraint it is for this target.
Scott Michelcf0da6c2009-02-17 22:15:04 +00008870PPCTargetLowering::ConstraintType
Chris Lattnerd6855142007-03-25 02:14:49 +00008871PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
8872 if (Constraint.size() == 1) {
8873 switch (Constraint[0]) {
8874 default: break;
8875 case 'b':
8876 case 'r':
8877 case 'f':
8878 case 'v':
8879 case 'y':
8880 return C_RegisterClass;
Hal Finkel4f24c622012-11-05 18:18:42 +00008881 case 'Z':
8882 // FIXME: While Z does indicate a memory constraint, it specifically
8883 // indicates an r+r address (used in conjunction with the 'y' modifier
8884 // in the replacement string). Currently, we're forcing the base
8885 // register to be r0 in the asm printer (which is interpreted as zero)
8886 // and forming the complete address in the second register. This is
8887 // suboptimal.
8888 return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +00008889 }
Hal Finkel6aca2372014-03-02 18:23:39 +00008890 } else if (Constraint == "wc") { // individual CR bits.
8891 return C_RegisterClass;
Hal Finkel27774d92014-03-13 07:58:58 +00008892 } else if (Constraint == "wa" || Constraint == "wd" ||
8893 Constraint == "wf" || Constraint == "ws") {
8894 return C_RegisterClass; // VSX registers.
Chris Lattnerd6855142007-03-25 02:14:49 +00008895 }
8896 return TargetLowering::getConstraintType(Constraint);
Chris Lattner203b2f12006-02-07 20:16:30 +00008897}
8898
John Thompsone8360b72010-10-29 17:29:13 +00008899/// Examine constraint type and operand type and determine a weight value.
8900/// This object must already have been set up with the operand type
8901/// and the current alternative constraint selected.
8902TargetLowering::ConstraintWeight
8903PPCTargetLowering::getSingleConstraintMatchWeight(
8904 AsmOperandInfo &info, const char *constraint) const {
8905 ConstraintWeight weight = CW_Invalid;
8906 Value *CallOperandVal = info.CallOperandVal;
8907 // If we don't have a value, we can't do a match,
8908 // but allow it at the lowest weight.
Craig Topper062a2ba2014-04-25 05:30:21 +00008909 if (!CallOperandVal)
John Thompsone8360b72010-10-29 17:29:13 +00008910 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +00008911 Type *type = CallOperandVal->getType();
Hal Finkel6aca2372014-03-02 18:23:39 +00008912
John Thompsone8360b72010-10-29 17:29:13 +00008913 // Look at the constraint type.
Hal Finkel6aca2372014-03-02 18:23:39 +00008914 if (StringRef(constraint) == "wc" && type->isIntegerTy(1))
8915 return CW_Register; // an individual CR bit.
Hal Finkel27774d92014-03-13 07:58:58 +00008916 else if ((StringRef(constraint) == "wa" ||
8917 StringRef(constraint) == "wd" ||
8918 StringRef(constraint) == "wf") &&
8919 type->isVectorTy())
8920 return CW_Register;
8921 else if (StringRef(constraint) == "ws" && type->isDoubleTy())
8922 return CW_Register;
Hal Finkel6aca2372014-03-02 18:23:39 +00008923
John Thompsone8360b72010-10-29 17:29:13 +00008924 switch (*constraint) {
8925 default:
8926 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
8927 break;
8928 case 'b':
8929 if (type->isIntegerTy())
8930 weight = CW_Register;
8931 break;
8932 case 'f':
8933 if (type->isFloatTy())
8934 weight = CW_Register;
8935 break;
8936 case 'd':
8937 if (type->isDoubleTy())
8938 weight = CW_Register;
8939 break;
8940 case 'v':
8941 if (type->isVectorTy())
8942 weight = CW_Register;
8943 break;
8944 case 'y':
8945 weight = CW_Register;
8946 break;
Hal Finkel4f24c622012-11-05 18:18:42 +00008947 case 'Z':
8948 weight = CW_Memory;
8949 break;
John Thompsone8360b72010-10-29 17:29:13 +00008950 }
8951 return weight;
8952}
8953
Scott Michelcf0da6c2009-02-17 22:15:04 +00008954std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner584a11a2006-11-02 01:44:04 +00008955PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier295bd432013-06-22 18:37:38 +00008956 MVT VT) const {
Chris Lattner01513612006-01-31 19:20:21 +00008957 if (Constraint.size() == 1) {
Chris Lattner584a11a2006-11-02 01:44:04 +00008958 // GCC RS6000 Constraint Letters
8959 switch (Constraint[0]) {
8960 case 'b': // R1-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008961 if (VT == MVT::i64 && Subtarget.isPPC64())
Hal Finkel638a9fa2013-03-19 18:51:05 +00008962 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
8963 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00008964 case 'r': // R0-R31
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008965 if (VT == MVT::i64 && Subtarget.isPPC64())
Craig Topperabadc662012-04-20 06:31:50 +00008966 return std::make_pair(0U, &PPC::G8RCRegClass);
8967 return std::make_pair(0U, &PPC::GPRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00008968 case 'f':
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00008969 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperabadc662012-04-20 06:31:50 +00008970 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00008971 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperabadc662012-04-20 06:31:50 +00008972 return std::make_pair(0U, &PPC::F8RCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00008973 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00008974 case 'v':
Craig Topperabadc662012-04-20 06:31:50 +00008975 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00008976 case 'y': // crrc
Craig Topperabadc662012-04-20 06:31:50 +00008977 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00008978 }
Hal Finkel6aca2372014-03-02 18:23:39 +00008979 } else if (Constraint == "wc") { // an individual CR bit.
8980 return std::make_pair(0U, &PPC::CRBITRCRegClass);
Hal Finkel27774d92014-03-13 07:58:58 +00008981 } else if (Constraint == "wa" || Constraint == "wd" ||
Hal Finkel19be5062014-03-29 05:29:01 +00008982 Constraint == "wf") {
Hal Finkel27774d92014-03-13 07:58:58 +00008983 return std::make_pair(0U, &PPC::VSRCRegClass);
Hal Finkel19be5062014-03-29 05:29:01 +00008984 } else if (Constraint == "ws") {
8985 return std::make_pair(0U, &PPC::VSFRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00008986 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00008987
Hal Finkelb176acb2013-08-03 12:25:10 +00008988 std::pair<unsigned, const TargetRegisterClass*> R =
8989 TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
8990
8991 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
8992 // (which we call X[0-9]+). If a 64-bit value has been requested, and a
8993 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
8994 // register.
8995 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
8996 // the AsmName field from *RegisterInfo.td, then this would not be necessary.
Eric Christopherb1aaebe2014-06-12 22:38:18 +00008997 if (R.first && VT == MVT::i64 && Subtarget.isPPC64() &&
Hal Finkelb176acb2013-08-03 12:25:10 +00008998 PPC::GPRCRegClass.contains(R.first)) {
Eric Christopherd9134482014-08-04 21:25:23 +00008999 const TargetRegisterInfo *TRI =
9000 getTargetMachine().getSubtargetImpl()->getRegisterInfo();
Hal Finkelb176acb2013-08-03 12:25:10 +00009001 return std::make_pair(TRI->getMatchingSuperReg(R.first,
Hal Finkelb3ca00d2013-08-14 20:05:04 +00009002 PPC::sub_32, &PPC::G8RCRegClass),
Hal Finkelb176acb2013-08-03 12:25:10 +00009003 &PPC::G8RCRegClass);
9004 }
9005
9006 return R;
Chris Lattner01513612006-01-31 19:20:21 +00009007}
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009008
Chris Lattner584a11a2006-11-02 01:44:04 +00009009
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009010/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesence97d552010-06-25 21:55:36 +00009011/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher0713a9d2011-06-08 23:55:35 +00009012void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +00009013 std::string &Constraint,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009014 std::vector<SDValue>&Ops,
Chris Lattner724539c2008-04-26 23:02:14 +00009015 SelectionDAG &DAG) const {
Craig Topper062a2ba2014-04-25 05:30:21 +00009016 SDValue Result;
Eric Christopher0713a9d2011-06-08 23:55:35 +00009017
Eric Christopherde9399b2011-06-02 23:16:42 +00009018 // Only support length 1 constraints.
9019 if (Constraint.length() > 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +00009020
Eric Christopherde9399b2011-06-02 23:16:42 +00009021 char Letter = Constraint[0];
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009022 switch (Letter) {
9023 default: break;
9024 case 'I':
9025 case 'J':
9026 case 'K':
9027 case 'L':
9028 case 'M':
9029 case 'N':
9030 case 'O':
9031 case 'P': {
Chris Lattner0b7472d2007-05-15 01:31:05 +00009032 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009033 if (!CST) return; // Must be an immediate to match.
Dan Gohmaneffb8942008-09-12 16:56:44 +00009034 unsigned Value = CST->getZExtValue();
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009035 switch (Letter) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009036 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009037 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009038 if ((short)Value == (int)Value)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009039 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00009040 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009041 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
9042 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009043 if ((short)Value == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009044 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00009045 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009046 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009047 if ((Value >> 16) == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009048 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00009049 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009050 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009051 if (Value > 31)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009052 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00009053 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009054 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009055 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009056 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00009057 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009058 case 'O': // "O" is the constant zero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009059 if (Value == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009060 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00009061 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009062 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner0b7472d2007-05-15 01:31:05 +00009063 if ((short)-Value == (int)-Value)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009064 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00009065 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009066 }
9067 break;
9068 }
9069 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009070
Gabor Greiff304a7a2008-08-28 21:40:38 +00009071 if (Result.getNode()) {
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00009072 Ops.push_back(Result);
9073 return;
9074 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009075
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009076 // Handle standard constraint letters.
Eric Christopherde9399b2011-06-02 23:16:42 +00009077 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner15a6c4c2006-02-07 00:47:13 +00009078}
Evan Cheng2dd2c652006-03-13 23:20:37 +00009079
Chris Lattner1eb94d92007-03-30 23:15:24 +00009080// isLegalAddressingMode - Return true if the addressing mode represented
9081// by AM is legal for this target, for a load/store of the specified type.
Scott Michelcf0da6c2009-02-17 22:15:04 +00009082bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattner229907c2011-07-18 04:54:35 +00009083 Type *Ty) const {
Chris Lattner1eb94d92007-03-30 23:15:24 +00009084 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelcf0da6c2009-02-17 22:15:04 +00009085
Chris Lattner1eb94d92007-03-30 23:15:24 +00009086 // PPC allows a sign-extended 16-bit immediate field.
9087 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
9088 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009089
Chris Lattner1eb94d92007-03-30 23:15:24 +00009090 // No global is ever allowed as a base.
9091 if (AM.BaseGV)
9092 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009093
9094 // PPC only support r+r,
Chris Lattner1eb94d92007-03-30 23:15:24 +00009095 switch (AM.Scale) {
9096 case 0: // "r+i" or just "i", depending on HasBaseReg.
9097 break;
9098 case 1:
9099 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
9100 return false;
9101 // Otherwise we have r+r or r+i.
9102 break;
9103 case 2:
9104 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
9105 return false;
9106 // Allow 2*r as r+r.
9107 break;
Chris Lattner19ccd622007-04-09 22:10:05 +00009108 default:
9109 // No other scales are supported.
9110 return false;
Chris Lattner1eb94d92007-03-30 23:15:24 +00009111 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00009112
Chris Lattner1eb94d92007-03-30 23:15:24 +00009113 return true;
9114}
9115
Dan Gohman21cea8a2010-04-17 15:26:15 +00009116SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
9117 SelectionDAG &DAG) const {
Evan Cheng168ced92010-05-22 01:47:14 +00009118 MachineFunction &MF = DAG.getMachineFunction();
9119 MachineFrameInfo *MFI = MF.getFrameInfo();
9120 MFI->setReturnAddressIsTaken(true);
9121
Bill Wendling908bf812014-01-06 00:43:20 +00009122 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00009123 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00009124
Andrew Trickef9de2a2013-05-25 02:42:55 +00009125 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009126 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattnerf6a81562007-12-08 06:59:59 +00009127
Dale Johannesen81bfca72010-05-03 22:59:34 +00009128 // Make sure the function does not optimize away the store of the RA to
9129 // the stack.
Chris Lattnerf6a81562007-12-08 06:59:59 +00009130 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009131 FuncInfo->setLRStoreRequired();
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009132 bool isPPC64 = Subtarget.isPPC64();
9133 bool isDarwinABI = Subtarget.isDarwinABI();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009134
9135 if (Depth > 0) {
9136 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9137 SDValue Offset =
Wesley Peck527da1b2010-11-23 03:31:01 +00009138
Anton Korobeynikov2f931282011-01-10 12:39:04 +00009139 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI),
Dale Johannesen81bfca72010-05-03 22:59:34 +00009140 isPPC64? MVT::i64 : MVT::i32);
9141 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
9142 DAG.getNode(ISD::ADD, dl, getPointerTy(),
9143 FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009144 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009145 }
Chris Lattnerf6a81562007-12-08 06:59:59 +00009146
Chris Lattnerf6a81562007-12-08 06:59:59 +00009147 // Just load the return address off the stack.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009148 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009149 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009150 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Chris Lattnerf6a81562007-12-08 06:59:59 +00009151}
9152
Dan Gohman21cea8a2010-04-17 15:26:15 +00009153SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
9154 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00009155 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009156 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00009157
Owen Anderson53aa7a92009-08-10 22:56:29 +00009158 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00009159 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelcf0da6c2009-02-17 22:15:04 +00009160
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00009161 MachineFunction &MF = DAG.getMachineFunction();
9162 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen81bfca72010-05-03 22:59:34 +00009163 MFI->setFrameAddressIsTaken(true);
Hal Finkelaa03c032013-03-21 19:03:19 +00009164
9165 // Naked functions never have a frame pointer, and so we use r1. For all
9166 // other functions, this decision must be delayed until during PEI.
9167 unsigned FrameReg;
9168 if (MF.getFunction()->getAttributes().hasAttribute(
9169 AttributeSet::FunctionIndex, Attribute::Naked))
9170 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
9171 else
9172 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
9173
Dale Johannesen81bfca72010-05-03 22:59:34 +00009174 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
9175 PtrVT);
9176 while (Depth--)
9177 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009178 FrameAddr, MachinePointerInfo(), false, false,
9179 false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00009180 return FrameAddr;
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00009181}
Dan Gohmanc14e5222008-10-21 03:41:46 +00009182
Hal Finkel0d8db462014-05-11 19:29:11 +00009183// FIXME? Maybe this could be a TableGen attribute on some registers and
9184// this table could be generated automatically from RegInfo.
9185unsigned PPCTargetLowering::getRegisterByName(const char* RegName,
9186 EVT VT) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009187 bool isPPC64 = Subtarget.isPPC64();
9188 bool isDarwinABI = Subtarget.isDarwinABI();
Hal Finkel0d8db462014-05-11 19:29:11 +00009189
9190 if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) ||
9191 (!isPPC64 && VT != MVT::i32))
9192 report_fatal_error("Invalid register global variable type");
9193
9194 bool is64Bit = isPPC64 && VT == MVT::i64;
9195 unsigned Reg = StringSwitch<unsigned>(RegName)
9196 .Case("r1", is64Bit ? PPC::X1 : PPC::R1)
9197 .Case("r2", isDarwinABI ? 0 : (is64Bit ? PPC::X2 : PPC::R2))
9198 .Case("r13", (!isPPC64 && isDarwinABI) ? 0 :
9199 (is64Bit ? PPC::X13 : PPC::R13))
9200 .Default(0);
9201
9202 if (Reg)
9203 return Reg;
9204 report_fatal_error("Invalid register name global variable");
9205}
9206
Dan Gohmanc14e5222008-10-21 03:41:46 +00009207bool
9208PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
9209 // The PowerPC target isn't yet aware of offsets.
9210 return false;
9211}
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009212
Evan Chengd9929f02010-04-01 20:10:42 +00009213/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng61399372010-04-02 19:36:14 +00009214/// and store operations as a result of memset, memcpy, and memmove
9215/// lowering. If DstAlign is zero that means it's safe to destination
9216/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
9217/// means there isn't a need to check it against alignment requirement,
Evan Cheng962711e2012-12-12 02:34:41 +00009218/// probably because the source does not need to be loaded. If 'IsMemset' is
9219/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
9220/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
9221/// source is constant so it does not need to be loaded.
Dan Gohman148c69a2010-04-16 20:11:05 +00009222/// It returns EVT::Other if the type should be determined using generic
9223/// target-independent logic.
Evan Cheng43cd9e32010-04-01 06:04:33 +00009224EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
9225 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00009226 bool IsMemset, bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00009227 bool MemcpyStrSrc,
Dan Gohman148c69a2010-04-16 20:11:05 +00009228 MachineFunction &MF) const {
Eric Christopherd90a8742014-06-12 22:38:20 +00009229 if (Subtarget.isPPC64()) {
Owen Anderson9f944592009-08-11 20:47:22 +00009230 return MVT::i64;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009231 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00009232 return MVT::i32;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00009233 }
9234}
Hal Finkel88ed4e32012-04-01 19:23:08 +00009235
Hal Finkel34974ed2014-04-12 21:52:38 +00009236/// \brief Returns true if it is beneficial to convert a load of a constant
9237/// to just the constant itself.
9238bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
9239 Type *Ty) const {
9240 assert(Ty->isIntegerTy());
9241
9242 unsigned BitSize = Ty->getPrimitiveSizeInBits();
9243 if (BitSize == 0 || BitSize > 64)
9244 return false;
9245 return true;
9246}
9247
9248bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
9249 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9250 return false;
9251 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9252 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
9253 return NumBits1 == 64 && NumBits2 == 32;
9254}
9255
9256bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
9257 if (!VT1.isInteger() || !VT2.isInteger())
9258 return false;
9259 unsigned NumBits1 = VT1.getSizeInBits();
9260 unsigned NumBits2 = VT2.getSizeInBits();
9261 return NumBits1 == 64 && NumBits2 == 32;
9262}
9263
9264bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
9265 return isInt<16>(Imm) || isUInt<16>(Imm);
9266}
9267
9268bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
9269 return isInt<16>(Imm) || isUInt<16>(Imm);
9270}
9271
Matt Arsenault6f2a5262014-07-27 17:46:40 +00009272bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
9273 unsigned,
9274 unsigned,
9275 bool *Fast) const {
Hal Finkel8d7fbc92013-03-15 15:27:13 +00009276 if (DisablePPCUnaligned)
9277 return false;
9278
9279 // PowerPC supports unaligned memory access for simple non-vector types.
9280 // Although accessing unaligned addresses is not as efficient as accessing
9281 // aligned addresses, it is generally more efficient than manual expansion,
9282 // and generally only traps for software emulation when crossing page
9283 // boundaries.
9284
9285 if (!VT.isSimple())
9286 return false;
9287
Hal Finkel6e28e6a2014-03-26 19:39:09 +00009288 if (VT.getSimpleVT().isVector()) {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009289 if (Subtarget.hasVSX()) {
Hal Finkel6e28e6a2014-03-26 19:39:09 +00009290 if (VT != MVT::v2f64 && VT != MVT::v2i64)
9291 return false;
9292 } else {
9293 return false;
9294 }
9295 }
Hal Finkel8d7fbc92013-03-15 15:27:13 +00009296
9297 if (VT == MVT::ppcf128)
9298 return false;
9299
9300 if (Fast)
9301 *Fast = true;
9302
9303 return true;
9304}
9305
Stephen Lin73de7bf2013-07-09 18:16:56 +00009306bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
9307 VT = VT.getScalarType();
9308
Hal Finkel0a479ae2012-06-22 00:49:52 +00009309 if (!VT.isSimple())
9310 return false;
9311
9312 switch (VT.getSimpleVT().SimpleTy) {
9313 case MVT::f32:
9314 case MVT::f64:
Hal Finkel0a479ae2012-06-22 00:49:52 +00009315 return true;
9316 default:
9317 break;
9318 }
9319
9320 return false;
9321}
9322
Hal Finkelb4240ca2014-03-31 17:48:16 +00009323bool
9324PPCTargetLowering::shouldExpandBuildVectorWithShuffles(
9325 EVT VT , unsigned DefinedValues) const {
9326 if (VT == MVT::v2i64)
9327 return false;
9328
9329 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
9330}
9331
Hal Finkel88ed4e32012-04-01 19:23:08 +00009332Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Eric Christopherb1aaebe2014-06-12 22:38:18 +00009333 if (DisableILPPref || Subtarget.enableMachineScheduler())
Hal Finkel4e9f1a82012-06-10 19:32:29 +00009334 return TargetLowering::getSchedulingPreference(N);
Hal Finkel88ed4e32012-04-01 19:23:08 +00009335
Hal Finkel4e9f1a82012-06-10 19:32:29 +00009336 return Sched::ILP;
Hal Finkel88ed4e32012-04-01 19:23:08 +00009337}
9338
Bill Schmidt0cf702f2013-07-30 00:50:39 +00009339// Create a fast isel object.
9340FastISel *
9341PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
9342 const TargetLibraryInfo *LibInfo) const {
9343 return PPC::createFastISel(FuncInfo, LibInfo);
9344}