blob: b8bf3bda80b120b6edcdf89dd678703750fa9bf7 [file] [log] [blame]
Nate Begeman0b71e002005-10-18 00:28:58 +00001//===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
Chris Lattnerf22556d2005-08-16 17:14:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerf22556d2005-08-16 17:14:42 +00007//
8//===----------------------------------------------------------------------===//
9//
Nate Begeman6cca84e2005-10-16 05:39:50 +000010// This file implements the PPCISelLowering class.
Chris Lattnerf22556d2005-08-16 17:14:42 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner6f3b9542005-10-14 23:59:06 +000014#include "PPCISelLowering.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "MCTargetDesc/PPCPredicates.h"
Jim Laskey48850c12006-11-16 22:43:37 +000016#include "PPCMachineFunctionInfo.h"
Bill Wendlingdd3fe942010-03-12 02:00:43 +000017#include "PPCPerfectShuffle.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000018#include "PPCTargetMachine.h"
Bill Schmidt22d40dc2013-05-13 19:34:37 +000019#include "PPCTargetObjectFile.h"
Owen Andersone2f23a32007-09-07 04:06:50 +000020#include "llvm/ADT/STLExtras.h"
Chris Lattner4f2e4e02007-03-06 00:59:59 +000021#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner9b577f12005-08-26 21:23:58 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000026#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikovab663a02010-02-15 22:37:53 +000027#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/CallingConv.h"
29#include "llvm/IR/Constants.h"
30#include "llvm/IR/DerivedTypes.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/Intrinsics.h"
Chris Lattnerce645542006-11-10 02:08:47 +000033#include "llvm/Support/CommandLine.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
Craig Topperb25fda92012-03-17 18:46:09 +000035#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000036#include "llvm/Support/raw_ostream.h"
Craig Topperb25fda92012-03-17 18:46:09 +000037#include "llvm/Target/TargetOptions.h"
Chris Lattnerf22556d2005-08-16 17:14:42 +000038using namespace llvm;
39
Hal Finkel595817e2012-06-04 02:21:00 +000040static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
41cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
Chris Lattnerce645542006-11-10 02:08:47 +000042
Hal Finkel4e9f1a82012-06-10 19:32:29 +000043static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
44cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
45
Hal Finkel8d7fbc92013-03-15 15:27:13 +000046static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
47cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
48
Chris Lattner5e693ed2009-07-28 03:13:23 +000049static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
50 if (TM.getSubtargetImpl()->isDarwin())
Bill Wendlingbbcaa402010-03-15 21:09:38 +000051 return new TargetLoweringObjectFileMachO();
Bill Wendlingdd3fe942010-03-12 02:00:43 +000052
Bill Schmidt22d40dc2013-05-13 19:34:37 +000053 if (TM.getSubtargetImpl()->isSVR4ABI())
54 return new PPC64LinuxTargetObjectFile();
55
Bruno Cardoso Lopes62e6a8b2009-08-13 23:30:21 +000056 return new TargetLoweringObjectFileELF();
Chris Lattner5e693ed2009-07-28 03:13:23 +000057}
58
Chris Lattner584a11a2006-11-02 01:44:04 +000059PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
Chris Lattner5e693ed2009-07-28 03:13:23 +000060 : TargetLowering(TM, CreateTLOF(TM)), PPCSubTarget(*TM.getSubtargetImpl()) {
Evan Cheng39e90022012-07-02 22:39:56 +000061 const PPCSubtarget *Subtarget = &TM.getSubtarget<PPCSubtarget>();
Scott Michelcf0da6c2009-02-17 22:15:04 +000062
Nate Begeman4dd38312005-10-21 00:02:42 +000063 setPow2DivIsCheap();
Dale Johannesenc31eb202008-07-31 18:13:12 +000064
Chris Lattnera028e7a2005-09-27 22:18:25 +000065 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikov3b7c2572006-12-10 23:12:42 +000066 setUseUnderscoreSetJmp(true);
67 setUseUnderscoreLongJmp(true);
Scott Michelcf0da6c2009-02-17 22:15:04 +000068
Chris Lattnerd10babf2010-10-10 18:34:00 +000069 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
70 // arguments are at least 4/8 bytes aligned.
Evan Cheng39e90022012-07-02 22:39:56 +000071 bool isPPC64 = Subtarget->isPPC64();
72 setMinStackArgumentAlignment(isPPC64 ? 8:4);
Wesley Peck527da1b2010-11-23 03:31:01 +000073
Chris Lattnerf22556d2005-08-16 17:14:42 +000074 // Set up the register classes.
Craig Topperabadc662012-04-20 06:31:50 +000075 addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
76 addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
77 addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +000078
Evan Cheng5d9fd972006-10-04 00:56:09 +000079 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Owen Anderson9f944592009-08-11 20:47:22 +000080 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
81 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Duncan Sands95d46ef2008-01-23 20:39:46 +000082
Owen Anderson9f944592009-08-11 20:47:22 +000083 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +000084
Chris Lattnerc9fa36d2006-11-10 23:58:45 +000085 // PowerPC has pre-inc load and store's.
Owen Anderson9f944592009-08-11 20:47:22 +000086 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
87 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
88 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
89 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
90 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
91 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
92 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
93 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
94 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
95 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
Evan Cheng36a8fbf2006-11-09 19:11:50 +000096
Dale Johannesen666323e2007-10-10 01:01:31 +000097 // This is used in the ppcf128->int sequence. Note it has different semantics
98 // from FP_ROUND: that rounds to nearest, this rounds to zero.
Owen Anderson9f944592009-08-11 20:47:22 +000099 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesenf864ac92007-10-06 01:24:11 +0000100
Roman Divacky1faf5b02012-08-16 18:19:29 +0000101 // We do not currently implement these libm ops for PowerPC.
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000102 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
103 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand);
104 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
105 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand);
106 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
Bill Schmidt92e26642013-04-03 13:05:44 +0000107 setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
Owen Anderson0b9b9da2011-12-08 19:32:14 +0000108
Chris Lattnerf22556d2005-08-16 17:14:42 +0000109 // PowerPC has no SREM/UREM instructions
Owen Anderson9f944592009-08-11 20:47:22 +0000110 setOperationAction(ISD::SREM, MVT::i32, Expand);
111 setOperationAction(ISD::UREM, MVT::i32, Expand);
112 setOperationAction(ISD::SREM, MVT::i64, Expand);
113 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman71f0d7d2007-10-08 17:28:24 +0000114
115 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson9f944592009-08-11 20:47:22 +0000116 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
117 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
118 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
119 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
120 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
121 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
122 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
123 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000124
Dan Gohman482732a2007-10-11 23:21:31 +0000125 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson9f944592009-08-11 20:47:22 +0000126 setOperationAction(ISD::FSIN , MVT::f64, Expand);
127 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000128 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000129 setOperationAction(ISD::FREM , MVT::f64, Expand);
130 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000131 setOperationAction(ISD::FMA , MVT::f64, Legal);
Owen Anderson9f944592009-08-11 20:47:22 +0000132 setOperationAction(ISD::FSIN , MVT::f32, Expand);
133 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000134 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000135 setOperationAction(ISD::FREM , MVT::f32, Expand);
136 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000137 setOperationAction(ISD::FMA , MVT::f32, Legal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +0000138
Owen Anderson9f944592009-08-11 20:47:22 +0000139 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000140
Chris Lattnerf22556d2005-08-16 17:14:42 +0000141 // If we're enabling GP optimizations, use hardware square root
Hal Finkel2e103312013-04-03 04:01:11 +0000142 if (!Subtarget->hasFSQRT() &&
143 !(TM.Options.UnsafeFPMath &&
144 Subtarget->hasFRSQRTE() && Subtarget->hasFRE()))
Owen Anderson9f944592009-08-11 20:47:22 +0000145 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Hal Finkel2e103312013-04-03 04:01:11 +0000146
147 if (!Subtarget->hasFSQRT() &&
148 !(TM.Options.UnsafeFPMath &&
149 Subtarget->hasFRSQRTES() && Subtarget->hasFRES()))
Owen Anderson9f944592009-08-11 20:47:22 +0000150 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000151
Hal Finkeldbc78e12013-08-19 05:01:02 +0000152 if (Subtarget->hasFCPSGN()) {
153 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
154 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
155 } else {
156 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
157 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
158 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000159
Hal Finkelc20a08d2013-03-29 08:57:48 +0000160 if (Subtarget->hasFPRND()) {
161 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
162 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
163 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000164 setOperationAction(ISD::FROUND, MVT::f64, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000165
166 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
167 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
168 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
Hal Finkel2b7b2f32013-08-08 04:31:34 +0000169 setOperationAction(ISD::FROUND, MVT::f32, Legal);
Hal Finkelc20a08d2013-03-29 08:57:48 +0000170 }
171
Nate Begeman2fba8a32006-01-14 03:14:10 +0000172 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson9f944592009-08-11 20:47:22 +0000173 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000174 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000175 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
176 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000177 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000178 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000179 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
180 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000181
Hal Finkela4d07482013-03-28 13:29:47 +0000182 if (Subtarget->hasPOPCNTD()) {
Hal Finkel290376d2013-04-01 15:58:15 +0000183 setOperationAction(ISD::CTPOP, MVT::i32 , Legal);
Hal Finkela4d07482013-03-28 13:29:47 +0000184 setOperationAction(ISD::CTPOP, MVT::i64 , Legal);
185 } else {
186 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
187 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
188 }
189
Nate Begeman1b8121b2006-01-11 21:21:00 +0000190 // PowerPC does not have ROTR
Owen Anderson9f944592009-08-11 20:47:22 +0000191 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
192 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000193
Chris Lattnerf22556d2005-08-16 17:14:42 +0000194 // PowerPC does not have Select
Owen Anderson9f944592009-08-11 20:47:22 +0000195 setOperationAction(ISD::SELECT, MVT::i32, Expand);
196 setOperationAction(ISD::SELECT, MVT::i64, Expand);
197 setOperationAction(ISD::SELECT, MVT::f32, Expand);
198 setOperationAction(ISD::SELECT, MVT::f64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000199
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000200 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson9f944592009-08-11 20:47:22 +0000201 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
202 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begemana162f202006-01-31 08:17:29 +0000203
Nate Begeman7e7f4392006-02-01 07:19:44 +0000204 // PowerPC wants to optimize integer setcc a bit
Owen Anderson9f944592009-08-11 20:47:22 +0000205 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000206
Nate Begemanbb01d4f2006-03-17 01:40:33 +0000207 // PowerPC does not have BRCOND which requires SetCC
Owen Anderson9f944592009-08-11 20:47:22 +0000208 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Cheng0d41d192006-10-30 08:02:39 +0000209
Owen Anderson9f944592009-08-11 20:47:22 +0000210 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000211
Chris Lattnerda2e04c2005-08-31 21:09:52 +0000212 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson9f944592009-08-11 20:47:22 +0000213 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000214
Jim Laskey6267b2c2005-08-17 00:40:22 +0000215 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson9f944592009-08-11 20:47:22 +0000216 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
217 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskey6267b2c2005-08-17 00:40:22 +0000218
Wesley Peck527da1b2010-11-23 03:31:01 +0000219 setOperationAction(ISD::BITCAST, MVT::f32, Expand);
220 setOperationAction(ISD::BITCAST, MVT::i32, Expand);
221 setOperationAction(ISD::BITCAST, MVT::i64, Expand);
222 setOperationAction(ISD::BITCAST, MVT::f64, Expand);
Chris Lattnerc46fc242005-12-23 05:13:35 +0000223
Chris Lattner84b49d52006-04-28 21:56:10 +0000224 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson9f944592009-08-11 20:47:22 +0000225 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskeye0008e22007-02-22 14:56:36 +0000226
Hal Finkel1996f3d2013-03-27 19:10:42 +0000227 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Hal Finkel756810f2013-03-21 21:37:52 +0000228 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
229 // support continuation, user-level threading, and etc.. As a result, no
230 // other SjLj exception interfaces are implemented and please don't build
231 // your own exception handling based on them.
232 // LLVM/Clang supports zero-cost DWARF exception handling.
233 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
234 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000235
236 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman4e56db62005-12-10 02:36:00 +0000237 // appropriate instructions to materialize the address.
Owen Anderson9f944592009-08-11 20:47:22 +0000238 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
239 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000240 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000241 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
242 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
243 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
244 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bob Wilsonf84f7102009-11-04 21:31:18 +0000245 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000246 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
247 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000248
Nate Begemanf69d13b2008-08-11 17:36:31 +0000249 // TRAP is legal.
Owen Anderson9f944592009-08-11 20:47:22 +0000250 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling95e1af22008-09-17 00:30:57 +0000251
252 // TRAMPOLINE is custom lowered.
Duncan Sandsa0984362011-09-06 13:37:06 +0000253 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
254 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Bill Wendling95e1af22008-09-17 00:30:57 +0000255
Nate Begemane74795c2006-01-25 18:21:52 +0000256 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson9f944592009-08-11 20:47:22 +0000257 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000258
Evan Cheng39e90022012-07-02 22:39:56 +0000259 if (Subtarget->isSVR4ABI()) {
260 if (isPPC64) {
Hal Finkele44eb282012-03-24 03:53:55 +0000261 // VAARG always uses double-word chunks, so promote anything smaller.
262 setOperationAction(ISD::VAARG, MVT::i1, Promote);
263 AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
264 setOperationAction(ISD::VAARG, MVT::i8, Promote);
265 AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
266 setOperationAction(ISD::VAARG, MVT::i16, Promote);
267 AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
268 setOperationAction(ISD::VAARG, MVT::i32, Promote);
269 AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
270 setOperationAction(ISD::VAARG, MVT::Other, Expand);
271 } else {
272 // VAARG is custom lowered with the 32-bit SVR4 ABI.
273 setOperationAction(ISD::VAARG, MVT::Other, Custom);
274 setOperationAction(ISD::VAARG, MVT::i64, Custom);
275 }
Roman Divacky4394e682011-06-28 15:30:42 +0000276 } else
Owen Anderson9f944592009-08-11 20:47:22 +0000277 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000278
Roman Divackyc3825df2013-07-25 21:36:47 +0000279 if (Subtarget->isSVR4ABI() && !isPPC64)
280 // VACOPY is custom lowered with the 32-bit SVR4 ABI.
281 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
282 else
283 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
284
Chris Lattner5bd514d2006-01-15 09:02:48 +0000285 // Use the default implementation.
Owen Anderson9f944592009-08-11 20:47:22 +0000286 setOperationAction(ISD::VAEND , MVT::Other, Expand);
287 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
288 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
289 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
290 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Chris Lattnerab4df8342006-10-18 01:18:48 +0000291
Chris Lattner6961fc72006-03-26 10:06:40 +0000292 // We want to custom lower some of our intrinsics.
Owen Anderson9f944592009-08-11 20:47:22 +0000293 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000294
Hal Finkel25c19922013-05-15 21:37:41 +0000295 // To handle counter-based loop conditions.
296 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
297
Dale Johannesen160be0f2008-11-07 22:54:33 +0000298 // Comparisons that require checking two conditions.
Owen Anderson9f944592009-08-11 20:47:22 +0000299 setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
300 setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
301 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
302 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
303 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
304 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
305 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
306 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
307 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
308 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
309 setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
310 setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000311
Evan Cheng39e90022012-07-02 22:39:56 +0000312 if (Subtarget->has64BitSupport()) {
Nate Begeman0b71e002005-10-18 00:28:58 +0000313 // They also have instructions for converting between i64 and fp.
Owen Anderson9f944592009-08-11 20:47:22 +0000314 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
315 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
316 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
317 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Dale Johannesen37bc85f2009-06-04 20:53:52 +0000318 // This is just the low 32 bits of a (signed) fp->i64 conversion.
319 // We cannot do this with Promote because i64 is not a legal type.
Owen Anderson9f944592009-08-11 20:47:22 +0000320 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000321
Hal Finkelf6d45f22013-04-01 17:52:07 +0000322 if (PPCSubTarget.hasLFIWAX() || Subtarget->isPPC64())
Hal Finkele53429a2013-03-31 01:58:02 +0000323 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begeman762bf802005-10-25 23:48:36 +0000324 } else {
Chris Lattner595088a2005-11-17 07:30:41 +0000325 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson9f944592009-08-11 20:47:22 +0000326 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begemane74dfbb2005-10-18 00:56:42 +0000327 }
328
Hal Finkelf6d45f22013-04-01 17:52:07 +0000329 // With the instructions enabled under FPCVT, we can do everything.
330 if (PPCSubTarget.hasFPCVT()) {
331 if (Subtarget->has64BitSupport()) {
332 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
333 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
334 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
335 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
336 }
337
338 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
339 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
340 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
341 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
342 }
343
Evan Cheng39e90022012-07-02 22:39:56 +0000344 if (Subtarget->use64BitRegs()) {
Chris Lattnerb1935762007-10-19 04:08:28 +0000345 // 64-bit PowerPC implementations can support i64 types directly
Craig Topperabadc662012-04-20 06:31:50 +0000346 addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
Nate Begeman0b71e002005-10-18 00:28:58 +0000347 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson9f944592009-08-11 20:47:22 +0000348 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman8d2ead22008-03-07 20:36:53 +0000349 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000350 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
351 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
352 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman0b71e002005-10-18 00:28:58 +0000353 } else {
Chris Lattnerb1935762007-10-19 04:08:28 +0000354 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson9f944592009-08-11 20:47:22 +0000355 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
356 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
357 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begeman60952142005-09-06 22:03:27 +0000358 }
Evan Cheng19264272006-03-01 01:11:20 +0000359
Evan Cheng39e90022012-07-02 22:39:56 +0000360 if (Subtarget->hasAltivec()) {
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000361 // First set operation action for all vector types to expand. Then we
362 // will selectively turn on ones that can be effectively codegen'd.
Owen Anderson9f944592009-08-11 20:47:22 +0000363 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
364 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
365 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
Duncan Sands13237ac2008-06-06 12:08:01 +0000366
Chris Lattner06a21ba2006-04-16 01:37:57 +0000367 // add/sub are legal for all supported vector VT's.
Duncan Sands13237ac2008-06-06 12:08:01 +0000368 setOperationAction(ISD::ADD , VT, Legal);
369 setOperationAction(ISD::SUB , VT, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000370
Chris Lattner95c7adc2006-04-04 17:25:31 +0000371 // We promote all shuffles to v16i8.
Duncan Sands13237ac2008-06-06 12:08:01 +0000372 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000373 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattner06a21ba2006-04-16 01:37:57 +0000374
375 // We promote all non-typed operations to v4i32.
Duncan Sands13237ac2008-06-06 12:08:01 +0000376 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000377 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000378 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000379 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000380 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000381 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000382 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000383 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000384 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000385 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Duncan Sands13237ac2008-06-06 12:08:01 +0000386 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson9f944592009-08-11 20:47:22 +0000387 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000388
Chris Lattner06a21ba2006-04-16 01:37:57 +0000389 // No other operations are legal.
Duncan Sands13237ac2008-06-06 12:08:01 +0000390 setOperationAction(ISD::MUL , VT, Expand);
391 setOperationAction(ISD::SDIV, VT, Expand);
392 setOperationAction(ISD::SREM, VT, Expand);
393 setOperationAction(ISD::UDIV, VT, Expand);
394 setOperationAction(ISD::UREM, VT, Expand);
395 setOperationAction(ISD::FDIV, VT, Expand);
Hal Finkele3930222013-07-08 17:30:25 +0000396 setOperationAction(ISD::FREM, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000397 setOperationAction(ISD::FNEG, VT, Expand);
Craig Topperc8a2adf2012-11-15 08:02:19 +0000398 setOperationAction(ISD::FSQRT, VT, Expand);
399 setOperationAction(ISD::FLOG, VT, Expand);
400 setOperationAction(ISD::FLOG10, VT, Expand);
401 setOperationAction(ISD::FLOG2, VT, Expand);
402 setOperationAction(ISD::FEXP, VT, Expand);
403 setOperationAction(ISD::FEXP2, VT, Expand);
404 setOperationAction(ISD::FSIN, VT, Expand);
405 setOperationAction(ISD::FCOS, VT, Expand);
406 setOperationAction(ISD::FABS, VT, Expand);
407 setOperationAction(ISD::FPOWI, VT, Expand);
Craig Topperc4343f22012-11-14 08:11:25 +0000408 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper61d04572012-11-15 06:51:10 +0000409 setOperationAction(ISD::FCEIL, VT, Expand);
410 setOperationAction(ISD::FTRUNC, VT, Expand);
411 setOperationAction(ISD::FRINT, VT, Expand);
412 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000413 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
414 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
415 setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
416 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
417 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
418 setOperationAction(ISD::UDIVREM, VT, Expand);
419 setOperationAction(ISD::SDIVREM, VT, Expand);
420 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
421 setOperationAction(ISD::FPOW, VT, Expand);
422 setOperationAction(ISD::CTPOP, VT, Expand);
423 setOperationAction(ISD::CTLZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000424 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
Duncan Sands13237ac2008-06-06 12:08:01 +0000425 setOperationAction(ISD::CTTZ, VT, Expand);
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000426 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
Benjamin Kramerc5071462012-12-19 15:49:14 +0000427 setOperationAction(ISD::VSELECT, VT, Expand);
Adhemerval Zanellac4182d12012-11-05 17:15:56 +0000428 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
429
430 for (unsigned j = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
431 j <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++j) {
432 MVT::SimpleValueType InnerVT = (MVT::SimpleValueType)j;
433 setTruncStoreAction(VT, InnerVT, Expand);
434 }
435 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
436 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
437 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Chris Lattnerbaa73e02006-03-31 19:52:36 +0000438 }
439
Chris Lattner95c7adc2006-04-04 17:25:31 +0000440 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
441 // with merges, splats, etc.
Owen Anderson9f944592009-08-11 20:47:22 +0000442 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner95c7adc2006-04-04 17:25:31 +0000443
Owen Anderson9f944592009-08-11 20:47:22 +0000444 setOperationAction(ISD::AND , MVT::v4i32, Legal);
445 setOperationAction(ISD::OR , MVT::v4i32, Legal);
446 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
447 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
448 setOperationAction(ISD::SELECT, MVT::v4i32, Expand);
449 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
Adhemerval Zanella5c6e0842012-10-08 17:27:24 +0000450 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
451 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
452 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
453 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
Adhemerval Zanellabdface52012-11-15 20:56:03 +0000454 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
455 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
456 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
457 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000458
Craig Topperabadc662012-04-20 06:31:50 +0000459 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
460 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
461 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
462 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000463
Owen Anderson9f944592009-08-11 20:47:22 +0000464 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Hal Finkel0a479ae2012-06-22 00:49:52 +0000465 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
Hal Finkel2e103312013-04-03 04:01:11 +0000466
467 if (TM.Options.UnsafeFPMath) {
468 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
469 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
470 }
471
Owen Anderson9f944592009-08-11 20:47:22 +0000472 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
473 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
474 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnera8713b12006-03-20 01:53:53 +0000475
Owen Anderson9f944592009-08-11 20:47:22 +0000476 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
477 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000478
Owen Anderson9f944592009-08-11 20:47:22 +0000479 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
480 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
481 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
482 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Adhemerval Zanella56775e02012-10-30 13:50:19 +0000483
484 // Altivec does not contain unordered floating-point compare instructions
485 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
486 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
487 setCondCodeAction(ISD::SETUGT, MVT::v4f32, Expand);
488 setCondCodeAction(ISD::SETUGE, MVT::v4f32, Expand);
489 setCondCodeAction(ISD::SETULT, MVT::v4f32, Expand);
490 setCondCodeAction(ISD::SETULE, MVT::v4f32, Expand);
Hal Finkel21ada792013-07-08 20:00:03 +0000491
492 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand);
493 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
Nate Begeman3e7db9c2005-11-29 08:17:20 +0000494 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000495
Hal Finkel70381a72012-08-04 14:10:46 +0000496 if (Subtarget->has64BitSupport()) {
Hal Finkel322e41a2012-04-01 20:08:17 +0000497 setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
Hal Finkel70381a72012-08-04 14:10:46 +0000498 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Legal);
499 }
Hal Finkel322e41a2012-04-01 20:08:17 +0000500
Eli Friedman7dfa7912011-08-29 18:23:02 +0000501 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Expand);
502 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Expand);
Hal Finkel1b5ff082012-12-25 17:22:53 +0000503 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
504 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
Eli Friedman7dfa7912011-08-29 18:23:02 +0000505
Duncan Sands8d6e2e12008-11-23 15:47:28 +0000506 setBooleanContents(ZeroOrOneBooleanContent);
Bill Schmidta76bf5a2013-04-23 18:49:44 +0000507 // Altivec instructions set fields to all zeros or all ones.
508 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000509
Evan Cheng39e90022012-07-02 22:39:56 +0000510 if (isPPC64) {
Chris Lattner454436d2006-10-18 01:20:43 +0000511 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000512 setExceptionPointerRegister(PPC::X3);
513 setExceptionSelectorRegister(PPC::X4);
514 } else {
Chris Lattner454436d2006-10-18 01:20:43 +0000515 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskeye0008e22007-02-22 14:56:36 +0000516 setExceptionPointerRegister(PPC::R3);
517 setExceptionSelectorRegister(PPC::R4);
518 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000519
Chris Lattnerf4184352006-03-01 04:57:39 +0000520 // We have target-specific dag combine patterns for the following nodes:
521 setTargetDAGCombine(ISD::SINT_TO_FP);
Hal Finkelcf2e9082013-05-24 23:00:14 +0000522 setTargetDAGCombine(ISD::LOAD);
Chris Lattner27f53452006-03-01 05:50:56 +0000523 setTargetDAGCombine(ISD::STORE);
Chris Lattner9754d142006-04-18 17:59:36 +0000524 setTargetDAGCombine(ISD::BR_CC);
Chris Lattnera7976d32006-07-10 20:56:58 +0000525 setTargetDAGCombine(ISD::BSWAP);
Hal Finkelbc2ee4c2013-05-25 04:05:05 +0000526 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000527
Hal Finkel2e103312013-04-03 04:01:11 +0000528 // Use reciprocal estimates.
529 if (TM.Options.UnsafeFPMath) {
530 setTargetDAGCombine(ISD::FDIV);
531 setTargetDAGCombine(ISD::FSQRT);
532 }
533
Dale Johannesen10432e52007-10-19 00:59:18 +0000534 // Darwin long double math library functions have $LDBL128 appended.
Evan Cheng39e90022012-07-02 22:39:56 +0000535 if (Subtarget->isDarwin()) {
Duncan Sands53c954f2008-01-10 10:28:30 +0000536 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000537 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
538 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands53c954f2008-01-10 10:28:30 +0000539 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
540 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesenda2d8062008-09-04 00:47:13 +0000541 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
542 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
543 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
544 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
545 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
Dale Johannesen10432e52007-10-19 00:59:18 +0000546 }
547
Hal Finkel65298572011-10-17 18:53:03 +0000548 setMinFunctionAlignment(2);
549 if (PPCSubTarget.isDarwin())
550 setPrefFunctionAlignment(4);
Eli Friedman2518f832011-05-06 20:34:06 +0000551
Evan Cheng39e90022012-07-02 22:39:56 +0000552 if (isPPC64 && Subtarget->isJITCodeModel())
553 // Temporary workaround for the inability of PPC64 JIT to handle jump
554 // tables.
555 setSupportJumpTables(false);
556
Eli Friedman30a49e92011-08-03 21:06:02 +0000557 setInsertFencesForAtomic(true);
558
Hal Finkel21442b22013-09-11 23:05:25 +0000559 if (Subtarget->enableMachineScheduler())
560 setSchedulingPreference(Sched::Source);
561 else
562 setSchedulingPreference(Sched::Hybrid);
Hal Finkel6f0ae782011-11-22 16:21:04 +0000563
Chris Lattnerf22556d2005-08-16 17:14:42 +0000564 computeRegisterProperties();
Hal Finkel742b5352012-08-28 16:12:39 +0000565
566 // The Freescale cores does better with aggressive inlining of memcpy and
567 // friends. Gcc uses same threshold of 128 bytes (= 32 word stores).
568 if (Subtarget->getDarwinDirective() == PPC::DIR_E500mc ||
569 Subtarget->getDarwinDirective() == PPC::DIR_E5500) {
Jim Grosbach341ad3e2013-02-20 21:13:59 +0000570 MaxStoresPerMemset = 32;
571 MaxStoresPerMemsetOptSize = 16;
572 MaxStoresPerMemcpy = 32;
573 MaxStoresPerMemcpyOptSize = 8;
574 MaxStoresPerMemmove = 32;
575 MaxStoresPerMemmoveOptSize = 8;
Hal Finkel742b5352012-08-28 16:12:39 +0000576
577 setPrefFunctionAlignment(4);
Hal Finkel742b5352012-08-28 16:12:39 +0000578 }
Chris Lattnerf22556d2005-08-16 17:14:42 +0000579}
580
Hal Finkel262a2242013-09-12 23:20:06 +0000581/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
582/// the desired ByVal argument alignment.
583static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign,
584 unsigned MaxMaxAlign) {
585 if (MaxAlign == MaxMaxAlign)
586 return;
587 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
588 if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256)
589 MaxAlign = 32;
590 else if (VTy->getBitWidth() >= 128 && MaxAlign < 16)
591 MaxAlign = 16;
592 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
593 unsigned EltAlign = 0;
594 getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign);
595 if (EltAlign > MaxAlign)
596 MaxAlign = EltAlign;
597 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
598 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
599 unsigned EltAlign = 0;
600 getMaxByValAlign(STy->getElementType(i), EltAlign, MaxMaxAlign);
601 if (EltAlign > MaxAlign)
602 MaxAlign = EltAlign;
603 if (MaxAlign == MaxMaxAlign)
604 break;
605 }
606 }
607}
608
Dale Johannesencbde4c22008-02-28 22:31:51 +0000609/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
610/// function arguments in the caller parameter area.
Chris Lattner229907c2011-07-18 04:54:35 +0000611unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
Dale Johannesencbde4c22008-02-28 22:31:51 +0000612 // Darwin passes everything on 4 byte boundary.
Hal Finkel262a2242013-09-12 23:20:06 +0000613 if (PPCSubTarget.isDarwin())
Dale Johannesencbde4c22008-02-28 22:31:51 +0000614 return 4;
Roman Divackyb9663cc2012-04-02 15:49:30 +0000615
616 // 16byte and wider vectors are passed on 16byte boundary.
Roman Divackyb9663cc2012-04-02 15:49:30 +0000617 // The rest is 8 on PPC64 and 4 on PPC32 boundary.
Hal Finkel262a2242013-09-12 23:20:06 +0000618 unsigned Align = PPCSubTarget.isPPC64() ? 8 : 4;
619 if (PPCSubTarget.hasAltivec() || PPCSubTarget.hasQPX())
620 getMaxByValAlign(Ty, Align, PPCSubTarget.hasQPX() ? 32 : 16);
621 return Align;
Dale Johannesencbde4c22008-02-28 22:31:51 +0000622}
623
Chris Lattner347ed8a2006-01-09 23:52:17 +0000624const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
625 switch (Opcode) {
626 default: return 0;
Evan Cheng32e376f2008-07-12 02:23:19 +0000627 case PPCISD::FSEL: return "PPCISD::FSEL";
628 case PPCISD::FCFID: return "PPCISD::FCFID";
629 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
630 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Hal Finkel2e103312013-04-03 04:01:11 +0000631 case PPCISD::FRE: return "PPCISD::FRE";
632 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE";
Evan Cheng32e376f2008-07-12 02:23:19 +0000633 case PPCISD::STFIWX: return "PPCISD::STFIWX";
634 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
635 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
636 case PPCISD::VPERM: return "PPCISD::VPERM";
637 case PPCISD::Hi: return "PPCISD::Hi";
638 case PPCISD::Lo: return "PPCISD::Lo";
Tilmann Schellerd1aaa322009-08-15 11:54:46 +0000639 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY";
Tilmann Scheller79fef932009-12-18 13:00:15 +0000640 case PPCISD::TOC_RESTORE: return "PPCISD::TOC_RESTORE";
641 case PPCISD::LOAD: return "PPCISD::LOAD";
642 case PPCISD::LOAD_TOC: return "PPCISD::LOAD_TOC";
Evan Cheng32e376f2008-07-12 02:23:19 +0000643 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
644 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
645 case PPCISD::SRL: return "PPCISD::SRL";
646 case PPCISD::SRA: return "PPCISD::SRA";
647 case PPCISD::SHL: return "PPCISD::SHL";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000648 case PPCISD::CALL: return "PPCISD::CALL";
649 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP";
Evan Cheng32e376f2008-07-12 02:23:19 +0000650 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigandf62e83f2013-03-22 15:24:13 +0000651 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Evan Cheng32e376f2008-07-12 02:23:19 +0000652 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkel756810f2013-03-21 21:37:52 +0000653 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
654 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Ulrich Weigandd5ebc622013-07-03 17:05:42 +0000655 case PPCISD::MFOCRF: return "PPCISD::MFOCRF";
Evan Cheng32e376f2008-07-12 02:23:19 +0000656 case PPCISD::VCMP: return "PPCISD::VCMP";
657 case PPCISD::VCMPo: return "PPCISD::VCMPo";
658 case PPCISD::LBRX: return "PPCISD::LBRX";
659 case PPCISD::STBRX: return "PPCISD::STBRX";
Evan Cheng32e376f2008-07-12 02:23:19 +0000660 case PPCISD::LARX: return "PPCISD::LARX";
661 case PPCISD::STCX: return "PPCISD::STCX";
662 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkel25c19922013-05-15 21:37:41 +0000663 case PPCISD::BDNZ: return "PPCISD::BDNZ";
664 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000665 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng32e376f2008-07-12 02:23:19 +0000666 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng32e376f2008-07-12 02:23:19 +0000667 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel5ab37802012-08-28 02:10:27 +0000668 case PPCISD::CR6SET: return "PPCISD::CR6SET";
669 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Bill Schmidt34627e32012-11-27 17:35:46 +0000670 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA";
671 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L";
672 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L";
Roman Divacky32143e22013-12-20 18:08:54 +0000673 case PPCISD::PPC32_GOT: return "PPCISD::PPC32_GOT";
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +0000674 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
675 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtca4a0c92012-12-04 16:18:08 +0000676 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidtc56f1d32012-12-11 20:30:11 +0000677 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
678 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
679 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR";
Bill Schmidt24b8dd62012-12-12 19:29:35 +0000680 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
681 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
682 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR";
683 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
684 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L";
Bill Schmidt51e79512013-02-20 15:50:31 +0000685 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT";
Bill Schmidta87a7e22013-05-14 19:35:45 +0000686 case PPCISD::SC: return "PPCISD::SC";
Chris Lattner347ed8a2006-01-09 23:52:17 +0000687 }
688}
689
Matt Arsenault758659232013-05-18 00:21:46 +0000690EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000691 if (!VT.isVector())
692 return MVT::i32;
693 return VT.changeVectorElementTypeToInteger();
Scott Michela6729e82008-03-10 15:42:14 +0000694}
695
Chris Lattner4211ca92006-04-14 06:01:58 +0000696//===----------------------------------------------------------------------===//
697// Node matching predicates, for use by the tblgen matching code.
698//===----------------------------------------------------------------------===//
699
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000700/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000701static bool isFloatingPointZero(SDValue Op) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000702 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000703 return CFP->getValueAPF().isZero();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000704 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000705 // Maybe this has already been legalized into the constant pool?
706 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Dan Gohmanbcaf6812010-04-15 01:51:59 +0000707 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000708 return CFP->getValueAPF().isZero();
Chris Lattner7f1fa8e2005-08-26 17:36:52 +0000709 }
710 return false;
711}
712
Chris Lattnere8b83b42006-04-06 17:23:16 +0000713/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
714/// true if Op is undef or if it matches the specified value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000715static bool isConstantOrUndef(int Op, int Val) {
716 return Op < 0 || Op == Val;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000717}
718
719/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
720/// VPKUHUM instruction.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000721bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000722 if (!isUnary) {
723 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000724 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000725 return false;
726 } else {
727 for (unsigned i = 0; i != 8; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000728 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1) ||
729 !isConstantOrUndef(N->getMaskElt(i+8), i*2+1))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000730 return false;
731 }
Chris Lattner1d338192006-04-06 18:26:28 +0000732 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000733}
734
735/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
736/// VPKUWUM instruction.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000737bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000738 if (!isUnary) {
739 for (unsigned i = 0; i != 16; i += 2)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000740 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
741 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000742 return false;
743 } else {
744 for (unsigned i = 0; i != 8; i += 2)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000745 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
746 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3) ||
747 !isConstantOrUndef(N->getMaskElt(i+8), i*2+2) ||
748 !isConstantOrUndef(N->getMaskElt(i+9), i*2+3))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000749 return false;
750 }
Chris Lattner1d338192006-04-06 18:26:28 +0000751 return true;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000752}
753
Chris Lattnerf38e0332006-04-06 22:02:42 +0000754/// isVMerge - Common function, used to match vmrg* shuffles.
755///
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000756static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnerf38e0332006-04-06 22:02:42 +0000757 unsigned LHSStart, unsigned RHSStart) {
Owen Anderson9f944592009-08-11 20:47:22 +0000758 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000759 "PPC only supports shuffles by bytes!");
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000760 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
761 "Unsupported merge size!");
Scott Michelcf0da6c2009-02-17 22:15:04 +0000762
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000763 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
764 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000765 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000766 LHSStart+j+i*UnitSize) ||
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000767 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnerf38e0332006-04-06 22:02:42 +0000768 RHSStart+j+i*UnitSize))
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000769 return false;
770 }
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000771 return true;
Chris Lattnerf38e0332006-04-06 22:02:42 +0000772}
773
774/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
775/// a VRGL* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peck527da1b2010-11-23 03:31:01 +0000776bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000777 bool isUnary) {
Chris Lattnerf38e0332006-04-06 22:02:42 +0000778 if (!isUnary)
779 return isVMerge(N, UnitSize, 8, 24);
780 return isVMerge(N, UnitSize, 8, 8);
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000781}
782
783/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
784/// a VRGH* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peck527da1b2010-11-23 03:31:01 +0000785bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000786 bool isUnary) {
Chris Lattnerf38e0332006-04-06 22:02:42 +0000787 if (!isUnary)
788 return isVMerge(N, UnitSize, 0, 16);
789 return isVMerge(N, UnitSize, 0, 0);
Chris Lattnerd1dcb522006-04-06 21:11:54 +0000790}
791
792
Chris Lattner1d338192006-04-06 18:26:28 +0000793/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
794/// amount, otherwise return -1.
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000795int PPC::isVSLDOIShuffleMask(SDNode *N, bool isUnary) {
Owen Anderson9f944592009-08-11 20:47:22 +0000796 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000797 "PPC only supports shuffles by bytes!");
798
799 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Wesley Peck527da1b2010-11-23 03:31:01 +0000800
Chris Lattner1d338192006-04-06 18:26:28 +0000801 // Find the first non-undef value in the shuffle mask.
802 unsigned i;
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000803 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattner1d338192006-04-06 18:26:28 +0000804 /*search*/;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000805
Chris Lattner1d338192006-04-06 18:26:28 +0000806 if (i == 16) return -1; // all undef.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000807
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000808 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattner1d338192006-04-06 18:26:28 +0000809 // numbered from this value.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000810 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattner1d338192006-04-06 18:26:28 +0000811 if (ShiftAmt < i) return -1;
812 ShiftAmt -= i;
Chris Lattnere8b83b42006-04-06 17:23:16 +0000813
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000814 if (!isUnary) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000815 // Check the rest of the elements to see if they are consecutive.
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000816 for (++i; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000817 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000818 return -1;
819 } else {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000820 // Check the rest of the elements to see if they are consecutive.
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000821 for (++i; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000822 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
Chris Lattnera4bbfae2006-04-06 22:28:36 +0000823 return -1;
824 }
Chris Lattner1d338192006-04-06 18:26:28 +0000825 return ShiftAmt;
826}
Chris Lattnerffc47562006-03-20 06:33:01 +0000827
828/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
829/// specifies a splat of a single element that is suitable for input to
830/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000831bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson9f944592009-08-11 20:47:22 +0000832 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner95c7adc2006-04-04 17:25:31 +0000833 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelcf0da6c2009-02-17 22:15:04 +0000834
Chris Lattnera8fbb6d2006-03-20 06:37:44 +0000835 // This is a splat operation if each element of the permute is the same, and
836 // if the value doesn't reference the second vector.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000837 unsigned ElementBase = N->getMaskElt(0);
Wesley Peck527da1b2010-11-23 03:31:01 +0000838
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000839 // FIXME: Handle UNDEF elements too!
840 if (ElementBase >= 16)
Chris Lattner95c7adc2006-04-04 17:25:31 +0000841 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000842
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000843 // Check that the indices are consecutive, in the case of a multi-byte element
844 // splatted with a v16i8 mask.
845 for (unsigned i = 1; i != EltSize; ++i)
846 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner95c7adc2006-04-04 17:25:31 +0000847 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000848
Chris Lattner95c7adc2006-04-04 17:25:31 +0000849 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000850 if (N->getMaskElt(i) < 0) continue;
Chris Lattner95c7adc2006-04-04 17:25:31 +0000851 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000852 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner95c7adc2006-04-04 17:25:31 +0000853 return false;
Chris Lattnera8fbb6d2006-03-20 06:37:44 +0000854 }
Chris Lattner95c7adc2006-04-04 17:25:31 +0000855 return true;
Chris Lattnerffc47562006-03-20 06:33:01 +0000856}
857
Evan Cheng581d2792007-07-30 07:51:22 +0000858/// isAllNegativeZeroVector - Returns true if all elements of build_vector
859/// are -0.0.
860bool PPC::isAllNegativeZeroVector(SDNode *N) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000861 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
862
863 APInt APVal, APUndef;
864 unsigned BitSize;
865 bool HasAnyUndefs;
Wesley Peck527da1b2010-11-23 03:31:01 +0000866
Dale Johannesen5f4eecf2009-11-13 01:45:18 +0000867 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000868 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000869 return CFP->getValueAPF().isNegZero();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000870
Evan Cheng581d2792007-07-30 07:51:22 +0000871 return false;
872}
873
Chris Lattnerffc47562006-03-20 06:33:01 +0000874/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
875/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Chris Lattner95c7adc2006-04-04 17:25:31 +0000876unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000877 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
878 assert(isSplatShuffleMask(SVOp, EltSize));
879 return SVOp->getMaskElt(0) / EltSize;
Chris Lattnerffc47562006-03-20 06:33:01 +0000880}
881
Chris Lattner74cf9ff2006-04-12 17:37:20 +0000882/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattnerd71a1f92006-04-08 06:46:53 +0000883/// by using a vspltis[bhw] instruction of the specified element size, return
884/// the constant being splatted. The ByteSize field indicates the number of
885/// bytes of each element [124] -> [bhw].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000886SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
887 SDValue OpVal(0, 0);
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000888
889 // If ByteSize of the splat is bigger than the element size of the
890 // build_vector, then we have a case where we are checking for a splat where
891 // multiple elements of the buildvector are folded together into a single
892 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
893 unsigned EltSize = 16/N->getNumOperands();
894 if (EltSize < ByteSize) {
895 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000896 SDValue UniquedVals[4];
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000897 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelcf0da6c2009-02-17 22:15:04 +0000898
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000899 // See if all of the elements in the buildvector agree across.
900 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
901 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
902 // If the element isn't a constant, bail fully out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000903 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000904
Scott Michelcf0da6c2009-02-17 22:15:04 +0000905
Gabor Greiff304a7a2008-08-28 21:40:38 +0000906 if (UniquedVals[i&(Multiple-1)].getNode() == 0)
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000907 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
908 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000909 return SDValue(); // no match.
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000910 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000911
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000912 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
913 // either constant or undef values that are identical for each chunk. See
914 // if these chunks can form into a larger vspltis*.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000915
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000916 // Check to see if all of the leading entries are either 0 or -1. If
917 // neither, then this won't fit into the immediate field.
918 bool LeadingZero = true;
919 bool LeadingOnes = true;
920 for (unsigned i = 0; i != Multiple-1; ++i) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000921 if (UniquedVals[i].getNode() == 0) continue; // Must have been undefs.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000922
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000923 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
924 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
925 }
926 // Finally, check the least significant entry.
927 if (LeadingZero) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000928 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson9f944592009-08-11 20:47:22 +0000929 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
Dan Gohmaneffb8942008-09-12 16:56:44 +0000930 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000931 if (Val < 16)
Owen Anderson9f944592009-08-11 20:47:22 +0000932 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000933 }
934 if (LeadingOnes) {
Gabor Greiff304a7a2008-08-28 21:40:38 +0000935 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson9f944592009-08-11 20:47:22 +0000936 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
Dan Gohman6e054832008-09-26 21:54:37 +0000937 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000938 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Owen Anderson9f944592009-08-11 20:47:22 +0000939 return DAG.getTargetConstant(Val, MVT::i32);
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000940 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000941
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000942 return SDValue();
Chris Lattnerd9e80f42006-04-08 07:14:26 +0000943 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000944
Chris Lattner2771e2c2006-03-25 06:12:06 +0000945 // Check to see if this buildvec has a single non-undef value in its elements.
946 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
947 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000948 if (OpVal.getNode() == 0)
Chris Lattner2771e2c2006-03-25 06:12:06 +0000949 OpVal = N->getOperand(i);
950 else if (OpVal != N->getOperand(i))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000951 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000952 }
Scott Michelcf0da6c2009-02-17 22:15:04 +0000953
Gabor Greiff304a7a2008-08-28 21:40:38 +0000954 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
Scott Michelcf0da6c2009-02-17 22:15:04 +0000955
Eli Friedman9c6ab1a2009-05-24 02:03:36 +0000956 unsigned ValSizeInBytes = EltSize;
Nate Begeman1b392872006-03-28 04:15:58 +0000957 uint64_t Value = 0;
Chris Lattner2771e2c2006-03-25 06:12:06 +0000958 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +0000959 Value = CN->getZExtValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000960 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson9f944592009-08-11 20:47:22 +0000961 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johannesen3cf889f2007-08-31 04:03:46 +0000962 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner2771e2c2006-03-25 06:12:06 +0000963 }
964
965 // If the splat value is larger than the element value, then we can never do
966 // this splat. The only case that we could fit the replicated bits into our
967 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000968 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +0000969
Chris Lattner2771e2c2006-03-25 06:12:06 +0000970 // If the element value is larger than the splat value, cut it in half and
971 // check to see if the two halves are equal. Continue doing this until we
972 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
973 while (ValSizeInBytes > ByteSize) {
974 ValSizeInBytes >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000975
Chris Lattner2771e2c2006-03-25 06:12:06 +0000976 // If the top half equals the bottom half, we're still ok.
Chris Lattner39cc7172006-04-05 17:39:25 +0000977 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
978 (Value & ((1 << (8*ValSizeInBytes))-1)))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000979 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000980 }
981
982 // Properly sign extend the value.
Richard Smith228e6d42012-08-24 23:29:28 +0000983 int MaskVal = SignExtend32(Value, ByteSize * 8);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000984
Evan Chengb1ddc982006-03-26 09:52:32 +0000985 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000986 if (MaskVal == 0) return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000987
Chris Lattnerd71a1f92006-04-08 06:46:53 +0000988 // Finally, if this value fits in a 5 bit sext field, return it
Richard Smith228e6d42012-08-24 23:29:28 +0000989 if (SignExtend32<5>(MaskVal) == MaskVal)
Owen Anderson9f944592009-08-11 20:47:22 +0000990 return DAG.getTargetConstant(MaskVal, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000991 return SDValue();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000992}
993
Chris Lattner4211ca92006-04-14 06:01:58 +0000994//===----------------------------------------------------------------------===//
Chris Lattnera801fced2006-11-08 02:15:41 +0000995// Addressing Mode Selection
996//===----------------------------------------------------------------------===//
997
998/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
999/// or 64-bit immediate, and if the value can be accurately represented as a
1000/// sign extension from a 16-bit value. If so, this returns true and the
1001/// immediate.
1002static bool isIntS16Immediate(SDNode *N, short &Imm) {
1003 if (N->getOpcode() != ISD::Constant)
1004 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001005
Dan Gohmaneffb8942008-09-12 16:56:44 +00001006 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson9f944592009-08-11 20:47:22 +00001007 if (N->getValueType(0) == MVT::i32)
Dan Gohmaneffb8942008-09-12 16:56:44 +00001008 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001009 else
Dan Gohmaneffb8942008-09-12 16:56:44 +00001010 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnera801fced2006-11-08 02:15:41 +00001011}
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001012static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001013 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnera801fced2006-11-08 02:15:41 +00001014}
1015
1016
1017/// SelectAddressRegReg - Given the specified addressed, check to see if it
1018/// can be represented as an indexed [r+r] operation. Returns false if it
1019/// can be more efficiently represented with [r+imm].
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001020bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1021 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001022 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001023 short imm = 0;
1024 if (N.getOpcode() == ISD::ADD) {
1025 if (isIntS16Immediate(N.getOperand(1), imm))
1026 return false; // r+i
1027 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1028 return false; // r+i
Scott Michelcf0da6c2009-02-17 22:15:04 +00001029
Chris Lattnera801fced2006-11-08 02:15:41 +00001030 Base = N.getOperand(0);
1031 Index = N.getOperand(1);
1032 return true;
1033 } else if (N.getOpcode() == ISD::OR) {
1034 if (isIntS16Immediate(N.getOperand(1), imm))
1035 return false; // r+i can fold it if we can.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001036
Chris Lattnera801fced2006-11-08 02:15:41 +00001037 // If this is an or of disjoint bitfields, we can codegen this as an add
1038 // (for better address arithmetic) if the LHS and RHS of the OR are provably
1039 // disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001040 APInt LHSKnownZero, LHSKnownOne;
1041 APInt RHSKnownZero, RHSKnownOne;
1042 DAG.ComputeMaskedBits(N.getOperand(0),
Dan Gohmanf19609a2008-02-27 01:23:58 +00001043 LHSKnownZero, LHSKnownOne);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001044
Dan Gohmanf19609a2008-02-27 01:23:58 +00001045 if (LHSKnownZero.getBoolValue()) {
1046 DAG.ComputeMaskedBits(N.getOperand(1),
Dan Gohmanf19609a2008-02-27 01:23:58 +00001047 RHSKnownZero, RHSKnownOne);
Chris Lattnera801fced2006-11-08 02:15:41 +00001048 // If all of the bits are known zero on the LHS or RHS, the add won't
1049 // carry.
Dan Gohman26854f22008-02-27 21:12:32 +00001050 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001051 Base = N.getOperand(0);
1052 Index = N.getOperand(1);
1053 return true;
1054 }
1055 }
1056 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001057
Chris Lattnera801fced2006-11-08 02:15:41 +00001058 return false;
1059}
1060
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001061// If we happen to be doing an i64 load or store into a stack slot that has
1062// less than a 4-byte alignment, then the frame-index elimination may need to
1063// use an indexed load or store instruction (because the offset may not be a
1064// multiple of 4). The extra register needed to hold the offset comes from the
1065// register scavenger, and it is possible that the scavenger will need to use
1066// an emergency spill slot. As a result, we need to make sure that a spill slot
1067// is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1068// stack slot.
1069static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1070 // FIXME: This does not handle the LWA case.
1071 if (VT != MVT::i64)
1072 return;
1073
Hal Finkel7ab3db52013-07-10 15:29:01 +00001074 // NOTE: We'll exclude negative FIs here, which come from argument
1075 // lowering, because there are no known test cases triggering this problem
1076 // using packed structures (or similar). We can remove this exclusion if
1077 // we find such a test case. The reason why this is so test-case driven is
1078 // because this entire 'fixup' is only to prevent crashes (from the
1079 // register scavenger) on not-really-valid inputs. For example, if we have:
1080 // %a = alloca i1
1081 // %b = bitcast i1* %a to i64*
1082 // store i64* a, i64 b
1083 // then the store should really be marked as 'align 1', but is not. If it
1084 // were marked as 'align 1' then the indexed form would have been
1085 // instruction-selected initially, and the problem this 'fixup' is preventing
1086 // won't happen regardless.
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001087 if (FrameIdx < 0)
1088 return;
1089
1090 MachineFunction &MF = DAG.getMachineFunction();
1091 MachineFrameInfo *MFI = MF.getFrameInfo();
1092
1093 unsigned Align = MFI->getObjectAlignment(FrameIdx);
1094 if (Align >= 4)
1095 return;
1096
1097 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1098 FuncInfo->setHasNonRISpills();
1099}
1100
Chris Lattnera801fced2006-11-08 02:15:41 +00001101/// Returns true if the address N can be represented by a base register plus
1102/// a signed 16-bit displacement [r+imm], and if it is not better
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001103/// represented as reg+reg. If Aligned is true, only accept displacements
1104/// suitable for STD and friends, i.e. multiples of 4.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001105bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman02b93132009-01-15 16:29:45 +00001106 SDValue &Base,
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001107 SelectionDAG &DAG,
1108 bool Aligned) const {
Dale Johannesenab8e4422009-02-06 19:16:40 +00001109 // FIXME dl should come from parent load or store, not from address
Andrew Trickef9de2a2013-05-25 02:42:55 +00001110 SDLoc dl(N);
Chris Lattnera801fced2006-11-08 02:15:41 +00001111 // If this can be more profitably realized as r+r, fail.
1112 if (SelectAddressRegReg(N, Disp, Base, DAG))
1113 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001114
Chris Lattnera801fced2006-11-08 02:15:41 +00001115 if (N.getOpcode() == ISD::ADD) {
1116 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001117 if (isIntS16Immediate(N.getOperand(1), imm) &&
1118 (!Aligned || (imm & 3) == 0)) {
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001119 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001120 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1121 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001122 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001123 } else {
1124 Base = N.getOperand(0);
1125 }
1126 return true; // [r+i]
1127 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1128 // Match LOAD (ADD (X, Lo(G))).
Gabor Greifc8a9abe2012-04-20 11:41:38 +00001129 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnera801fced2006-11-08 02:15:41 +00001130 && "Cannot handle constant offsets yet!");
1131 Disp = N.getOperand(1).getOperand(0); // The global address.
1132 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
Roman Divackye3f15c982012-06-04 17:36:38 +00001133 Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
Chris Lattnera801fced2006-11-08 02:15:41 +00001134 Disp.getOpcode() == ISD::TargetConstantPool ||
1135 Disp.getOpcode() == ISD::TargetJumpTable);
1136 Base = N.getOperand(0);
1137 return true; // [&g+r]
1138 }
1139 } else if (N.getOpcode() == ISD::OR) {
1140 short imm = 0;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001141 if (isIntS16Immediate(N.getOperand(1), imm) &&
1142 (!Aligned || (imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001143 // If this is an or of disjoint bitfields, we can codegen this as an add
1144 // (for better address arithmetic) if the LHS and RHS of the OR are
1145 // provably disjoint.
Dan Gohmanf19609a2008-02-27 01:23:58 +00001146 APInt LHSKnownZero, LHSKnownOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00001147 DAG.ComputeMaskedBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
Bill Wendling63061832008-03-24 23:16:37 +00001148
Dan Gohmanf19609a2008-02-27 01:23:58 +00001149 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001150 // If all of the bits are known zero on the LHS or RHS, the add won't
1151 // carry.
1152 Base = N.getOperand(0);
Ulrich Weigand7aa76b62013-05-16 14:53:05 +00001153 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001154 return true;
1155 }
1156 }
1157 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1158 // Loading from a constant address.
Scott Michelcf0da6c2009-02-17 22:15:04 +00001159
Chris Lattnera801fced2006-11-08 02:15:41 +00001160 // If this address fits entirely in a 16-bit sext immediate field, codegen
1161 // this as "d, 0"
1162 short Imm;
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001163 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001164 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
Hal Finkelf70c41e2013-03-21 23:45:03 +00001165 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1166 CN->getValueType(0));
Chris Lattnera801fced2006-11-08 02:15:41 +00001167 return true;
1168 }
Chris Lattner4a9c0bb2007-02-17 06:44:03 +00001169
1170 // Handle 32-bit sext immediates with LIS + addr mode.
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001171 if ((CN->getValueType(0) == MVT::i32 ||
1172 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1173 (!Aligned || (CN->getZExtValue() & 3) == 0)) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001174 int Addr = (int)CN->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001175
Chris Lattnera801fced2006-11-08 02:15:41 +00001176 // Otherwise, break this down into an LIS + disp.
Owen Anderson9f944592009-08-11 20:47:22 +00001177 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001178
Owen Anderson9f944592009-08-11 20:47:22 +00001179 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
1180 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dan Gohman32f71d72009-09-25 18:54:59 +00001181 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnera801fced2006-11-08 02:15:41 +00001182 return true;
1183 }
1184 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001185
Chris Lattnera801fced2006-11-08 02:15:41 +00001186 Disp = DAG.getTargetConstant(0, getPointerTy());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001187 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
Chris Lattnera801fced2006-11-08 02:15:41 +00001188 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkeldbbf09b2013-07-09 06:34:51 +00001189 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1190 } else
Chris Lattnera801fced2006-11-08 02:15:41 +00001191 Base = N;
1192 return true; // [r+0]
1193}
1194
1195/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1196/// represented as an indexed [r+r] operation.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001197bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1198 SDValue &Index,
Dan Gohman02b93132009-01-15 16:29:45 +00001199 SelectionDAG &DAG) const {
Chris Lattnera801fced2006-11-08 02:15:41 +00001200 // Check to see if we can easily represent this as an [r+r] address. This
1201 // will fail if it thinks that the address is more profitably represented as
1202 // reg+imm, e.g. where imm = 0.
1203 if (SelectAddressRegReg(N, Base, Index, DAG))
1204 return true;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001205
Chris Lattnera801fced2006-11-08 02:15:41 +00001206 // If the operand is an addition, always emit this as [r+r], since this is
1207 // better (for code size, and execution, as the memop does the add for free)
1208 // than emitting an explicit add.
1209 if (N.getOpcode() == ISD::ADD) {
1210 Base = N.getOperand(0);
1211 Index = N.getOperand(1);
1212 return true;
1213 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001214
Chris Lattnera801fced2006-11-08 02:15:41 +00001215 // Otherwise, do it the hard way, using R0 as the base register.
Hal Finkelf70c41e2013-03-21 23:45:03 +00001216 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1217 N.getValueType());
Chris Lattnera801fced2006-11-08 02:15:41 +00001218 Index = N;
1219 return true;
1220}
1221
Chris Lattnera801fced2006-11-08 02:15:41 +00001222/// getPreIndexedAddressParts - returns true by value, base pointer and
1223/// offset pointer and addressing mode by reference if the node's address
1224/// can be legally represented as pre-indexed load / store address.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001225bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1226 SDValue &Offset,
Evan Chengb1500072006-11-09 17:55:04 +00001227 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +00001228 SelectionDAG &DAG) const {
Hal Finkel595817e2012-06-04 02:21:00 +00001229 if (DisablePPCPreinc) return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001230
Ulrich Weigande90b0222013-03-22 14:58:48 +00001231 bool isLoad = true;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001232 SDValue Ptr;
Owen Anderson53aa7a92009-08-10 22:56:29 +00001233 EVT VT;
Hal Finkelb09680b2013-03-18 23:00:58 +00001234 unsigned Alignment;
Chris Lattnera801fced2006-11-08 02:15:41 +00001235 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1236 Ptr = LD->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001237 VT = LD->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001238 Alignment = LD->getAlignment();
Chris Lattnera801fced2006-11-08 02:15:41 +00001239 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner68371252006-11-14 01:38:31 +00001240 Ptr = ST->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +00001241 VT = ST->getMemoryVT();
Hal Finkelb09680b2013-03-18 23:00:58 +00001242 Alignment = ST->getAlignment();
Ulrich Weigande90b0222013-03-22 14:58:48 +00001243 isLoad = false;
Chris Lattnera801fced2006-11-08 02:15:41 +00001244 } else
1245 return false;
1246
Chris Lattner68371252006-11-14 01:38:31 +00001247 // PowerPC doesn't have preinc load/store instructions for vectors.
Duncan Sands13237ac2008-06-06 12:08:01 +00001248 if (VT.isVector())
Chris Lattner68371252006-11-14 01:38:31 +00001249 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001250
Ulrich Weigande90b0222013-03-22 14:58:48 +00001251 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1252
1253 // Common code will reject creating a pre-inc form if the base pointer
1254 // is a frame index, or if N is a store and the base pointer is either
1255 // the same as or a predecessor of the value being stored. Check for
1256 // those situations here, and try with swapped Base/Offset instead.
1257 bool Swap = false;
1258
1259 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1260 Swap = true;
1261 else if (!isLoad) {
1262 SDValue Val = cast<StoreSDNode>(N)->getValue();
1263 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1264 Swap = true;
1265 }
1266
1267 if (Swap)
1268 std::swap(Base, Offset);
1269
Hal Finkelca542be2012-06-20 15:43:03 +00001270 AM = ISD::PRE_INC;
1271 return true;
Hal Finkel1cc27e42012-06-19 02:34:32 +00001272 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001273
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001274 // LDU/STU can only handle immediates that are a multiple of 4.
Owen Anderson9f944592009-08-11 20:47:22 +00001275 if (VT != MVT::i64) {
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001276 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
Chris Lattner474b5b72006-11-15 19:55:13 +00001277 return false;
1278 } else {
Hal Finkelb09680b2013-03-18 23:00:58 +00001279 // LDU/STU need an address with at least 4-byte alignment.
1280 if (Alignment < 4)
1281 return false;
1282
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00001283 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
Chris Lattner474b5b72006-11-15 19:55:13 +00001284 return false;
1285 }
Chris Lattnerb314b152006-11-11 00:08:42 +00001286
Chris Lattnerb314b152006-11-11 00:08:42 +00001287 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner474b5b72006-11-15 19:55:13 +00001288 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1289 // sext i32 to i64 when addr mode is r+i.
Owen Anderson9f944592009-08-11 20:47:22 +00001290 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerb314b152006-11-11 00:08:42 +00001291 LD->getExtensionType() == ISD::SEXTLOAD &&
1292 isa<ConstantSDNode>(Offset))
1293 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001294 }
1295
Chris Lattnerce645542006-11-10 02:08:47 +00001296 AM = ISD::PRE_INC;
1297 return true;
Chris Lattnera801fced2006-11-08 02:15:41 +00001298}
1299
1300//===----------------------------------------------------------------------===//
Chris Lattner4211ca92006-04-14 06:01:58 +00001301// LowerOperation implementation
1302//===----------------------------------------------------------------------===//
1303
Chris Lattneredb9d842010-11-15 02:46:57 +00001304/// GetLabelAccessInfo - Return true if we should reference labels using a
1305/// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1306static bool GetLabelAccessInfo(const TargetMachine &TM, unsigned &HiOpFlags,
Chris Lattnerdd6df842010-11-15 03:13:19 +00001307 unsigned &LoOpFlags, const GlobalValue *GV = 0) {
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001308 HiOpFlags = PPCII::MO_HA;
1309 LoOpFlags = PPCII::MO_LO;
Wesley Peck527da1b2010-11-23 03:31:01 +00001310
Chris Lattneredb9d842010-11-15 02:46:57 +00001311 // Don't use the pic base if not in PIC relocation model. Or if we are on a
1312 // non-darwin platform. We don't support PIC on other platforms yet.
Wesley Peck527da1b2010-11-23 03:31:01 +00001313 bool isPIC = TM.getRelocationModel() == Reloc::PIC_ &&
Chris Lattneredb9d842010-11-15 02:46:57 +00001314 TM.getSubtarget<PPCSubtarget>().isDarwin();
Chris Lattnerdd6df842010-11-15 03:13:19 +00001315 if (isPIC) {
1316 HiOpFlags |= PPCII::MO_PIC_FLAG;
1317 LoOpFlags |= PPCII::MO_PIC_FLAG;
1318 }
1319
1320 // If this is a reference to a global value that requires a non-lazy-ptr, make
1321 // sure that instruction lowering adds it.
1322 if (GV && TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV, TM)) {
1323 HiOpFlags |= PPCII::MO_NLP_FLAG;
1324 LoOpFlags |= PPCII::MO_NLP_FLAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00001325
Chris Lattnerdd6df842010-11-15 03:13:19 +00001326 if (GV->hasHiddenVisibility()) {
1327 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1328 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1329 }
1330 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001331
Chris Lattneredb9d842010-11-15 02:46:57 +00001332 return isPIC;
1333}
1334
1335static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1336 SelectionDAG &DAG) {
1337 EVT PtrVT = HiPart.getValueType();
1338 SDValue Zero = DAG.getConstant(0, PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001339 SDLoc DL(HiPart);
Chris Lattneredb9d842010-11-15 02:46:57 +00001340
1341 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1342 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
Wesley Peck527da1b2010-11-23 03:31:01 +00001343
Chris Lattneredb9d842010-11-15 02:46:57 +00001344 // With PIC, the first instruction is actually "GR+hi(&G)".
1345 if (isPIC)
1346 Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1347 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
Wesley Peck527da1b2010-11-23 03:31:01 +00001348
Chris Lattneredb9d842010-11-15 02:46:57 +00001349 // Generate non-pic code that has direct accesses to the constant pool.
1350 // The address of the global is just (hi(&g)+lo(&g)).
1351 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1352}
1353
Scott Michelcf0da6c2009-02-17 22:15:04 +00001354SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001355 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001356 EVT PtrVT = Op.getValueType();
Chris Lattner4211ca92006-04-14 06:01:58 +00001357 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001358 const Constant *C = CP->getConstVal();
Chris Lattner4211ca92006-04-14 06:01:58 +00001359
Roman Divackyace47072012-08-24 16:26:02 +00001360 // 64-bit SVR4 ABI code is always position-independent.
1361 // The actual address of the GlobalValue is stored in the TOC.
1362 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1363 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001364 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001365 DAG.getRegister(PPC::X2, MVT::i64));
1366 }
1367
Chris Lattneredb9d842010-11-15 02:46:57 +00001368 unsigned MOHiFlag, MOLoFlag;
1369 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1370 SDValue CPIHi =
1371 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1372 SDValue CPILo =
1373 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1374 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00001375}
1376
Dan Gohman21cea8a2010-04-17 15:26:15 +00001377SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001378 EVT PtrVT = Op.getValueType();
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001379 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peck527da1b2010-11-23 03:31:01 +00001380
Roman Divackyace47072012-08-24 16:26:02 +00001381 // 64-bit SVR4 ABI code is always position-independent.
1382 // The actual address of the GlobalValue is stored in the TOC.
1383 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1384 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001385 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
Roman Divackyace47072012-08-24 16:26:02 +00001386 DAG.getRegister(PPC::X2, MVT::i64));
1387 }
1388
Chris Lattneredb9d842010-11-15 02:46:57 +00001389 unsigned MOHiFlag, MOLoFlag;
1390 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1391 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1392 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1393 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio09d73c02007-07-11 17:19:51 +00001394}
1395
Dan Gohman21cea8a2010-04-17 15:26:15 +00001396SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1397 SelectionDAG &DAG) const {
Bob Wilsonf84f7102009-11-04 21:31:18 +00001398 EVT PtrVT = Op.getValueType();
Bob Wilsonf84f7102009-11-04 21:31:18 +00001399
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001400 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Wesley Peck527da1b2010-11-23 03:31:01 +00001401
Chris Lattneredb9d842010-11-15 02:46:57 +00001402 unsigned MOHiFlag, MOLoFlag;
1403 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
Michael Liaoabb87d42012-09-12 21:43:09 +00001404 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1405 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattneredb9d842010-11-15 02:46:57 +00001406 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1407}
1408
Roman Divackye3f15c982012-06-04 17:36:38 +00001409SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1410 SelectionDAG &DAG) const {
1411
Bill Schmidtbdae03f2013-09-17 20:22:05 +00001412 // FIXME: TLS addresses currently use medium model code sequences,
1413 // which is the most useful form. Eventually support for small and
1414 // large models could be added if users need it, at the cost of
1415 // additional complexity.
Roman Divackye3f15c982012-06-04 17:36:38 +00001416 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001417 SDLoc dl(GA);
Roman Divackye3f15c982012-06-04 17:36:38 +00001418 const GlobalValue *GV = GA->getGlobal();
1419 EVT PtrVT = getPointerTy();
1420 bool is64bit = PPCSubTarget.isPPC64();
1421
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001422 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackye3f15c982012-06-04 17:36:38 +00001423
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001424 if (Model == TLSModel::LocalExec) {
1425 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001426 PPCII::MO_TPREL_HA);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001427 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigandd51c09f2013-06-21 14:42:20 +00001428 PPCII::MO_TPREL_LO);
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001429 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1430 is64bit ? MVT::i64 : MVT::i32);
1431 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1432 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1433 }
Roman Divackye3f15c982012-06-04 17:36:38 +00001434
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001435 if (Model == TLSModel::InitialExec) {
Bill Schmidt732eb912012-12-13 18:45:54 +00001436 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001437 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1438 PPCII::MO_TLS);
Roman Divacky32143e22013-12-20 18:08:54 +00001439 SDValue GOTPtr;
1440 if (is64bit) {
1441 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1442 GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1443 PtrVT, GOTReg, TGA);
1444 } else
1445 GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
Bill Schmidt9f0b4ec2012-12-14 17:02:38 +00001446 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
Roman Divacky32143e22013-12-20 18:08:54 +00001447 PtrVT, TGA, GOTPtr);
Ulrich Weigand5b427592013-07-05 12:22:36 +00001448 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001449 }
Bill Schmidtca4a0c92012-12-04 16:18:08 +00001450
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001451 if (Model == TLSModel::GeneralDynamic) {
1452 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1453 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1454 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1455 GOTReg, TGA);
1456 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl, PtrVT,
1457 GOTEntryHi, TGA);
1458
1459 // We need a chain node, and don't have one handy. The underlying
1460 // call has no side effects, so using the function entry node
1461 // suffices.
1462 SDValue Chain = DAG.getEntryNode();
1463 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1464 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1465 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLS_ADDR, dl,
1466 PtrVT, ParmReg, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001467 // The return value from GET_TLS_ADDR really is in X3 already, but
1468 // some hacks are needed here to tie everything together. The extra
1469 // copies dissolve during subsequent transforms.
Bill Schmidtc56f1d32012-12-11 20:30:11 +00001470 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1471 return DAG.getCopyFromReg(Chain, dl, PPC::X3, PtrVT);
1472 }
1473
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001474 if (Model == TLSModel::LocalDynamic) {
1475 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1476 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1477 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1478 GOTReg, TGA);
1479 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT,
1480 GOTEntryHi, TGA);
1481
1482 // We need a chain node, and don't have one handy. The underlying
1483 // call has no side effects, so using the function entry node
1484 // suffices.
1485 SDValue Chain = DAG.getEntryNode();
1486 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1487 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1488 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLSLD_ADDR, dl,
1489 PtrVT, ParmReg, TGA);
1490 // The return value from GET_TLSLD_ADDR really is in X3 already, but
1491 // some hacks are needed here to tie everything together. The extra
1492 // copies dissolve during subsequent transforms.
1493 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1494 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, PtrVT,
Bill Schmidt9ed4dbc2012-12-13 20:57:10 +00001495 Chain, ParmReg, TGA);
Bill Schmidt24b8dd62012-12-12 19:29:35 +00001496 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1497 }
1498
1499 llvm_unreachable("Unknown TLS model!");
Roman Divackye3f15c982012-06-04 17:36:38 +00001500}
1501
Chris Lattneredb9d842010-11-15 02:46:57 +00001502SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1503 SelectionDAG &DAG) const {
1504 EVT PtrVT = Op.getValueType();
1505 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001506 SDLoc DL(GSDN);
Chris Lattneredb9d842010-11-15 02:46:57 +00001507 const GlobalValue *GV = GSDN->getGlobal();
1508
Chris Lattneredb9d842010-11-15 02:46:57 +00001509 // 64-bit SVR4 ABI code is always position-independent.
1510 // The actual address of the GlobalValue is stored in the TOC.
1511 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1512 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1513 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1514 DAG.getRegister(PPC::X2, MVT::i64));
1515 }
1516
Chris Lattnerdd6df842010-11-15 03:13:19 +00001517 unsigned MOHiFlag, MOLoFlag;
1518 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag, GV);
Chris Lattneredb9d842010-11-15 02:46:57 +00001519
Chris Lattnerdd6df842010-11-15 03:13:19 +00001520 SDValue GAHi =
1521 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1522 SDValue GALo =
1523 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peck527da1b2010-11-23 03:31:01 +00001524
Chris Lattnerdd6df842010-11-15 03:13:19 +00001525 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00001526
Chris Lattnerdd6df842010-11-15 03:13:19 +00001527 // If the global reference is actually to a non-lazy-pointer, we have to do an
1528 // extra load to get the address of the global.
1529 if (MOHiFlag & PPCII::MO_NLP_FLAG)
1530 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001531 false, false, false, 0);
Chris Lattnerdd6df842010-11-15 03:13:19 +00001532 return Ptr;
Chris Lattner4211ca92006-04-14 06:01:58 +00001533}
1534
Dan Gohman21cea8a2010-04-17 15:26:15 +00001535SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00001536 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001537 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001538
Chris Lattner4211ca92006-04-14 06:01:58 +00001539 // If we're comparing for equality to zero, expose the fact that this is
1540 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1541 // fold the new nodes.
1542 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1543 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001544 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001545 SDValue Zext = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00001546 if (VT.bitsLT(MVT::i32)) {
1547 VT = MVT::i32;
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001548 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001549 }
Duncan Sands13237ac2008-06-06 12:08:01 +00001550 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001551 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1552 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson9f944592009-08-11 20:47:22 +00001553 DAG.getConstant(Log2b, MVT::i32));
1554 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner4211ca92006-04-14 06:01:58 +00001555 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001556 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner4211ca92006-04-14 06:01:58 +00001557 // optimized. FIXME: revisit this when we can custom lower all setcc
1558 // optimizations.
1559 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001560 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001561 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001562
Chris Lattner4211ca92006-04-14 06:01:58 +00001563 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattner97ff46b2006-11-14 05:28:08 +00001564 // by xor'ing the rhs with the lhs, which is faster than setting a
1565 // condition register, reading it back out, and masking the correct bit. The
1566 // normal approach here uses sub to do this instead of xor. Using xor exposes
1567 // the result to other bit-twiddling opportunities.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001568 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00001569 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001570 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001571 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner4211ca92006-04-14 06:01:58 +00001572 Op.getOperand(1));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00001573 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner4211ca92006-04-14 06:01:58 +00001574 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001575 return SDValue();
Chris Lattner4211ca92006-04-14 06:01:58 +00001576}
1577
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001578SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001579 const PPCSubtarget &Subtarget) const {
Roman Divacky4394e682011-06-28 15:30:42 +00001580 SDNode *Node = Op.getNode();
1581 EVT VT = Node->getValueType(0);
1582 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1583 SDValue InChain = Node->getOperand(0);
1584 SDValue VAListPtr = Node->getOperand(1);
1585 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001586 SDLoc dl(Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001587
Roman Divacky4394e682011-06-28 15:30:42 +00001588 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1589
1590 // gpr_index
1591 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1592 VAListPtr, MachinePointerInfo(SV), MVT::i8,
1593 false, false, 0);
1594 InChain = GprIndex.getValue(1);
1595
1596 if (VT == MVT::i64) {
1597 // Check if GprIndex is even
1598 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1599 DAG.getConstant(1, MVT::i32));
1600 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1601 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1602 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1603 DAG.getConstant(1, MVT::i32));
1604 // Align GprIndex to be even if it isn't
1605 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1606 GprIndex);
1607 }
1608
1609 // fpr index is 1 byte after gpr
1610 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1611 DAG.getConstant(1, MVT::i32));
1612
1613 // fpr
1614 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1615 FprPtr, MachinePointerInfo(SV), MVT::i8,
1616 false, false, 0);
1617 InChain = FprIndex.getValue(1);
1618
1619 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1620 DAG.getConstant(8, MVT::i32));
1621
1622 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1623 DAG.getConstant(4, MVT::i32));
1624
1625 // areas
1626 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001627 MachinePointerInfo(), false, false,
1628 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001629 InChain = OverflowArea.getValue(1);
1630
1631 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001632 MachinePointerInfo(), false, false,
1633 false, 0);
Roman Divacky4394e682011-06-28 15:30:42 +00001634 InChain = RegSaveArea.getValue(1);
1635
1636 // select overflow_area if index > 8
1637 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1638 DAG.getConstant(8, MVT::i32), ISD::SETLT);
1639
Roman Divacky4394e682011-06-28 15:30:42 +00001640 // adjustment constant gpr_index * 4/8
1641 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1642 VT.isInteger() ? GprIndex : FprIndex,
1643 DAG.getConstant(VT.isInteger() ? 4 : 8,
1644 MVT::i32));
1645
1646 // OurReg = RegSaveArea + RegConstant
1647 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1648 RegConstant);
1649
1650 // Floating types are 32 bytes into RegSaveArea
1651 if (VT.isFloatingPoint())
1652 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1653 DAG.getConstant(32, MVT::i32));
1654
1655 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1656 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1657 VT.isInteger() ? GprIndex : FprIndex,
1658 DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1659 MVT::i32));
1660
1661 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1662 VT.isInteger() ? VAListPtr : FprPtr,
1663 MachinePointerInfo(SV),
1664 MVT::i8, false, false, 0);
1665
1666 // determine if we should load from reg_save_area or overflow_area
1667 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1668
1669 // increase overflow_area by 4/8 if gpr/fpr > 8
1670 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1671 DAG.getConstant(VT.isInteger() ? 4 : 8,
1672 MVT::i32));
1673
1674 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1675 OverflowAreaPlusN);
1676
1677 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
1678 OverflowAreaPtr,
1679 MachinePointerInfo(),
1680 MVT::i32, false, false, 0);
1681
NAKAMURA Takumi8ad54e02012-08-30 15:52:23 +00001682 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001683 false, false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001684}
1685
Roman Divackyc3825df2013-07-25 21:36:47 +00001686SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
1687 const PPCSubtarget &Subtarget) const {
1688 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
1689
1690 // We have to copy the entire va_list struct:
1691 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
1692 return DAG.getMemcpy(Op.getOperand(0), Op,
1693 Op.getOperand(1), Op.getOperand(2),
1694 DAG.getConstant(12, MVT::i32), 8, false, true,
1695 MachinePointerInfo(), MachinePointerInfo());
1696}
1697
Duncan Sandsa0984362011-09-06 13:37:06 +00001698SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
1699 SelectionDAG &DAG) const {
1700 return Op.getOperand(0);
1701}
1702
1703SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
1704 SelectionDAG &DAG) const {
Bill Wendling95e1af22008-09-17 00:30:57 +00001705 SDValue Chain = Op.getOperand(0);
1706 SDValue Trmp = Op.getOperand(1); // trampoline
1707 SDValue FPtr = Op.getOperand(2); // nested function
1708 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickef9de2a2013-05-25 02:42:55 +00001709 SDLoc dl(Op);
Bill Wendling95e1af22008-09-17 00:30:57 +00001710
Owen Anderson53aa7a92009-08-10 22:56:29 +00001711 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00001712 bool isPPC64 = (PtrVT == MVT::i64);
Chris Lattner229907c2011-07-18 04:54:35 +00001713 Type *IntPtrTy =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001714 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
Chandler Carruth7ec50852012-11-01 08:07:29 +00001715 *DAG.getContext());
Bill Wendling95e1af22008-09-17 00:30:57 +00001716
Scott Michelcf0da6c2009-02-17 22:15:04 +00001717 TargetLowering::ArgListTy Args;
Bill Wendling95e1af22008-09-17 00:30:57 +00001718 TargetLowering::ArgListEntry Entry;
1719
1720 Entry.Ty = IntPtrTy;
1721 Entry.Node = Trmp; Args.push_back(Entry);
1722
1723 // TrampSize == (isPPC64 ? 48 : 40);
1724 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson9f944592009-08-11 20:47:22 +00001725 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling95e1af22008-09-17 00:30:57 +00001726 Args.push_back(Entry);
1727
1728 Entry.Node = FPtr; Args.push_back(Entry);
1729 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001730
Bill Wendling95e1af22008-09-17 00:30:57 +00001731 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Justin Holewinskiaa583972012-05-25 16:35:28 +00001732 TargetLowering::CallLoweringInfo CLI(Chain,
1733 Type::getVoidTy(*DAG.getContext()),
1734 false, false, false, false, 0,
1735 CallingConv::C,
Evan Cheng65f9d192012-02-28 18:51:51 +00001736 /*isTailCall=*/false,
Justin Holewinskiaa583972012-05-25 16:35:28 +00001737 /*doesNotRet=*/false,
1738 /*isReturnValueUsed=*/true,
Bill Wendling95e1af22008-09-17 00:30:57 +00001739 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
Bill Wendling78c5b7a2010-03-02 01:55:18 +00001740 Args, DAG, dl);
Justin Holewinskiaa583972012-05-25 16:35:28 +00001741 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Bill Wendling95e1af22008-09-17 00:30:57 +00001742
Duncan Sandsa0984362011-09-06 13:37:06 +00001743 return CallResult.second;
Bill Wendling95e1af22008-09-17 00:30:57 +00001744}
1745
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001746SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001747 const PPCSubtarget &Subtarget) const {
Dan Gohman31ae5862010-04-17 14:41:14 +00001748 MachineFunction &MF = DAG.getMachineFunction();
1749 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1750
Andrew Trickef9de2a2013-05-25 02:42:55 +00001751 SDLoc dl(Op);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001752
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001753 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001754 // vastart just stores the address of the VarArgsFrameIndex slot into the
1755 // memory location argument.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001756 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman31ae5862010-04-17 14:41:14 +00001757 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00001758 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner676c61d2010-09-21 18:41:36 +00001759 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
1760 MachinePointerInfo(SV),
David Greene87a5abe2010-02-15 16:56:53 +00001761 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001762 }
1763
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001764 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001765 // We suppose the given va_list is already allocated.
1766 //
1767 // typedef struct {
1768 // char gpr; /* index into the array of 8 GPRs
1769 // * stored in the register save area
1770 // * gpr=0 corresponds to r3,
1771 // * gpr=1 to r4, etc.
1772 // */
1773 // char fpr; /* index into the array of 8 FPRs
1774 // * stored in the register save area
1775 // * fpr=0 corresponds to f1,
1776 // * fpr=1 to f2, etc.
1777 // */
1778 // char *overflow_arg_area;
1779 // /* location on stack that holds
1780 // * the next overflow argument
1781 // */
1782 // char *reg_save_area;
1783 // /* where r3:r10 and f1:f8 (if saved)
1784 // * are stored
1785 // */
1786 // } va_list[1];
1787
1788
Dan Gohman31ae5862010-04-17 14:41:14 +00001789 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
1790 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001791
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001792
Owen Anderson53aa7a92009-08-10 22:56:29 +00001793 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001794
Dan Gohman31ae5862010-04-17 14:41:14 +00001795 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
1796 PtrVT);
1797 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
1798 PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001799
Duncan Sands13237ac2008-06-06 12:08:01 +00001800 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001801 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00001802
Duncan Sands13237ac2008-06-06 12:08:01 +00001803 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001804 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00001805
1806 uint64_t FPROffset = 1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001807 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001808
Dan Gohman2d489b52008-02-06 22:27:42 +00001809 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001810
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001811 // Store first byte : number of int regs
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001812 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001813 Op.getOperand(1),
1814 MachinePointerInfo(SV),
1815 MVT::i8, false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001816 uint64_t nextOffset = FPROffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00001817 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001818 ConstFPROffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001819
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001820 // Store second byte : number of float regs
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001821 SDValue secondStore =
Chris Lattner6963c1f2010-09-21 17:42:31 +00001822 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
1823 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene87a5abe2010-02-15 16:56:53 +00001824 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001825 nextOffset += StackOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00001826 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001827
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001828 // Store second word : arguments given on stack
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001829 SDValue thirdStore =
Chris Lattner676c61d2010-09-21 18:41:36 +00001830 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
1831 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00001832 false, false, 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00001833 nextOffset += FrameOffset;
Dale Johannesen021052a2009-02-04 20:06:27 +00001834 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001835
1836 // Store third word : arguments given in registers
Chris Lattner676c61d2010-09-21 18:41:36 +00001837 return DAG.getStore(thirdStore, dl, FR, nextPtr,
1838 MachinePointerInfo(SV, nextOffset),
David Greene87a5abe2010-02-15 16:56:53 +00001839 false, false, 0);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00001840
Chris Lattner4211ca92006-04-14 06:01:58 +00001841}
1842
Chris Lattner4f2e4e02007-03-06 00:59:59 +00001843#include "PPCGenCallingConv.inc"
1844
Bill Schmidt8c3976e2013-08-26 20:11:46 +00001845// Function whose sole purpose is to kill compiler warnings
1846// stemming from unused functions included from PPCGenCallingConv.inc.
1847CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
Bill Schmidt8470b0f2013-08-30 22:18:55 +00001848 return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
Bill Schmidt8c3976e2013-08-26 20:11:46 +00001849}
1850
Bill Schmidt230b4512013-06-12 16:39:22 +00001851bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
1852 CCValAssign::LocInfo &LocInfo,
1853 ISD::ArgFlagsTy &ArgFlags,
1854 CCState &State) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001855 return true;
1856}
1857
Bill Schmidt230b4512013-06-12 16:39:22 +00001858bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
1859 MVT &LocVT,
1860 CCValAssign::LocInfo &LocInfo,
1861 ISD::ArgFlagsTy &ArgFlags,
1862 CCState &State) {
Craig Topperbef78fc2012-03-11 07:57:25 +00001863 static const uint16_t ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001864 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1865 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1866 };
1867 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00001868
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001869 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1870
1871 // Skip one register if the first unallocated register has an even register
1872 // number and there are still argument registers available which have not been
1873 // allocated yet. RegNum is actually an index into ArgRegs, which means we
1874 // need to skip a register if RegNum is odd.
1875 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
1876 State.AllocateReg(ArgRegs[RegNum]);
1877 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001878
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001879 // Always return false here, as this function only makes sure that the first
1880 // unallocated register has an odd register number and does not actually
1881 // allocate a register for the current argument.
1882 return false;
1883}
1884
Bill Schmidt230b4512013-06-12 16:39:22 +00001885bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
1886 MVT &LocVT,
1887 CCValAssign::LocInfo &LocInfo,
1888 ISD::ArgFlagsTy &ArgFlags,
1889 CCState &State) {
Craig Topperbef78fc2012-03-11 07:57:25 +00001890 static const uint16_t ArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001891 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1892 PPC::F8
1893 };
1894
1895 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peck527da1b2010-11-23 03:31:01 +00001896
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001897 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1898
1899 // If there is only one Floating-point register left we need to put both f64
1900 // values of a split ppc_fp128 value on the stack.
1901 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
1902 State.AllocateReg(ArgRegs[RegNum]);
1903 }
Wesley Peck527da1b2010-11-23 03:31:01 +00001904
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001905 // Always return false here, as this function only makes sure that the two f64
1906 // values a ppc_fp128 value is split into are both passed in registers or both
1907 // passed on the stack and does not actually allocate a register for the
1908 // current argument.
1909 return false;
1910}
1911
Chris Lattner43df5b32007-02-25 05:34:32 +00001912/// GetFPR - Get the set of FP registers that should be allocated for arguments,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001913/// on Darwin.
Craig Topperca658c22012-03-11 07:16:55 +00001914static const uint16_t *GetFPR() {
1915 static const uint16_t FPR[] = {
Chris Lattner43df5b32007-02-25 05:34:32 +00001916 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001917 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
Chris Lattner43df5b32007-02-25 05:34:32 +00001918 };
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001919
Chris Lattner43df5b32007-02-25 05:34:32 +00001920 return FPR;
1921}
1922
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00001923/// CalculateStackSlotSize - Calculates the size reserved for this argument on
1924/// the stack.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001925static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00001926 unsigned PtrByteSize) {
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00001927 unsigned ArgSize = ArgVT.getSizeInBits()/8;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00001928 if (Flags.isByVal())
1929 ArgSize = Flags.getByValSize();
1930 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1931
1932 return ArgSize;
1933}
1934
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001935SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001936PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00001937 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001938 const SmallVectorImpl<ISD::InputArg>
1939 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001940 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001941 SmallVectorImpl<SDValue> &InVals)
1942 const {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00001943 if (PPCSubTarget.isSVR4ABI()) {
1944 if (PPCSubTarget.isPPC64())
1945 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
1946 dl, DAG, InVals);
1947 else
1948 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
1949 dl, DAG, InVals);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00001950 } else {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00001951 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
1952 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001953 }
1954}
1955
1956SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00001957PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001958 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00001959 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001960 const SmallVectorImpl<ISD::InputArg>
1961 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001962 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001963 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001964
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00001965 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001966 // +-----------------------------------+
1967 // +--> | Back chain |
1968 // | +-----------------------------------+
1969 // | | Floating-point register save area |
1970 // | +-----------------------------------+
1971 // | | General register save area |
1972 // | +-----------------------------------+
1973 // | | CR save word |
1974 // | +-----------------------------------+
1975 // | | VRSAVE save word |
1976 // | +-----------------------------------+
1977 // | | Alignment padding |
1978 // | +-----------------------------------+
1979 // | | Vector register save area |
1980 // | +-----------------------------------+
1981 // | | Local variable space |
1982 // | +-----------------------------------+
1983 // | | Parameter list area |
1984 // | +-----------------------------------+
1985 // | | LR save word |
1986 // | +-----------------------------------+
1987 // SP--> +--- | Back chain |
1988 // +-----------------------------------+
1989 //
1990 // Specifications:
1991 // System V Application Binary Interface PowerPC Processor Supplement
1992 // AltiVec Technology Programming Interface Manual
Wesley Peck527da1b2010-11-23 03:31:01 +00001993
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001994 MachineFunction &MF = DAG.getMachineFunction();
1995 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00001996 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001997
Owen Anderson53aa7a92009-08-10 22:56:29 +00001998 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00001999 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002000 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2001 (CallConv == CallingConv::Fast));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002002 unsigned PtrByteSize = 4;
2003
2004 // Assign locations to all of the incoming arguments.
2005 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002006 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00002007 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002008
2009 // Reserve space for the linkage area on the stack.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002010 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002011
Bill Schmidtef17c142013-02-06 17:33:58 +00002012 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peck527da1b2010-11-23 03:31:01 +00002013
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002014 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2015 CCValAssign &VA = ArgLocs[i];
Wesley Peck527da1b2010-11-23 03:31:01 +00002016
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002017 // Arguments stored in registers.
2018 if (VA.isRegLoc()) {
Craig Topper760b1342012-02-22 05:59:10 +00002019 const TargetRegisterClass *RC;
Owen Anderson53aa7a92009-08-10 22:56:29 +00002020 EVT ValVT = VA.getValVT();
Wesley Peck527da1b2010-11-23 03:31:01 +00002021
Owen Anderson9f944592009-08-11 20:47:22 +00002022 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002023 default:
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002024 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Owen Anderson9f944592009-08-11 20:47:22 +00002025 case MVT::i32:
Craig Topperabadc662012-04-20 06:31:50 +00002026 RC = &PPC::GPRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002027 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002028 case MVT::f32:
Craig Topperabadc662012-04-20 06:31:50 +00002029 RC = &PPC::F4RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002030 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002031 case MVT::f64:
Craig Topperabadc662012-04-20 06:31:50 +00002032 RC = &PPC::F8RCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002033 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002034 case MVT::v16i8:
2035 case MVT::v8i16:
2036 case MVT::v4i32:
2037 case MVT::v4f32:
Craig Topperabadc662012-04-20 06:31:50 +00002038 RC = &PPC::VRRCRegClass;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002039 break;
2040 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002041
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002042 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00002043 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002044 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, ValVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002045
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002046 InVals.push_back(ArgValue);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002047 } else {
2048 // Argument stored in memory.
2049 assert(VA.isMemLoc());
2050
2051 unsigned ArgSize = VA.getLocVT().getSizeInBits() / 8;
2052 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Cheng0664a672010-07-03 00:40:23 +00002053 isImmutable);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002054
2055 // Create load nodes to retrieve arguments from the stack.
2056 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002057 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2058 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002059 false, false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002060 }
2061 }
2062
2063 // Assign locations to all of the incoming aggregate by value arguments.
2064 // Aggregates passed by value are stored in the local variable space of the
2065 // caller's stack frame, right above the parameter list area.
2066 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00002067 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00002068 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002069
2070 // Reserve stack space for the allocations in CCInfo.
2071 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2072
Bill Schmidtef17c142013-02-06 17:33:58 +00002073 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002074
2075 // Area that is at least reserved in the caller of this function.
2076 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00002077
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002078 // Set the size that is at least reserved in caller of this function. Tail
2079 // call optimized function's reserved stack space needs to be aligned so that
2080 // taking the difference between two stack areas will result in an aligned
2081 // stack.
2082 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2083
2084 MinReservedArea =
2085 std::max(MinReservedArea,
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002086 PPCFrameLowering::getMinCallFrameSize(false, false));
Wesley Peck527da1b2010-11-23 03:31:01 +00002087
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002088 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameLowering()->
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002089 getStackAlignment();
2090 unsigned AlignMask = TargetAlign-1;
2091 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
Wesley Peck527da1b2010-11-23 03:31:01 +00002092
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002093 FI->setMinReservedArea(MinReservedArea);
2094
2095 SmallVector<SDValue, 8> MemOps;
Wesley Peck527da1b2010-11-23 03:31:01 +00002096
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002097 // If the function takes variable number of arguments, make a frame index for
2098 // the start of the first vararg value... for expansion of llvm.va_start.
2099 if (isVarArg) {
Craig Topperbef78fc2012-03-11 07:57:25 +00002100 static const uint16_t GPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002101 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2102 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2103 };
2104 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2105
Craig Topperbef78fc2012-03-11 07:57:25 +00002106 static const uint16_t FPArgRegs[] = {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002107 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2108 PPC::F8
2109 };
2110 const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2111
Dan Gohman31ae5862010-04-17 14:41:14 +00002112 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2113 NumGPArgRegs));
2114 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2115 NumFPArgRegs));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002116
2117 // Make room for NumGPArgRegs and NumFPArgRegs.
2118 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Owen Anderson9f944592009-08-11 20:47:22 +00002119 NumFPArgRegs * EVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002120
Dan Gohman31ae5862010-04-17 14:41:14 +00002121 FuncInfo->setVarArgsStackOffset(
2122 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002123 CCInfo.getNextStackOffset(), true));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002124
Dan Gohman31ae5862010-04-17 14:41:14 +00002125 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2126 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002127
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002128 // The fixed integer arguments of a variadic function are stored to the
2129 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2130 // the result of va_next.
2131 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2132 // Get an existing live-in vreg, or add a new one.
2133 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2134 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002135 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002136
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002137 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002138 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2139 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002140 MemOps.push_back(Store);
2141 // Increment the address by four for the next argument to store
2142 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2143 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2144 }
2145
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002146 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2147 // is set.
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002148 // The double arguments are stored to the VarArgsFrameIndex
2149 // on the stack.
Jakob Stoklund Olesen6c4353e2010-10-11 20:43:09 +00002150 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2151 // Get an existing live-in vreg, or add a new one.
2152 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2153 if (!VReg)
Devang Patelf3292b22011-02-21 23:21:26 +00002154 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002155
Owen Anderson9f944592009-08-11 20:47:22 +00002156 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner676c61d2010-09-21 18:41:36 +00002157 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2158 MachinePointerInfo(), false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002159 MemOps.push_back(Store);
2160 // Increment the address by eight for the next argument to store
Owen Anderson9f944592009-08-11 20:47:22 +00002161 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002162 PtrVT);
2163 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2164 }
2165 }
2166
2167 if (!MemOps.empty())
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002168 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00002169 MVT::Other, &MemOps[0], MemOps.size());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002170
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002171 return Chain;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002172}
2173
Bill Schmidt57d6de52012-10-23 15:51:16 +00002174// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2175// value to MVT::i64 and then truncate to the correct register size.
2176SDValue
2177PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2178 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002179 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00002180 if (Flags.isSExt())
2181 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2182 DAG.getValueType(ObjectVT));
2183 else if (Flags.isZExt())
2184 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2185 DAG.getValueType(ObjectVT));
Matt Arsenault758659232013-05-18 00:21:46 +00002186
Bill Schmidt57d6de52012-10-23 15:51:16 +00002187 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2188}
2189
2190// Set the size that is at least reserved in caller of this function. Tail
2191// call optimized functions' reserved stack space needs to be aligned so that
2192// taking the difference between two stack areas will result in an aligned
2193// stack.
2194void
2195PPCTargetLowering::setMinReservedArea(MachineFunction &MF, SelectionDAG &DAG,
2196 unsigned nAltivecParamsAtEnd,
2197 unsigned MinReservedArea,
2198 bool isPPC64) const {
2199 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2200 // Add the Altivec parameters at the end, if needed.
2201 if (nAltivecParamsAtEnd) {
2202 MinReservedArea = ((MinReservedArea+15)/16)*16;
2203 MinReservedArea += 16*nAltivecParamsAtEnd;
2204 }
2205 MinReservedArea =
2206 std::max(MinReservedArea,
2207 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
2208 unsigned TargetAlign
2209 = DAG.getMachineFunction().getTarget().getFrameLowering()->
2210 getStackAlignment();
2211 unsigned AlignMask = TargetAlign-1;
2212 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
2213 FI->setMinReservedArea(MinReservedArea);
2214}
2215
Tilmann Schellerb93960d2009-07-03 06:45:56 +00002216SDValue
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002217PPCTargetLowering::LowerFormalArguments_64SVR4(
2218 SDValue Chain,
2219 CallingConv::ID CallConv, bool isVarArg,
2220 const SmallVectorImpl<ISD::InputArg>
2221 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002222 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002223 SmallVectorImpl<SDValue> &InVals) const {
2224 // TODO: add description of PPC stack frame format, or at least some docs.
2225 //
2226 MachineFunction &MF = DAG.getMachineFunction();
2227 MachineFrameInfo *MFI = MF.getFrameInfo();
2228 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2229
2230 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2231 // Potential tail calls could cause overwriting of argument stack slots.
2232 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2233 (CallConv == CallingConv::Fast));
2234 unsigned PtrByteSize = 8;
2235
2236 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
2237 // Area that is at least reserved in caller of this function.
2238 unsigned MinReservedArea = ArgOffset;
2239
2240 static const uint16_t GPR[] = {
2241 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2242 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2243 };
2244
2245 static const uint16_t *FPR = GetFPR();
2246
2247 static const uint16_t VR[] = {
2248 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2249 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2250 };
2251
2252 const unsigned Num_GPR_Regs = array_lengthof(GPR);
2253 const unsigned Num_FPR_Regs = 13;
2254 const unsigned Num_VR_Regs = array_lengthof(VR);
2255
2256 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
2257
2258 // Add DAG nodes to load the arguments or copy them out of registers. On
2259 // entry to a function on PPC, the arguments start after the linkage area,
2260 // although the first ones are often in registers.
2261
2262 SmallVector<SDValue, 8> MemOps;
2263 unsigned nAltivecParamsAtEnd = 0;
2264 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt6631e942013-02-20 17:31:41 +00002265 unsigned CurArgIdx = 0;
2266 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002267 SDValue ArgVal;
2268 bool needsLoad = false;
2269 EVT ObjectVT = Ins[ArgNo].VT;
2270 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
2271 unsigned ArgSize = ObjSize;
2272 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt6631e942013-02-20 17:31:41 +00002273 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2274 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002275
2276 unsigned CurArgOffset = ArgOffset;
2277
2278 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
2279 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2280 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
2281 if (isVarArg) {
2282 MinReservedArea = ((MinReservedArea+15)/16)*16;
2283 MinReservedArea += CalculateStackSlotSize(ObjectVT,
2284 Flags,
2285 PtrByteSize);
2286 } else
2287 nAltivecParamsAtEnd++;
2288 } else
2289 // Calculate min reserved area.
2290 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
2291 Flags,
2292 PtrByteSize);
2293
2294 // FIXME the codegen can be much improved in some cases.
2295 // We do not have to keep everything in memory.
2296 if (Flags.isByVal()) {
2297 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2298 ObjSize = Flags.getByValSize();
2299 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt9953cf22012-10-31 01:15:05 +00002300 // Empty aggregate parameters do not take up registers. Examples:
2301 // struct { } a;
2302 // union { } b;
2303 // int c[0];
2304 // etc. However, we have to provide a place-holder in InVals, so
2305 // pretend we have an 8-byte item at the current address for that
2306 // purpose.
2307 if (!ObjSize) {
2308 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2309 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2310 InVals.push_back(FIN);
2311 continue;
2312 }
Hal Finkel262a2242013-09-12 23:20:06 +00002313
2314 unsigned BVAlign = Flags.getByValAlign();
2315 if (BVAlign > 8) {
2316 ArgOffset = ((ArgOffset+BVAlign-1)/BVAlign)*BVAlign;
2317 CurArgOffset = ArgOffset;
2318 }
2319
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002320 // All aggregates smaller than 8 bytes must be passed right-justified.
Bill Schmidt48081ca2012-10-16 13:30:53 +00002321 if (ObjSize < PtrByteSize)
2322 CurArgOffset = CurArgOffset + (PtrByteSize - ObjSize);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002323 // The value of the object is its address.
2324 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
2325 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2326 InVals.push_back(FIN);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002327
2328 if (ObjSize < 8) {
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002329 if (GPR_idx != Num_GPR_Regs) {
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002330 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002331 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002332 SDValue Store;
2333
2334 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2335 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2336 (ObjSize == 2 ? MVT::i16 : MVT::i32));
2337 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002338 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002339 ObjType, false, false, 0);
2340 } else {
2341 // For sizes that don't fit a truncating store (3, 5, 6, 7),
2342 // store the whole register as-is to the parameter save area
2343 // slot. The address of the parameter was already calculated
2344 // above (InVals.push_back(FIN)) to be the right-justified
2345 // offset within the slot. For this store, we need a new
2346 // frame index that points at the beginning of the slot.
2347 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2348 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2349 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002350 MachinePointerInfo(FuncArg),
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002351 false, false, 0);
2352 }
2353
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002354 MemOps.push_back(Store);
2355 ++GPR_idx;
2356 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002357 // Whether we copied from a register or not, advance the offset
2358 // into the parameter save area by a full doubleword.
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002359 ArgOffset += PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002360 continue;
2361 }
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002362
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002363 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2364 // Store whatever pieces of the object are in registers
2365 // to memory. ArgOffset will be the address of the beginning
2366 // of the object.
2367 if (GPR_idx != Num_GPR_Regs) {
2368 unsigned VReg;
2369 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2370 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2371 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2372 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt6ed3b992012-10-25 13:38:09 +00002373 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002374 MachinePointerInfo(FuncArg, j),
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002375 false, false, 0);
2376 MemOps.push_back(Store);
2377 ++GPR_idx;
2378 ArgOffset += PtrByteSize;
2379 } else {
Bill Schmidt48081ca2012-10-16 13:30:53 +00002380 ArgOffset += ArgSize - j;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002381 break;
2382 }
2383 }
2384 continue;
2385 }
2386
2387 switch (ObjectVT.getSimpleVT().SimpleTy) {
2388 default: llvm_unreachable("Unhandled argument type!");
2389 case MVT::i32:
2390 case MVT::i64:
2391 if (GPR_idx != Num_GPR_Regs) {
2392 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2393 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2394
Bill Schmidt57d6de52012-10-23 15:51:16 +00002395 if (ObjectVT == MVT::i32)
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002396 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2397 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002398 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002399
2400 ++GPR_idx;
2401 } else {
2402 needsLoad = true;
2403 ArgSize = PtrByteSize;
2404 }
2405 ArgOffset += 8;
2406 break;
2407
2408 case MVT::f32:
2409 case MVT::f64:
2410 // Every 8 bytes of argument space consumes one of the GPRs available for
2411 // argument passing.
2412 if (GPR_idx != Num_GPR_Regs) {
2413 ++GPR_idx;
2414 }
2415 if (FPR_idx != Num_FPR_Regs) {
2416 unsigned VReg;
2417
2418 if (ObjectVT == MVT::f32)
2419 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2420 else
2421 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
2422
2423 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2424 ++FPR_idx;
2425 } else {
2426 needsLoad = true;
Bill Schmidt22162472012-10-11 15:38:20 +00002427 ArgSize = PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002428 }
2429
2430 ArgOffset += 8;
2431 break;
2432 case MVT::v4f32:
2433 case MVT::v4i32:
2434 case MVT::v8i16:
2435 case MVT::v16i8:
2436 // Note that vector arguments in registers don't reserve stack space,
2437 // except in varargs functions.
2438 if (VR_idx != Num_VR_Regs) {
2439 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
2440 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2441 if (isVarArg) {
2442 while ((ArgOffset % 16) != 0) {
2443 ArgOffset += PtrByteSize;
2444 if (GPR_idx != Num_GPR_Regs)
2445 GPR_idx++;
2446 }
2447 ArgOffset += 16;
2448 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
2449 }
2450 ++VR_idx;
2451 } else {
2452 // Vectors are aligned.
2453 ArgOffset = ((ArgOffset+15)/16)*16;
2454 CurArgOffset = ArgOffset;
2455 ArgOffset += 16;
2456 needsLoad = true;
2457 }
2458 break;
2459 }
2460
2461 // We need to load the argument to a virtual register if we determined
2462 // above that we ran out of physical registers of the appropriate type.
2463 if (needsLoad) {
2464 int FI = MFI->CreateFixedObject(ObjSize,
2465 CurArgOffset + (ArgSize - ObjSize),
2466 isImmutable);
2467 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2468 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2469 false, false, false, 0);
2470 }
2471
2472 InVals.push_back(ArgVal);
2473 }
2474
2475 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00002476 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002477 // taking the difference between two stack areas will result in an aligned
2478 // stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002479 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, true);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002480
2481 // If the function takes variable number of arguments, make a frame index for
2482 // the start of the first vararg value... for expansion of llvm.va_start.
2483 if (isVarArg) {
2484 int Depth = ArgOffset;
2485
2486 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt57d6de52012-10-23 15:51:16 +00002487 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002488 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2489
2490 // If this function is vararg, store any remaining integer argument regs
2491 // to their spots on the stack so that they may be loaded by deferencing the
2492 // result of va_next.
2493 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
2494 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2495 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2496 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2497 MachinePointerInfo(), false, false, 0);
2498 MemOps.push_back(Store);
2499 // Increment the address by four for the next argument to store
Bill Schmidt57d6de52012-10-23 15:51:16 +00002500 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002501 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2502 }
2503 }
2504
2505 if (!MemOps.empty())
2506 Chain = DAG.getNode(ISD::TokenFactor, dl,
2507 MVT::Other, &MemOps[0], MemOps.size());
2508
2509 return Chain;
2510}
2511
2512SDValue
2513PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002514 SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002515 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002516 const SmallVectorImpl<ISD::InputArg>
2517 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002518 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002519 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002520 // TODO: add description of PPC stack frame format, or at least some docs.
2521 //
2522 MachineFunction &MF = DAG.getMachineFunction();
2523 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman31ae5862010-04-17 14:41:14 +00002524 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002525
Owen Anderson53aa7a92009-08-10 22:56:29 +00002526 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00002527 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002528 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002529 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2530 (CallConv == CallingConv::Fast));
Jim Laskeyf4e2e002006-11-28 14:53:52 +00002531 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey48850c12006-11-16 22:43:37 +00002532
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002533 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002534 // Area that is at least reserved in caller of this function.
2535 unsigned MinReservedArea = ArgOffset;
2536
Craig Topperca658c22012-03-11 07:16:55 +00002537 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattner4302e8f2006-05-16 18:18:50 +00002538 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2539 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2540 };
Craig Topperca658c22012-03-11 07:16:55 +00002541 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00002542 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2543 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2544 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00002545
Craig Topperca658c22012-03-11 07:16:55 +00002546 static const uint16_t *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002547
Craig Topperca658c22012-03-11 07:16:55 +00002548 static const uint16_t VR[] = {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002549 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2550 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2551 };
Chris Lattnerec78cad2006-06-26 22:48:35 +00002552
Owen Andersone2f23a32007-09-07 04:06:50 +00002553 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002554 const unsigned Num_FPR_Regs = 13;
Owen Andersone2f23a32007-09-07 04:06:50 +00002555 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey48850c12006-11-16 22:43:37 +00002556
2557 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002558
Craig Topperca658c22012-03-11 07:16:55 +00002559 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002560
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002561 // In 32-bit non-varargs functions, the stack space for vectors is after the
2562 // stack space for non-vectors. We do not use this space unless we have
2563 // too many vectors to fit in registers, something that only occurs in
Scott Michelcf0da6c2009-02-17 22:15:04 +00002564 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002565 // that out...for the pathological case, compute VecArgOffset as the
2566 // start of the vector parameter area. Computing VecArgOffset is the
2567 // entire point of the following loop.
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002568 unsigned VecArgOffset = ArgOffset;
2569 if (!isVarArg && !isPPC64) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002570 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002571 ++ArgNo) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002572 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002573 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002574
Duncan Sandsd97eea32008-03-21 09:14:45 +00002575 if (Flags.isByVal()) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002576 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer084b9f42012-01-20 14:42:32 +00002577 unsigned ObjSize = Flags.getByValSize();
Scott Michelcf0da6c2009-02-17 22:15:04 +00002578 unsigned ArgSize =
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002579 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2580 VecArgOffset += ArgSize;
2581 continue;
2582 }
2583
Owen Anderson9f944592009-08-11 20:47:22 +00002584 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002585 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson9f944592009-08-11 20:47:22 +00002586 case MVT::i32:
2587 case MVT::f32:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002588 VecArgOffset += 4;
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002589 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002590 case MVT::i64: // PPC64
2591 case MVT::f64:
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002592 // FIXME: We are guaranteed to be !isPPC64 at this point.
2593 // Does MVT::i64 apply?
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002594 VecArgOffset += 8;
2595 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002596 case MVT::v4f32:
2597 case MVT::v4i32:
2598 case MVT::v8i16:
2599 case MVT::v16i8:
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002600 // Nothing to do, we're only looking at Nonvector args here.
2601 break;
2602 }
2603 }
2604 }
2605 // We've found where the vector parameter area in memory is. Skip the
2606 // first 12 parameters; these don't use that memory.
2607 VecArgOffset = ((VecArgOffset+15)/16)*16;
2608 VecArgOffset += 12*16;
2609
Chris Lattner4302e8f2006-05-16 18:18:50 +00002610 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey48850c12006-11-16 22:43:37 +00002611 // entry to a function on PPC, the arguments start after the linkage area,
2612 // although the first ones are often in registers.
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00002613
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002614 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002615 unsigned nAltivecParamsAtEnd = 0;
Roman Divackyca103892012-09-24 20:47:19 +00002616 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt38b6cb52013-05-08 17:22:33 +00002617 unsigned CurArgIdx = 0;
2618 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002619 SDValue ArgVal;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002620 bool needsLoad = false;
Owen Anderson53aa7a92009-08-10 22:56:29 +00002621 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands13237ac2008-06-06 12:08:01 +00002622 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey152671f2006-11-29 13:37:09 +00002623 unsigned ArgSize = ObjSize;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002624 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt38b6cb52013-05-08 17:22:33 +00002625 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2626 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002627
Chris Lattner318f0d22006-05-16 18:51:52 +00002628 unsigned CurArgOffset = ArgOffset;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002629
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002630 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00002631 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2632 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002633 if (isVarArg || isPPC64) {
2634 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002635 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00002636 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002637 PtrByteSize);
2638 } else nAltivecParamsAtEnd++;
2639 } else
2640 // Calculate min reserved area.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002641 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohmand3fe1742008-09-13 01:54:27 +00002642 Flags,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002643 PtrByteSize);
2644
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002645 // FIXME the codegen can be much improved in some cases.
2646 // We do not have to keep everything in memory.
Duncan Sandsd97eea32008-03-21 09:14:45 +00002647 if (Flags.isByVal()) {
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002648 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sandsd97eea32008-03-21 09:14:45 +00002649 ObjSize = Flags.getByValSize();
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002650 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002651 // Objects of size 1 and 2 are right justified, everything else is
2652 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen21a8f142008-03-08 01:41:42 +00002653 if (ObjSize==1 || ObjSize==2) {
2654 CurArgOffset = CurArgOffset + (4 - ObjSize);
2655 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002656 // The value of the object is its address.
Evan Cheng0664a672010-07-03 00:40:23 +00002657 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002658 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002659 InVals.push_back(FIN);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002660 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen21a8f142008-03-08 01:41:42 +00002661 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00002662 unsigned VReg;
2663 if (isPPC64)
2664 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2665 else
2666 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002667 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt57d6de52012-10-23 15:51:16 +00002668 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002669 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002670 MachinePointerInfo(FuncArg),
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002671 ObjType, false, false, 0);
Dale Johannesen21a8f142008-03-08 01:41:42 +00002672 MemOps.push_back(Store);
2673 ++GPR_idx;
Dale Johannesen21a8f142008-03-08 01:41:42 +00002674 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002675
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002676 ArgOffset += PtrByteSize;
Wesley Peck527da1b2010-11-23 03:31:01 +00002677
Dale Johannesen21a8f142008-03-08 01:41:42 +00002678 continue;
2679 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002680 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2681 // Store whatever pieces of the object are in registers
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002682 // to memory. ArgOffset will be the address of the beginning
2683 // of the object.
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002684 if (GPR_idx != Num_GPR_Regs) {
Roman Divackyd0419622011-06-17 15:21:10 +00002685 unsigned VReg;
2686 if (isPPC64)
2687 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2688 else
2689 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Cheng0664a672010-07-03 00:40:23 +00002690 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002691 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002692 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidtd1fa36f2012-10-05 21:27:08 +00002693 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Hal Finkel3e4a34c2014-01-21 20:15:58 +00002694 MachinePointerInfo(FuncArg, j),
David Greene87a5abe2010-02-15 16:56:53 +00002695 false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002696 MemOps.push_back(Store);
2697 ++GPR_idx;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002698 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002699 } else {
2700 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
2701 break;
2702 }
2703 }
2704 continue;
2705 }
2706
Owen Anderson9f944592009-08-11 20:47:22 +00002707 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002708 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson9f944592009-08-11 20:47:22 +00002709 case MVT::i32:
Bill Wendling968f32c2008-03-07 20:49:02 +00002710 if (!isPPC64) {
Bill Wendling968f32c2008-03-07 20:49:02 +00002711 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00002712 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00002713 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Bill Wendling968f32c2008-03-07 20:49:02 +00002714 ++GPR_idx;
2715 } else {
2716 needsLoad = true;
2717 ArgSize = PtrByteSize;
2718 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002719 // All int arguments reserve stack space in the Darwin ABI.
2720 ArgOffset += PtrByteSize;
Bill Wendling968f32c2008-03-07 20:49:02 +00002721 break;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002722 }
Bill Wendling968f32c2008-03-07 20:49:02 +00002723 // FALLTHROUGH
Owen Anderson9f944592009-08-11 20:47:22 +00002724 case MVT::i64: // PPC64
Chris Lattnerec78cad2006-06-26 22:48:35 +00002725 if (GPR_idx != Num_GPR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00002726 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +00002727 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling968f32c2008-03-07 20:49:02 +00002728
Bill Schmidt57d6de52012-10-23 15:51:16 +00002729 if (ObjectVT == MVT::i32)
Bill Wendling968f32c2008-03-07 20:49:02 +00002730 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson9f944592009-08-11 20:47:22 +00002731 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002732 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling968f32c2008-03-07 20:49:02 +00002733
Chris Lattnerec78cad2006-06-26 22:48:35 +00002734 ++GPR_idx;
2735 } else {
2736 needsLoad = true;
Evan Cheng0f0aee22008-07-24 08:17:07 +00002737 ArgSize = PtrByteSize;
Chris Lattnerec78cad2006-06-26 22:48:35 +00002738 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002739 // All int arguments reserve stack space in the Darwin ABI.
2740 ArgOffset += 8;
Chris Lattnerec78cad2006-06-26 22:48:35 +00002741 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002742
Owen Anderson9f944592009-08-11 20:47:22 +00002743 case MVT::f32:
2744 case MVT::f64:
Chris Lattner318f0d22006-05-16 18:51:52 +00002745 // Every 4 bytes of argument space consumes one of the GPRs available for
2746 // argument passing.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002747 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002748 ++GPR_idx;
Chris Lattner2cca3852006-11-18 01:57:19 +00002749 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002750 ++GPR_idx;
Chris Lattner318f0d22006-05-16 18:51:52 +00002751 }
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002752 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner4302e8f2006-05-16 18:18:50 +00002753 unsigned VReg;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002754
Owen Anderson9f944592009-08-11 20:47:22 +00002755 if (ObjectVT == MVT::f32)
Devang Patelf3292b22011-02-21 23:21:26 +00002756 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002757 else
Devang Patelf3292b22011-02-21 23:21:26 +00002758 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00002759
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002760 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002761 ++FPR_idx;
2762 } else {
2763 needsLoad = true;
2764 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002765
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002766 // All FP arguments reserve stack space in the Darwin ABI.
2767 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002768 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002769 case MVT::v4f32:
2770 case MVT::v4i32:
2771 case MVT::v8i16:
2772 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00002773 // Note that vector arguments in registers don't reserve stack space,
2774 // except in varargs functions.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002775 if (VR_idx != Num_VR_Regs) {
Devang Patelf3292b22011-02-21 23:21:26 +00002776 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002777 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesenb28456e2008-03-12 00:22:17 +00002778 if (isVarArg) {
2779 while ((ArgOffset % 16) != 0) {
2780 ArgOffset += PtrByteSize;
2781 if (GPR_idx != Num_GPR_Regs)
2782 GPR_idx++;
2783 }
2784 ArgOffset += 16;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00002785 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesenb28456e2008-03-12 00:22:17 +00002786 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00002787 ++VR_idx;
2788 } else {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00002789 if (!isVarArg && !isPPC64) {
2790 // Vectors go after all the nonvectors.
2791 CurArgOffset = VecArgOffset;
2792 VecArgOffset += 16;
2793 } else {
2794 // Vectors are aligned.
2795 ArgOffset = ((ArgOffset+15)/16)*16;
2796 CurArgOffset = ArgOffset;
2797 ArgOffset += 16;
Dale Johannesen0d982562008-03-12 00:49:20 +00002798 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00002799 needsLoad = true;
2800 }
2801 break;
2802 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002803
Chris Lattner4302e8f2006-05-16 18:18:50 +00002804 // We need to load the argument to a virtual register if we determined above
Chris Lattnerf6518cf2008-02-13 07:35:30 +00002805 // that we ran out of physical registers of the appropriate type.
Chris Lattner4302e8f2006-05-16 18:18:50 +00002806 if (needsLoad) {
Chris Lattnerf6518cf2008-02-13 07:35:30 +00002807 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002808 CurArgOffset + (ArgSize - ObjSize),
Evan Cheng0664a672010-07-03 00:40:23 +00002809 isImmutable);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002810 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattner7727d052010-09-21 06:44:06 +00002811 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002812 false, false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002813 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002814
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002815 InVals.push_back(ArgVal);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002816 }
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002817
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002818 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt57d6de52012-10-23 15:51:16 +00002819 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002820 // taking the difference between two stack areas will result in an aligned
2821 // stack.
Bill Schmidt57d6de52012-10-23 15:51:16 +00002822 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, isPPC64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002823
Chris Lattner4302e8f2006-05-16 18:18:50 +00002824 // If the function takes variable number of arguments, make a frame index for
2825 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner4302e8f2006-05-16 18:18:50 +00002826 if (isVarArg) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00002827 int Depth = ArgOffset;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002828
Dan Gohman31ae5862010-04-17 14:41:14 +00002829 FuncInfo->setVarArgsFrameIndex(
2830 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Cheng0664a672010-07-03 00:40:23 +00002831 Depth, true));
Dan Gohman31ae5862010-04-17 14:41:14 +00002832 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002833
Chris Lattner4302e8f2006-05-16 18:18:50 +00002834 // If this function is vararg, store any remaining integer argument regs
2835 // to their spots on the stack so that they may be loaded by deferencing the
2836 // result of va_next.
Chris Lattner26e2fcd2006-05-16 18:58:15 +00002837 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattner2cca3852006-11-18 01:57:19 +00002838 unsigned VReg;
Wesley Peck527da1b2010-11-23 03:31:01 +00002839
Chris Lattner2cca3852006-11-18 01:57:19 +00002840 if (isPPC64)
Devang Patelf3292b22011-02-21 23:21:26 +00002841 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00002842 else
Devang Patelf3292b22011-02-21 23:21:26 +00002843 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattner2cca3852006-11-18 01:57:19 +00002844
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002845 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner676c61d2010-09-21 18:41:36 +00002846 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2847 MachinePointerInfo(), false, false, 0);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002848 MemOps.push_back(Store);
2849 // Increment the address by four for the next argument to store
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002850 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen679073b2009-02-04 02:34:38 +00002851 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner4302e8f2006-05-16 18:18:50 +00002852 }
Chris Lattner4302e8f2006-05-16 18:18:50 +00002853 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002854
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002855 if (!MemOps.empty())
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002856 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00002857 MVT::Other, &MemOps[0], MemOps.size());
Dale Johannesenbfa252d2008-03-07 20:27:40 +00002858
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002859 return Chain;
Chris Lattner4302e8f2006-05-16 18:18:50 +00002860}
2861
Bill Schmidt019cc6f2012-09-19 15:42:13 +00002862/// CalculateParameterAndLinkageAreaSize - Get the size of the parameter plus
2863/// linkage area for the Darwin ABI, or the 64-bit SVR4 ABI.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002864static unsigned
2865CalculateParameterAndLinkageAreaSize(SelectionDAG &DAG,
2866 bool isPPC64,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002867 bool isVarArg,
2868 unsigned CC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002869 const SmallVectorImpl<ISD::OutputArg>
2870 &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002871 const SmallVectorImpl<SDValue> &OutVals,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002872 unsigned &nAltivecParamsAtEnd) {
2873 // Count how many bytes are to be pushed on the stack, including the linkage
2874 // area, and parameter passing area. We start with 24/48 bytes, which is
2875 // prereserved space for [SP][CR][LR][3 x unused].
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002876 unsigned NumBytes = PPCFrameLowering::getLinkageSize(isPPC64, true);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002877 unsigned NumOps = Outs.size();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002878 unsigned PtrByteSize = isPPC64 ? 8 : 4;
2879
2880 // Add up all the space actually used.
2881 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
2882 // they all go in registers, but we must reserve stack space for them for
2883 // possible use by the caller. In varargs or 64-bit calls, parameters are
2884 // assigned stack space in order, with padding so Altivec parameters are
2885 // 16-byte aligned.
2886 nAltivecParamsAtEnd = 0;
2887 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002888 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002889 EVT ArgVT = Outs[i].VT;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002890 // Varargs Altivec parameters are padded to a 16 byte boundary.
Owen Anderson9f944592009-08-11 20:47:22 +00002891 if (ArgVT==MVT::v4f32 || ArgVT==MVT::v4i32 ||
2892 ArgVT==MVT::v8i16 || ArgVT==MVT::v16i8) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002893 if (!isVarArg && !isPPC64) {
2894 // Non-varargs Altivec parameters go after all the non-Altivec
2895 // parameters; handle those later so we know how much padding we need.
2896 nAltivecParamsAtEnd++;
2897 continue;
2898 }
2899 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
2900 NumBytes = ((NumBytes+15)/16)*16;
2901 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002902 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002903 }
2904
2905 // Allow for Altivec parameters at the end, if needed.
2906 if (nAltivecParamsAtEnd) {
2907 NumBytes = ((NumBytes+15)/16)*16;
2908 NumBytes += 16*nAltivecParamsAtEnd;
2909 }
2910
2911 // The prolog code of the callee may store up to 8 GPR argument registers to
2912 // the stack, allowing va_start to index over them in memory if its varargs.
2913 // Because we cannot tell if this is needed on the caller side, we have to
2914 // conservatively assume that it is needed. As such, make sure we have at
2915 // least enough stack space for the caller to store the 8 GPRs.
2916 NumBytes = std::max(NumBytes,
Anton Korobeynikov2f931282011-01-10 12:39:04 +00002917 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002918
2919 // Tail call needs the stack to be aligned.
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002920 if (CC == CallingConv::Fast && DAG.getTarget().Options.GuaranteedTailCallOpt){
2921 unsigned TargetAlign = DAG.getMachineFunction().getTarget().
2922 getFrameLowering()->getStackAlignment();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002923 unsigned AlignMask = TargetAlign-1;
2924 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2925 }
2926
2927 return NumBytes;
2928}
2929
2930/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00002931/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesen86dcae12009-11-24 01:09:07 +00002932static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002933 unsigned ParamSize) {
2934
Dale Johannesen86dcae12009-11-24 01:09:07 +00002935 if (!isTailCall) return 0;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002936
2937 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
2938 unsigned CallerMinReservedArea = FI->getMinReservedArea();
2939 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
2940 // Remember only if the new adjustement is bigger.
2941 if (SPDiff < FI->getTailCallSPDelta())
2942 FI->setTailCallSPDelta(SPDiff);
2943
2944 return SPDiff;
2945}
2946
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002947/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2948/// for tail call optimization. Targets which want to do tail call
2949/// optimization should implement this function.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002950bool
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002951PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002952 CallingConv::ID CalleeCC,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002953 bool isVarArg,
2954 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002955 SelectionDAG& DAG) const {
Nick Lewycky50f02cb2011-12-02 22:16:29 +00002956 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng25217ff2010-01-29 23:05:56 +00002957 return false;
2958
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002959 // Variable argument functions are not supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002960 if (isVarArg)
Dan Gohmaneffb8942008-09-12 16:56:44 +00002961 return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002962
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002963 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel68c5f472009-09-02 08:44:58 +00002964 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002965 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
2966 // Functions containing by val parameters are not supported.
2967 for (unsigned i = 0; i != Ins.size(); i++) {
2968 ISD::ArgFlagsTy Flags = Ins[i].Flags;
2969 if (Flags.isByVal()) return false;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002970 }
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002971
Alp Tokerf907b892013-12-05 05:44:44 +00002972 // Non-PIC/GOT tail calls are supported.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002973 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
2974 return true;
2975
2976 // At the moment we can only do local tail calls (in same module, hidden
2977 // or protected) if we are generating PIC.
2978 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2979 return G->getGlobal()->hasHiddenVisibility()
2980 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00002981 }
2982
2983 return false;
2984}
2985
Chris Lattnereb755fc2006-05-17 19:00:46 +00002986/// isCallCompatibleAddress - Return the immediate to use if the specified
2987/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002988static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnereb755fc2006-05-17 19:00:46 +00002989 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
2990 if (!C) return 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00002991
Dan Gohmaneffb8942008-09-12 16:56:44 +00002992 int Addr = C->getZExtValue();
Chris Lattnereb755fc2006-05-17 19:00:46 +00002993 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith228e6d42012-08-24 23:29:28 +00002994 SignExtend32<26>(Addr) != Addr)
Chris Lattnereb755fc2006-05-17 19:00:46 +00002995 return 0; // Top 6 bits have to be sext of immediate.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002996
Dan Gohmaneffb8942008-09-12 16:56:44 +00002997 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greiff304a7a2008-08-28 21:40:38 +00002998 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnereb755fc2006-05-17 19:00:46 +00002999}
3000
Dan Gohmand78c4002008-05-13 00:00:25 +00003001namespace {
3002
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003003struct TailCallArgumentInfo {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003004 SDValue Arg;
3005 SDValue FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003006 int FrameIdx;
3007
3008 TailCallArgumentInfo() : FrameIdx(0) {}
3009};
3010
Dan Gohmand78c4002008-05-13 00:00:25 +00003011}
3012
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003013/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
3014static void
3015StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00003016 SDValue Chain,
Craig Topperb94011f2013-07-14 04:42:23 +00003017 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
3018 SmallVectorImpl<SDValue> &MemOpChains,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003019 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003020 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003021 SDValue Arg = TailCallArgs[i].Arg;
3022 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003023 int FI = TailCallArgs[i].FrameIdx;
3024 // Store relative to framepointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00003025 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Chris Lattner7727d052010-09-21 06:44:06 +00003026 MachinePointerInfo::getFixedStack(FI),
3027 false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003028 }
3029}
3030
3031/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
3032/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003033static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003034 MachineFunction &MF,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003035 SDValue Chain,
3036 SDValue OldRetAddr,
3037 SDValue OldFP,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003038 int SPDiff,
3039 bool isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003040 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003041 SDLoc dl) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003042 if (SPDiff) {
3043 // Calculate the new stack slot for the return address.
3044 int SlotSize = isPPC64 ? 8 : 4;
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003045 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003046 isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003047 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Cheng0664a672010-07-03 00:40:23 +00003048 NewRetAddrLoc, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003049 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003050 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen021052a2009-02-04 20:06:27 +00003051 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003052 MachinePointerInfo::getFixedStack(NewRetAddr),
David Greene87a5abe2010-02-15 16:56:53 +00003053 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003054
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003055 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3056 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003057 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003058 int NewFPLoc =
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003059 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
David Greene1fbe0542009-11-12 20:49:22 +00003060 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Cheng0664a672010-07-03 00:40:23 +00003061 true);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003062 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3063 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
Chris Lattner7727d052010-09-21 06:44:06 +00003064 MachinePointerInfo::getFixedStack(NewFPIdx),
David Greene87a5abe2010-02-15 16:56:53 +00003065 false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003066 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003067 }
3068 return Chain;
3069}
3070
3071/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3072/// the position of the argument.
3073static void
3074CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003075 SDValue Arg, int SPDiff, unsigned ArgOffset,
Craig Topperb94011f2013-07-14 04:42:23 +00003076 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003077 int Offset = ArgOffset + SPDiff;
Duncan Sands13237ac2008-06-06 12:08:01 +00003078 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Cheng0664a672010-07-03 00:40:23 +00003079 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson9f944592009-08-11 20:47:22 +00003080 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003081 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003082 TailCallArgumentInfo Info;
3083 Info.Arg = Arg;
3084 Info.FrameIdxOp = FIN;
3085 Info.FrameIdx = FI;
3086 TailCallArguments.push_back(Info);
3087}
3088
3089/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3090/// stack slot. Returns the chain as result and the loaded frame pointers in
3091/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003092SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen021052a2009-02-04 20:06:27 +00003093 int SPDiff,
3094 SDValue Chain,
3095 SDValue &LROpOut,
3096 SDValue &FPOpOut,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003097 bool isDarwinABI,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003098 SDLoc dl) const {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003099 if (SPDiff) {
3100 // Load the LR and FP stack slot for later adjusting.
Owen Anderson9f944592009-08-11 20:47:22 +00003101 EVT VT = PPCSubTarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003102 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003103 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003104 false, false, false, 0);
Gabor Greiff304a7a2008-08-28 21:40:38 +00003105 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peck527da1b2010-11-23 03:31:01 +00003106
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003107 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3108 // slot as the FP is never overwritten.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003109 if (isDarwinABI) {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003110 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattner7727d052010-09-21 06:44:06 +00003111 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003112 false, false, false, 0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003113 Chain = SDValue(FPOpOut.getNode(), 1);
3114 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003115 }
3116 return Chain;
3117}
3118
Dale Johannesen85d41a12008-03-04 23:17:14 +00003119/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelcf0da6c2009-02-17 22:15:04 +00003120/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen85d41a12008-03-04 23:17:14 +00003121/// specified by the specific parameter attribute. The copy will be passed as
3122/// a byval function parameter.
3123/// Sometimes what we are copying is the end of a larger object, the part that
3124/// does not fit in registers.
Scott Michelcf0da6c2009-02-17 22:15:04 +00003125static SDValue
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003126CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sandsd97eea32008-03-21 09:14:45 +00003127 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003128 SDLoc dl) {
Owen Anderson9f944592009-08-11 20:47:22 +00003129 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen85263882009-02-04 01:17:06 +00003130 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Chris Lattner2510de22010-09-21 05:40:29 +00003131 false, false, MachinePointerInfo(0),
3132 MachinePointerInfo(0));
Dale Johannesen85d41a12008-03-04 23:17:14 +00003133}
Chris Lattner43df5b32007-02-25 05:34:32 +00003134
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003135/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3136/// tail calls.
3137static void
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003138LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3139 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003140 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003141 bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3142 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003143 SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003144 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003145 if (!isTailCall) {
3146 if (isVector) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003147 SDValue StackPtr;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003148 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00003149 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003150 else
Owen Anderson9f944592009-08-11 20:47:22 +00003151 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00003152 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003153 DAG.getConstant(ArgOffset, PtrVT));
3154 }
Chris Lattner676c61d2010-09-21 18:41:36 +00003155 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3156 MachinePointerInfo(), false, false, 0));
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00003157 // Calculate and remember argument location.
3158 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3159 TailCallArguments);
3160}
3161
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003162static
3163void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003164 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003165 SDValue LROp, SDValue FPOp, bool isDarwinABI,
Craig Topperb94011f2013-07-14 04:42:23 +00003166 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003167 MachineFunction &MF = DAG.getMachineFunction();
3168
3169 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3170 // might overwrite each other in case of tail call optimization.
3171 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003172 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003173 InFlag = SDValue();
3174 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3175 MemOpChains2, dl);
3176 if (!MemOpChains2.empty())
Owen Anderson9f944592009-08-11 20:47:22 +00003177 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003178 &MemOpChains2[0], MemOpChains2.size());
3179
3180 // Store the return address to the appropriate stack slot.
3181 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3182 isPPC64, isDarwinABI, dl);
3183
3184 // Emit callseq_end just before tailcall node.
3185 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003186 DAG.getIntPtrConstant(0, true), InFlag, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003187 InFlag = Chain.getValue(1);
3188}
3189
3190static
3191unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003192 SDValue &Chain, SDLoc dl, int SPDiff, bool isTailCall,
Craig Topperb94011f2013-07-14 04:42:23 +00003193 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
3194 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003195 const PPCSubtarget &PPCSubTarget) {
Wesley Peck527da1b2010-11-23 03:31:01 +00003196
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003197 bool isPPC64 = PPCSubTarget.isPPC64();
3198 bool isSVR4ABI = PPCSubTarget.isSVR4ABI();
3199
Owen Anderson53aa7a92009-08-10 22:56:29 +00003200 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00003201 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003202 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003203
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003204 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003205
Torok Edwin31e90d22010-08-04 20:47:44 +00003206 bool needIndirectCall = true;
3207 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003208 // If this is an absolute destination address, use the munged value.
3209 Callee = SDValue(Dest, 0);
Torok Edwin31e90d22010-08-04 20:47:44 +00003210 needIndirectCall = false;
3211 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003212
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003213 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3214 // XXX Work around for http://llvm.org/bugs/show_bug.cgi?id=5201
3215 // Use indirect calls for ALL functions calls in JIT mode, since the
3216 // far-call stubs may be outside relocation limits for a BL instruction.
3217 if (!DAG.getTarget().getSubtarget<PPCSubtarget>().isJITCodeModel()) {
3218 unsigned OpFlags = 0;
3219 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyaaba17e2011-07-24 08:22:56 +00003220 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbarcd01ed52011-04-20 00:14:25 +00003221 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003222 (G->getGlobal()->isDeclaration() ||
3223 G->getGlobal()->isWeakForLinker())) {
3224 // PC-relative references to external symbols should go through $stub,
3225 // unless we're building with the leopard linker or later, which
3226 // automatically synthesizes these stubs.
3227 OpFlags = PPCII::MO_DARWIN_STUB;
3228 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003229
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003230 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3231 // every direct call is) turn it into a TargetGlobalAddress /
3232 // TargetExternalSymbol node so that legalize doesn't hack it.
Torok Edwin31e90d22010-08-04 20:47:44 +00003233 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003234 Callee.getValueType(),
3235 0, OpFlags);
Torok Edwin31e90d22010-08-04 20:47:44 +00003236 needIndirectCall = false;
Wesley Peck527da1b2010-11-23 03:31:01 +00003237 }
Torok Edwin31e90d22010-08-04 20:47:44 +00003238 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003239
Torok Edwin31e90d22010-08-04 20:47:44 +00003240 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003241 unsigned char OpFlags = 0;
Wesley Peck527da1b2010-11-23 03:31:01 +00003242
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003243 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyaaba17e2011-07-24 08:22:56 +00003244 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbarcd01ed52011-04-20 00:14:25 +00003245 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003246 // PC-relative references to external symbols should go through $stub,
3247 // unless we're building with the leopard linker or later, which
3248 // automatically synthesizes these stubs.
3249 OpFlags = PPCII::MO_DARWIN_STUB;
3250 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003251
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003252 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3253 OpFlags);
3254 needIndirectCall = false;
Torok Edwin31e90d22010-08-04 20:47:44 +00003255 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003256
Torok Edwin31e90d22010-08-04 20:47:44 +00003257 if (needIndirectCall) {
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003258 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
3259 // to do the call, we can't use PPCISD::CALL.
3260 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller79fef932009-12-18 13:00:15 +00003261
3262 if (isSVR4ABI && isPPC64) {
3263 // Function pointers in the 64-bit SVR4 ABI do not point to the function
3264 // entry point, but to the function descriptor (the function entry point
3265 // address is part of the function descriptor though).
3266 // The function descriptor is a three doubleword structure with the
3267 // following fields: function entry point, TOC base address and
3268 // environment pointer.
3269 // Thus for a call through a function pointer, the following actions need
3270 // to be performed:
3271 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt57d6de52012-10-23 15:51:16 +00003272 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller79fef932009-12-18 13:00:15 +00003273 // 2. Load the address of the function entry point from the function
3274 // descriptor.
3275 // 3. Load the TOC of the callee from the function descriptor into r2.
3276 // 4. Load the environment pointer from the function descriptor into
3277 // r11.
3278 // 5. Branch to the function entry point address.
3279 // 6. On return of the callee, the TOC of the caller needs to be
3280 // restored (this is done in FinishCall()).
3281 //
3282 // All those operations are flagged together to ensure that no other
3283 // operations can be scheduled in between. E.g. without flagging the
3284 // operations together, a TOC access in the caller could be scheduled
3285 // between the load of the callee TOC and the branch to the callee, which
3286 // results in the TOC access going through the TOC of the callee instead
3287 // of going through the TOC of the caller, which leads to incorrect code.
3288
3289 // Load the address of the function entry point from the function
3290 // descriptor.
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003291 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::Other, MVT::Glue);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003292 SDValue LoadFuncPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, MTCTROps,
3293 InFlag.getNode() ? 3 : 2);
3294 Chain = LoadFuncPtr.getValue(1);
3295 InFlag = LoadFuncPtr.getValue(2);
3296
3297 // Load environment pointer into r11.
3298 // Offset of the environment pointer within the function descriptor.
3299 SDValue PtrOff = DAG.getIntPtrConstant(16);
3300
3301 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
3302 SDValue LoadEnvPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, Chain, AddPtr,
3303 InFlag);
3304 Chain = LoadEnvPtr.getValue(1);
3305 InFlag = LoadEnvPtr.getValue(2);
3306
3307 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3308 InFlag);
3309 Chain = EnvVal.getValue(0);
3310 InFlag = EnvVal.getValue(1);
3311
3312 // Load TOC of the callee into r2. We are using a target-specific load
3313 // with r2 hard coded, because the result of a target-independent load
3314 // would never go directly into r2, since r2 is a reserved register (which
3315 // prevents the register allocator from allocating it), resulting in an
3316 // additional register being allocated and an unnecessary move instruction
3317 // being generated.
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003318 VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Tilmann Scheller79fef932009-12-18 13:00:15 +00003319 SDValue LoadTOCPtr = DAG.getNode(PPCISD::LOAD_TOC, dl, VTs, Chain,
3320 Callee, InFlag);
3321 Chain = LoadTOCPtr.getValue(0);
3322 InFlag = LoadTOCPtr.getValue(1);
3323
3324 MTCTROps[0] = Chain;
3325 MTCTROps[1] = LoadFuncPtr;
3326 MTCTROps[2] = InFlag;
3327 }
3328
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003329 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys, MTCTROps,
3330 2 + (InFlag.getNode() != 0));
3331 InFlag = Chain.getValue(1);
3332
3333 NodeTys.clear();
Owen Anderson9f944592009-08-11 20:47:22 +00003334 NodeTys.push_back(MVT::Other);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003335 NodeTys.push_back(MVT::Glue);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003336 Ops.push_back(Chain);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003337 CallOpc = PPCISD::BCTRL;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003338 Callee.setNode(0);
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003339 // Add use of X11 (holding environment pointer)
3340 if (isSVR4ABI && isPPC64)
3341 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003342 // Add CTR register as callee so a bctr can be emitted later.
3343 if (isTailCall)
Roman Divackya4a59ae2011-06-03 15:47:49 +00003344 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003345 }
3346
3347 // If this is a direct call, pass the chain and the callee.
3348 if (Callee.getNode()) {
3349 Ops.push_back(Chain);
3350 Ops.push_back(Callee);
3351 }
3352 // If this is a tail call add stack pointer delta.
3353 if (isTailCall)
Owen Anderson9f944592009-08-11 20:47:22 +00003354 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003355
3356 // Add argument registers to the end of the list so that they are known live
3357 // into the call.
3358 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3359 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3360 RegsToPass[i].second.getValueType()));
3361
3362 return CallOpc;
3363}
3364
Roman Divacky76293062012-09-18 16:47:58 +00003365static
3366bool isLocalCall(const SDValue &Callee)
3367{
3368 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Roman Divacky09adf3d2012-09-18 18:27:49 +00003369 return !G->getGlobal()->isDeclaration() &&
3370 !G->getGlobal()->isWeakForLinker();
Roman Divacky76293062012-09-18 16:47:58 +00003371 return false;
3372}
3373
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003374SDValue
3375PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003376 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003377 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003378 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003379 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003380
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003381 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003382 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003383 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003384 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003385
3386 // Copy all of the result registers out of their specified physreg.
3387 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3388 CCValAssign &VA = RVLocs[i];
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003389 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00003390
3391 SDValue Val = DAG.getCopyFromReg(Chain, dl,
3392 VA.getLocReg(), VA.getLocVT(), InFlag);
3393 Chain = Val.getValue(1);
3394 InFlag = Val.getValue(2);
3395
3396 switch (VA.getLocInfo()) {
3397 default: llvm_unreachable("Unknown loc info!");
3398 case CCValAssign::Full: break;
3399 case CCValAssign::AExt:
3400 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3401 break;
3402 case CCValAssign::ZExt:
3403 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3404 DAG.getValueType(VA.getValVT()));
3405 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3406 break;
3407 case CCValAssign::SExt:
3408 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3409 DAG.getValueType(VA.getValVT()));
3410 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3411 break;
3412 }
3413
3414 InVals.push_back(Val);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003415 }
3416
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003417 return Chain;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003418}
3419
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003420SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00003421PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003422 bool isTailCall, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003423 SelectionDAG &DAG,
3424 SmallVector<std::pair<unsigned, SDValue>, 8>
3425 &RegsToPass,
3426 SDValue InFlag, SDValue Chain,
3427 SDValue &Callee,
3428 int SPDiff, unsigned NumBytes,
3429 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003430 SmallVectorImpl<SDValue> &InVals) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003431 std::vector<EVT> NodeTys;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003432 SmallVector<SDValue, 8> Ops;
3433 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, dl, SPDiff,
3434 isTailCall, RegsToPass, Ops, NodeTys,
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003435 PPCSubTarget);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003436
Hal Finkel5ab37802012-08-28 02:10:27 +00003437 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
3438 if (isVarArg && PPCSubTarget.isSVR4ABI() && !PPCSubTarget.isPPC64())
3439 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3440
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003441 // When performing tail call optimization the callee pops its arguments off
3442 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky8da87162013-02-21 20:05:00 +00003443 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003444 int BytesCalleePops =
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003445 (CallConv == CallingConv::Fast &&
3446 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003447
Roman Divackyef21be22012-03-06 16:41:49 +00003448 // Add a register mask operand representing the call-preserved registers.
3449 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
3450 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3451 assert(Mask && "Missing call preserved mask for calling convention");
3452 Ops.push_back(DAG.getRegisterMask(Mask));
3453
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003454 if (InFlag.getNode())
3455 Ops.push_back(InFlag);
3456
3457 // Emit tail call.
3458 if (isTailCall) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003459 assert(((Callee.getOpcode() == ISD::Register &&
3460 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3461 Callee.getOpcode() == ISD::TargetExternalSymbol ||
3462 Callee.getOpcode() == ISD::TargetGlobalAddress ||
3463 isa<ConstantSDNode>(Callee)) &&
3464 "Expecting an global address, external symbol, absolute value or register");
3465
Owen Anderson9f944592009-08-11 20:47:22 +00003466 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, &Ops[0], Ops.size());
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003467 }
3468
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003469 // Add a NOP immediately after the branch instruction when using the 64-bit
3470 // SVR4 ABI. At link time, if caller and callee are in a different module and
3471 // thus have a different TOC, the call will be replaced with a call to a stub
3472 // function which saves the current TOC, loads the TOC of the callee and
3473 // branches to the callee. The NOP will be replaced with a load instruction
3474 // which restores the TOC of the caller from the TOC save slot of the current
3475 // stack frame. If caller and callee belong to the same module (and have the
3476 // same TOC), the NOP will remain unchanged.
Hal Finkel51861b42012-03-31 14:45:15 +00003477
3478 bool needsTOCRestore = false;
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003479 if (!isTailCall && PPCSubTarget.isSVR4ABI()&& PPCSubTarget.isPPC64()) {
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003480 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller79fef932009-12-18 13:00:15 +00003481 // This is a call through a function pointer.
3482 // Restore the caller TOC from the save area into R2.
3483 // See PrepareCall() for more information about calls through function
3484 // pointers in the 64-bit SVR4 ABI.
3485 // We are using a target-specific load with r2 hard coded, because the
3486 // result of a target-independent load would never go directly into r2,
3487 // since r2 is a reserved register (which prevents the register allocator
3488 // from allocating it), resulting in an additional register being
3489 // allocated and an unnecessary move instruction being generated.
Hal Finkel51861b42012-03-31 14:45:15 +00003490 needsTOCRestore = true;
Bill Schmidtcea15962013-09-26 17:09:28 +00003491 } else if ((CallOpc == PPCISD::CALL) &&
3492 (!isLocalCall(Callee) ||
3493 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
Roman Divacky76293062012-09-18 16:47:58 +00003494 // Otherwise insert NOP for non-local calls.
Ulrich Weigandf62e83f2013-03-22 15:24:13 +00003495 CallOpc = PPCISD::CALL_NOP;
Tilmann Scheller79fef932009-12-18 13:00:15 +00003496 }
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003497 }
3498
Hal Finkel51861b42012-03-31 14:45:15 +00003499 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
3500 InFlag = Chain.getValue(1);
3501
3502 if (needsTOCRestore) {
3503 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3504 Chain = DAG.getNode(PPCISD::TOC_RESTORE, dl, VTs, Chain, InFlag);
3505 InFlag = Chain.getValue(1);
3506 }
3507
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003508 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3509 DAG.getIntPtrConstant(BytesCalleePops, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00003510 InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003511 if (!Ins.empty())
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003512 InFlag = Chain.getValue(1);
3513
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003514 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3515 Ins, dl, DAG, InVals);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003516}
3517
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003518SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00003519PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003520 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00003521 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +00003522 SDLoc &dl = CLI.DL;
3523 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
3524 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
3525 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00003526 SDValue Chain = CLI.Chain;
3527 SDValue Callee = CLI.Callee;
3528 bool &isTailCall = CLI.IsTailCall;
3529 CallingConv::ID CallConv = CLI.CallConv;
3530 bool isVarArg = CLI.IsVarArg;
3531
Evan Cheng67a69dd2010-01-27 00:07:07 +00003532 if (isTailCall)
3533 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
3534 Ins, DAG);
3535
Bill Schmidt57d6de52012-10-23 15:51:16 +00003536 if (PPCSubTarget.isSVR4ABI()) {
3537 if (PPCSubTarget.isPPC64())
3538 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
3539 isTailCall, Outs, OutVals, Ins,
3540 dl, DAG, InVals);
3541 else
3542 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
3543 isTailCall, Outs, OutVals, Ins,
3544 dl, DAG, InVals);
3545 }
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003546
Bill Schmidt57d6de52012-10-23 15:51:16 +00003547 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
3548 isTailCall, Outs, OutVals, Ins,
3549 dl, DAG, InVals);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003550}
3551
3552SDValue
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003553PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
3554 CallingConv::ID CallConv, bool isVarArg,
3555 bool isTailCall,
3556 const SmallVectorImpl<ISD::OutputArg> &Outs,
3557 const SmallVectorImpl<SDValue> &OutVals,
3558 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003559 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003560 SmallVectorImpl<SDValue> &InVals) const {
3561 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Schellerd1aaa322009-08-15 11:54:46 +00003562 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003563
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003564 assert((CallConv == CallingConv::C ||
3565 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003566
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003567 unsigned PtrByteSize = 4;
3568
3569 MachineFunction &MF = DAG.getMachineFunction();
3570
3571 // Mark this function as potentially containing a function that contains a
3572 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3573 // and restoring the callers stack pointer in this functions epilog. This is
3574 // done because by tail calling the called function might overwrite the value
3575 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003576 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3577 CallConv == CallingConv::Fast)
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003578 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peck527da1b2010-11-23 03:31:01 +00003579
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003580 // Count how many bytes are to be pushed on the stack, including the linkage
3581 // area, parameter list area and the part of the local variable space which
3582 // contains copies of aggregates which are passed by value.
3583
3584 // Assign locations to all of the outgoing arguments.
3585 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003586 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003587 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003588
3589 // Reserve space for the linkage area on the stack.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00003590 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003591
3592 if (isVarArg) {
3593 // Handle fixed and variable vector arguments differently.
3594 // Fixed vector arguments go into registers as long as registers are
3595 // available. Variable vector arguments always go into memory.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003596 unsigned NumArgs = Outs.size();
Wesley Peck527da1b2010-11-23 03:31:01 +00003597
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003598 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00003599 MVT ArgVT = Outs[i].VT;
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003600 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003601 bool Result;
Wesley Peck527da1b2010-11-23 03:31:01 +00003602
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003603 if (Outs[i].IsFixed) {
Bill Schmidtef17c142013-02-06 17:33:58 +00003604 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
3605 CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003606 } else {
Bill Schmidtef17c142013-02-06 17:33:58 +00003607 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
3608 ArgFlags, CCInfo);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003609 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003610
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003611 if (Result) {
Torok Edwinfb8d6d52009-07-08 20:53:28 +00003612#ifndef NDEBUG
Chris Lattner13626022009-08-23 06:03:38 +00003613 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sandsf5dda012010-11-03 11:35:31 +00003614 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwinfb8d6d52009-07-08 20:53:28 +00003615#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +00003616 llvm_unreachable(0);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003617 }
3618 }
3619 } else {
3620 // All arguments are treated the same.
Bill Schmidtef17c142013-02-06 17:33:58 +00003621 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003622 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003623
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003624 // Assign locations to all of the outgoing aggregate by value arguments.
3625 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003626 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00003627 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003628
3629 // Reserve stack space for the allocations in CCInfo.
3630 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
3631
Bill Schmidtef17c142013-02-06 17:33:58 +00003632 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003633
3634 // Size of the linkage area, parameter list area and the part of the local
3635 // space variable where copies of aggregates which are passed by value are
3636 // stored.
3637 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00003638
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003639 // Calculate by how many bytes the stack has to be adjusted in case of tail
3640 // call optimization.
3641 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3642
3643 // Adjust the stack pointer for the new arguments...
3644 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00003645 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3646 dl);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003647 SDValue CallSeqStart = Chain;
3648
3649 // Load the return address and frame pointer so it can be moved somewhere else
3650 // later.
3651 SDValue LROp, FPOp;
3652 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
3653 dl);
3654
3655 // Set up a copy of the stack pointer for use loading and storing any
3656 // arguments that may not fit in the registers available for argument
3657 // passing.
Owen Anderson9f944592009-08-11 20:47:22 +00003658 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peck527da1b2010-11-23 03:31:01 +00003659
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003660 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3661 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3662 SmallVector<SDValue, 8> MemOpChains;
3663
Roman Divacky71038e72011-08-30 17:04:16 +00003664 bool seenFloatArg = false;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003665 // Walk the register/memloc assignments, inserting copies/loads.
3666 for (unsigned i = 0, j = 0, e = ArgLocs.size();
3667 i != e;
3668 ++i) {
3669 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00003670 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003671 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peck527da1b2010-11-23 03:31:01 +00003672
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003673 if (Flags.isByVal()) {
3674 // Argument is an aggregate which is passed by value, thus we need to
3675 // create a copy of it in the local variable space of the current stack
3676 // frame (which is the stack frame of the caller) and pass the address of
3677 // this copy to the callee.
3678 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
3679 CCValAssign &ByValVA = ByValArgLocs[j++];
3680 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peck527da1b2010-11-23 03:31:01 +00003681
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003682 // Memory reserved in the local variable space of the callers stack frame.
3683 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peck527da1b2010-11-23 03:31:01 +00003684
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003685 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3686 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Wesley Peck527da1b2010-11-23 03:31:01 +00003687
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003688 // Create a copy of the argument in the local area of the current
3689 // stack frame.
3690 SDValue MemcpyCall =
3691 CreateCopyOfByValArgument(Arg, PtrOff,
3692 CallSeqStart.getNode()->getOperand(0),
3693 Flags, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00003694
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003695 // This must go outside the CALLSEQ_START..END.
3696 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00003697 CallSeqStart.getNode()->getOperand(1),
3698 SDLoc(MemcpyCall));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003699 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3700 NewCallSeqStart.getNode());
3701 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peck527da1b2010-11-23 03:31:01 +00003702
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003703 // Pass the address of the aggregate copy on the stack either in a
3704 // physical register or in the parameter list area of the current stack
3705 // frame to the callee.
3706 Arg = PtrOff;
3707 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003708
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003709 if (VA.isRegLoc()) {
Roman Divacky71038e72011-08-30 17:04:16 +00003710 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003711 // Put argument in a physical register.
3712 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3713 } else {
3714 // Put argument in the parameter list area of the current stack frame.
3715 assert(VA.isMemLoc());
3716 unsigned LocMemOffset = VA.getLocMemOffset();
3717
3718 if (!isTailCall) {
3719 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3720 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
3721
3722 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner676c61d2010-09-21 18:41:36 +00003723 MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00003724 false, false, 0));
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003725 } else {
3726 // Calculate and remember argument location.
3727 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
3728 TailCallArguments);
3729 }
3730 }
3731 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003732
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003733 if (!MemOpChains.empty())
Owen Anderson9f944592009-08-11 20:47:22 +00003734 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003735 &MemOpChains[0], MemOpChains.size());
Wesley Peck527da1b2010-11-23 03:31:01 +00003736
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003737 // Build a sequence of copy-to-reg nodes chained together with token chain
3738 // and flag operands which copy the outgoing args into the appropriate regs.
3739 SDValue InFlag;
3740 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
3741 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
3742 RegsToPass[i].second, InFlag);
3743 InFlag = Chain.getValue(1);
3744 }
Wesley Peck527da1b2010-11-23 03:31:01 +00003745
Hal Finkel5ab37802012-08-28 02:10:27 +00003746 // Set CR bit 6 to true if this is a vararg call with floating args passed in
3747 // registers.
3748 if (isVarArg) {
NAKAMURA Takumiac490292012-08-30 15:52:29 +00003749 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3750 SDValue Ops[] = { Chain, InFlag };
3751
Hal Finkel5ab37802012-08-28 02:10:27 +00003752 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
NAKAMURA Takumiac490292012-08-30 15:52:29 +00003753 dl, VTs, Ops, InFlag.getNode() ? 2 : 1);
3754
Hal Finkel5ab37802012-08-28 02:10:27 +00003755 InFlag = Chain.getValue(1);
3756 }
3757
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00003758 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00003759 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
3760 false, TailCallArguments);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003761
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003762 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
3763 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
3764 Ins, InVals);
Tilmann Schellerb93960d2009-07-03 06:45:56 +00003765}
3766
Bill Schmidt57d6de52012-10-23 15:51:16 +00003767// Copy an argument into memory, being careful to do this outside the
3768// call sequence for the call to which the argument belongs.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003769SDValue
Bill Schmidt57d6de52012-10-23 15:51:16 +00003770PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
3771 SDValue CallSeqStart,
3772 ISD::ArgFlagsTy Flags,
3773 SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003774 SDLoc dl) const {
Bill Schmidt57d6de52012-10-23 15:51:16 +00003775 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
3776 CallSeqStart.getNode()->getOperand(0),
3777 Flags, DAG, dl);
3778 // The MEMCPY must go outside the CALLSEQ_START..END.
3779 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trickad6d08a2013-05-29 22:03:55 +00003780 CallSeqStart.getNode()->getOperand(1),
3781 SDLoc(MemcpyCall));
Bill Schmidt57d6de52012-10-23 15:51:16 +00003782 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3783 NewCallSeqStart.getNode());
3784 return NewCallSeqStart;
3785}
3786
3787SDValue
3788PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003789 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003790 bool isTailCall,
3791 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00003792 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003793 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003794 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003795 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003796
Bill Schmidt57d6de52012-10-23 15:51:16 +00003797 unsigned NumOps = Outs.size();
Bill Schmidt019cc6f2012-09-19 15:42:13 +00003798
Bill Schmidt57d6de52012-10-23 15:51:16 +00003799 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3800 unsigned PtrByteSize = 8;
3801
3802 MachineFunction &MF = DAG.getMachineFunction();
3803
3804 // Mark this function as potentially containing a function that contains a
3805 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3806 // and restoring the callers stack pointer in this functions epilog. This is
3807 // done because by tail calling the called function might overwrite the value
3808 // in this function's (MF) stack pointer stack slot 0(SP).
3809 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3810 CallConv == CallingConv::Fast)
3811 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
3812
3813 unsigned nAltivecParamsAtEnd = 0;
3814
3815 // Count how many bytes are to be pushed on the stack, including the linkage
3816 // area, and parameter passing area. We start with at least 48 bytes, which
3817 // is reserved space for [SP][CR][LR][3 x unused].
3818 // NOTE: For PPC64, nAltivecParamsAtEnd always remains zero as a result
3819 // of this call.
3820 unsigned NumBytes =
3821 CalculateParameterAndLinkageAreaSize(DAG, true, isVarArg, CallConv,
3822 Outs, OutVals, nAltivecParamsAtEnd);
3823
3824 // Calculate by how many bytes the stack has to be adjusted in case of tail
3825 // call optimization.
3826 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3827
3828 // To protect arguments on the stack from being clobbered in a tail call,
3829 // force all the loads to happen before doing any other lowering.
3830 if (isTailCall)
3831 Chain = DAG.getStackArgumentTokenFactor(Chain);
3832
3833 // Adjust the stack pointer for the new arguments...
3834 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00003835 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3836 dl);
Bill Schmidt57d6de52012-10-23 15:51:16 +00003837 SDValue CallSeqStart = Chain;
3838
3839 // Load the return address and frame pointer so it can be move somewhere else
3840 // later.
3841 SDValue LROp, FPOp;
3842 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
3843 dl);
3844
3845 // Set up a copy of the stack pointer for use loading and storing any
3846 // arguments that may not fit in the registers available for argument
3847 // passing.
3848 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
3849
3850 // Figure out which arguments are going to go in registers, and which in
3851 // memory. Also, if this is a vararg function, floating point operations
3852 // must be stored to our stack, and loaded into integer regs as well, if
3853 // any integer regs are available for argument passing.
3854 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
3855 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3856
3857 static const uint16_t GPR[] = {
3858 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3859 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3860 };
3861 static const uint16_t *FPR = GetFPR();
3862
3863 static const uint16_t VR[] = {
3864 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3865 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3866 };
3867 const unsigned NumGPRs = array_lengthof(GPR);
3868 const unsigned NumFPRs = 13;
3869 const unsigned NumVRs = array_lengthof(VR);
3870
3871 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3872 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3873
3874 SmallVector<SDValue, 8> MemOpChains;
3875 for (unsigned i = 0; i != NumOps; ++i) {
3876 SDValue Arg = OutVals[i];
3877 ISD::ArgFlagsTy Flags = Outs[i].Flags;
3878
3879 // PtrOff will be used to store the current argument to the stack if a
3880 // register cannot be found for it.
3881 SDValue PtrOff;
3882
3883 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
3884
3885 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
3886
3887 // Promote integers to 64-bit values.
3888 if (Arg.getValueType() == MVT::i32) {
3889 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
3890 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3891 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
3892 }
3893
3894 // FIXME memcpy is used way more than necessary. Correctness first.
3895 // Note: "by value" is code for passing a structure by value, not
3896 // basic types.
3897 if (Flags.isByVal()) {
3898 // Note: Size includes alignment padding, so
3899 // struct x { short a; char b; }
3900 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
3901 // These are the proper values we need for right-justifying the
3902 // aggregate in a parameter register.
3903 unsigned Size = Flags.getByValSize();
Bill Schmidt9953cf22012-10-31 01:15:05 +00003904
3905 // An empty aggregate parameter takes up no storage and no
3906 // registers.
3907 if (Size == 0)
3908 continue;
3909
Hal Finkel262a2242013-09-12 23:20:06 +00003910 unsigned BVAlign = Flags.getByValAlign();
3911 if (BVAlign > 8) {
3912 if (BVAlign % PtrByteSize != 0)
3913 llvm_unreachable(
3914 "ByVal alignment is not a multiple of the pointer size");
3915
3916 ArgOffset = ((ArgOffset+BVAlign-1)/BVAlign)*BVAlign;
3917 }
3918
Bill Schmidt57d6de52012-10-23 15:51:16 +00003919 // All aggregates smaller than 8 bytes must be passed right-justified.
3920 if (Size==1 || Size==2 || Size==4) {
3921 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
3922 if (GPR_idx != NumGPRs) {
3923 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
3924 MachinePointerInfo(), VT,
3925 false, false, 0);
3926 MemOpChains.push_back(Load.getValue(1));
3927 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3928
3929 ArgOffset += PtrByteSize;
3930 continue;
3931 }
3932 }
3933
3934 if (GPR_idx == NumGPRs && Size < 8) {
3935 SDValue Const = DAG.getConstant(PtrByteSize - Size,
3936 PtrOff.getValueType());
3937 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3938 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3939 CallSeqStart,
3940 Flags, DAG, dl);
3941 ArgOffset += PtrByteSize;
3942 continue;
3943 }
3944 // Copy entire object into memory. There are cases where gcc-generated
3945 // code assumes it is there, even if it could be put entirely into
3946 // registers. (This is not what the doc says.)
3947
3948 // FIXME: The above statement is likely due to a misunderstanding of the
3949 // documents. All arguments must be copied into the parameter area BY
3950 // THE CALLEE in the event that the callee takes the address of any
3951 // formal argument. That has not yet been implemented. However, it is
3952 // reasonable to use the stack area as a staging area for the register
3953 // load.
3954
3955 // Skip this for small aggregates, as we will use the same slot for a
3956 // right-justified copy, below.
3957 if (Size >= 8)
3958 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
3959 CallSeqStart,
3960 Flags, DAG, dl);
3961
3962 // When a register is available, pass a small aggregate right-justified.
3963 if (Size < 8 && GPR_idx != NumGPRs) {
3964 // The easiest way to get this right-justified in a register
3965 // is to copy the structure into the rightmost portion of a
3966 // local variable slot, then load the whole slot into the
3967 // register.
3968 // FIXME: The memcpy seems to produce pretty awful code for
3969 // small aggregates, particularly for packed ones.
Matt Arsenault758659232013-05-18 00:21:46 +00003970 // FIXME: It would be preferable to use the slot in the
Bill Schmidt57d6de52012-10-23 15:51:16 +00003971 // parameter save area instead of a new local variable.
3972 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
3973 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3974 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3975 CallSeqStart,
3976 Flags, DAG, dl);
3977
3978 // Load the slot into the register.
3979 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
3980 MachinePointerInfo(),
3981 false, false, false, 0);
3982 MemOpChains.push_back(Load.getValue(1));
3983 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3984
3985 // Done with this argument.
3986 ArgOffset += PtrByteSize;
3987 continue;
3988 }
3989
3990 // For aggregates larger than PtrByteSize, copy the pieces of the
3991 // object that fit into registers from the parameter save area.
3992 for (unsigned j=0; j<Size; j+=PtrByteSize) {
3993 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
3994 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
3995 if (GPR_idx != NumGPRs) {
3996 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
3997 MachinePointerInfo(),
3998 false, false, false, 0);
3999 MemOpChains.push_back(Load.getValue(1));
4000 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4001 ArgOffset += PtrByteSize;
4002 } else {
4003 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
4004 break;
4005 }
4006 }
4007 continue;
4008 }
4009
Craig Topper56710102013-08-15 02:33:50 +00004010 switch (Arg.getSimpleValueType().SimpleTy) {
Bill Schmidt57d6de52012-10-23 15:51:16 +00004011 default: llvm_unreachable("Unexpected ValueType for argument!");
4012 case MVT::i32:
4013 case MVT::i64:
4014 if (GPR_idx != NumGPRs) {
4015 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
4016 } else {
4017 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4018 true, isTailCall, false, MemOpChains,
4019 TailCallArguments, dl);
4020 }
4021 ArgOffset += PtrByteSize;
4022 break;
4023 case MVT::f32:
4024 case MVT::f64:
4025 if (FPR_idx != NumFPRs) {
4026 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4027
4028 if (isVarArg) {
Bill Schmidtbd4ac262012-10-29 21:18:16 +00004029 // A single float or an aggregate containing only a single float
4030 // must be passed right-justified in the stack doubleword, and
4031 // in the GPR, if one is available.
4032 SDValue StoreOff;
Craig Topper56710102013-08-15 02:33:50 +00004033 if (Arg.getSimpleValueType().SimpleTy == MVT::f32) {
Bill Schmidtbd4ac262012-10-29 21:18:16 +00004034 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4035 StoreOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4036 } else
4037 StoreOff = PtrOff;
4038
4039 SDValue Store = DAG.getStore(Chain, dl, Arg, StoreOff,
Bill Schmidt57d6de52012-10-23 15:51:16 +00004040 MachinePointerInfo(), false, false, 0);
4041 MemOpChains.push_back(Store);
4042
4043 // Float varargs are always shadowed in available integer registers
4044 if (GPR_idx != NumGPRs) {
4045 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4046 MachinePointerInfo(), false, false,
4047 false, 0);
4048 MemOpChains.push_back(Load.getValue(1));
4049 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4050 }
4051 } else if (GPR_idx != NumGPRs)
4052 // If we have any FPRs remaining, we may also have GPRs remaining.
4053 ++GPR_idx;
4054 } else {
4055 // Single-precision floating-point values are mapped to the
4056 // second (rightmost) word of the stack doubleword.
4057 if (Arg.getValueType() == MVT::f32) {
4058 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4059 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4060 }
4061
4062 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4063 true, isTailCall, false, MemOpChains,
4064 TailCallArguments, dl);
4065 }
4066 ArgOffset += 8;
4067 break;
4068 case MVT::v4f32:
4069 case MVT::v4i32:
4070 case MVT::v8i16:
4071 case MVT::v16i8:
4072 if (isVarArg) {
4073 // These go aligned on the stack, or in the corresponding R registers
4074 // when within range. The Darwin PPC ABI doc claims they also go in
4075 // V registers; in fact gcc does this only for arguments that are
4076 // prototyped, not for those that match the ... We do it for all
4077 // arguments, seems to work.
4078 while (ArgOffset % 16 !=0) {
4079 ArgOffset += PtrByteSize;
4080 if (GPR_idx != NumGPRs)
4081 GPR_idx++;
4082 }
4083 // We could elide this store in the case where the object fits
4084 // entirely in R registers. Maybe later.
4085 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
4086 DAG.getConstant(ArgOffset, PtrVT));
4087 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4088 MachinePointerInfo(), false, false, 0);
4089 MemOpChains.push_back(Store);
4090 if (VR_idx != NumVRs) {
4091 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
4092 MachinePointerInfo(),
4093 false, false, false, 0);
4094 MemOpChains.push_back(Load.getValue(1));
4095 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4096 }
4097 ArgOffset += 16;
4098 for (unsigned i=0; i<16; i+=PtrByteSize) {
4099 if (GPR_idx == NumGPRs)
4100 break;
4101 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4102 DAG.getConstant(i, PtrVT));
4103 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4104 false, false, false, 0);
4105 MemOpChains.push_back(Load.getValue(1));
4106 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4107 }
4108 break;
4109 }
4110
4111 // Non-varargs Altivec params generally go in registers, but have
4112 // stack space allocated at the end.
4113 if (VR_idx != NumVRs) {
4114 // Doesn't have GPR space allocated.
4115 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4116 } else {
4117 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4118 true, isTailCall, true, MemOpChains,
4119 TailCallArguments, dl);
4120 ArgOffset += 16;
4121 }
4122 break;
4123 }
4124 }
4125
4126 if (!MemOpChains.empty())
4127 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
4128 &MemOpChains[0], MemOpChains.size());
4129
4130 // Check if this is an indirect call (MTCTR/BCTRL).
4131 // See PrepareCall() for more information about calls through function
4132 // pointers in the 64-bit SVR4 ABI.
4133 if (!isTailCall &&
4134 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4135 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4136 !isBLACompatibleAddress(Callee, DAG)) {
4137 // Load r2 into a virtual register and store it to the TOC save area.
4138 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4139 // TOC save area offset.
4140 SDValue PtrOff = DAG.getIntPtrConstant(40);
4141 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4142 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr, MachinePointerInfo(),
4143 false, false, 0);
4144 // R12 must contain the address of an indirect callee. This does not
4145 // mean the MTCTR instruction must use R12; it's easier to model this
4146 // as an extra parameter, so do that.
4147 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
4148 }
4149
4150 // Build a sequence of copy-to-reg nodes chained together with token chain
4151 // and flag operands which copy the outgoing args into the appropriate regs.
4152 SDValue InFlag;
4153 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4154 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4155 RegsToPass[i].second, InFlag);
4156 InFlag = Chain.getValue(1);
4157 }
4158
4159 if (isTailCall)
4160 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4161 FPOp, true, TailCallArguments);
4162
4163 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4164 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4165 Ins, InVals);
4166}
4167
4168SDValue
4169PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4170 CallingConv::ID CallConv, bool isVarArg,
4171 bool isTailCall,
4172 const SmallVectorImpl<ISD::OutputArg> &Outs,
4173 const SmallVectorImpl<SDValue> &OutVals,
4174 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004175 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt57d6de52012-10-23 15:51:16 +00004176 SmallVectorImpl<SDValue> &InVals) const {
4177
4178 unsigned NumOps = Outs.size();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004179
Owen Anderson53aa7a92009-08-10 22:56:29 +00004180 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00004181 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004182 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004183
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004184 MachineFunction &MF = DAG.getMachineFunction();
4185
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004186 // Mark this function as potentially containing a function that contains a
4187 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4188 // and restoring the callers stack pointer in this functions epilog. This is
4189 // done because by tail calling the called function might overwrite the value
4190 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky50f02cb2011-12-02 22:16:29 +00004191 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4192 CallConv == CallingConv::Fast)
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004193 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4194
4195 unsigned nAltivecParamsAtEnd = 0;
4196
Chris Lattneraa40ec12006-05-16 22:56:08 +00004197 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerec78cad2006-06-26 22:48:35 +00004198 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerb7552a82006-05-17 00:15:40 +00004199 // prereserved space for [SP][CR][LR][3 x unused].
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004200 unsigned NumBytes =
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004201 CalculateParameterAndLinkageAreaSize(DAG, isPPC64, isVarArg, CallConv,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004202 Outs, OutVals,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004203 nAltivecParamsAtEnd);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004204
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004205 // Calculate by how many bytes the stack has to be adjusted in case of tail
4206 // call optimization.
4207 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004208
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004209 // To protect arguments on the stack from being clobbered in a tail call,
4210 // force all the loads to happen before doing any other lowering.
4211 if (isTailCall)
4212 Chain = DAG.getStackArgumentTokenFactor(Chain);
4213
Chris Lattnerb7552a82006-05-17 00:15:40 +00004214 // Adjust the stack pointer for the new arguments...
4215 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trickad6d08a2013-05-29 22:03:55 +00004216 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4217 dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004218 SDValue CallSeqStart = Chain;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004219
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004220 // Load the return address and frame pointer so it can be move somewhere else
4221 // later.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004222 SDValue LROp, FPOp;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00004223 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4224 dl);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004225
Chris Lattnerb7552a82006-05-17 00:15:40 +00004226 // Set up a copy of the stack pointer for use loading and storing any
4227 // arguments that may not fit in the registers available for argument
4228 // passing.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004229 SDValue StackPtr;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004230 if (isPPC64)
Owen Anderson9f944592009-08-11 20:47:22 +00004231 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004232 else
Owen Anderson9f944592009-08-11 20:47:22 +00004233 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004234
Chris Lattnerb7552a82006-05-17 00:15:40 +00004235 // Figure out which arguments are going to go in registers, and which in
4236 // memory. Also, if this is a vararg function, floating point operations
4237 // must be stored to our stack, and loaded into integer regs as well, if
4238 // any integer regs are available for argument passing.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00004239 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004240 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004241
Craig Topperca658c22012-03-11 07:16:55 +00004242 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004243 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4244 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4245 };
Craig Topperca658c22012-03-11 07:16:55 +00004246 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerec78cad2006-06-26 22:48:35 +00004247 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4248 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4249 };
Craig Topperca658c22012-03-11 07:16:55 +00004250 static const uint16_t *FPR = GetFPR();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004251
Craig Topperca658c22012-03-11 07:16:55 +00004252 static const uint16_t VR[] = {
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004253 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4254 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4255 };
Owen Andersone2f23a32007-09-07 04:06:50 +00004256 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004257 const unsigned NumFPRs = 13;
Tilmann Scheller98bdaaa2009-07-03 06:43:35 +00004258 const unsigned NumVRs = array_lengthof(VR);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004259
Craig Topperca658c22012-03-11 07:16:55 +00004260 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerec78cad2006-06-26 22:48:35 +00004261
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004262 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004263 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4264
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004265 SmallVector<SDValue, 8> MemOpChains;
Evan Chengc2cd4732006-05-25 00:57:32 +00004266 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004267 SDValue Arg = OutVals[i];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004268 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004269
Chris Lattnerb7552a82006-05-17 00:15:40 +00004270 // PtrOff will be used to store the current argument to the stack if a
4271 // register cannot be found for it.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004272 SDValue PtrOff;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004273
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004274 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffray7aad9282007-03-13 15:02:46 +00004275
Dale Johannesen679073b2009-02-04 02:34:38 +00004276 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004277
4278 // On PPC64, promote integers to 64-bit values.
Owen Anderson9f944592009-08-11 20:47:22 +00004279 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sandsd97eea32008-03-21 09:14:45 +00004280 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4281 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson9f944592009-08-11 20:47:22 +00004282 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerec78cad2006-06-26 22:48:35 +00004283 }
Dale Johannesen85d41a12008-03-04 23:17:14 +00004284
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004285 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004286 // Note: "by value" is code for passing a structure by value, not
4287 // basic types.
Duncan Sandsd97eea32008-03-21 09:14:45 +00004288 if (Flags.isByVal()) {
4289 unsigned Size = Flags.getByValSize();
Bill Schmidt57d6de52012-10-23 15:51:16 +00004290 // Very small objects are passed right-justified. Everything else is
4291 // passed left-justified.
4292 if (Size==1 || Size==2) {
4293 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004294 if (GPR_idx != NumGPRs) {
Stuart Hastings81c43062011-02-16 16:23:55 +00004295 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d178ed2010-09-21 17:04:51 +00004296 MachinePointerInfo(), VT,
4297 false, false, 0);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004298 MemOpChains.push_back(Load.getValue(1));
4299 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004300
4301 ArgOffset += PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004302 } else {
Bill Schmidt48081ca2012-10-16 13:30:53 +00004303 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4304 PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004305 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt57d6de52012-10-23 15:51:16 +00004306 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4307 CallSeqStart,
4308 Flags, DAG, dl);
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004309 ArgOffset += PtrByteSize;
4310 }
4311 continue;
4312 }
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00004313 // Copy entire object into memory. There are cases where gcc-generated
4314 // code assumes it is there, even if it could be put entirely into
4315 // registers. (This is not what the doc says.)
Bill Schmidt57d6de52012-10-23 15:51:16 +00004316 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4317 CallSeqStart,
4318 Flags, DAG, dl);
Bill Schmidt019cc6f2012-09-19 15:42:13 +00004319
4320 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
4321 // copy the pieces of the object that fit into registers from the
4322 // parameter save area.
Dale Johannesen85d41a12008-03-04 23:17:14 +00004323 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004324 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004325 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen85d41a12008-03-04 23:17:14 +00004326 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00004327 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4328 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004329 false, false, false, 0);
Dale Johannesen0d235052008-03-05 23:31:27 +00004330 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen85d41a12008-03-04 23:17:14 +00004331 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004332 ArgOffset += PtrByteSize;
Dale Johannesen85d41a12008-03-04 23:17:14 +00004333 } else {
Dale Johannesen92dcf1e2008-03-17 02:13:43 +00004334 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesenbfa252d2008-03-07 20:27:40 +00004335 break;
Dale Johannesen85d41a12008-03-04 23:17:14 +00004336 }
4337 }
4338 continue;
4339 }
4340
Craig Topper56710102013-08-15 02:33:50 +00004341 switch (Arg.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00004342 default: llvm_unreachable("Unexpected ValueType for argument!");
Owen Anderson9f944592009-08-11 20:47:22 +00004343 case MVT::i32:
4344 case MVT::i64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004345 if (GPR_idx != NumGPRs) {
4346 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerb7552a82006-05-17 00:15:40 +00004347 } else {
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004348 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4349 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004350 TailCallArguments, dl);
Chris Lattnerb7552a82006-05-17 00:15:40 +00004351 }
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004352 ArgOffset += PtrByteSize;
Chris Lattnerb7552a82006-05-17 00:15:40 +00004353 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004354 case MVT::f32:
4355 case MVT::f64:
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004356 if (FPR_idx != NumFPRs) {
4357 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4358
Chris Lattnerb7552a82006-05-17 00:15:40 +00004359 if (isVarArg) {
Chris Lattner676c61d2010-09-21 18:41:36 +00004360 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4361 MachinePointerInfo(), false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004362 MemOpChains.push_back(Store);
4363
Chris Lattnerb7552a82006-05-17 00:15:40 +00004364 // Float varargs are always shadowed in available integer registers
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004365 if (GPR_idx != NumGPRs) {
Chris Lattner7727d052010-09-21 06:44:06 +00004366 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004367 MachinePointerInfo(), false, false,
4368 false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004369 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004370 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerb7552a82006-05-17 00:15:40 +00004371 }
Owen Anderson9f944592009-08-11 20:47:22 +00004372 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004373 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen679073b2009-02-04 02:34:38 +00004374 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattner7727d052010-09-21 06:44:06 +00004375 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4376 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004377 false, false, false, 0);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004378 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004379 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattneraa40ec12006-05-16 22:56:08 +00004380 }
4381 } else {
Chris Lattnerb7552a82006-05-17 00:15:40 +00004382 // If we have any FPRs remaining, we may also have GPRs remaining.
4383 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
4384 // GPRs.
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004385 if (GPR_idx != NumGPRs)
4386 ++GPR_idx;
Owen Anderson9f944592009-08-11 20:47:22 +00004387 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004388 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
4389 ++GPR_idx;
Chris Lattneraa40ec12006-05-16 22:56:08 +00004390 }
Bill Schmidt57d6de52012-10-23 15:51:16 +00004391 } else
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004392 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4393 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004394 TailCallArguments, dl);
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004395 if (isPPC64)
4396 ArgOffset += 8;
4397 else
Owen Anderson9f944592009-08-11 20:47:22 +00004398 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerb7552a82006-05-17 00:15:40 +00004399 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004400 case MVT::v4f32:
4401 case MVT::v4i32:
4402 case MVT::v8i16:
4403 case MVT::v16i8:
Dale Johannesenb28456e2008-03-12 00:22:17 +00004404 if (isVarArg) {
4405 // These go aligned on the stack, or in the corresponding R registers
Scott Michelcf0da6c2009-02-17 22:15:04 +00004406 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesenb28456e2008-03-12 00:22:17 +00004407 // V registers; in fact gcc does this only for arguments that are
4408 // prototyped, not for those that match the ... We do it for all
4409 // arguments, seems to work.
4410 while (ArgOffset % 16 !=0) {
4411 ArgOffset += PtrByteSize;
4412 if (GPR_idx != NumGPRs)
4413 GPR_idx++;
4414 }
4415 // We could elide this store in the case where the object fits
4416 // entirely in R registers. Maybe later.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004417 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesenb28456e2008-03-12 00:22:17 +00004418 DAG.getConstant(ArgOffset, PtrVT));
Chris Lattner676c61d2010-09-21 18:41:36 +00004419 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4420 MachinePointerInfo(), false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004421 MemOpChains.push_back(Store);
4422 if (VR_idx != NumVRs) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004423 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattner7727d052010-09-21 06:44:06 +00004424 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004425 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004426 MemOpChains.push_back(Load.getValue(1));
4427 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4428 }
4429 ArgOffset += 16;
4430 for (unsigned i=0; i<16; i+=PtrByteSize) {
4431 if (GPR_idx == NumGPRs)
4432 break;
Dale Johannesen679073b2009-02-04 02:34:38 +00004433 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesenb28456e2008-03-12 00:22:17 +00004434 DAG.getConstant(i, PtrVT));
Chris Lattner7727d052010-09-21 06:44:06 +00004435 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004436 false, false, false, 0);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004437 MemOpChains.push_back(Load.getValue(1));
4438 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4439 }
4440 break;
4441 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004442
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004443 // Non-varargs Altivec params generally go in registers, but have
4444 // stack space allocated at the end.
4445 if (VR_idx != NumVRs) {
4446 // Doesn't have GPR space allocated.
4447 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4448 } else if (nAltivecParamsAtEnd==0) {
4449 // We are emitting Altivec params in order.
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004450 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4451 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004452 TailCallArguments, dl);
Dale Johannesenb28456e2008-03-12 00:22:17 +00004453 ArgOffset += 16;
Dale Johannesenb28456e2008-03-12 00:22:17 +00004454 }
Chris Lattnerb7552a82006-05-17 00:15:40 +00004455 break;
Chris Lattneraa40ec12006-05-16 22:56:08 +00004456 }
Chris Lattneraa40ec12006-05-16 22:56:08 +00004457 }
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004458 // If all Altivec parameters fit in registers, as they usually do,
4459 // they get stack space following the non-Altivec parameters. We
4460 // don't track this here because nobody below needs it.
4461 // If there are more Altivec parameters than fit in registers emit
4462 // the stores here.
4463 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
4464 unsigned j = 0;
4465 // Offset is aligned; skip 1st 12 params which go in V registers.
4466 ArgOffset = ((ArgOffset+15)/16)*16;
4467 ArgOffset += 12*16;
4468 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004469 SDValue Arg = OutVals[i];
4470 EVT ArgType = Outs[i].VT;
Owen Anderson9f944592009-08-11 20:47:22 +00004471 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
4472 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004473 if (++j > NumVRs) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004474 SDValue PtrOff;
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004475 // We are emitting Altivec params in order.
4476 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4477 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen021052a2009-02-04 20:06:27 +00004478 TailCallArguments, dl);
Dale Johannesen0dfd3f32008-03-14 17:41:26 +00004479 ArgOffset += 16;
4480 }
4481 }
4482 }
4483 }
4484
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004485 if (!MemOpChains.empty())
Owen Anderson9f944592009-08-11 20:47:22 +00004486 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnered728e82006-08-11 17:38:39 +00004487 &MemOpChains[0], MemOpChains.size());
Scott Michelcf0da6c2009-02-17 22:15:04 +00004488
Dale Johannesen90eab672010-03-09 20:15:42 +00004489 // On Darwin, R12 must contain the address of an indirect callee. This does
4490 // not mean the MTCTR instruction must use R12; it's easier to model this as
4491 // an extra parameter, so do that.
Wesley Peck527da1b2010-11-23 03:31:01 +00004492 if (!isTailCall &&
Dale Johannesen90eab672010-03-09 20:15:42 +00004493 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4494 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4495 !isBLACompatibleAddress(Callee, DAG))
4496 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
4497 PPC::R12), Callee));
4498
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004499 // Build a sequence of copy-to-reg nodes chained together with token chain
4500 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004501 SDValue InFlag;
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004502 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00004503 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen679073b2009-02-04 02:34:38 +00004504 RegsToPass[i].second, InFlag);
Chris Lattnerb1e9e372006-05-17 06:01:33 +00004505 InFlag = Chain.getValue(1);
4506 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004507
Chris Lattnerdf8e17d2010-11-14 23:42:06 +00004508 if (isTailCall)
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004509 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
4510 FPOp, true, TailCallArguments);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004511
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004512 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4513 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4514 Ins, InVals);
Chris Lattneraa40ec12006-05-16 22:56:08 +00004515}
4516
Hal Finkel450128a2011-10-14 19:51:36 +00004517bool
4518PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
4519 MachineFunction &MF, bool isVarArg,
4520 const SmallVectorImpl<ISD::OutputArg> &Outs,
4521 LLVMContext &Context) const {
4522 SmallVector<CCValAssign, 16> RVLocs;
4523 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
4524 RVLocs, Context);
4525 return CCInfo.CheckReturn(Outs, RetCC_PPC);
4526}
4527
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004528SDValue
4529PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00004530 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004531 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00004532 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004533 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004534
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004535 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher0713a9d2011-06-08 23:55:35 +00004536 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greif180c4442012-04-19 15:16:31 +00004537 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00004538 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004539
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004540 SDValue Flag;
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004541 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004542
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004543 // Copy the result values into the output registers.
4544 for (unsigned i = 0; i != RVLocs.size(); ++i) {
4545 CCValAssign &VA = RVLocs[i];
4546 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand339d0592012-11-05 19:39:45 +00004547
4548 SDValue Arg = OutVals[i];
4549
4550 switch (VA.getLocInfo()) {
4551 default: llvm_unreachable("Unknown loc info!");
4552 case CCValAssign::Full: break;
4553 case CCValAssign::AExt:
4554 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
4555 break;
4556 case CCValAssign::ZExt:
4557 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
4558 break;
4559 case CCValAssign::SExt:
4560 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
4561 break;
4562 }
4563
4564 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004565 Flag = Chain.getValue(1);
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004566 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner4f2e4e02007-03-06 00:59:59 +00004567 }
4568
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004569 RetOps[0] = Chain; // Update chain.
4570
4571 // Add the flag if we have it.
Gabor Greiff304a7a2008-08-28 21:40:38 +00004572 if (Flag.getNode())
Jakob Stoklund Olesen8660a8c2013-02-05 18:12:00 +00004573 RetOps.push_back(Flag);
4574
4575 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other,
4576 &RetOps[0], RetOps.size());
Chris Lattner4211ca92006-04-14 06:01:58 +00004577}
4578
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004579SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004580 const PPCSubtarget &Subtarget) const {
Jim Laskeye4f4d042006-12-04 22:04:42 +00004581 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004582 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004583
Jim Laskeye4f4d042006-12-04 22:04:42 +00004584 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00004585 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeye4f4d042006-12-04 22:04:42 +00004586
4587 // Construct the stack pointer operand.
Dale Johannesen86dcae12009-11-24 01:09:07 +00004588 bool isPPC64 = Subtarget.isPPC64();
4589 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004590 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeye4f4d042006-12-04 22:04:42 +00004591
4592 // Get the operands for the STACKRESTORE.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004593 SDValue Chain = Op.getOperand(0);
4594 SDValue SaveSP = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004595
Jim Laskeye4f4d042006-12-04 22:04:42 +00004596 // Load the old link SP.
Chris Lattner7727d052010-09-21 06:44:06 +00004597 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
4598 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004599 false, false, false, 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004600
Jim Laskeye4f4d042006-12-04 22:04:42 +00004601 // Restore the stack pointer.
Dale Johannesen021052a2009-02-04 20:06:27 +00004602 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004603
Jim Laskeye4f4d042006-12-04 22:04:42 +00004604 // Store the old link SP.
Chris Lattner676c61d2010-09-21 18:41:36 +00004605 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00004606 false, false, 0);
Jim Laskeye4f4d042006-12-04 22:04:42 +00004607}
4608
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004609
4610
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004611SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004612PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey48850c12006-11-16 22:43:37 +00004613 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesen86dcae12009-11-24 01:09:07 +00004614 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004615 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004616 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004617
4618 // Get current frame pointer save index. The users of this index will be
4619 // primarily DYNALLOC instructions.
4620 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4621 int RASI = FI->getReturnAddrSaveIndex();
4622
4623 // If the frame pointer save index hasn't been defined yet.
4624 if (!RASI) {
4625 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00004626 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004627 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00004628 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, true);
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004629 // Save the result.
4630 FI->setReturnAddrSaveIndex(RASI);
4631 }
4632 return DAG.getFrameIndex(RASI, PtrVT);
4633}
4634
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004635SDValue
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004636PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
4637 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesen86dcae12009-11-24 01:09:07 +00004638 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004639 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004640 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00004641
4642 // Get current frame pointer save index. The users of this index will be
4643 // primarily DYNALLOC instructions.
4644 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4645 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004646
Jim Laskey48850c12006-11-16 22:43:37 +00004647 // If the frame pointer save index hasn't been defined yet.
4648 if (!FPSI) {
4649 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00004650 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64,
Tilmann Scheller773f14c2009-07-03 06:47:08 +00004651 isDarwinABI);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004652
Jim Laskey48850c12006-11-16 22:43:37 +00004653 // Allocate the frame index for frame pointer save area.
Evan Cheng0664a672010-07-03 00:40:23 +00004654 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey48850c12006-11-16 22:43:37 +00004655 // Save the result.
Scott Michelcf0da6c2009-02-17 22:15:04 +00004656 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey48850c12006-11-16 22:43:37 +00004657 }
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004658 return DAG.getFrameIndex(FPSI, PtrVT);
4659}
Jim Laskey48850c12006-11-16 22:43:37 +00004660
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004661SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighoferbe0de342008-04-30 09:16:33 +00004662 SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004663 const PPCSubtarget &Subtarget) const {
Jim Laskey48850c12006-11-16 22:43:37 +00004664 // Get the inputs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004665 SDValue Chain = Op.getOperand(0);
4666 SDValue Size = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004667 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004668
Jim Laskey48850c12006-11-16 22:43:37 +00004669 // Get the corect type for pointers.
Owen Anderson53aa7a92009-08-10 22:56:29 +00004670 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey48850c12006-11-16 22:43:37 +00004671 // Negate the size.
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004672 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey48850c12006-11-16 22:43:37 +00004673 DAG.getConstant(0, PtrVT), Size);
4674 // Construct a node for the frame pointer save index.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004675 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey48850c12006-11-16 22:43:37 +00004676 // Build a DYNALLOC node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004677 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson9f944592009-08-11 20:47:22 +00004678 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004679 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops, 3);
Jim Laskey48850c12006-11-16 22:43:37 +00004680}
4681
Hal Finkel756810f2013-03-21 21:37:52 +00004682SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
4683 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004684 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00004685 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
4686 DAG.getVTList(MVT::i32, MVT::Other),
4687 Op.getOperand(0), Op.getOperand(1));
4688}
4689
4690SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
4691 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004692 SDLoc DL(Op);
Hal Finkel756810f2013-03-21 21:37:52 +00004693 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
4694 Op.getOperand(0), Op.getOperand(1));
4695}
4696
Chris Lattner4211ca92006-04-14 06:01:58 +00004697/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
4698/// possible.
Dan Gohman21cea8a2010-04-17 15:26:15 +00004699SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner4211ca92006-04-14 06:01:58 +00004700 // Not FP? Not a fsel.
Duncan Sands13237ac2008-06-06 12:08:01 +00004701 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
4702 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedman5806e182009-05-28 04:31:08 +00004703 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004704
Hal Finkel81f87992013-04-07 22:11:09 +00004705 // We might be able to do better than this under some circumstances, but in
4706 // general, fsel-based lowering of select is a finite-math-only optimization.
4707 // For more information, see section F.3 of the 2.06 ISA specification.
4708 if (!DAG.getTarget().Options.NoInfsFPMath ||
4709 !DAG.getTarget().Options.NoNaNsFPMath)
4710 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00004711
Hal Finkel81f87992013-04-07 22:11:09 +00004712 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004713
Owen Anderson53aa7a92009-08-10 22:56:29 +00004714 EVT ResVT = Op.getValueType();
4715 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004716 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
4717 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004718 SDLoc dl(Op);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004719
Chris Lattner4211ca92006-04-14 06:01:58 +00004720 // If the RHS of the comparison is a 0.0, we don't need to do the
4721 // subtraction at all.
Hal Finkel81f87992013-04-07 22:11:09 +00004722 SDValue Sel1;
Chris Lattner4211ca92006-04-14 06:01:58 +00004723 if (isFloatingPointZero(RHS))
4724 switch (CC) {
4725 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00004726 case ISD::SETNE:
4727 std::swap(TV, FV);
4728 case ISD::SETEQ:
4729 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4730 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
4731 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
4732 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4733 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4734 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4735 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004736 case ISD::SETULT:
4737 case ISD::SETLT:
4738 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004739 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004740 case ISD::SETGE:
Owen Anderson9f944592009-08-11 20:47:22 +00004741 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4742 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004743 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004744 case ISD::SETUGT:
4745 case ISD::SETGT:
4746 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004747 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004748 case ISD::SETLE:
Owen Anderson9f944592009-08-11 20:47:22 +00004749 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4750 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004751 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson9f944592009-08-11 20:47:22 +00004752 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004753 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004754
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004755 SDValue Cmp;
Chris Lattner4211ca92006-04-14 06:01:58 +00004756 switch (CC) {
4757 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel81f87992013-04-07 22:11:09 +00004758 case ISD::SETNE:
4759 std::swap(TV, FV);
4760 case ISD::SETEQ:
4761 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
4762 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4763 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
4764 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
4765 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4766 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4767 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4768 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004769 case ISD::SETULT:
4770 case ISD::SETLT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004771 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004772 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4773 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004774 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004775 case ISD::SETOGE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004776 case ISD::SETGE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004777 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004778 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4779 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004780 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004781 case ISD::SETUGT:
4782 case ISD::SETGT:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004783 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004784 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4785 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004786 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattnerb56d22c2006-05-24 00:06:44 +00004787 case ISD::SETOLE:
Chris Lattner4211ca92006-04-14 06:01:58 +00004788 case ISD::SETLE:
Dale Johannesen400dc2e2009-02-06 21:50:26 +00004789 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson9f944592009-08-11 20:47:22 +00004790 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4791 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel81f87992013-04-07 22:11:09 +00004792 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner4211ca92006-04-14 06:01:58 +00004793 }
Eli Friedman5806e182009-05-28 04:31:08 +00004794 return Op;
Chris Lattner4211ca92006-04-14 06:01:58 +00004795}
4796
Chris Lattner57ee7c62007-11-28 18:44:47 +00004797// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen37bc85f2009-06-04 20:53:52 +00004798SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004799 SDLoc dl) const {
Duncan Sands13237ac2008-06-06 12:08:01 +00004800 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004801 SDValue Src = Op.getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00004802 if (Src.getValueType() == MVT::f32)
4803 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sands2a287912008-07-19 16:26:02 +00004804
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004805 SDValue Tmp;
Craig Topper56710102013-08-15 02:33:50 +00004806 switch (Op.getSimpleValueType().SimpleTy) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00004807 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson9f944592009-08-11 20:47:22 +00004808 case MVT::i32:
Dale Johannesen37bc85f2009-06-04 20:53:52 +00004809 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ :
Hal Finkelf6d45f22013-04-01 17:52:07 +00004810 (PPCSubTarget.hasFPCVT() ? PPCISD::FCTIWUZ :
4811 PPCISD::FCTIDZ),
Owen Anderson9f944592009-08-11 20:47:22 +00004812 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00004813 break;
Owen Anderson9f944592009-08-11 20:47:22 +00004814 case MVT::i64:
Hal Finkel3f88d082013-04-01 18:42:58 +00004815 assert((Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT()) &&
4816 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkelf6d45f22013-04-01 17:52:07 +00004817 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
4818 PPCISD::FCTIDUZ,
4819 dl, MVT::f64, Src);
Chris Lattner4211ca92006-04-14 06:01:58 +00004820 break;
4821 }
Duncan Sands2a287912008-07-19 16:26:02 +00004822
Chris Lattner4211ca92006-04-14 06:01:58 +00004823 // Convert the FP value to an int value through memory.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004824 bool i32Stack = Op.getValueType() == MVT::i32 && PPCSubTarget.hasSTFIWX() &&
4825 (Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT());
4826 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
4827 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
4828 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
Duncan Sands2a287912008-07-19 16:26:02 +00004829
Chris Lattner06a49542007-10-15 20:14:52 +00004830 // Emit a store to the stack slot.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004831 SDValue Chain;
4832 if (i32Stack) {
4833 MachineFunction &MF = DAG.getMachineFunction();
4834 MachineMemOperand *MMO =
4835 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
4836 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
4837 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
4838 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
4839 MVT::i32, MMO);
4840 } else
4841 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
4842 MPI, false, false, 0);
Chris Lattner06a49542007-10-15 20:14:52 +00004843
4844 // Result is a load from the stack slot. If loading 4 bytes, make sure to
4845 // add in a bias.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004846 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen021052a2009-02-04 20:06:27 +00004847 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner06a49542007-10-15 20:14:52 +00004848 DAG.getConstant(4, FIPtr.getValueType()));
Hal Finkelf6d45f22013-04-01 17:52:07 +00004849 MPI = MachinePointerInfo();
4850 }
4851
4852 return DAG.getLoad(Op.getValueType(), dl, Chain, FIPtr, MPI,
Pete Cooper82cd9e82011-11-08 18:42:53 +00004853 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00004854}
4855
Hal Finkelf6d45f22013-04-01 17:52:07 +00004856SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00004857 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004858 SDLoc dl(Op);
Dan Gohmand6819da2008-03-11 01:59:03 +00004859 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson9f944592009-08-11 20:47:22 +00004860 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004861 return SDValue();
Dan Gohmand6819da2008-03-11 01:59:03 +00004862
Hal Finkelf6d45f22013-04-01 17:52:07 +00004863 assert((Op.getOpcode() == ISD::SINT_TO_FP || PPCSubTarget.hasFPCVT()) &&
4864 "UINT_TO_FP is supported only with FPCVT");
4865
4866 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel93d75ea2013-04-02 03:29:51 +00004867 // Otherwise, convert to double-precision and then round.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004868 unsigned FCFOp = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4869 (Op.getOpcode() == ISD::UINT_TO_FP ?
4870 PPCISD::FCFIDUS : PPCISD::FCFIDS) :
4871 (Op.getOpcode() == ISD::UINT_TO_FP ?
4872 PPCISD::FCFIDU : PPCISD::FCFID);
4873 MVT FCFTy = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4874 MVT::f32 : MVT::f64;
4875
Owen Anderson9f944592009-08-11 20:47:22 +00004876 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00004877 SDValue SINT = Op.getOperand(0);
4878 // When converting to single-precision, we actually need to convert
4879 // to double-precision first and then round to single-precision.
4880 // To avoid double-rounding effects during that operation, we have
4881 // to prepare the input operand. Bits that might be truncated when
4882 // converting to double-precision are replaced by a bit that won't
4883 // be lost at this stage, but is below the single-precision rounding
4884 // position.
4885 //
4886 // However, if -enable-unsafe-fp-math is in effect, accept double
4887 // rounding to avoid the extra overhead.
4888 if (Op.getValueType() == MVT::f32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00004889 !PPCSubTarget.hasFPCVT() &&
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00004890 !DAG.getTarget().Options.UnsafeFPMath) {
4891
4892 // Twiddle input to make sure the low 11 bits are zero. (If this
4893 // is the case, we are guaranteed the value will fit into the 53 bit
4894 // mantissa of an IEEE double-precision value without rounding.)
4895 // If any of those low 11 bits were not zero originally, make sure
4896 // bit 12 (value 2048) is set instead, so that the final rounding
4897 // to single-precision gets the correct result.
4898 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4899 SINT, DAG.getConstant(2047, MVT::i64));
4900 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
4901 Round, DAG.getConstant(2047, MVT::i64));
4902 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
4903 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4904 Round, DAG.getConstant(-2048, MVT::i64));
4905
4906 // However, we cannot use that value unconditionally: if the magnitude
4907 // of the input value is small, the bit-twiddling we did above might
4908 // end up visibly changing the output. Fortunately, in that case, we
4909 // don't need to twiddle bits since the original input will convert
4910 // exactly to double-precision floating-point already. Therefore,
4911 // construct a conditional to use the original value if the top 11
4912 // bits are all sign-bit copies, and use the rounded value computed
4913 // above otherwise.
4914 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
4915 SINT, DAG.getConstant(53, MVT::i32));
4916 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
4917 Cond, DAG.getConstant(1, MVT::i64));
4918 Cond = DAG.getSetCC(dl, MVT::i32,
4919 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
4920
4921 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
4922 }
Hal Finkelf6d45f22013-04-01 17:52:07 +00004923
Ulrich Weigandd34b5bd2012-10-18 13:16:11 +00004924 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
Hal Finkelf6d45f22013-04-01 17:52:07 +00004925 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
4926
4927 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Scott Michelcf0da6c2009-02-17 22:15:04 +00004928 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00004929 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00004930 return FP;
4931 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004932
Owen Anderson9f944592009-08-11 20:47:22 +00004933 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkelf6d45f22013-04-01 17:52:07 +00004934 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner4211ca92006-04-14 06:01:58 +00004935 // Since we only generate this in 64-bit mode, we can take advantage of
4936 // 64-bit registers. In particular, sign extend the input value into the
4937 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
4938 // then lfd it and fcfid it.
Dan Gohman48b185d2009-09-25 20:36:54 +00004939 MachineFunction &MF = DAG.getMachineFunction();
4940 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004941 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelcf0da6c2009-02-17 22:15:04 +00004942
Hal Finkelbeb296b2013-03-31 10:12:51 +00004943 SDValue Ld;
Hal Finkelf6d45f22013-04-01 17:52:07 +00004944 if (PPCSubTarget.hasLFIWAX() || PPCSubTarget.hasFPCVT()) {
Hal Finkelbeb296b2013-03-31 10:12:51 +00004945 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
4946 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00004947
Hal Finkelbeb296b2013-03-31 10:12:51 +00004948 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
4949 MachinePointerInfo::getFixedStack(FrameIdx),
4950 false, false, 0);
Hal Finkele53429a2013-03-31 01:58:02 +00004951
Hal Finkelbeb296b2013-03-31 10:12:51 +00004952 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
4953 "Expected an i32 store");
4954 MachineMemOperand *MMO =
4955 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
4956 MachineMemOperand::MOLoad, 4, 4);
4957 SDValue Ops[] = { Store, FIdx };
Hal Finkelf6d45f22013-04-01 17:52:07 +00004958 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
4959 PPCISD::LFIWZX : PPCISD::LFIWAX,
4960 dl, DAG.getVTList(MVT::f64, MVT::Other),
4961 Ops, 2, MVT::i32, MMO);
Hal Finkelbeb296b2013-03-31 10:12:51 +00004962 } else {
Hal Finkelf6d45f22013-04-01 17:52:07 +00004963 assert(PPCSubTarget.isPPC64() &&
4964 "i32->FP without LFIWAX supported only on PPC64");
4965
Hal Finkelbeb296b2013-03-31 10:12:51 +00004966 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
4967 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
4968
4969 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
4970 Op.getOperand(0));
4971
4972 // STD the extended value into the stack slot.
4973 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
4974 MachinePointerInfo::getFixedStack(FrameIdx),
4975 false, false, 0);
4976
4977 // Load the value as a double.
4978 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
4979 MachinePointerInfo::getFixedStack(FrameIdx),
4980 false, false, false, 0);
4981 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00004982
Chris Lattner4211ca92006-04-14 06:01:58 +00004983 // FCFID it and return it.
Hal Finkelf6d45f22013-04-01 17:52:07 +00004984 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
4985 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Owen Anderson9f944592009-08-11 20:47:22 +00004986 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner4211ca92006-04-14 06:01:58 +00004987 return FP;
4988}
4989
Dan Gohman21cea8a2010-04-17 15:26:15 +00004990SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
4991 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004992 SDLoc dl(Op);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00004993 /*
4994 The rounding mode is in bits 30:31 of FPSR, and has the following
4995 settings:
4996 00 Round to nearest
4997 01 Round to 0
4998 10 Round to +inf
4999 11 Round to -inf
5000
5001 FLT_ROUNDS, on the other hand, expects the following:
5002 -1 Undefined
5003 0 Round to 0
5004 1 Round to nearest
5005 2 Round to +inf
5006 3 Round to -inf
5007
5008 To perform the conversion, we do:
5009 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
5010 */
5011
5012 MachineFunction &MF = DAG.getMachineFunction();
Owen Anderson53aa7a92009-08-10 22:56:29 +00005013 EVT VT = Op.getValueType();
5014 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005015 SDValue MFFSreg, InFlag;
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005016
5017 // Save FP Control Word to register
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005018 EVT NodeTys[] = {
5019 MVT::f64, // return register
5020 MVT::Glue // unused in this context
5021 };
Dale Johannesen021052a2009-02-04 20:06:27 +00005022 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005023
5024 // Save FP register to stack slot
David Greene1fbe0542009-11-12 20:49:22 +00005025 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005026 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005027 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner676c61d2010-09-21 18:41:36 +00005028 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005029
5030 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005031 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00005032 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattner7727d052010-09-21 06:44:06 +00005033 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005034 false, false, false, 0);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005035
5036 // Transform as necessary
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005037 SDValue CWD1 =
Owen Anderson9f944592009-08-11 20:47:22 +00005038 DAG.getNode(ISD::AND, dl, MVT::i32,
5039 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005040 SDValue CWD2 =
Owen Anderson9f944592009-08-11 20:47:22 +00005041 DAG.getNode(ISD::SRL, dl, MVT::i32,
5042 DAG.getNode(ISD::AND, dl, MVT::i32,
5043 DAG.getNode(ISD::XOR, dl, MVT::i32,
5044 CWD, DAG.getConstant(3, MVT::i32)),
5045 DAG.getConstant(3, MVT::i32)),
5046 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005047
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005048 SDValue RetVal =
Owen Anderson9f944592009-08-11 20:47:22 +00005049 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005050
Duncan Sands13237ac2008-06-06 12:08:01 +00005051 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen021052a2009-02-04 20:06:27 +00005052 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c94cb32008-01-18 19:55:37 +00005053}
5054
Dan Gohman21cea8a2010-04-17 15:26:15 +00005055SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005056 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005057 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005058 SDLoc dl(Op);
Dan Gohman8d2ead22008-03-07 20:36:53 +00005059 assert(Op.getNumOperands() == 3 &&
5060 VT == Op.getOperand(1).getValueType() &&
5061 "Unexpected SHL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005062
Chris Lattner601b8652006-09-20 03:47:40 +00005063 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005064 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005065 SDValue Lo = Op.getOperand(0);
5066 SDValue Hi = Op.getOperand(1);
5067 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005068 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005069
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005070 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005071 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005072 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
5073 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
5074 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
5075 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005076 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005077 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
5078 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5079 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005080 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005081 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005082}
5083
Dan Gohman21cea8a2010-04-17 15:26:15 +00005084SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00005085 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005086 SDLoc dl(Op);
Duncan Sands13237ac2008-06-06 12:08:01 +00005087 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00005088 assert(Op.getNumOperands() == 3 &&
5089 VT == Op.getOperand(1).getValueType() &&
5090 "Unexpected SRL!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005091
Dan Gohman8d2ead22008-03-07 20:36:53 +00005092 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner4211ca92006-04-14 06:01:58 +00005093 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005094 SDValue Lo = Op.getOperand(0);
5095 SDValue Hi = Op.getOperand(1);
5096 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005097 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005098
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005099 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005100 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005101 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5102 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5103 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5104 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005105 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005106 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
5107 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5108 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005109 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005110 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005111}
5112
Dan Gohman21cea8a2010-04-17 15:26:15 +00005113SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005114 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005115 EVT VT = Op.getValueType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005116 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman8d2ead22008-03-07 20:36:53 +00005117 assert(Op.getNumOperands() == 3 &&
5118 VT == Op.getOperand(1).getValueType() &&
5119 "Unexpected SRA!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00005120
Dan Gohman8d2ead22008-03-07 20:36:53 +00005121 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005122 SDValue Lo = Op.getOperand(0);
5123 SDValue Hi = Op.getOperand(1);
5124 SDValue Amt = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005125 EVT AmtVT = Amt.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005126
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005127 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands13105742008-10-30 19:28:32 +00005128 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005129 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5130 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5131 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5132 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands13105742008-10-30 19:28:32 +00005133 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf2bb6f02009-02-04 01:48:28 +00005134 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
5135 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
5136 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands13105742008-10-30 19:28:32 +00005137 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005138 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen7ae8c8b2009-02-05 00:20:09 +00005139 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner4211ca92006-04-14 06:01:58 +00005140}
5141
5142//===----------------------------------------------------------------------===//
5143// Vector related lowering.
5144//
5145
Chris Lattner2a099c02006-04-17 06:00:21 +00005146/// BuildSplatI - Build a canonical splati of Val with an element size of
5147/// SplatSize. Cast the result to VT.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005148static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005149 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner2a099c02006-04-17 06:00:21 +00005150 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005151
Owen Anderson53aa7a92009-08-10 22:56:29 +00005152 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson9f944592009-08-11 20:47:22 +00005153 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner2a099c02006-04-17 06:00:21 +00005154 };
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005155
Owen Anderson9f944592009-08-11 20:47:22 +00005156 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005157
Chris Lattner09ed0ff2006-12-01 01:45:39 +00005158 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
5159 if (Val == -1)
5160 SplatSize = 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005161
Owen Anderson53aa7a92009-08-10 22:56:29 +00005162 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005163
Chris Lattner2a099c02006-04-17 06:00:21 +00005164 // Build a canonical splat for this value.
Owen Anderson9f944592009-08-11 20:47:22 +00005165 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005166 SmallVector<SDValue, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00005167 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Evan Chenga49de9d2009-02-25 22:49:59 +00005168 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT,
5169 &Ops[0], Ops.size());
Wesley Peck527da1b2010-11-23 03:31:01 +00005170 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00005171}
5172
Hal Finkelcf2e9082013-05-24 23:00:14 +00005173/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
5174/// specified intrinsic ID.
5175static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005176 SelectionDAG &DAG, SDLoc dl,
Hal Finkelcf2e9082013-05-24 23:00:14 +00005177 EVT DestVT = MVT::Other) {
5178 if (DestVT == MVT::Other) DestVT = Op.getValueType();
5179 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
5180 DAG.getConstant(IID, MVT::i32), Op);
5181}
5182
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005183/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner1b3806a2006-04-17 06:58:41 +00005184/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005185static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005186 SelectionDAG &DAG, SDLoc dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005187 EVT DestVT = MVT::Other) {
5188 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005189 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005190 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005191}
5192
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005193/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
5194/// specified intrinsic ID.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005195static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005196 SDValue Op2, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005197 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson9f944592009-08-11 20:47:22 +00005198 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005199 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson9f944592009-08-11 20:47:22 +00005200 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005201}
5202
5203
Chris Lattner264c9082006-04-17 17:55:10 +00005204/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
5205/// amount. The result has the specified value type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005206static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005207 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattner264c9082006-04-17 17:55:10 +00005208 // Force LHS/RHS to be the right type.
Wesley Peck527da1b2010-11-23 03:31:01 +00005209 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
5210 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsb0e39382008-07-21 10:20:31 +00005211
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005212 int Ops[16];
Chris Lattner264c9082006-04-17 17:55:10 +00005213 for (unsigned i = 0; i != 16; ++i)
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005214 Ops[i] = i + Amt;
Owen Anderson9f944592009-08-11 20:47:22 +00005215 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00005216 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner264c9082006-04-17 17:55:10 +00005217}
5218
Chris Lattner19e90552006-04-14 05:19:18 +00005219// If this is a case we can't handle, return null and let the default
5220// expansion code take care of it. If we CAN select this case, and if it
5221// selects to a single instruction, return Op. Otherwise, if we can codegen
5222// this case more efficiently than a constant pool load, lower it to the
5223// sequence of ops that should be used.
Dan Gohman21cea8a2010-04-17 15:26:15 +00005224SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
5225 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005226 SDLoc dl(Op);
Bob Wilsond8ea0e12009-03-01 01:13:55 +00005227 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
5228 assert(BVN != 0 && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Michelbb878282009-02-25 03:12:50 +00005229
Bob Wilson85cefe82009-03-02 23:24:16 +00005230 // Check if this is a splat of a constant value.
5231 APInt APSplatBits, APSplatUndef;
5232 unsigned SplatBitSize;
Bob Wilsond8ea0e12009-03-01 01:13:55 +00005233 bool HasAnyUndefs;
Bob Wilson530e0382009-03-03 19:26:27 +00005234 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Dale Johannesen5f4eecf2009-11-13 01:45:18 +00005235 HasAnyUndefs, 0, true) || SplatBitSize > 32)
Bob Wilson530e0382009-03-03 19:26:27 +00005236 return SDValue();
Evan Chenga49de9d2009-02-25 22:49:59 +00005237
Bob Wilson530e0382009-03-03 19:26:27 +00005238 unsigned SplatBits = APSplatBits.getZExtValue();
5239 unsigned SplatUndef = APSplatUndef.getZExtValue();
5240 unsigned SplatSize = SplatBitSize / 8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005241
Bob Wilson530e0382009-03-03 19:26:27 +00005242 // First, handle single instruction cases.
5243
5244 // All zeros?
5245 if (SplatBits == 0) {
5246 // Canonicalize all zero vectors to be v4i32.
Owen Anderson9f944592009-08-11 20:47:22 +00005247 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
5248 SDValue Z = DAG.getConstant(0, MVT::i32);
5249 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Wesley Peck527da1b2010-11-23 03:31:01 +00005250 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattner19e90552006-04-14 05:19:18 +00005251 }
Bob Wilson530e0382009-03-03 19:26:27 +00005252 return Op;
5253 }
Chris Lattnerfa5aa392006-04-16 01:01:29 +00005254
Bob Wilson530e0382009-03-03 19:26:27 +00005255 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
5256 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
5257 (32-SplatBitSize));
5258 if (SextVal >= -16 && SextVal <= 15)
5259 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005260
5261
Bob Wilson530e0382009-03-03 19:26:27 +00005262 // Two instruction sequences.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005263
Bob Wilson530e0382009-03-03 19:26:27 +00005264 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtc6cbecc2013-02-20 20:41:42 +00005265 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
5266 // If this value is in the range [17,31] and is odd, use:
5267 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
5268 // If this value is in the range [-31,-17] and is odd, use:
5269 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
5270 // Note the last two are three-instruction sequences.
5271 if (SextVal >= -32 && SextVal <= 31) {
5272 // To avoid having these optimizations undone by constant folding,
5273 // we convert to a pseudo that will be expanded later into one of
5274 // the above forms.
5275 SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
Bill Schmidt51e79512013-02-20 15:50:31 +00005276 EVT VT = Op.getValueType();
5277 int Size = VT == MVT::v16i8 ? 1 : (VT == MVT::v8i16 ? 2 : 4);
5278 SDValue EltSize = DAG.getConstant(Size, MVT::i32);
5279 return DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
Bob Wilson530e0382009-03-03 19:26:27 +00005280 }
5281
5282 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
5283 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
5284 // for fneg/fabs.
5285 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
5286 // Make -1 and vspltisw -1:
Owen Anderson9f944592009-08-11 20:47:22 +00005287 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005288
5289 // Make the VSLW intrinsic, computing 0x8000_0000.
5290 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
5291 OnesV, DAG, dl);
5292
5293 // xor by OnesV to invert it.
Owen Anderson9f944592009-08-11 20:47:22 +00005294 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peck527da1b2010-11-23 03:31:01 +00005295 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00005296 }
5297
5298 // Check to see if this is a wide variety of vsplti*, binop self cases.
5299 static const signed char SplatCsts[] = {
5300 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
5301 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
5302 };
5303
5304 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
5305 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
5306 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
5307 int i = SplatCsts[idx];
5308
5309 // Figure out what shift amount will be used by altivec if shifted by i in
5310 // this splat size.
5311 unsigned TypeShiftAmt = i & (SplatBitSize-1);
5312
5313 // vsplti + shl self.
Richard Smith228e6d42012-08-24 23:29:28 +00005314 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005315 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005316 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5317 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
5318 Intrinsic::ppc_altivec_vslw
5319 };
5320 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005321 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner2a099c02006-04-17 06:00:21 +00005322 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005323
Bob Wilson530e0382009-03-03 19:26:27 +00005324 // vsplti + srl self.
5325 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005326 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005327 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5328 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
5329 Intrinsic::ppc_altivec_vsrw
5330 };
5331 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005332 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005333 }
5334
Bob Wilson530e0382009-03-03 19:26:27 +00005335 // vsplti + sra self.
5336 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson9f944592009-08-11 20:47:22 +00005337 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005338 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5339 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
5340 Intrinsic::ppc_altivec_vsraw
5341 };
5342 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005343 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner1b3806a2006-04-17 06:58:41 +00005344 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005345
Bob Wilson530e0382009-03-03 19:26:27 +00005346 // vsplti + rol self.
5347 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
5348 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005349 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005350 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5351 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
5352 Intrinsic::ppc_altivec_vrlw
5353 };
5354 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peck527da1b2010-11-23 03:31:01 +00005355 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilson530e0382009-03-03 19:26:27 +00005356 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005357
Bob Wilson530e0382009-03-03 19:26:27 +00005358 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith228e6d42012-08-24 23:29:28 +00005359 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005360 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005361 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnere54133c2006-04-17 18:09:22 +00005362 }
Bob Wilson530e0382009-03-03 19:26:27 +00005363 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith228e6d42012-08-24 23:29:28 +00005364 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005365 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005366 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattner19e90552006-04-14 05:19:18 +00005367 }
Bob Wilson530e0382009-03-03 19:26:27 +00005368 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith228e6d42012-08-24 23:29:28 +00005369 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson9f944592009-08-11 20:47:22 +00005370 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilson530e0382009-03-03 19:26:27 +00005371 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
5372 }
5373 }
5374
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005375 return SDValue();
Chris Lattner19e90552006-04-14 05:19:18 +00005376}
5377
Chris Lattner071ad012006-04-17 05:28:54 +00005378/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5379/// the specified operations to build the shuffle.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005380static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelcf0da6c2009-02-17 22:15:04 +00005381 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005382 SDLoc dl) {
Chris Lattner071ad012006-04-17 05:28:54 +00005383 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling95e1af22008-09-17 00:30:57 +00005384 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner071ad012006-04-17 05:28:54 +00005385 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005386
Chris Lattner071ad012006-04-17 05:28:54 +00005387 enum {
Chris Lattnerd2ca9ab2006-05-16 04:20:24 +00005388 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 +00005389 OP_VMRGHW,
5390 OP_VMRGLW,
5391 OP_VSPLTISW0,
5392 OP_VSPLTISW1,
5393 OP_VSPLTISW2,
5394 OP_VSPLTISW3,
5395 OP_VSLDOI4,
5396 OP_VSLDOI8,
Chris Lattneraa2372562006-05-24 17:04:05 +00005397 OP_VSLDOI12
Chris Lattner071ad012006-04-17 05:28:54 +00005398 };
Scott Michelcf0da6c2009-02-17 22:15:04 +00005399
Chris Lattner071ad012006-04-17 05:28:54 +00005400 if (OpNum == OP_COPY) {
5401 if (LHSID == (1*9+2)*9+3) return LHS;
5402 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5403 return RHS;
5404 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005405
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005406 SDValue OpLHS, OpRHS;
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005407 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5408 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005409
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005410 int ShufIdxs[16];
Chris Lattner071ad012006-04-17 05:28:54 +00005411 switch (OpNum) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005412 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner071ad012006-04-17 05:28:54 +00005413 case OP_VMRGHW:
5414 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
5415 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
5416 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
5417 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
5418 break;
5419 case OP_VMRGLW:
5420 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
5421 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
5422 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
5423 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
5424 break;
5425 case OP_VSPLTISW0:
5426 for (unsigned i = 0; i != 16; ++i)
5427 ShufIdxs[i] = (i&3)+0;
5428 break;
5429 case OP_VSPLTISW1:
5430 for (unsigned i = 0; i != 16; ++i)
5431 ShufIdxs[i] = (i&3)+4;
5432 break;
5433 case OP_VSPLTISW2:
5434 for (unsigned i = 0; i != 16; ++i)
5435 ShufIdxs[i] = (i&3)+8;
5436 break;
5437 case OP_VSPLTISW3:
5438 for (unsigned i = 0; i != 16; ++i)
5439 ShufIdxs[i] = (i&3)+12;
5440 break;
5441 case OP_VSLDOI4:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005442 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005443 case OP_VSLDOI8:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005444 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005445 case OP_VSLDOI12:
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005446 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005447 }
Owen Anderson53aa7a92009-08-10 22:56:29 +00005448 EVT VT = OpLHS.getValueType();
Wesley Peck527da1b2010-11-23 03:31:01 +00005449 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
5450 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson9f944592009-08-11 20:47:22 +00005451 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peck527da1b2010-11-23 03:31:01 +00005452 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner071ad012006-04-17 05:28:54 +00005453}
5454
Chris Lattner19e90552006-04-14 05:19:18 +00005455/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
5456/// is a shuffle we can handle in a single instruction, return it. Otherwise,
5457/// return the code it can be lowered into. Worst case, it can always be
5458/// lowered into a vperm.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005459SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005460 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005461 SDLoc dl(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005462 SDValue V1 = Op.getOperand(0);
5463 SDValue V2 = Op.getOperand(1);
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005464 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005465 EVT VT = Op.getValueType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005466
Chris Lattner19e90552006-04-14 05:19:18 +00005467 // Cases that are handled by instructions that take permute immediates
5468 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
5469 // selected by the instruction selector.
5470 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005471 if (PPC::isSplatShuffleMask(SVOp, 1) ||
5472 PPC::isSplatShuffleMask(SVOp, 2) ||
5473 PPC::isSplatShuffleMask(SVOp, 4) ||
5474 PPC::isVPKUWUMShuffleMask(SVOp, true) ||
5475 PPC::isVPKUHUMShuffleMask(SVOp, true) ||
5476 PPC::isVSLDOIShuffleMask(SVOp, true) != -1 ||
5477 PPC::isVMRGLShuffleMask(SVOp, 1, true) ||
5478 PPC::isVMRGLShuffleMask(SVOp, 2, true) ||
5479 PPC::isVMRGLShuffleMask(SVOp, 4, true) ||
5480 PPC::isVMRGHShuffleMask(SVOp, 1, true) ||
5481 PPC::isVMRGHShuffleMask(SVOp, 2, true) ||
5482 PPC::isVMRGHShuffleMask(SVOp, 4, true)) {
Chris Lattner19e90552006-04-14 05:19:18 +00005483 return Op;
5484 }
5485 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005486
Chris Lattner19e90552006-04-14 05:19:18 +00005487 // Altivec has a variety of "shuffle immediates" that take two vector inputs
5488 // and produce a fixed permutation. If any of these match, do not lower to
5489 // VPERM.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005490 if (PPC::isVPKUWUMShuffleMask(SVOp, false) ||
5491 PPC::isVPKUHUMShuffleMask(SVOp, false) ||
5492 PPC::isVSLDOIShuffleMask(SVOp, false) != -1 ||
5493 PPC::isVMRGLShuffleMask(SVOp, 1, false) ||
5494 PPC::isVMRGLShuffleMask(SVOp, 2, false) ||
5495 PPC::isVMRGLShuffleMask(SVOp, 4, false) ||
5496 PPC::isVMRGHShuffleMask(SVOp, 1, false) ||
5497 PPC::isVMRGHShuffleMask(SVOp, 2, false) ||
5498 PPC::isVMRGHShuffleMask(SVOp, 4, false))
Chris Lattner19e90552006-04-14 05:19:18 +00005499 return Op;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005500
Chris Lattner071ad012006-04-17 05:28:54 +00005501 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
5502 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramer339ced42012-01-15 13:16:05 +00005503 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peck527da1b2010-11-23 03:31:01 +00005504
Chris Lattner071ad012006-04-17 05:28:54 +00005505 unsigned PFIndexes[4];
5506 bool isFourElementShuffle = true;
5507 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
5508 unsigned EltNo = 8; // Start out undef.
5509 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005510 if (PermMask[i*4+j] < 0)
Chris Lattner071ad012006-04-17 05:28:54 +00005511 continue; // Undef, ignore it.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005512
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005513 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner071ad012006-04-17 05:28:54 +00005514 if ((ByteSource & 3) != j) {
5515 isFourElementShuffle = false;
5516 break;
5517 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005518
Chris Lattner071ad012006-04-17 05:28:54 +00005519 if (EltNo == 8) {
5520 EltNo = ByteSource/4;
5521 } else if (EltNo != ByteSource/4) {
5522 isFourElementShuffle = false;
5523 break;
5524 }
5525 }
5526 PFIndexes[i] = EltNo;
5527 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005528
5529 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner071ad012006-04-17 05:28:54 +00005530 // perfect shuffle vector to determine if it is cost effective to do this as
5531 // discrete instructions, or whether we should use a vperm.
5532 if (isFourElementShuffle) {
5533 // Compute the index in the perfect shuffle table.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005534 unsigned PFTableIndex =
Chris Lattner071ad012006-04-17 05:28:54 +00005535 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005536
Chris Lattner071ad012006-04-17 05:28:54 +00005537 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5538 unsigned Cost = (PFEntry >> 30);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005539
Chris Lattner071ad012006-04-17 05:28:54 +00005540 // Determining when to avoid vperm is tricky. Many things affect the cost
5541 // of vperm, particularly how many times the perm mask needs to be computed.
5542 // For example, if the perm mask can be hoisted out of a loop or is already
5543 // used (perhaps because there are multiple permutes with the same shuffle
5544 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
5545 // the loop requires an extra register.
5546 //
5547 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelcf0da6c2009-02-17 22:15:04 +00005548 // generated in 3 or fewer operations. When we have loop information
Chris Lattner071ad012006-04-17 05:28:54 +00005549 // available, if this block is within a loop, we should avoid using vperm
5550 // for 3-operation perms and use a constant pool load instead.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005551 if (Cost < 3)
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005552 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner071ad012006-04-17 05:28:54 +00005553 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005554
Chris Lattner19e90552006-04-14 05:19:18 +00005555 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
5556 // vector that will get spilled to the constant pool.
5557 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005558
Chris Lattner19e90552006-04-14 05:19:18 +00005559 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
5560 // that it is in input element units, not in bytes. Convert now.
Owen Anderson53aa7a92009-08-10 22:56:29 +00005561 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands13237ac2008-06-06 12:08:01 +00005562 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005563
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005564 SmallVector<SDValue, 16> ResultMask;
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005565 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
5566 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelcf0da6c2009-02-17 22:15:04 +00005567
Chris Lattner19e90552006-04-14 05:19:18 +00005568 for (unsigned j = 0; j != BytesPerElement; ++j)
5569 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
Owen Anderson9f944592009-08-11 20:47:22 +00005570 MVT::i32));
Chris Lattner19e90552006-04-14 05:19:18 +00005571 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005572
Owen Anderson9f944592009-08-11 20:47:22 +00005573 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Evan Chenga49de9d2009-02-25 22:49:59 +00005574 &ResultMask[0], ResultMask.size());
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005575 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), V1, V2, VPermMask);
Chris Lattner19e90552006-04-14 05:19:18 +00005576}
5577
Chris Lattner9754d142006-04-18 17:59:36 +00005578/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
5579/// altivec comparison. If it is, return true and fill in Opc/isDot with
5580/// information about the intrinsic.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005581static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner9754d142006-04-18 17:59:36 +00005582 bool &isDot) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00005583 unsigned IntrinsicID =
5584 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00005585 CompareOpc = -1;
5586 isDot = false;
5587 switch (IntrinsicID) {
5588 default: return false;
5589 // Comparison predicates.
Chris Lattner4211ca92006-04-14 06:01:58 +00005590 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
5591 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
5592 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
5593 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
5594 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
5595 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
5596 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
5597 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
5598 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
5599 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
5600 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
5601 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
5602 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00005603
Chris Lattner4211ca92006-04-14 06:01:58 +00005604 // Normal Comparisons.
5605 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
5606 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
5607 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
5608 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
5609 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
5610 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
5611 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
5612 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
5613 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
5614 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
5615 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
5616 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
5617 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
5618 }
Chris Lattner9754d142006-04-18 17:59:36 +00005619 return true;
5620}
5621
5622/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
5623/// lower, do it, otherwise return null.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005624SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005625 SelectionDAG &DAG) const {
Chris Lattner9754d142006-04-18 17:59:36 +00005626 // If this is a lowered altivec predicate compare, CompareOpc is set to the
5627 // opcode number of the comparison.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005628 SDLoc dl(Op);
Chris Lattner9754d142006-04-18 17:59:36 +00005629 int CompareOpc;
5630 bool isDot;
5631 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005632 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005633
Chris Lattner9754d142006-04-18 17:59:36 +00005634 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner4211ca92006-04-14 06:01:58 +00005635 if (!isDot) {
Dale Johannesenf80493b2009-02-05 22:07:54 +00005636 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner9fa851b2010-03-14 22:44:11 +00005637 Op.getOperand(1), Op.getOperand(2),
5638 DAG.getConstant(CompareOpc, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00005639 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner4211ca92006-04-14 06:01:58 +00005640 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005641
Chris Lattner4211ca92006-04-14 06:01:58 +00005642 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005643 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00005644 Op.getOperand(2), // LHS
5645 Op.getOperand(3), // RHS
Owen Anderson9f944592009-08-11 20:47:22 +00005646 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00005647 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00005648 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesenf80493b2009-02-05 22:07:54 +00005649 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005650
Chris Lattner4211ca92006-04-14 06:01:58 +00005651 // Now that we have the comparison, emit a copy from the CR to a GPR.
5652 // This is flagged to the above dot comparison.
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00005653 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
Owen Anderson9f944592009-08-11 20:47:22 +00005654 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelcf0da6c2009-02-17 22:15:04 +00005655 CompNode.getValue(1));
5656
Chris Lattner4211ca92006-04-14 06:01:58 +00005657 // Unpack the result based on how the target uses it.
5658 unsigned BitNo; // Bit # of CR6.
5659 bool InvertBit; // Invert result?
Dan Gohmaneffb8942008-09-12 16:56:44 +00005660 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner4211ca92006-04-14 06:01:58 +00005661 default: // Can't happen, don't crash on invalid number though.
5662 case 0: // Return the value of the EQ bit of CR6.
5663 BitNo = 0; InvertBit = false;
5664 break;
5665 case 1: // Return the inverted value of the EQ bit of CR6.
5666 BitNo = 0; InvertBit = true;
5667 break;
5668 case 2: // Return the value of the LT bit of CR6.
5669 BitNo = 2; InvertBit = false;
5670 break;
5671 case 3: // Return the inverted value of the LT bit of CR6.
5672 BitNo = 2; InvertBit = true;
5673 break;
5674 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00005675
Chris Lattner4211ca92006-04-14 06:01:58 +00005676 // Shift the bit into the low position.
Owen Anderson9f944592009-08-11 20:47:22 +00005677 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
5678 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00005679 // Isolate the bit.
Owen Anderson9f944592009-08-11 20:47:22 +00005680 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
5681 DAG.getConstant(1, MVT::i32));
Scott Michelcf0da6c2009-02-17 22:15:04 +00005682
Chris Lattner4211ca92006-04-14 06:01:58 +00005683 // If we are supposed to, toggle the bit.
5684 if (InvertBit)
Owen Anderson9f944592009-08-11 20:47:22 +00005685 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
5686 DAG.getConstant(1, MVT::i32));
Chris Lattner4211ca92006-04-14 06:01:58 +00005687 return Flags;
5688}
5689
Scott Michelcf0da6c2009-02-17 22:15:04 +00005690SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005691 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005692 SDLoc dl(Op);
Chris Lattner4211ca92006-04-14 06:01:58 +00005693 // Create a stack slot that is 16-byte aligned.
5694 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene1fbe0542009-11-12 20:49:22 +00005695 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Dale Johannesen81bfca72010-05-03 22:59:34 +00005696 EVT PtrVT = getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005697 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005698
Chris Lattner4211ca92006-04-14 06:01:58 +00005699 // Store the input value into Value#0 of the stack slot.
Dale Johannesen021052a2009-02-04 20:06:27 +00005700 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00005701 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene87a5abe2010-02-15 16:56:53 +00005702 false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00005703 // Load it out.
Chris Lattner7727d052010-09-21 06:44:06 +00005704 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00005705 false, false, false, 0);
Chris Lattner4211ca92006-04-14 06:01:58 +00005706}
5707
Dan Gohman21cea8a2010-04-17 15:26:15 +00005708SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005709 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00005710 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005711 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005712
Owen Anderson9f944592009-08-11 20:47:22 +00005713 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
5714 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005715
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005716 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005717 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005718
Chris Lattner7e4398742006-04-18 03:43:48 +00005719 // Shrinkify inputs to v8i16.
Wesley Peck527da1b2010-11-23 03:31:01 +00005720 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
5721 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
5722 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005723
Chris Lattner7e4398742006-04-18 03:43:48 +00005724 // Low parts multiplied together, generating 32-bit results (we ignore the
5725 // top parts).
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005726 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson9f944592009-08-11 20:47:22 +00005727 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005728
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005729 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson9f944592009-08-11 20:47:22 +00005730 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner7e4398742006-04-18 03:43:48 +00005731 // Shift the high parts up 16 bits.
Scott Michelcf0da6c2009-02-17 22:15:04 +00005732 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005733 Neg16, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00005734 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
5735 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005736 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005737
Owen Anderson9f944592009-08-11 20:47:22 +00005738 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner7e4398742006-04-18 03:43:48 +00005739
Chris Lattner96d50482006-04-18 04:28:57 +00005740 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesen9f3f72f2009-02-06 01:31:28 +00005741 LHS, RHS, Zero, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00005742 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005743 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005744
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005745 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005746 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson9f944592009-08-11 20:47:22 +00005747 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00005748 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005749
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005750 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00005751 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson9f944592009-08-11 20:47:22 +00005752 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peck527da1b2010-11-23 03:31:01 +00005753 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005754
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005755 // Merge the results together.
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005756 int Ops[16];
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005757 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +00005758 Ops[i*2 ] = 2*i+1;
5759 Ops[i*2+1] = 2*i+1+16;
Chris Lattnerd6d82aa2006-04-18 03:57:35 +00005760 }
Owen Anderson9f944592009-08-11 20:47:22 +00005761 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner7e4398742006-04-18 03:43:48 +00005762 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005763 llvm_unreachable("Unknown mul to lower!");
Chris Lattner7e4398742006-04-18 03:43:48 +00005764 }
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005765}
5766
Chris Lattnerf3d06c62005-08-26 00:52:45 +00005767/// LowerOperation - Provide custom lowering hooks for some operations.
5768///
Dan Gohman21cea8a2010-04-17 15:26:15 +00005769SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerf3d06c62005-08-26 00:52:45 +00005770 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005771 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner4211ca92006-04-14 06:01:58 +00005772 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilsonf84f7102009-11-04 21:31:18 +00005773 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00005774 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackye3f15c982012-06-04 17:36:38 +00005775 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman4ca2ea52006-04-22 18:53:45 +00005776 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner4211ca92006-04-14 06:01:58 +00005777 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sandsa0984362011-09-06 13:37:06 +00005778 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
5779 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005780 case ISD::VASTART:
Dan Gohman31ae5862010-04-17 14:41:14 +00005781 return LowerVASTART(Op, DAG, PPCSubTarget);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005782
5783 case ISD::VAARG:
Dan Gohman31ae5862010-04-17 14:41:14 +00005784 return LowerVAARG(Op, DAG, PPCSubTarget);
Nicolas Geoffray23710a72007-04-03 13:59:52 +00005785
Roman Divackyc3825df2013-07-25 21:36:47 +00005786 case ISD::VACOPY:
5787 return LowerVACOPY(Op, DAG, PPCSubTarget);
5788
Jim Laskeye4f4d042006-12-04 22:04:42 +00005789 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, PPCSubTarget);
Chris Lattner43df5b32007-02-25 05:34:32 +00005790 case ISD::DYNAMIC_STACKALLOC:
5791 return LowerDYNAMIC_STACKALLOC(Op, DAG, PPCSubTarget);
Evan Cheng51096af2008-04-19 01:30:48 +00005792
Hal Finkel756810f2013-03-21 21:37:52 +00005793 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
5794 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
5795
Chris Lattner4211ca92006-04-14 06:01:58 +00005796 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen37bc85f2009-06-04 20:53:52 +00005797 case ISD::FP_TO_UINT:
5798 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005799 SDLoc(Op));
Hal Finkelf6d45f22013-04-01 17:52:07 +00005800 case ISD::UINT_TO_FP:
5801 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman9ba4d762008-01-31 00:41:03 +00005802 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00005803
Chris Lattner4211ca92006-04-14 06:01:58 +00005804 // Lower 64-bit shifts.
Chris Lattner601b8652006-09-20 03:47:40 +00005805 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
5806 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
5807 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattner4a66d692006-03-22 05:30:33 +00005808
Chris Lattner4211ca92006-04-14 06:01:58 +00005809 // Vector-related lowering.
5810 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
5811 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
5812 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
5813 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Chris Lattnera2cae1b2006-04-18 03:24:30 +00005814 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005815
Hal Finkel25c19922013-05-15 21:37:41 +00005816 // For counter-based loop handling.
5817 case ISD::INTRINSIC_W_CHAIN: return SDValue();
5818
Chris Lattnerf6a81562007-12-08 06:59:59 +00005819 // Frame & Return address.
5820 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00005821 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnere675a082005-08-31 20:23:54 +00005822 }
Chris Lattnerf3d06c62005-08-26 00:52:45 +00005823}
5824
Duncan Sands6ed40142008-12-01 11:39:25 +00005825void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
5826 SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00005827 SelectionDAG &DAG) const {
Roman Divacky4394e682011-06-28 15:30:42 +00005828 const TargetMachine &TM = getTargetMachine();
Andrew Trickef9de2a2013-05-25 02:42:55 +00005829 SDLoc dl(N);
Chris Lattner57ee7c62007-11-28 18:44:47 +00005830 switch (N->getOpcode()) {
Duncan Sands4068a7f2008-10-28 15:00:32 +00005831 default:
Craig Toppere55c5562012-02-07 02:50:20 +00005832 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkel25c19922013-05-15 21:37:41 +00005833 case ISD::INTRINSIC_W_CHAIN: {
5834 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
5835 Intrinsic::ppc_is_decremented_ctr_nonzero)
5836 break;
5837
5838 assert(N->getValueType(0) == MVT::i1 &&
5839 "Unexpected result type for CTR decrement intrinsic");
Matt Arsenault758659232013-05-18 00:21:46 +00005840 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
Hal Finkel25c19922013-05-15 21:37:41 +00005841 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
5842 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
5843 N->getOperand(1));
5844
5845 Results.push_back(NewInt);
5846 Results.push_back(NewInt.getValue(1));
5847 break;
5848 }
Roman Divacky4394e682011-06-28 15:30:42 +00005849 case ISD::VAARG: {
5850 if (!TM.getSubtarget<PPCSubtarget>().isSVR4ABI()
5851 || TM.getSubtarget<PPCSubtarget>().isPPC64())
5852 return;
5853
5854 EVT VT = N->getValueType(0);
5855
5856 if (VT == MVT::i64) {
5857 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, PPCSubTarget);
5858
5859 Results.push_back(NewNode);
5860 Results.push_back(NewNode.getValue(1));
5861 }
5862 return;
5863 }
Duncan Sands6ed40142008-12-01 11:39:25 +00005864 case ISD::FP_ROUND_INREG: {
Owen Anderson9f944592009-08-11 20:47:22 +00005865 assert(N->getValueType(0) == MVT::ppcf128);
5866 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelcf0da6c2009-02-17 22:15:04 +00005867 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005868 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00005869 DAG.getIntPtrConstant(0));
Dale Johannesenf80493b2009-02-05 22:07:54 +00005870 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00005871 MVT::f64, N->getOperand(0),
Duncan Sands6ed40142008-12-01 11:39:25 +00005872 DAG.getIntPtrConstant(1));
5873
Ulrich Weigand874fc622013-03-26 10:56:22 +00005874 // Add the two halves of the long double in round-to-zero mode.
5875 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands6ed40142008-12-01 11:39:25 +00005876
5877 // We know the low half is about to be thrown away, so just use something
5878 // convenient.
Owen Anderson9f944592009-08-11 20:47:22 +00005879 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesenf80493b2009-02-05 22:07:54 +00005880 FPreg, FPreg));
Duncan Sands6ed40142008-12-01 11:39:25 +00005881 return;
Duncan Sands2a287912008-07-19 16:26:02 +00005882 }
Duncan Sands6ed40142008-12-01 11:39:25 +00005883 case ISD::FP_TO_SINT:
Bill Schmidt41221692013-07-09 18:50:20 +00005884 // LowerFP_TO_INT() can only handle f32 and f64.
5885 if (N->getOperand(0).getValueType() == MVT::ppcf128)
5886 return;
Dale Johannesen37bc85f2009-06-04 20:53:52 +00005887 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands6ed40142008-12-01 11:39:25 +00005888 return;
Chris Lattner57ee7c62007-11-28 18:44:47 +00005889 }
5890}
5891
5892
Chris Lattner4211ca92006-04-14 06:01:58 +00005893//===----------------------------------------------------------------------===//
5894// Other Lowering Code
5895//===----------------------------------------------------------------------===//
5896
Chris Lattner9b577f12005-08-26 21:23:58 +00005897MachineBasicBlock *
Dale Johannesend4eb0522008-08-25 22:34:37 +00005898PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman747e55b2009-02-07 16:15:20 +00005899 bool is64bit, unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005900 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesend4eb0522008-08-25 22:34:37 +00005901 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5902
5903 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5904 MachineFunction *F = BB->getParent();
5905 MachineFunction::iterator It = BB;
5906 ++It;
5907
5908 unsigned dest = MI->getOperand(0).getReg();
5909 unsigned ptrA = MI->getOperand(1).getReg();
5910 unsigned ptrB = MI->getOperand(2).getReg();
5911 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00005912 DebugLoc dl = MI->getDebugLoc();
Dale Johannesend4eb0522008-08-25 22:34:37 +00005913
5914 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5915 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5916 F->insert(It, loopMBB);
5917 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00005918 exitMBB->splice(exitMBB->begin(), BB,
5919 llvm::next(MachineBasicBlock::iterator(MI)),
5920 BB->end());
5921 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00005922
5923 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005924 unsigned TmpReg = (!BinOpcode) ? incr :
5925 RegInfo.createVirtualRegister(
Dale Johannesenbc698292008-09-02 20:30:23 +00005926 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5927 (const TargetRegisterClass *) &PPC::GPRCRegClass);
Dale Johannesend4eb0522008-08-25 22:34:37 +00005928
5929 // thisMBB:
5930 // ...
5931 // fallthrough --> loopMBB
5932 BB->addSuccessor(loopMBB);
5933
5934 // loopMBB:
5935 // l[wd]arx dest, ptr
5936 // add r0, dest, incr
5937 // st[wd]cx. r0, ptr
5938 // bne- loopMBB
5939 // fallthrough --> exitMBB
5940 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00005941 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesend4eb0522008-08-25 22:34:37 +00005942 .addReg(ptrA).addReg(ptrB);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005943 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00005944 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
5945 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesend4eb0522008-08-25 22:34:37 +00005946 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00005947 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00005948 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesend4eb0522008-08-25 22:34:37 +00005949 BB->addSuccessor(loopMBB);
5950 BB->addSuccessor(exitMBB);
5951
5952 // exitMBB:
5953 // ...
5954 BB = exitMBB;
5955 return BB;
5956}
5957
5958MachineBasicBlock *
Scott Michelcf0da6c2009-02-17 22:15:04 +00005959PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesena32affb2008-08-28 17:53:09 +00005960 MachineBasicBlock *BB,
5961 bool is8bit, // operation
Dan Gohman747e55b2009-02-07 16:15:20 +00005962 unsigned BinOpcode) const {
Dale Johannesenf0a88d62008-08-29 18:29:46 +00005963 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesena32affb2008-08-28 17:53:09 +00005964 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5965 // In 64 bit mode we have to use 64 bits for addresses, even though the
5966 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
5967 // registers without caring whether they're 32 or 64, but here we're
5968 // doing actual arithmetic on the addresses.
5969 bool is64bit = PPCSubTarget.isPPC64();
Hal Finkelf70c41e2013-03-21 23:45:03 +00005970 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesena32affb2008-08-28 17:53:09 +00005971
5972 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5973 MachineFunction *F = BB->getParent();
5974 MachineFunction::iterator It = BB;
5975 ++It;
5976
5977 unsigned dest = MI->getOperand(0).getReg();
5978 unsigned ptrA = MI->getOperand(1).getReg();
5979 unsigned ptrB = MI->getOperand(2).getReg();
5980 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00005981 DebugLoc dl = MI->getDebugLoc();
Dale Johannesena32affb2008-08-28 17:53:09 +00005982
5983 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5984 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5985 F->insert(It, loopMBB);
5986 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00005987 exitMBB->splice(exitMBB->begin(), BB,
5988 llvm::next(MachineBasicBlock::iterator(MI)),
5989 BB->end());
5990 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesena32affb2008-08-28 17:53:09 +00005991
5992 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelcf0da6c2009-02-17 22:15:04 +00005993 const TargetRegisterClass *RC =
Dale Johannesenbc698292008-09-02 20:30:23 +00005994 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5995 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesena32affb2008-08-28 17:53:09 +00005996 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
5997 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
5998 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
5999 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
6000 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
6001 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
6002 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
6003 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
6004 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
6005 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006006 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00006007 unsigned Ptr1Reg;
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006008 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesena32affb2008-08-28 17:53:09 +00006009
6010 // thisMBB:
6011 // ...
6012 // fallthrough --> loopMBB
6013 BB->addSuccessor(loopMBB);
6014
6015 // The 4-byte load must be aligned, while a char or short may be
6016 // anywhere in the word. Hence all this nasty bookkeeping code.
6017 // add ptr1, ptrA, ptrB [copy if ptrA==0]
6018 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00006019 // xori shift, shift1, 24 [16]
Dale Johannesena32affb2008-08-28 17:53:09 +00006020 // rlwinm ptr, ptr1, 0, 0, 29
6021 // slw incr2, incr, shift
6022 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
6023 // slw mask, mask2, shift
6024 // loopMBB:
Dale Johannesen340d2642008-08-30 00:08:53 +00006025 // lwarx tmpDest, ptr
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006026 // add tmp, tmpDest, incr2
6027 // andc tmp2, tmpDest, mask
Dale Johannesena32affb2008-08-28 17:53:09 +00006028 // and tmp3, tmp, mask
6029 // or tmp4, tmp3, tmp2
Dale Johannesen340d2642008-08-30 00:08:53 +00006030 // stwcx. tmp4, ptr
Dale Johannesena32affb2008-08-28 17:53:09 +00006031 // bne- loopMBB
6032 // fallthrough --> exitMBB
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006033 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006034 if (ptrA != ZeroReg) {
Dale Johannesena32affb2008-08-28 17:53:09 +00006035 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006036 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006037 .addReg(ptrA).addReg(ptrB);
6038 } else {
6039 Ptr1Reg = ptrB;
6040 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006041 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006042 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006043 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006044 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
6045 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006046 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006047 .addReg(Ptr1Reg).addImm(0).addImm(61);
6048 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00006049 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006050 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006051 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006052 .addReg(incr).addReg(ShiftReg);
6053 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006054 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesena32affb2008-08-28 17:53:09 +00006055 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00006056 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6057 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesena32affb2008-08-28 17:53:09 +00006058 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006059 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006060 .addReg(Mask2Reg).addReg(ShiftReg);
6061
6062 BB = loopMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006063 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006064 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006065 if (BinOpcode)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006066 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006067 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006068 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006069 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006070 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006071 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006072 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesena32affb2008-08-28 17:53:09 +00006073 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidt3581cd42013-04-02 18:37:08 +00006074 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006075 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006076 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelcf0da6c2009-02-17 22:15:04 +00006077 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesena32affb2008-08-28 17:53:09 +00006078 BB->addSuccessor(loopMBB);
6079 BB->addSuccessor(exitMBB);
6080
6081 // exitMBB:
6082 // ...
6083 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00006084 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
6085 .addReg(ShiftReg);
Dale Johannesena32affb2008-08-28 17:53:09 +00006086 return BB;
6087}
6088
Hal Finkel756810f2013-03-21 21:37:52 +00006089llvm::MachineBasicBlock*
6090PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
6091 MachineBasicBlock *MBB) const {
6092 DebugLoc DL = MI->getDebugLoc();
6093 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6094
6095 MachineFunction *MF = MBB->getParent();
6096 MachineRegisterInfo &MRI = MF->getRegInfo();
6097
6098 const BasicBlock *BB = MBB->getBasicBlock();
6099 MachineFunction::iterator I = MBB;
6100 ++I;
6101
6102 // Memory Reference
6103 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6104 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6105
6106 unsigned DstReg = MI->getOperand(0).getReg();
6107 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
6108 assert(RC->hasType(MVT::i32) && "Invalid destination!");
6109 unsigned mainDstReg = MRI.createVirtualRegister(RC);
6110 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
6111
6112 MVT PVT = getPointerTy();
6113 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6114 "Invalid Pointer Size!");
6115 // For v = setjmp(buf), we generate
6116 //
6117 // thisMBB:
6118 // SjLjSetup mainMBB
6119 // bl mainMBB
6120 // v_restore = 1
6121 // b sinkMBB
6122 //
6123 // mainMBB:
6124 // buf[LabelOffset] = LR
6125 // v_main = 0
6126 //
6127 // sinkMBB:
6128 // v = phi(main, restore)
6129 //
6130
6131 MachineBasicBlock *thisMBB = MBB;
6132 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
6133 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
6134 MF->insert(I, mainMBB);
6135 MF->insert(I, sinkMBB);
6136
6137 MachineInstrBuilder MIB;
6138
6139 // Transfer the remainder of BB and its successor edges to sinkMBB.
6140 sinkMBB->splice(sinkMBB->begin(), MBB,
6141 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
6142 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
6143
6144 // Note that the structure of the jmp_buf used here is not compatible
6145 // with that used by libc, and is not designed to be. Specifically, it
6146 // stores only those 'reserved' registers that LLVM does not otherwise
6147 // understand how to spill. Also, by convention, by the time this
6148 // intrinsic is called, Clang has already stored the frame address in the
6149 // first slot of the buffer and stack address in the third. Following the
6150 // X86 target code, we'll store the jump address in the second slot. We also
6151 // need to save the TOC pointer (R2) to handle jumps between shared
6152 // libraries, and that will be stored in the fourth slot. The thread
6153 // identifier (R13) is not affected.
6154
6155 // thisMBB:
6156 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6157 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00006158 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00006159
6160 // Prepare IP either in reg.
6161 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
6162 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
6163 unsigned BufReg = MI->getOperand(1).getReg();
6164
6165 if (PPCSubTarget.isPPC64() && PPCSubTarget.isSVR4ABI()) {
6166 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
6167 .addReg(PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006168 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006169 .addReg(BufReg);
Hal Finkel756810f2013-03-21 21:37:52 +00006170 MIB.setMemRefs(MMOBegin, MMOEnd);
6171 }
6172
Hal Finkelf05d6c72013-07-17 23:50:51 +00006173 // Naked functions never have a base pointer, and so we use r1. For all
6174 // other functions, this decision must be delayed until during PEI.
6175 unsigned BaseReg;
6176 if (MF->getFunction()->getAttributes().hasAttribute(
6177 AttributeSet::FunctionIndex, Attribute::Naked))
6178 BaseReg = PPCSubTarget.isPPC64() ? PPC::X1 : PPC::R1;
6179 else
6180 BaseReg = PPCSubTarget.isPPC64() ? PPC::BP8 : PPC::BP;
6181
6182 MIB = BuildMI(*thisMBB, MI, DL,
6183 TII->get(PPCSubTarget.isPPC64() ? PPC::STD : PPC::STW))
6184 .addReg(BaseReg)
6185 .addImm(BPOffset)
6186 .addReg(BufReg);
6187 MIB.setMemRefs(MMOBegin, MMOEnd);
6188
Hal Finkel756810f2013-03-21 21:37:52 +00006189 // Setup
Hal Finkele5680b32013-04-04 22:55:54 +00006190 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Bill Wendling5e7656b2013-06-07 07:55:53 +00006191 const PPCRegisterInfo *TRI =
6192 static_cast<const PPCRegisterInfo*>(getTargetMachine().getRegisterInfo());
6193 MIB.addRegMask(TRI->getNoPreservedMask());
Hal Finkel756810f2013-03-21 21:37:52 +00006194
6195 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
6196
6197 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
6198 .addMBB(mainMBB);
6199 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
6200
6201 thisMBB->addSuccessor(mainMBB, /* weight */ 0);
6202 thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
6203
6204 // mainMBB:
6205 // mainDstReg = 0
6206 MIB = BuildMI(mainMBB, DL,
6207 TII->get(PPCSubTarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
6208
6209 // Store IP
6210 if (PPCSubTarget.isPPC64()) {
6211 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
6212 .addReg(LabelReg)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006213 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006214 .addReg(BufReg);
6215 } else {
6216 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
6217 .addReg(LabelReg)
6218 .addImm(LabelOffset)
6219 .addReg(BufReg);
6220 }
6221
6222 MIB.setMemRefs(MMOBegin, MMOEnd);
6223
6224 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
6225 mainMBB->addSuccessor(sinkMBB);
6226
6227 // sinkMBB:
6228 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
6229 TII->get(PPC::PHI), DstReg)
6230 .addReg(mainDstReg).addMBB(mainMBB)
6231 .addReg(restoreDstReg).addMBB(thisMBB);
6232
6233 MI->eraseFromParent();
6234 return sinkMBB;
6235}
6236
6237MachineBasicBlock *
6238PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
6239 MachineBasicBlock *MBB) const {
6240 DebugLoc DL = MI->getDebugLoc();
6241 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6242
6243 MachineFunction *MF = MBB->getParent();
6244 MachineRegisterInfo &MRI = MF->getRegInfo();
6245
6246 // Memory Reference
6247 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6248 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6249
6250 MVT PVT = getPointerTy();
6251 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6252 "Invalid Pointer Size!");
6253
6254 const TargetRegisterClass *RC =
6255 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
6256 unsigned Tmp = MRI.createVirtualRegister(RC);
6257 // Since FP is only updated here but NOT referenced, it's treated as GPR.
6258 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
6259 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
Hal Finkelf05d6c72013-07-17 23:50:51 +00006260 unsigned BP = (PVT == MVT::i64) ? PPC::X30 : PPC::R30;
Hal Finkel756810f2013-03-21 21:37:52 +00006261
6262 MachineInstrBuilder MIB;
6263
6264 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6265 const int64_t SPOffset = 2 * PVT.getStoreSize();
6266 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkelf05d6c72013-07-17 23:50:51 +00006267 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel756810f2013-03-21 21:37:52 +00006268
6269 unsigned BufReg = MI->getOperand(0).getReg();
6270
6271 // Reload FP (the jumped-to function may not have had a
6272 // frame pointer, and if so, then its r31 will be restored
6273 // as necessary).
6274 if (PVT == MVT::i64) {
6275 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
6276 .addImm(0)
6277 .addReg(BufReg);
6278 } else {
6279 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
6280 .addImm(0)
6281 .addReg(BufReg);
6282 }
6283 MIB.setMemRefs(MMOBegin, MMOEnd);
6284
6285 // Reload IP
6286 if (PVT == MVT::i64) {
6287 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006288 .addImm(LabelOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006289 .addReg(BufReg);
6290 } else {
6291 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
6292 .addImm(LabelOffset)
6293 .addReg(BufReg);
6294 }
6295 MIB.setMemRefs(MMOBegin, MMOEnd);
6296
6297 // Reload SP
6298 if (PVT == MVT::i64) {
6299 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006300 .addImm(SPOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006301 .addReg(BufReg);
6302 } else {
6303 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
6304 .addImm(SPOffset)
6305 .addReg(BufReg);
6306 }
6307 MIB.setMemRefs(MMOBegin, MMOEnd);
6308
Hal Finkelf05d6c72013-07-17 23:50:51 +00006309 // Reload BP
6310 if (PVT == MVT::i64) {
6311 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
6312 .addImm(BPOffset)
6313 .addReg(BufReg);
6314 } else {
6315 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
6316 .addImm(BPOffset)
6317 .addReg(BufReg);
6318 }
6319 MIB.setMemRefs(MMOBegin, MMOEnd);
Hal Finkel756810f2013-03-21 21:37:52 +00006320
6321 // Reload TOC
6322 if (PVT == MVT::i64 && PPCSubTarget.isSVR4ABI()) {
6323 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand9d980cb2013-05-16 17:58:02 +00006324 .addImm(TOCOffset)
Hal Finkel756810f2013-03-21 21:37:52 +00006325 .addReg(BufReg);
6326
6327 MIB.setMemRefs(MMOBegin, MMOEnd);
6328 }
6329
6330 // Jump
6331 BuildMI(*MBB, MI, DL,
6332 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
6333 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
6334
6335 MI->eraseFromParent();
6336 return MBB;
6337}
6338
Dale Johannesena32affb2008-08-28 17:53:09 +00006339MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00006340PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00006341 MachineBasicBlock *BB) const {
Hal Finkel756810f2013-03-21 21:37:52 +00006342 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
6343 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
6344 return emitEHSjLjSetJmp(MI, BB);
6345 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
6346 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
6347 return emitEHSjLjLongJmp(MI, BB);
6348 }
6349
Evan Cheng20350c42006-11-27 23:37:22 +00006350 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng32e376f2008-07-12 02:23:19 +00006351
6352 // To "insert" these instructions we actually have to insert their
6353 // control-flow patterns.
Chris Lattner9b577f12005-08-26 21:23:58 +00006354 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman3b460302008-07-07 23:14:23 +00006355 MachineFunction::iterator It = BB;
Chris Lattner9b577f12005-08-26 21:23:58 +00006356 ++It;
Evan Cheng32e376f2008-07-12 02:23:19 +00006357
Dan Gohman3b460302008-07-07 23:14:23 +00006358 MachineFunction *F = BB->getParent();
Evan Cheng32e376f2008-07-12 02:23:19 +00006359
Hal Finkel460e94d2012-06-22 23:10:08 +00006360 if (PPCSubTarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6361 MI->getOpcode() == PPC::SELECT_CC_I8)) {
Hal Finkeled6a2852013-04-05 23:29:01 +00006362 SmallVector<MachineOperand, 2> Cond;
6363 Cond.push_back(MI->getOperand(4));
6364 Cond.push_back(MI->getOperand(1));
6365
Hal Finkel460e94d2012-06-22 23:10:08 +00006366 DebugLoc dl = MI->getDebugLoc();
Bill Wendling5e7656b2013-06-07 07:55:53 +00006367 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6368 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
6369 Cond, MI->getOperand(2).getReg(),
6370 MI->getOperand(3).getReg());
Hal Finkel460e94d2012-06-22 23:10:08 +00006371 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6372 MI->getOpcode() == PPC::SELECT_CC_I8 ||
6373 MI->getOpcode() == PPC::SELECT_CC_F4 ||
6374 MI->getOpcode() == PPC::SELECT_CC_F8 ||
6375 MI->getOpcode() == PPC::SELECT_CC_VRRC) {
6376
Evan Cheng32e376f2008-07-12 02:23:19 +00006377
6378 // The incoming instruction knows the destination vreg to set, the
6379 // condition code register to branch on, the true/false values to
6380 // select between, and a branch opcode to use.
6381
6382 // thisMBB:
6383 // ...
6384 // TrueVal = ...
6385 // cmpTY ccX, r1, r2
6386 // bCC copy1MBB
6387 // fallthrough --> copy0MBB
6388 MachineBasicBlock *thisMBB = BB;
6389 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
6390 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
6391 unsigned SelectPred = MI->getOperand(4).getImm();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006392 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00006393 F->insert(It, copy0MBB);
6394 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006395
6396 // Transfer the remainder of BB and its successor edges to sinkMBB.
6397 sinkMBB->splice(sinkMBB->begin(), BB,
6398 llvm::next(MachineBasicBlock::iterator(MI)),
6399 BB->end());
6400 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
6401
Evan Cheng32e376f2008-07-12 02:23:19 +00006402 // Next, add the true and fallthrough blocks as its successors.
6403 BB->addSuccessor(copy0MBB);
6404 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006405
Dan Gohman34396292010-07-06 20:24:04 +00006406 BuildMI(BB, dl, TII->get(PPC::BCC))
6407 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
6408
Evan Cheng32e376f2008-07-12 02:23:19 +00006409 // copy0MBB:
6410 // %FalseValue = ...
6411 // # fallthrough to sinkMBB
6412 BB = copy0MBB;
Scott Michelcf0da6c2009-02-17 22:15:04 +00006413
Evan Cheng32e376f2008-07-12 02:23:19 +00006414 // Update machine-CFG edges
6415 BB->addSuccessor(sinkMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006416
Evan Cheng32e376f2008-07-12 02:23:19 +00006417 // sinkMBB:
6418 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
6419 // ...
6420 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00006421 BuildMI(*BB, BB->begin(), dl,
6422 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng32e376f2008-07-12 02:23:19 +00006423 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
6424 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
6425 }
Dale Johannesena32affb2008-08-28 17:53:09 +00006426 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
6427 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
6428 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
6429 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006430 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
6431 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
6432 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
6433 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006434
6435 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
6436 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
6437 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
6438 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006439 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
6440 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
6441 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
6442 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006443
6444 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
6445 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
6446 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
6447 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006448 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
6449 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
6450 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
6451 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006452
6453 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
6454 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
6455 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
6456 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006457 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
6458 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
6459 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
6460 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006461
6462 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006463 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ANDC);
Dale Johannesena32affb2008-08-28 17:53:09 +00006464 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006465 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006466 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006467 BB = EmitAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006468 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Dale Johannesene5ca04e2008-09-11 02:15:03 +00006469 BB = EmitAtomicBinary(MI, BB, true, PPC::ANDC8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006470
6471 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
6472 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
6473 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
6474 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesend4eb0522008-08-25 22:34:37 +00006475 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
6476 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
6477 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
6478 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesena32affb2008-08-28 17:53:09 +00006479
Dale Johannesenf0a88d62008-08-29 18:29:46 +00006480 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
6481 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
6482 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
6483 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
6484 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
6485 BB = EmitAtomicBinary(MI, BB, false, 0);
6486 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
6487 BB = EmitAtomicBinary(MI, BB, true, 0);
6488
Evan Cheng32e376f2008-07-12 02:23:19 +00006489 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
6490 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
6491 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
6492
6493 unsigned dest = MI->getOperand(0).getReg();
6494 unsigned ptrA = MI->getOperand(1).getReg();
6495 unsigned ptrB = MI->getOperand(2).getReg();
6496 unsigned oldval = MI->getOperand(3).getReg();
6497 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006498 DebugLoc dl = MI->getDebugLoc();
Evan Cheng32e376f2008-07-12 02:23:19 +00006499
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006500 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6501 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6502 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006503 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006504 F->insert(It, loop1MBB);
6505 F->insert(It, loop2MBB);
6506 F->insert(It, midMBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006507 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006508 exitMBB->splice(exitMBB->begin(), BB,
6509 llvm::next(MachineBasicBlock::iterator(MI)),
6510 BB->end());
6511 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006512
6513 // thisMBB:
6514 // ...
6515 // fallthrough --> loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006516 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006517
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006518 // loop1MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00006519 // l[wd]arx dest, ptr
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006520 // cmp[wd] dest, oldval
6521 // bne- midMBB
6522 // loop2MBB:
Evan Cheng32e376f2008-07-12 02:23:19 +00006523 // st[wd]cx. newval, ptr
6524 // bne- loopMBB
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006525 // b exitBB
6526 // midMBB:
6527 // st[wd]cx. dest, ptr
6528 // exitBB:
6529 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006530 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng32e376f2008-07-12 02:23:19 +00006531 .addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006532 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng32e376f2008-07-12 02:23:19 +00006533 .addReg(oldval).addReg(dest);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006534 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006535 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6536 BB->addSuccessor(loop2MBB);
6537 BB->addSuccessor(midMBB);
6538
6539 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006540 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng32e376f2008-07-12 02:23:19 +00006541 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006542 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006543 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006544 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006545 BB->addSuccessor(loop1MBB);
Evan Cheng32e376f2008-07-12 02:23:19 +00006546 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006547
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006548 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006549 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen166d6cb2008-08-25 18:53:26 +00006550 .addReg(dest).addReg(ptrA).addReg(ptrB);
6551 BB->addSuccessor(exitMBB);
6552
Evan Cheng32e376f2008-07-12 02:23:19 +00006553 // exitMBB:
6554 // ...
6555 BB = exitMBB;
Dale Johannesen340d2642008-08-30 00:08:53 +00006556 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
6557 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
6558 // We must use 64-bit registers for addresses when targeting 64-bit,
6559 // since we're actually doing arithmetic on them. Other registers
6560 // can be 32-bit.
6561 bool is64bit = PPCSubTarget.isPPC64();
6562 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
6563
6564 unsigned dest = MI->getOperand(0).getReg();
6565 unsigned ptrA = MI->getOperand(1).getReg();
6566 unsigned ptrB = MI->getOperand(2).getReg();
6567 unsigned oldval = MI->getOperand(3).getReg();
6568 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesene9f623e2009-02-13 02:27:39 +00006569 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen340d2642008-08-30 00:08:53 +00006570
6571 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6572 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6573 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
6574 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6575 F->insert(It, loop1MBB);
6576 F->insert(It, loop2MBB);
6577 F->insert(It, midMBB);
6578 F->insert(It, exitMBB);
Dan Gohman34396292010-07-06 20:24:04 +00006579 exitMBB->splice(exitMBB->begin(), BB,
6580 llvm::next(MachineBasicBlock::iterator(MI)),
6581 BB->end());
6582 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen340d2642008-08-30 00:08:53 +00006583
6584 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelcf0da6c2009-02-17 22:15:04 +00006585 const TargetRegisterClass *RC =
Dale Johannesenbc698292008-09-02 20:30:23 +00006586 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
6587 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesen340d2642008-08-30 00:08:53 +00006588 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
6589 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
6590 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
6591 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
6592 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
6593 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
6594 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
6595 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
6596 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
6597 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
6598 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
6599 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
6600 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
6601 unsigned Ptr1Reg;
6602 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkelf70c41e2013-03-21 23:45:03 +00006603 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen340d2642008-08-30 00:08:53 +00006604 // thisMBB:
6605 // ...
6606 // fallthrough --> loopMBB
6607 BB->addSuccessor(loop1MBB);
6608
6609 // The 4-byte load must be aligned, while a char or short may be
6610 // anywhere in the word. Hence all this nasty bookkeeping code.
6611 // add ptr1, ptrA, ptrB [copy if ptrA==0]
6612 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesenbc698292008-09-02 20:30:23 +00006613 // xori shift, shift1, 24 [16]
Dale Johannesen340d2642008-08-30 00:08:53 +00006614 // rlwinm ptr, ptr1, 0, 0, 29
6615 // slw newval2, newval, shift
6616 // slw oldval2, oldval,shift
6617 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
6618 // slw mask, mask2, shift
6619 // and newval3, newval2, mask
6620 // and oldval3, oldval2, mask
6621 // loop1MBB:
6622 // lwarx tmpDest, ptr
6623 // and tmp, tmpDest, mask
6624 // cmpw tmp, oldval3
6625 // bne- midMBB
6626 // loop2MBB:
6627 // andc tmp2, tmpDest, mask
6628 // or tmp4, tmp2, newval3
6629 // stwcx. tmp4, ptr
6630 // bne- loop1MBB
6631 // b exitBB
6632 // midMBB:
6633 // stwcx. tmpDest, ptr
6634 // exitBB:
6635 // srw dest, tmpDest, shift
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006636 if (ptrA != ZeroReg) {
Dale Johannesen340d2642008-08-30 00:08:53 +00006637 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006638 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006639 .addReg(ptrA).addReg(ptrB);
6640 } else {
6641 Ptr1Reg = ptrB;
6642 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006643 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006644 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006645 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006646 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
6647 if (is64bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006648 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006649 .addReg(Ptr1Reg).addImm(0).addImm(61);
6650 else
Dale Johannesene9f623e2009-02-13 02:27:39 +00006651 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006652 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006653 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006654 .addReg(newval).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006655 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006656 .addReg(oldval).addReg(ShiftReg);
6657 if (is8bit)
Dale Johannesene9f623e2009-02-13 02:27:39 +00006658 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen340d2642008-08-30 00:08:53 +00006659 else {
Dale Johannesene9f623e2009-02-13 02:27:39 +00006660 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6661 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
6662 .addReg(Mask3Reg).addImm(65535);
Dale Johannesen340d2642008-08-30 00:08:53 +00006663 }
Dale Johannesene9f623e2009-02-13 02:27:39 +00006664 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006665 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006666 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006667 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006668 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesen340d2642008-08-30 00:08:53 +00006669 .addReg(OldVal2Reg).addReg(MaskReg);
6670
6671 BB = loop1MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006672 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006673 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006674 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
6675 .addReg(TmpDestReg).addReg(MaskReg);
6676 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesen340d2642008-08-30 00:08:53 +00006677 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006678 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00006679 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6680 BB->addSuccessor(loop2MBB);
6681 BB->addSuccessor(midMBB);
6682
6683 BB = loop2MBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006684 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
6685 .addReg(TmpDestReg).addReg(MaskReg);
6686 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
6687 .addReg(Tmp2Reg).addReg(NewVal3Reg);
6688 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006689 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006690 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen340d2642008-08-30 00:08:53 +00006691 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesene9f623e2009-02-13 02:27:39 +00006692 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen340d2642008-08-30 00:08:53 +00006693 BB->addSuccessor(loop1MBB);
6694 BB->addSuccessor(exitMBB);
Scott Michelcf0da6c2009-02-17 22:15:04 +00006695
Dale Johannesen340d2642008-08-30 00:08:53 +00006696 BB = midMBB;
Dale Johannesene9f623e2009-02-13 02:27:39 +00006697 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen7067bff2011-04-04 17:07:06 +00006698 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00006699 BB->addSuccessor(exitMBB);
6700
6701 // exitMBB:
6702 // ...
6703 BB = exitMBB;
Jakob Stoklund Olesen13ce2362011-04-04 17:57:29 +00006704 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
6705 .addReg(ShiftReg);
Ulrich Weigand874fc622013-03-26 10:56:22 +00006706 } else if (MI->getOpcode() == PPC::FADDrtz) {
6707 // This pseudo performs an FADD with rounding mode temporarily forced
6708 // to round-to-zero. We emit this via custom inserter since the FPSCR
6709 // is not modeled at the SelectionDAG level.
6710 unsigned Dest = MI->getOperand(0).getReg();
6711 unsigned Src1 = MI->getOperand(1).getReg();
6712 unsigned Src2 = MI->getOperand(2).getReg();
6713 DebugLoc dl = MI->getDebugLoc();
6714
6715 MachineRegisterInfo &RegInfo = F->getRegInfo();
6716 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
6717
6718 // Save FPSCR value.
6719 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
6720
6721 // Set rounding mode to round-to-zero.
6722 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
6723 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
6724
6725 // Perform addition.
6726 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
6727
6728 // Restore FPSCR value.
6729 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSF)).addImm(1).addReg(MFFSReg);
Dale Johannesen340d2642008-08-30 00:08:53 +00006730 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006731 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng32e376f2008-07-12 02:23:19 +00006732 }
Chris Lattner9b577f12005-08-26 21:23:58 +00006733
Dan Gohman34396292010-07-06 20:24:04 +00006734 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner9b577f12005-08-26 21:23:58 +00006735 return BB;
6736}
6737
Chris Lattner4211ca92006-04-14 06:01:58 +00006738//===----------------------------------------------------------------------===//
6739// Target Optimization Hooks
6740//===----------------------------------------------------------------------===//
6741
Hal Finkelb0c810f2013-04-03 17:44:56 +00006742SDValue PPCTargetLowering::DAGCombineFastRecip(SDValue Op,
6743 DAGCombinerInfo &DCI) const {
Hal Finkel2e103312013-04-03 04:01:11 +00006744 if (DCI.isAfterLegalizeVectorOps())
6745 return SDValue();
6746
Hal Finkelb0c810f2013-04-03 17:44:56 +00006747 EVT VT = Op.getValueType();
6748
6749 if ((VT == MVT::f32 && PPCSubTarget.hasFRES()) ||
6750 (VT == MVT::f64 && PPCSubTarget.hasFRE()) ||
6751 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel2e103312013-04-03 04:01:11 +00006752
6753 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6754 // For the reciprocal, we need to find the zero of the function:
6755 // F(X) = A X - 1 [which has a zero at X = 1/A]
6756 // =>
6757 // X_{i+1} = X_i (2 - A X_i) = X_i + X_i (1 - A X_i) [this second form
6758 // does not require additional intermediate precision]
6759
6760 // Convergence is quadratic, so we essentially double the number of digits
6761 // correct after every iteration. The minimum architected relative
6762 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6763 // 23 digits and double has 52 digits.
6764 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00006765 if (VT.getScalarType() == MVT::f64)
Hal Finkel2e103312013-04-03 04:01:11 +00006766 ++Iterations;
6767
6768 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006769 SDLoc dl(Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006770
6771 SDValue FPOne =
Hal Finkelb0c810f2013-04-03 17:44:56 +00006772 DAG.getConstantFP(1.0, VT.getScalarType());
6773 if (VT.isVector()) {
6774 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel2e103312013-04-03 04:01:11 +00006775 "Unknown vector type");
Hal Finkelb0c810f2013-04-03 17:44:56 +00006776 FPOne = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
Hal Finkel2e103312013-04-03 04:01:11 +00006777 FPOne, FPOne, FPOne, FPOne);
6778 }
6779
Hal Finkelb0c810f2013-04-03 17:44:56 +00006780 SDValue Est = DAG.getNode(PPCISD::FRE, dl, VT, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006781 DCI.AddToWorklist(Est.getNode());
6782
6783 // Newton iterations: Est = Est + Est (1 - Arg * Est)
6784 for (int i = 0; i < Iterations; ++i) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00006785 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Op, Est);
Hal Finkel2e103312013-04-03 04:01:11 +00006786 DCI.AddToWorklist(NewEst.getNode());
6787
Hal Finkelb0c810f2013-04-03 17:44:56 +00006788 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPOne, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006789 DCI.AddToWorklist(NewEst.getNode());
6790
Hal Finkelb0c810f2013-04-03 17:44:56 +00006791 NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006792 DCI.AddToWorklist(NewEst.getNode());
6793
Hal Finkelb0c810f2013-04-03 17:44:56 +00006794 Est = DAG.getNode(ISD::FADD, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006795 DCI.AddToWorklist(Est.getNode());
6796 }
6797
6798 return Est;
6799 }
6800
6801 return SDValue();
6802}
6803
Hal Finkelb0c810f2013-04-03 17:44:56 +00006804SDValue PPCTargetLowering::DAGCombineFastRecipFSQRT(SDValue Op,
Hal Finkel2e103312013-04-03 04:01:11 +00006805 DAGCombinerInfo &DCI) const {
6806 if (DCI.isAfterLegalizeVectorOps())
6807 return SDValue();
6808
Hal Finkelb0c810f2013-04-03 17:44:56 +00006809 EVT VT = Op.getValueType();
6810
6811 if ((VT == MVT::f32 && PPCSubTarget.hasFRSQRTES()) ||
6812 (VT == MVT::f64 && PPCSubTarget.hasFRSQRTE()) ||
6813 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel2e103312013-04-03 04:01:11 +00006814
6815 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6816 // For the reciprocal sqrt, we need to find the zero of the function:
6817 // F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)]
6818 // =>
6819 // X_{i+1} = X_i (1.5 - A X_i^2 / 2)
6820 // As a result, we precompute A/2 prior to the iteration loop.
6821
6822 // Convergence is quadratic, so we essentially double the number of digits
6823 // correct after every iteration. The minimum architected relative
6824 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6825 // 23 digits and double has 52 digits.
6826 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkelb0c810f2013-04-03 17:44:56 +00006827 if (VT.getScalarType() == MVT::f64)
Hal Finkel2e103312013-04-03 04:01:11 +00006828 ++Iterations;
6829
6830 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006831 SDLoc dl(Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006832
Hal Finkelb0c810f2013-04-03 17:44:56 +00006833 SDValue FPThreeHalves =
6834 DAG.getConstantFP(1.5, VT.getScalarType());
6835 if (VT.isVector()) {
6836 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel2e103312013-04-03 04:01:11 +00006837 "Unknown vector type");
Hal Finkelb0c810f2013-04-03 17:44:56 +00006838 FPThreeHalves = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
6839 FPThreeHalves, FPThreeHalves,
6840 FPThreeHalves, FPThreeHalves);
Hal Finkel2e103312013-04-03 04:01:11 +00006841 }
6842
Hal Finkelb0c810f2013-04-03 17:44:56 +00006843 SDValue Est = DAG.getNode(PPCISD::FRSQRTE, dl, VT, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006844 DCI.AddToWorklist(Est.getNode());
6845
6846 // We now need 0.5*Arg which we can write as (1.5*Arg - Arg) so that
6847 // this entire sequence requires only one FP constant.
Hal Finkelb0c810f2013-04-03 17:44:56 +00006848 SDValue HalfArg = DAG.getNode(ISD::FMUL, dl, VT, FPThreeHalves, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006849 DCI.AddToWorklist(HalfArg.getNode());
6850
Hal Finkelb0c810f2013-04-03 17:44:56 +00006851 HalfArg = DAG.getNode(ISD::FSUB, dl, VT, HalfArg, Op);
Hal Finkel2e103312013-04-03 04:01:11 +00006852 DCI.AddToWorklist(HalfArg.getNode());
6853
6854 // Newton iterations: Est = Est * (1.5 - HalfArg * Est * Est)
6855 for (int i = 0; i < Iterations; ++i) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00006856 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, Est);
Hal Finkel2e103312013-04-03 04:01:11 +00006857 DCI.AddToWorklist(NewEst.getNode());
6858
Hal Finkelb0c810f2013-04-03 17:44:56 +00006859 NewEst = DAG.getNode(ISD::FMUL, dl, VT, HalfArg, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006860 DCI.AddToWorklist(NewEst.getNode());
6861
Hal Finkelb0c810f2013-04-03 17:44:56 +00006862 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPThreeHalves, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006863 DCI.AddToWorklist(NewEst.getNode());
6864
Hal Finkelb0c810f2013-04-03 17:44:56 +00006865 Est = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel2e103312013-04-03 04:01:11 +00006866 DCI.AddToWorklist(Est.getNode());
6867 }
6868
6869 return Est;
6870 }
6871
6872 return SDValue();
6873}
6874
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00006875// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
6876// not enforce equality of the chain operands.
6877static bool isConsecutiveLS(LSBaseSDNode *LS, LSBaseSDNode *Base,
6878 unsigned Bytes, int Dist,
6879 SelectionDAG &DAG) {
6880 EVT VT = LS->getMemoryVT();
6881 if (VT.getSizeInBits() / 8 != Bytes)
6882 return false;
6883
6884 SDValue Loc = LS->getBasePtr();
6885 SDValue BaseLoc = Base->getBasePtr();
6886 if (Loc.getOpcode() == ISD::FrameIndex) {
6887 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6888 return false;
6889 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6890 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6891 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6892 int FS = MFI->getObjectSize(FI);
6893 int BFS = MFI->getObjectSize(BFI);
6894 if (FS != BFS || FS != (int)Bytes) return false;
6895 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6896 }
6897
6898 // Handle X+C
6899 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6900 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6901 return true;
6902
6903 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6904 const GlobalValue *GV1 = NULL;
6905 const GlobalValue *GV2 = NULL;
6906 int64_t Offset1 = 0;
6907 int64_t Offset2 = 0;
6908 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6909 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
6910 if (isGA1 && isGA2 && GV1 == GV2)
6911 return Offset1 == (Offset2 + Dist*Bytes);
6912 return false;
6913}
6914
Hal Finkel7d8a6912013-05-26 18:08:30 +00006915// Return true is there is a nearyby consecutive load to the one provided
6916// (regardless of alignment). We search up and down the chain, looking though
6917// token factors and other loads (but nothing else). As a result, a true
6918// results indicates that it is safe to create a new consecutive load adjacent
6919// to the load provided.
6920static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
6921 SDValue Chain = LD->getChain();
6922 EVT VT = LD->getMemoryVT();
6923
6924 SmallSet<SDNode *, 16> LoadRoots;
6925 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
6926 SmallSet<SDNode *, 16> Visited;
6927
6928 // First, search up the chain, branching to follow all token-factor operands.
6929 // If we find a consecutive load, then we're done, otherwise, record all
6930 // nodes just above the top-level loads and token factors.
6931 while (!Queue.empty()) {
6932 SDNode *ChainNext = Queue.pop_back_val();
6933 if (!Visited.insert(ChainNext))
6934 continue;
6935
6936 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(ChainNext)) {
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00006937 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00006938 return true;
6939
6940 if (!Visited.count(ChainLD->getChain().getNode()))
6941 Queue.push_back(ChainLD->getChain().getNode());
6942 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
6943 for (SDNode::op_iterator O = ChainNext->op_begin(),
6944 OE = ChainNext->op_end(); O != OE; ++O)
6945 if (!Visited.count(O->getNode()))
6946 Queue.push_back(O->getNode());
6947 } else
6948 LoadRoots.insert(ChainNext);
6949 }
6950
6951 // Second, search down the chain, starting from the top-level nodes recorded
6952 // in the first phase. These top-level nodes are the nodes just above all
6953 // loads and token factors. Starting with their uses, recursively look though
6954 // all loads (just the chain uses) and token factors to find a consecutive
6955 // load.
6956 Visited.clear();
6957 Queue.clear();
6958
6959 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
6960 IE = LoadRoots.end(); I != IE; ++I) {
6961 Queue.push_back(*I);
6962
6963 while (!Queue.empty()) {
6964 SDNode *LoadRoot = Queue.pop_back_val();
6965 if (!Visited.insert(LoadRoot))
6966 continue;
6967
6968 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(LoadRoot))
Hal Finkel8ebfe6c2013-05-27 02:06:39 +00006969 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel7d8a6912013-05-26 18:08:30 +00006970 return true;
6971
6972 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
6973 UE = LoadRoot->use_end(); UI != UE; ++UI)
6974 if (((isa<LoadSDNode>(*UI) &&
6975 cast<LoadSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
6976 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
6977 Queue.push_back(*UI);
6978 }
6979 }
6980
6981 return false;
6982}
6983
Duncan Sandsdc2dac12008-11-24 14:53:14 +00006984SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
6985 DAGCombinerInfo &DCI) const {
Dan Gohman57c732b2010-04-21 01:34:56 +00006986 const TargetMachine &TM = getTargetMachine();
Chris Lattnerf4184352006-03-01 04:57:39 +00006987 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006988 SDLoc dl(N);
Chris Lattnerf4184352006-03-01 04:57:39 +00006989 switch (N->getOpcode()) {
6990 default: break;
Chris Lattner3c48ea52006-09-19 05:22:59 +00006991 case PPCISD::SHL:
6992 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00006993 if (C->isNullValue()) // 0 << V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00006994 return N->getOperand(0);
6995 }
6996 break;
6997 case PPCISD::SRL:
6998 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00006999 if (C->isNullValue()) // 0 >>u V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00007000 return N->getOperand(0);
7001 }
7002 break;
7003 case PPCISD::SRA:
7004 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf1d83042010-06-18 14:22:04 +00007005 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattner3c48ea52006-09-19 05:22:59 +00007006 C->isAllOnesValue()) // -1 >>s V -> -1.
7007 return N->getOperand(0);
7008 }
7009 break;
Hal Finkel2e103312013-04-03 04:01:11 +00007010 case ISD::FDIV: {
7011 assert(TM.Options.UnsafeFPMath &&
7012 "Reciprocal estimates require UnsafeFPMath");
Scott Michelcf0da6c2009-02-17 22:15:04 +00007013
Hal Finkel2e103312013-04-03 04:01:11 +00007014 if (N->getOperand(1).getOpcode() == ISD::FSQRT) {
Hal Finkelb0c810f2013-04-03 17:44:56 +00007015 SDValue RV =
7016 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0), DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00007017 if (RV.getNode() != 0) {
7018 DCI.AddToWorklist(RV.getNode());
7019 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7020 N->getOperand(0), RV);
7021 }
Hal Finkelf96c18e2013-04-04 22:44:12 +00007022 } else if (N->getOperand(1).getOpcode() == ISD::FP_EXTEND &&
7023 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
7024 SDValue RV =
7025 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
7026 DCI);
7027 if (RV.getNode() != 0) {
7028 DCI.AddToWorklist(RV.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00007029 RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N->getOperand(1)),
Hal Finkelf96c18e2013-04-04 22:44:12 +00007030 N->getValueType(0), RV);
7031 DCI.AddToWorklist(RV.getNode());
7032 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7033 N->getOperand(0), RV);
7034 }
7035 } else if (N->getOperand(1).getOpcode() == ISD::FP_ROUND &&
7036 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
7037 SDValue RV =
7038 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
7039 DCI);
7040 if (RV.getNode() != 0) {
7041 DCI.AddToWorklist(RV.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00007042 RV = DAG.getNode(ISD::FP_ROUND, SDLoc(N->getOperand(1)),
Hal Finkelf96c18e2013-04-04 22:44:12 +00007043 N->getValueType(0), RV,
7044 N->getOperand(1).getOperand(1));
7045 DCI.AddToWorklist(RV.getNode());
7046 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7047 N->getOperand(0), RV);
7048 }
Hal Finkel2e103312013-04-03 04:01:11 +00007049 }
7050
Hal Finkelb0c810f2013-04-03 17:44:56 +00007051 SDValue RV = DAGCombineFastRecip(N->getOperand(1), DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00007052 if (RV.getNode() != 0) {
7053 DCI.AddToWorklist(RV.getNode());
7054 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7055 N->getOperand(0), RV);
7056 }
7057
7058 }
7059 break;
7060 case ISD::FSQRT: {
7061 assert(TM.Options.UnsafeFPMath &&
7062 "Reciprocal estimates require UnsafeFPMath");
7063
7064 // Compute this as 1/(1/sqrt(X)), which is the reciprocal of the
7065 // reciprocal sqrt.
Hal Finkelb0c810f2013-04-03 17:44:56 +00007066 SDValue RV = DAGCombineFastRecipFSQRT(N->getOperand(0), DCI);
Hal Finkel2e103312013-04-03 04:01:11 +00007067 if (RV.getNode() != 0) {
7068 DCI.AddToWorklist(RV.getNode());
Hal Finkelb0c810f2013-04-03 17:44:56 +00007069 RV = DAGCombineFastRecip(RV, DCI);
Hal Finkel1e2e3ea2013-09-12 19:04:12 +00007070 if (RV.getNode() != 0) {
7071 // Unfortunately, RV is now NaN if the input was exactly 0. Select out
7072 // this case and force the answer to 0.
7073
7074 EVT VT = RV.getValueType();
7075
7076 SDValue Zero = DAG.getConstantFP(0.0, VT.getScalarType());
7077 if (VT.isVector()) {
7078 assert(VT.getVectorNumElements() == 4 && "Unknown vector type");
7079 Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Zero, Zero, Zero, Zero);
7080 }
7081
7082 SDValue ZeroCmp =
7083 DAG.getSetCC(dl, getSetCCResultType(*DAG.getContext(), VT),
7084 N->getOperand(0), Zero, ISD::SETEQ);
7085 DCI.AddToWorklist(ZeroCmp.getNode());
7086 DCI.AddToWorklist(RV.getNode());
7087
7088 RV = DAG.getNode(VT.isVector() ? ISD::VSELECT : ISD::SELECT, dl, VT,
7089 ZeroCmp, Zero, RV);
Hal Finkel2e103312013-04-03 04:01:11 +00007090 return RV;
Hal Finkel1e2e3ea2013-09-12 19:04:12 +00007091 }
Hal Finkel2e103312013-04-03 04:01:11 +00007092 }
7093
7094 }
7095 break;
Chris Lattnerf4184352006-03-01 04:57:39 +00007096 case ISD::SINT_TO_FP:
Chris Lattnera35f3062006-06-16 17:34:12 +00007097 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattner4a66d692006-03-22 05:30:33 +00007098 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
7099 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
7100 // We allow the src/dst to be either f32/f64, but the intermediate
7101 // type must be i64.
Owen Anderson9f944592009-08-11 20:47:22 +00007102 if (N->getOperand(0).getValueType() == MVT::i64 &&
7103 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007104 SDValue Val = N->getOperand(0).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00007105 if (Val.getValueType() == MVT::f32) {
7106 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007107 DCI.AddToWorklist(Val.getNode());
Chris Lattner4a66d692006-03-22 05:30:33 +00007108 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007109
Owen Anderson9f944592009-08-11 20:47:22 +00007110 Val = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007111 DCI.AddToWorklist(Val.getNode());
Owen Anderson9f944592009-08-11 20:47:22 +00007112 Val = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007113 DCI.AddToWorklist(Val.getNode());
Owen Anderson9f944592009-08-11 20:47:22 +00007114 if (N->getValueType(0) == MVT::f32) {
7115 Val = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Val,
Chris Lattner72733e52008-01-17 07:00:52 +00007116 DAG.getIntPtrConstant(0));
Gabor Greiff304a7a2008-08-28 21:40:38 +00007117 DCI.AddToWorklist(Val.getNode());
Chris Lattner4a66d692006-03-22 05:30:33 +00007118 }
7119 return Val;
Owen Anderson9f944592009-08-11 20:47:22 +00007120 } else if (N->getOperand(0).getValueType() == MVT::i32) {
Chris Lattner4a66d692006-03-22 05:30:33 +00007121 // If the intermediate type is i32, we can avoid the load/store here
7122 // too.
Chris Lattnerf4184352006-03-01 04:57:39 +00007123 }
Chris Lattnerf4184352006-03-01 04:57:39 +00007124 }
7125 }
7126 break;
Chris Lattner27f53452006-03-01 05:50:56 +00007127 case ISD::STORE:
7128 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
7129 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnerf5b46f72008-01-18 16:54:56 +00007130 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner27f53452006-03-01 05:50:56 +00007131 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson9f944592009-08-11 20:47:22 +00007132 N->getOperand(1).getValueType() == MVT::i32 &&
7133 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007134 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson9f944592009-08-11 20:47:22 +00007135 if (Val.getValueType() == MVT::f32) {
7136 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007137 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00007138 }
Owen Anderson9f944592009-08-11 20:47:22 +00007139 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greiff304a7a2008-08-28 21:40:38 +00007140 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00007141
Hal Finkel60c75102013-04-01 15:37:53 +00007142 SDValue Ops[] = {
7143 N->getOperand(0), Val, N->getOperand(2),
7144 DAG.getValueType(N->getOperand(1).getValueType())
7145 };
7146
7147 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
7148 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
7149 cast<StoreSDNode>(N)->getMemoryVT(),
7150 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greiff304a7a2008-08-28 21:40:38 +00007151 DCI.AddToWorklist(Val.getNode());
Chris Lattner27f53452006-03-01 05:50:56 +00007152 return Val;
7153 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007154
Chris Lattnera7976d32006-07-10 20:56:58 +00007155 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman28328db2009-09-25 00:57:30 +00007156 if (cast<StoreSDNode>(N)->isUnindexed() &&
7157 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00007158 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson9f944592009-08-11 20:47:22 +00007159 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkel31d29562013-03-28 19:25:55 +00007160 N->getOperand(1).getValueType() == MVT::i16 ||
7161 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel22e41c42013-03-28 20:23:46 +00007162 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00007163 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007164 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnera7976d32006-07-10 20:56:58 +00007165 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson9f944592009-08-11 20:47:22 +00007166 if (BSwapOp.getValueType() == MVT::i16)
7167 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnera7976d32006-07-10 20:56:58 +00007168
Dan Gohman48b185d2009-09-25 20:36:54 +00007169 SDValue Ops[] = {
7170 N->getOperand(0), BSwapOp, N->getOperand(2),
7171 DAG.getValueType(N->getOperand(1).getValueType())
7172 };
7173 return
7174 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
7175 Ops, array_lengthof(Ops),
7176 cast<StoreSDNode>(N)->getMemoryVT(),
7177 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00007178 }
7179 break;
Hal Finkelcf2e9082013-05-24 23:00:14 +00007180 case ISD::LOAD: {
7181 LoadSDNode *LD = cast<LoadSDNode>(N);
7182 EVT VT = LD->getValueType(0);
7183 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
7184 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
7185 if (ISD::isNON_EXTLoad(N) && VT.isVector() &&
7186 TM.getSubtarget<PPCSubtarget>().hasAltivec() &&
Hal Finkel40c34782013-09-15 22:09:58 +00007187 (VT == MVT::v16i8 || VT == MVT::v8i16 ||
7188 VT == MVT::v4i32 || VT == MVT::v4f32) &&
Hal Finkelcf2e9082013-05-24 23:00:14 +00007189 LD->getAlignment() < ABIAlignment) {
7190 // This is a type-legal unaligned Altivec load.
7191 SDValue Chain = LD->getChain();
7192 SDValue Ptr = LD->getBasePtr();
7193
7194 // This implements the loading of unaligned vectors as described in
7195 // the venerable Apple Velocity Engine overview. Specifically:
7196 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
7197 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
7198 //
7199 // The general idea is to expand a sequence of one or more unaligned
7200 // loads into a alignment-based permutation-control instruction (lvsl),
7201 // a series of regular vector loads (which always truncate their
7202 // input address to an aligned address), and a series of permutations.
7203 // The results of these permutations are the requested loaded values.
7204 // The trick is that the last "extra" load is not taken from the address
7205 // you might suspect (sizeof(vector) bytes after the last requested
7206 // load), but rather sizeof(vector) - 1 bytes after the last
7207 // requested vector. The point of this is to avoid a page fault if the
Alp Tokercb402912014-01-24 17:20:08 +00007208 // base address happened to be aligned. This works because if the base
Hal Finkelcf2e9082013-05-24 23:00:14 +00007209 // address is aligned, then adding less than a full vector length will
7210 // cause the last vector in the sequence to be (re)loaded. Otherwise,
7211 // the next vector will be fetched as you might suspect was necessary.
7212
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00007213 // We might be able to reuse the permutation generation from
Hal Finkelcf2e9082013-05-24 23:00:14 +00007214 // a different base address offset from this one by an aligned amount.
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00007215 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
7216 // optimization later.
Hal Finkelcf2e9082013-05-24 23:00:14 +00007217 SDValue PermCntl = BuildIntrinsicOp(Intrinsic::ppc_altivec_lvsl, Ptr,
7218 DAG, dl, MVT::v16i8);
7219
7220 // Refine the alignment of the original load (a "new" load created here
7221 // which was identical to the first except for the alignment would be
7222 // merged with the existing node regardless).
7223 MachineFunction &MF = DAG.getMachineFunction();
7224 MachineMemOperand *MMO =
7225 MF.getMachineMemOperand(LD->getPointerInfo(),
7226 LD->getMemOperand()->getFlags(),
7227 LD->getMemoryVT().getStoreSize(),
7228 ABIAlignment);
7229 LD->refineAlignment(MMO);
7230 SDValue BaseLoad = SDValue(LD, 0);
7231
7232 // Note that the value of IncOffset (which is provided to the next
7233 // load's pointer info offset value, and thus used to calculate the
7234 // alignment), and the value of IncValue (which is actually used to
7235 // increment the pointer value) are different! This is because we
7236 // require the next load to appear to be aligned, even though it
7237 // is actually offset from the base pointer by a lesser amount.
7238 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel7d8a6912013-05-26 18:08:30 +00007239 int IncValue = IncOffset;
7240
7241 // Walk (both up and down) the chain looking for another load at the real
7242 // (aligned) offset (the alignment of the other load does not matter in
7243 // this case). If found, then do not use the offset reduction trick, as
7244 // that will prevent the loads from being later combined (as they would
7245 // otherwise be duplicates).
7246 if (!findConsecutiveLoad(LD, DAG))
7247 --IncValue;
7248
Hal Finkelcf2e9082013-05-24 23:00:14 +00007249 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
7250 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
7251
Hal Finkelcf2e9082013-05-24 23:00:14 +00007252 SDValue ExtraLoad =
7253 DAG.getLoad(VT, dl, Chain, Ptr,
7254 LD->getPointerInfo().getWithOffset(IncOffset),
7255 LD->isVolatile(), LD->isNonTemporal(),
7256 LD->isInvariant(), ABIAlignment);
7257
7258 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
7259 BaseLoad.getValue(1), ExtraLoad.getValue(1));
7260
7261 if (BaseLoad.getValueType() != MVT::v4i32)
7262 BaseLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, BaseLoad);
7263
7264 if (ExtraLoad.getValueType() != MVT::v4i32)
7265 ExtraLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, ExtraLoad);
7266
7267 SDValue Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
7268 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
7269
7270 if (VT != MVT::v4i32)
7271 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
7272
7273 // Now we need to be really careful about how we update the users of the
7274 // original load. We cannot just call DCI.CombineTo (or
7275 // DAG.ReplaceAllUsesWith for that matter), because the load still has
7276 // uses created here (the permutation for example) that need to stay.
7277 SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
7278 while (UI != UE) {
7279 SDUse &Use = UI.getUse();
7280 SDNode *User = *UI;
7281 // Note: BaseLoad is checked here because it might not be N, but a
7282 // bitcast of N.
7283 if (User == Perm.getNode() || User == BaseLoad.getNode() ||
7284 User == TF.getNode() || Use.getResNo() > 1) {
7285 ++UI;
7286 continue;
7287 }
7288
7289 SDValue To = Use.getResNo() ? TF : Perm;
7290 ++UI;
7291
7292 SmallVector<SDValue, 8> Ops;
7293 for (SDNode::op_iterator O = User->op_begin(),
7294 OE = User->op_end(); O != OE; ++O) {
7295 if (*O == Use)
7296 Ops.push_back(To);
7297 else
7298 Ops.push_back(*O);
7299 }
7300
7301 DAG.UpdateNodeOperands(User, Ops.data(), Ops.size());
7302 }
7303
7304 return SDValue(N, 0);
7305 }
7306 }
7307 break;
Hal Finkelbc2ee4c2013-05-25 04:05:05 +00007308 case ISD::INTRINSIC_WO_CHAIN:
7309 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() ==
7310 Intrinsic::ppc_altivec_lvsl &&
7311 N->getOperand(1)->getOpcode() == ISD::ADD) {
7312 SDValue Add = N->getOperand(1);
7313
7314 if (DAG.MaskedValueIsZero(Add->getOperand(1),
7315 APInt::getAllOnesValue(4 /* 16 byte alignment */).zext(
7316 Add.getValueType().getScalarType().getSizeInBits()))) {
7317 SDNode *BasePtr = Add->getOperand(0).getNode();
7318 for (SDNode::use_iterator UI = BasePtr->use_begin(),
7319 UE = BasePtr->use_end(); UI != UE; ++UI) {
7320 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7321 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
7322 Intrinsic::ppc_altivec_lvsl) {
7323 // We've found another LVSL, and this address if an aligned
7324 // multiple of that one. The results will be the same, so use the
7325 // one we've just found instead.
7326
7327 return SDValue(*UI, 0);
7328 }
7329 }
7330 }
7331 }
Hal Finkelc3cfbf82013-09-13 20:09:02 +00007332
7333 break;
Chris Lattnera7976d32006-07-10 20:56:58 +00007334 case ISD::BSWAP:
7335 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greiff304a7a2008-08-28 21:40:38 +00007336 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnera7976d32006-07-10 20:56:58 +00007337 N->getOperand(0).hasOneUse() &&
Hal Finkel31d29562013-03-28 19:25:55 +00007338 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
7339 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel22e41c42013-03-28 20:23:46 +00007340 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkel31d29562013-03-28 19:25:55 +00007341 N->getValueType(0) == MVT::i64))) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007342 SDValue Load = N->getOperand(0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00007343 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnera7976d32006-07-10 20:56:58 +00007344 // Create the byte-swapping load.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007345 SDValue Ops[] = {
Evan Chenge71fe34d2006-10-09 20:57:25 +00007346 LD->getChain(), // Chain
7347 LD->getBasePtr(), // Ptr
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007348 DAG.getValueType(N->getValueType(0)) // VT
7349 };
Dan Gohman48b185d2009-09-25 20:36:54 +00007350 SDValue BSLoad =
7351 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkel31d29562013-03-28 19:25:55 +00007352 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
7353 MVT::i64 : MVT::i32, MVT::Other),
Hal Finkel93492fa2013-03-28 19:43:12 +00007354 Ops, 3, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnera7976d32006-07-10 20:56:58 +00007355
Scott Michelcf0da6c2009-02-17 22:15:04 +00007356 // If this is an i16 load, insert the truncate.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007357 SDValue ResVal = BSLoad;
Owen Anderson9f944592009-08-11 20:47:22 +00007358 if (N->getValueType(0) == MVT::i16)
7359 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007360
Chris Lattnera7976d32006-07-10 20:56:58 +00007361 // First, combine the bswap away. This makes the value produced by the
7362 // load dead.
7363 DCI.CombineTo(N, ResVal);
7364
7365 // Next, combine the load away, we give it a bogus result value but a real
7366 // chain result. The result value is dead because the bswap is dead.
Gabor Greiff304a7a2008-08-28 21:40:38 +00007367 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelcf0da6c2009-02-17 22:15:04 +00007368
Chris Lattnera7976d32006-07-10 20:56:58 +00007369 // Return N so it doesn't get rechecked!
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007370 return SDValue(N, 0);
Chris Lattnera7976d32006-07-10 20:56:58 +00007371 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007372
Chris Lattner27f53452006-03-01 05:50:56 +00007373 break;
Chris Lattnerd4058a52006-03-31 06:02:07 +00007374 case PPCISD::VCMP: {
7375 // If a VCMPo node already exists with exactly the same operands as this
7376 // node, use its result instead of this node (VCMPo computes both a CR6 and
7377 // a normal output).
7378 //
7379 if (!N->getOperand(0).hasOneUse() &&
7380 !N->getOperand(1).hasOneUse() &&
7381 !N->getOperand(2).hasOneUse()) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00007382
Chris Lattnerd4058a52006-03-31 06:02:07 +00007383 // Scan all of the users of the LHS, looking for VCMPo's that match.
7384 SDNode *VCMPoNode = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007385
Gabor Greiff304a7a2008-08-28 21:40:38 +00007386 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattnerd4058a52006-03-31 06:02:07 +00007387 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
7388 UI != E; ++UI)
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007389 if (UI->getOpcode() == PPCISD::VCMPo &&
7390 UI->getOperand(1) == N->getOperand(1) &&
7391 UI->getOperand(2) == N->getOperand(2) &&
7392 UI->getOperand(0) == N->getOperand(0)) {
7393 VCMPoNode = *UI;
Chris Lattnerd4058a52006-03-31 06:02:07 +00007394 break;
7395 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007396
Chris Lattner518834c2006-04-18 18:28:22 +00007397 // If there is no VCMPo node, or if the flag value has a single use, don't
7398 // transform this.
7399 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
7400 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007401
7402 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner518834c2006-04-18 18:28:22 +00007403 // chain, this transformation is more complex. Note that multiple things
7404 // could use the value result, which we should ignore.
7405 SDNode *FlagUser = 0;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007406 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Chris Lattner518834c2006-04-18 18:28:22 +00007407 FlagUser == 0; ++UI) {
7408 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman91e5dcb2008-07-27 20:43:25 +00007409 SDNode *User = *UI;
Chris Lattner518834c2006-04-18 18:28:22 +00007410 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007411 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner518834c2006-04-18 18:28:22 +00007412 FlagUser = User;
7413 break;
7414 }
7415 }
7416 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007417
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00007418 // If the user is a MFOCRF instruction, we know this is safe.
7419 // Otherwise we give up for right now.
7420 if (FlagUser->getOpcode() == PPCISD::MFOCRF)
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007421 return SDValue(VCMPoNode, 0);
Chris Lattnerd4058a52006-03-31 06:02:07 +00007422 }
7423 break;
7424 }
Chris Lattner9754d142006-04-18 17:59:36 +00007425 case ISD::BR_CC: {
7426 // If this is a branch on an altivec predicate comparison, lower this so
Ulrich Weigandd5ebc622013-07-03 17:05:42 +00007427 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This
Chris Lattner9754d142006-04-18 17:59:36 +00007428 // lowering is done pre-legalize, because the legalizer lowers the predicate
7429 // compare down to code that is difficult to reassemble.
7430 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007431 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkel25c19922013-05-15 21:37:41 +00007432
7433 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
7434 // value. If so, pass-through the AND to get to the intrinsic.
7435 if (LHS.getOpcode() == ISD::AND &&
7436 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7437 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
7438 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7439 isa<ConstantSDNode>(LHS.getOperand(1)) &&
7440 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
7441 isZero())
7442 LHS = LHS.getOperand(0);
7443
7444 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7445 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
7446 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7447 isa<ConstantSDNode>(RHS)) {
7448 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
7449 "Counter decrement comparison is not EQ or NE");
7450
7451 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
7452 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
7453 (CC == ISD::SETNE && !Val);
7454
7455 // We now need to make the intrinsic dead (it cannot be instruction
7456 // selected).
7457 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
7458 assert(LHS.getNode()->hasOneUse() &&
7459 "Counter decrement has more than one use");
7460
7461 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
7462 N->getOperand(0), N->getOperand(4));
7463 }
7464
Chris Lattner9754d142006-04-18 17:59:36 +00007465 int CompareOpc;
7466 bool isDot;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007467
Chris Lattner9754d142006-04-18 17:59:36 +00007468 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7469 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
7470 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
7471 assert(isDot && "Can't compare against a vector result!");
Scott Michelcf0da6c2009-02-17 22:15:04 +00007472
Chris Lattner9754d142006-04-18 17:59:36 +00007473 // If this is a comparison against something other than 0/1, then we know
7474 // that the condition is never/always true.
Dan Gohmaneffb8942008-09-12 16:56:44 +00007475 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner9754d142006-04-18 17:59:36 +00007476 if (Val != 0 && Val != 1) {
7477 if (CC == ISD::SETEQ) // Cond never true, remove branch.
7478 return N->getOperand(0);
7479 // Always !=, turn it into an unconditional branch.
Owen Anderson9f944592009-08-11 20:47:22 +00007480 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner9754d142006-04-18 17:59:36 +00007481 N->getOperand(0), N->getOperand(4));
7482 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007483
Chris Lattner9754d142006-04-18 17:59:36 +00007484 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007485
Chris Lattner9754d142006-04-18 17:59:36 +00007486 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007487 SDValue Ops[] = {
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007488 LHS.getOperand(2), // LHS of compare
7489 LHS.getOperand(3), // RHS of compare
Owen Anderson9f944592009-08-11 20:47:22 +00007490 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattnerd66f14e2006-08-11 17:18:05 +00007491 };
Benjamin Kramerfdf362b2013-03-07 20:33:29 +00007492 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesenf80493b2009-02-05 22:07:54 +00007493 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelcf0da6c2009-02-17 22:15:04 +00007494
Chris Lattner9754d142006-04-18 17:59:36 +00007495 // Unpack the result based on how the target uses it.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007496 PPC::Predicate CompOpc;
Dan Gohmaneffb8942008-09-12 16:56:44 +00007497 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner9754d142006-04-18 17:59:36 +00007498 default: // Can't happen, don't crash on invalid number though.
7499 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007500 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner9754d142006-04-18 17:59:36 +00007501 break;
7502 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007503 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner9754d142006-04-18 17:59:36 +00007504 break;
7505 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007506 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner9754d142006-04-18 17:59:36 +00007507 break;
7508 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattner8c6a41e2006-11-17 22:10:59 +00007509 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner9754d142006-04-18 17:59:36 +00007510 break;
7511 }
7512
Owen Anderson9f944592009-08-11 20:47:22 +00007513 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
7514 DAG.getConstant(CompOpc, MVT::i32),
7515 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner9754d142006-04-18 17:59:36 +00007516 N->getOperand(4), CompNode.getValue(1));
7517 }
7518 break;
7519 }
Chris Lattnerf4184352006-03-01 04:57:39 +00007520 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007521
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007522 return SDValue();
Chris Lattnerf4184352006-03-01 04:57:39 +00007523}
7524
Chris Lattner4211ca92006-04-14 06:01:58 +00007525//===----------------------------------------------------------------------===//
7526// Inline Assembly Support
7527//===----------------------------------------------------------------------===//
7528
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007529void PPCTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Scott Michelcf0da6c2009-02-17 22:15:04 +00007530 APInt &KnownZero,
Dan Gohmanf990faf2008-02-13 00:35:47 +00007531 APInt &KnownOne,
Dan Gohman309d3d52007-06-22 14:59:07 +00007532 const SelectionDAG &DAG,
Chris Lattnerc5287c02006-04-02 06:26:07 +00007533 unsigned Depth) const {
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +00007534 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerc5287c02006-04-02 06:26:07 +00007535 switch (Op.getOpcode()) {
7536 default: break;
Chris Lattnera7976d32006-07-10 20:56:58 +00007537 case PPCISD::LBRX: {
7538 // lhbrx is known to have the top bits cleared out.
Dan Gohmana5fc0352009-09-27 23:17:47 +00007539 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnera7976d32006-07-10 20:56:58 +00007540 KnownZero = 0xFFFF0000;
7541 break;
7542 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00007543 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmaneffb8942008-09-12 16:56:44 +00007544 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerc5287c02006-04-02 06:26:07 +00007545 default: break;
7546 case Intrinsic::ppc_altivec_vcmpbfp_p:
7547 case Intrinsic::ppc_altivec_vcmpeqfp_p:
7548 case Intrinsic::ppc_altivec_vcmpequb_p:
7549 case Intrinsic::ppc_altivec_vcmpequh_p:
7550 case Intrinsic::ppc_altivec_vcmpequw_p:
7551 case Intrinsic::ppc_altivec_vcmpgefp_p:
7552 case Intrinsic::ppc_altivec_vcmpgtfp_p:
7553 case Intrinsic::ppc_altivec_vcmpgtsb_p:
7554 case Intrinsic::ppc_altivec_vcmpgtsh_p:
7555 case Intrinsic::ppc_altivec_vcmpgtsw_p:
7556 case Intrinsic::ppc_altivec_vcmpgtub_p:
7557 case Intrinsic::ppc_altivec_vcmpgtuh_p:
7558 case Intrinsic::ppc_altivec_vcmpgtuw_p:
7559 KnownZero = ~1U; // All bits but the low one are known to be zero.
7560 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007561 }
Chris Lattnerc5287c02006-04-02 06:26:07 +00007562 }
7563 }
7564}
7565
7566
Chris Lattnerd6855142007-03-25 02:14:49 +00007567/// getConstraintType - Given a constraint, return the type of
Chris Lattner203b2f12006-02-07 20:16:30 +00007568/// constraint it is for this target.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007569PPCTargetLowering::ConstraintType
Chris Lattnerd6855142007-03-25 02:14:49 +00007570PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
7571 if (Constraint.size() == 1) {
7572 switch (Constraint[0]) {
7573 default: break;
7574 case 'b':
7575 case 'r':
7576 case 'f':
7577 case 'v':
7578 case 'y':
7579 return C_RegisterClass;
Hal Finkel4f24c622012-11-05 18:18:42 +00007580 case 'Z':
7581 // FIXME: While Z does indicate a memory constraint, it specifically
7582 // indicates an r+r address (used in conjunction with the 'y' modifier
7583 // in the replacement string). Currently, we're forcing the base
7584 // register to be r0 in the asm printer (which is interpreted as zero)
7585 // and forming the complete address in the second register. This is
7586 // suboptimal.
7587 return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +00007588 }
7589 }
7590 return TargetLowering::getConstraintType(Constraint);
Chris Lattner203b2f12006-02-07 20:16:30 +00007591}
7592
John Thompsone8360b72010-10-29 17:29:13 +00007593/// Examine constraint type and operand type and determine a weight value.
7594/// This object must already have been set up with the operand type
7595/// and the current alternative constraint selected.
7596TargetLowering::ConstraintWeight
7597PPCTargetLowering::getSingleConstraintMatchWeight(
7598 AsmOperandInfo &info, const char *constraint) const {
7599 ConstraintWeight weight = CW_Invalid;
7600 Value *CallOperandVal = info.CallOperandVal;
7601 // If we don't have a value, we can't do a match,
7602 // but allow it at the lowest weight.
7603 if (CallOperandVal == NULL)
7604 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +00007605 Type *type = CallOperandVal->getType();
John Thompsone8360b72010-10-29 17:29:13 +00007606 // Look at the constraint type.
7607 switch (*constraint) {
7608 default:
7609 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
7610 break;
7611 case 'b':
7612 if (type->isIntegerTy())
7613 weight = CW_Register;
7614 break;
7615 case 'f':
7616 if (type->isFloatTy())
7617 weight = CW_Register;
7618 break;
7619 case 'd':
7620 if (type->isDoubleTy())
7621 weight = CW_Register;
7622 break;
7623 case 'v':
7624 if (type->isVectorTy())
7625 weight = CW_Register;
7626 break;
7627 case 'y':
7628 weight = CW_Register;
7629 break;
Hal Finkel4f24c622012-11-05 18:18:42 +00007630 case 'Z':
7631 weight = CW_Memory;
7632 break;
John Thompsone8360b72010-10-29 17:29:13 +00007633 }
7634 return weight;
7635}
7636
Scott Michelcf0da6c2009-02-17 22:15:04 +00007637std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner584a11a2006-11-02 01:44:04 +00007638PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier295bd432013-06-22 18:37:38 +00007639 MVT VT) const {
Chris Lattner01513612006-01-31 19:20:21 +00007640 if (Constraint.size() == 1) {
Chris Lattner584a11a2006-11-02 01:44:04 +00007641 // GCC RS6000 Constraint Letters
7642 switch (Constraint[0]) {
7643 case 'b': // R1-R31
Hal Finkel638a9fa2013-03-19 18:51:05 +00007644 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
7645 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
7646 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007647 case 'r': // R0-R31
Owen Anderson9f944592009-08-11 20:47:22 +00007648 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
Craig Topperabadc662012-04-20 06:31:50 +00007649 return std::make_pair(0U, &PPC::G8RCRegClass);
7650 return std::make_pair(0U, &PPC::GPRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007651 case 'f':
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00007652 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperabadc662012-04-20 06:31:50 +00007653 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand0de4a1e2012-10-29 17:49:34 +00007654 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperabadc662012-04-20 06:31:50 +00007655 return std::make_pair(0U, &PPC::F8RCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007656 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007657 case 'v':
Craig Topperabadc662012-04-20 06:31:50 +00007658 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner584a11a2006-11-02 01:44:04 +00007659 case 'y': // crrc
Craig Topperabadc662012-04-20 06:31:50 +00007660 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattner01513612006-01-31 19:20:21 +00007661 }
7662 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007663
Hal Finkelb176acb2013-08-03 12:25:10 +00007664 std::pair<unsigned, const TargetRegisterClass*> R =
7665 TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
7666
7667 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
7668 // (which we call X[0-9]+). If a 64-bit value has been requested, and a
7669 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
7670 // register.
7671 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
7672 // the AsmName field from *RegisterInfo.td, then this would not be necessary.
7673 if (R.first && VT == MVT::i64 && PPCSubTarget.isPPC64() &&
7674 PPC::GPRCRegClass.contains(R.first)) {
7675 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
7676 return std::make_pair(TRI->getMatchingSuperReg(R.first,
Hal Finkelb3ca00d2013-08-14 20:05:04 +00007677 PPC::sub_32, &PPC::G8RCRegClass),
Hal Finkelb176acb2013-08-03 12:25:10 +00007678 &PPC::G8RCRegClass);
7679 }
7680
7681 return R;
Chris Lattner01513612006-01-31 19:20:21 +00007682}
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007683
Chris Lattner584a11a2006-11-02 01:44:04 +00007684
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007685/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesence97d552010-06-25 21:55:36 +00007686/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher0713a9d2011-06-08 23:55:35 +00007687void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +00007688 std::string &Constraint,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007689 std::vector<SDValue>&Ops,
Chris Lattner724539c2008-04-26 23:02:14 +00007690 SelectionDAG &DAG) const {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007691 SDValue Result(0,0);
Eric Christopher0713a9d2011-06-08 23:55:35 +00007692
Eric Christopherde9399b2011-06-02 23:16:42 +00007693 // Only support length 1 constraints.
7694 if (Constraint.length() > 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +00007695
Eric Christopherde9399b2011-06-02 23:16:42 +00007696 char Letter = Constraint[0];
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007697 switch (Letter) {
7698 default: break;
7699 case 'I':
7700 case 'J':
7701 case 'K':
7702 case 'L':
7703 case 'M':
7704 case 'N':
7705 case 'O':
7706 case 'P': {
Chris Lattner0b7472d2007-05-15 01:31:05 +00007707 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007708 if (!CST) return; // Must be an immediate to match.
Dan Gohmaneffb8942008-09-12 16:56:44 +00007709 unsigned Value = CST->getZExtValue();
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007710 switch (Letter) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00007711 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007712 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007713 if ((short)Value == (int)Value)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007714 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007715 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007716 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
7717 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007718 if ((short)Value == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007719 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007720 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007721 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007722 if ((Value >> 16) == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007723 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007724 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007725 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007726 if (Value > 31)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007727 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007728 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007729 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007730 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007731 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007732 break;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007733 case 'O': // "O" is the constant zero.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007734 if (Value == 0)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007735 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007736 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007737 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner0b7472d2007-05-15 01:31:05 +00007738 if ((short)-Value == (int)-Value)
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007739 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattner8c6949e2006-10-31 19:40:43 +00007740 break;
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007741 }
7742 break;
7743 }
7744 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007745
Gabor Greiff304a7a2008-08-28 21:40:38 +00007746 if (Result.getNode()) {
Chris Lattnerd8c9cb92007-08-25 00:47:38 +00007747 Ops.push_back(Result);
7748 return;
7749 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007750
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007751 // Handle standard constraint letters.
Eric Christopherde9399b2011-06-02 23:16:42 +00007752 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner15a6c4c2006-02-07 00:47:13 +00007753}
Evan Cheng2dd2c652006-03-13 23:20:37 +00007754
Chris Lattner1eb94d92007-03-30 23:15:24 +00007755// isLegalAddressingMode - Return true if the addressing mode represented
7756// by AM is legal for this target, for a load/store of the specified type.
Scott Michelcf0da6c2009-02-17 22:15:04 +00007757bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattner229907c2011-07-18 04:54:35 +00007758 Type *Ty) const {
Chris Lattner1eb94d92007-03-30 23:15:24 +00007759 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelcf0da6c2009-02-17 22:15:04 +00007760
Chris Lattner1eb94d92007-03-30 23:15:24 +00007761 // PPC allows a sign-extended 16-bit immediate field.
7762 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
7763 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007764
Chris Lattner1eb94d92007-03-30 23:15:24 +00007765 // No global is ever allowed as a base.
7766 if (AM.BaseGV)
7767 return false;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007768
7769 // PPC only support r+r,
Chris Lattner1eb94d92007-03-30 23:15:24 +00007770 switch (AM.Scale) {
7771 case 0: // "r+i" or just "i", depending on HasBaseReg.
7772 break;
7773 case 1:
7774 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
7775 return false;
7776 // Otherwise we have r+r or r+i.
7777 break;
7778 case 2:
7779 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
7780 return false;
7781 // Allow 2*r as r+r.
7782 break;
Chris Lattner19ccd622007-04-09 22:10:05 +00007783 default:
7784 // No other scales are supported.
7785 return false;
Chris Lattner1eb94d92007-03-30 23:15:24 +00007786 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00007787
Chris Lattner1eb94d92007-03-30 23:15:24 +00007788 return true;
7789}
7790
Dan Gohman21cea8a2010-04-17 15:26:15 +00007791SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
7792 SelectionDAG &DAG) const {
Evan Cheng168ced92010-05-22 01:47:14 +00007793 MachineFunction &MF = DAG.getMachineFunction();
7794 MachineFrameInfo *MFI = MF.getFrameInfo();
7795 MFI->setReturnAddressIsTaken(true);
7796
Bill Wendling908bf812014-01-06 00:43:20 +00007797 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00007798 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00007799
Andrew Trickef9de2a2013-05-25 02:42:55 +00007800 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007801 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattnerf6a81562007-12-08 06:59:59 +00007802
Dale Johannesen81bfca72010-05-03 22:59:34 +00007803 // Make sure the function does not optimize away the store of the RA to
7804 // the stack.
Chris Lattnerf6a81562007-12-08 06:59:59 +00007805 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen81bfca72010-05-03 22:59:34 +00007806 FuncInfo->setLRStoreRequired();
7807 bool isPPC64 = PPCSubTarget.isPPC64();
7808 bool isDarwinABI = PPCSubTarget.isDarwinABI();
7809
7810 if (Depth > 0) {
7811 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7812 SDValue Offset =
Wesley Peck527da1b2010-11-23 03:31:01 +00007813
Anton Korobeynikov2f931282011-01-10 12:39:04 +00007814 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI),
Dale Johannesen81bfca72010-05-03 22:59:34 +00007815 isPPC64? MVT::i64 : MVT::i32);
7816 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
7817 DAG.getNode(ISD::ADD, dl, getPointerTy(),
7818 FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +00007819 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007820 }
Chris Lattnerf6a81562007-12-08 06:59:59 +00007821
Chris Lattnerf6a81562007-12-08 06:59:59 +00007822 // Just load the return address off the stack.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00007823 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007824 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00007825 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Chris Lattnerf6a81562007-12-08 06:59:59 +00007826}
7827
Dan Gohman21cea8a2010-04-17 15:26:15 +00007828SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
7829 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00007830 SDLoc dl(Op);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007831 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelcf0da6c2009-02-17 22:15:04 +00007832
Owen Anderson53aa7a92009-08-10 22:56:29 +00007833 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson9f944592009-08-11 20:47:22 +00007834 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelcf0da6c2009-02-17 22:15:04 +00007835
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00007836 MachineFunction &MF = DAG.getMachineFunction();
7837 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen81bfca72010-05-03 22:59:34 +00007838 MFI->setFrameAddressIsTaken(true);
Hal Finkelaa03c032013-03-21 19:03:19 +00007839
7840 // Naked functions never have a frame pointer, and so we use r1. For all
7841 // other functions, this decision must be delayed until during PEI.
7842 unsigned FrameReg;
7843 if (MF.getFunction()->getAttributes().hasAttribute(
7844 AttributeSet::FunctionIndex, Attribute::Naked))
7845 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
7846 else
7847 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
7848
Dale Johannesen81bfca72010-05-03 22:59:34 +00007849 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
7850 PtrVT);
7851 while (Depth--)
7852 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00007853 FrameAddr, MachinePointerInfo(), false, false,
7854 false, 0);
Dale Johannesen81bfca72010-05-03 22:59:34 +00007855 return FrameAddr;
Nicolas Geoffray75ab9792007-03-01 13:11:38 +00007856}
Dan Gohmanc14e5222008-10-21 03:41:46 +00007857
7858bool
7859PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
7860 // The PowerPC target isn't yet aware of offsets.
7861 return false;
7862}
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007863
Evan Chengd9929f02010-04-01 20:10:42 +00007864/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng61399372010-04-02 19:36:14 +00007865/// and store operations as a result of memset, memcpy, and memmove
7866/// lowering. If DstAlign is zero that means it's safe to destination
7867/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
7868/// means there isn't a need to check it against alignment requirement,
Evan Cheng962711e2012-12-12 02:34:41 +00007869/// probably because the source does not need to be loaded. If 'IsMemset' is
7870/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
7871/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
7872/// source is constant so it does not need to be loaded.
Dan Gohman148c69a2010-04-16 20:11:05 +00007873/// It returns EVT::Other if the type should be determined using generic
7874/// target-independent logic.
Evan Cheng43cd9e32010-04-01 06:04:33 +00007875EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
7876 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00007877 bool IsMemset, bool ZeroMemset,
Evan Chengebe47c82010-04-08 07:37:57 +00007878 bool MemcpyStrSrc,
Dan Gohman148c69a2010-04-16 20:11:05 +00007879 MachineFunction &MF) const {
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007880 if (this->PPCSubTarget.isPPC64()) {
Owen Anderson9f944592009-08-11 20:47:22 +00007881 return MVT::i64;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007882 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00007883 return MVT::i32;
Tilmann Schellerb93960d2009-07-03 06:45:56 +00007884 }
7885}
Hal Finkel88ed4e32012-04-01 19:23:08 +00007886
Hal Finkel8d7fbc92013-03-15 15:27:13 +00007887bool PPCTargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
Matt Arsenault25793a32014-02-05 23:15:53 +00007888 unsigned,
Hal Finkel8d7fbc92013-03-15 15:27:13 +00007889 bool *Fast) const {
7890 if (DisablePPCUnaligned)
7891 return false;
7892
7893 // PowerPC supports unaligned memory access for simple non-vector types.
7894 // Although accessing unaligned addresses is not as efficient as accessing
7895 // aligned addresses, it is generally more efficient than manual expansion,
7896 // and generally only traps for software emulation when crossing page
7897 // boundaries.
7898
7899 if (!VT.isSimple())
7900 return false;
7901
7902 if (VT.getSimpleVT().isVector())
7903 return false;
7904
7905 if (VT == MVT::ppcf128)
7906 return false;
7907
7908 if (Fast)
7909 *Fast = true;
7910
7911 return true;
7912}
7913
Stephen Lin73de7bf2013-07-09 18:16:56 +00007914bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
7915 VT = VT.getScalarType();
7916
Hal Finkel0a479ae2012-06-22 00:49:52 +00007917 if (!VT.isSimple())
7918 return false;
7919
7920 switch (VT.getSimpleVT().SimpleTy) {
7921 case MVT::f32:
7922 case MVT::f64:
Hal Finkel0a479ae2012-06-22 00:49:52 +00007923 return true;
7924 default:
7925 break;
7926 }
7927
7928 return false;
7929}
7930
Hal Finkel88ed4e32012-04-01 19:23:08 +00007931Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Hal Finkel21442b22013-09-11 23:05:25 +00007932 if (DisableILPPref || PPCSubTarget.enableMachineScheduler())
Hal Finkel4e9f1a82012-06-10 19:32:29 +00007933 return TargetLowering::getSchedulingPreference(N);
Hal Finkel88ed4e32012-04-01 19:23:08 +00007934
Hal Finkel4e9f1a82012-06-10 19:32:29 +00007935 return Sched::ILP;
Hal Finkel88ed4e32012-04-01 19:23:08 +00007936}
7937
Bill Schmidt0cf702f2013-07-30 00:50:39 +00007938// Create a fast isel object.
7939FastISel *
7940PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
7941 const TargetLibraryInfo *LibInfo) const {
7942 return PPC::createFastISel(FuncInfo, LibInfo);
7943}