blob: 28b9ba9284430e87abdfda02a33754a55bd09b84 [file] [log] [blame]
Nate Begeman1d9d7422005-10-18 00:28:58 +00001//===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
Chris Lattner7c5a3d32005-08-16 17:14:42 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Lattner7c5a3d32005-08-16 17:14:42 +00007//
8//===----------------------------------------------------------------------===//
9//
Nate Begeman21e463b2005-10-16 05:39:50 +000010// This file implements the PPCISelLowering class.
Chris Lattner7c5a3d32005-08-16 17:14:42 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner16e71f22005-10-14 23:59:06 +000014#include "PPCISelLowering.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "MCTargetDesc/PPCPredicates.h"
Jim Laskey2f616bf2006-11-16 22:43:37 +000016#include "PPCMachineFunctionInfo.h"
Bill Wendling53351a12010-03-12 02:00:43 +000017#include "PPCPerfectShuffle.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000018#include "PPCTargetMachine.h"
Bill Schmidt240b9b62013-05-13 19:34:37 +000019#include "PPCTargetObjectFile.h"
Owen Anderson718cb662007-09-07 04:06:50 +000020#include "llvm/ADT/STLExtras.h"
Chris Lattnerb9a7bea2007-03-06 00:59:59 +000021#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner8a2d3ca2005-08-26 21:23:58 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000026#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000027#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chandler Carruth0b8c9a82013-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 Lattner4eab7142006-11-10 02:08:47 +000033#include "llvm/Support/CommandLine.h"
Torok Edwindac237e2009-07-08 20:53:28 +000034#include "llvm/Support/ErrorHandling.h"
Craig Topper79aa3412012-03-17 18:46:09 +000035#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000036#include "llvm/Support/raw_ostream.h"
Craig Topper79aa3412012-03-17 18:46:09 +000037#include "llvm/Target/TargetOptions.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000038using namespace llvm;
39
Hal Finkel77838f92012-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 Lattner4eab7142006-11-10 02:08:47 +000042
Hal Finkel71ffcfe2012-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 Finkel2d37f7b2013-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 Lattnerf0144122009-07-28 03:13:23 +000049static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
50 if (TM.getSubtargetImpl()->isDarwin())
Bill Wendling505ad8b2010-03-15 21:09:38 +000051 return new TargetLoweringObjectFileMachO();
Bill Wendling53351a12010-03-12 02:00:43 +000052
Bill Schmidt240b9b62013-05-13 19:34:37 +000053 if (TM.getSubtargetImpl()->isSVR4ABI())
54 return new PPC64LinuxTargetObjectFile();
55
Bruno Cardoso Lopesfdf229e2009-08-13 23:30:21 +000056 return new TargetLoweringObjectFileELF();
Chris Lattnerf0144122009-07-28 03:13:23 +000057}
58
Chris Lattner331d1bc2006-11-02 01:44:04 +000059PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +000060 : TargetLowering(TM, CreateTLOF(TM)), PPCSubTarget(*TM.getSubtargetImpl()) {
Evan Cheng769951f2012-07-02 22:39:56 +000061 const PPCSubtarget *Subtarget = &TM.getSubtarget<PPCSubtarget>();
Scott Michelfdc40a02009-02-17 22:15:04 +000062
Nate Begeman405e3ec2005-10-21 00:02:42 +000063 setPow2DivIsCheap();
Dale Johannesen72324642008-07-31 18:13:12 +000064
Chris Lattnerd145a612005-09-27 22:18:25 +000065 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000066 setUseUnderscoreSetJmp(true);
67 setUseUnderscoreLongJmp(true);
Scott Michelfdc40a02009-02-17 22:15:04 +000068
Chris Lattner749dc722010-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 Cheng769951f2012-07-02 22:39:56 +000071 bool isPPC64 = Subtarget->isPPC64();
72 setMinStackArgumentAlignment(isPPC64 ? 8:4);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000073
Chris Lattner7c5a3d32005-08-16 17:14:42 +000074 // Set up the register classes.
Craig Topperc9099502012-04-20 06:31:50 +000075 addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
76 addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
77 addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
Scott Michelfdc40a02009-02-17 22:15:04 +000078
Evan Chengc5484282006-10-04 00:56:09 +000079 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Owen Anderson825b72b2009-08-11 20:47:22 +000080 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
81 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Duncan Sandsf9c98e62008-01-23 20:39:46 +000082
Owen Anderson825b72b2009-08-11 20:47:22 +000083 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +000084
Chris Lattner94e509c2006-11-10 23:58:45 +000085 // PowerPC has pre-inc load and store's.
Owen Anderson825b72b2009-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 Chengcd633192006-11-09 19:11:50 +000096
Dale Johannesen6eaeff22007-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 Anderson825b72b2009-08-11 20:47:22 +000099 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesen638ccd52007-10-06 01:24:11 +0000100
Roman Divacky0016f732012-08-16 18:19:29 +0000101 // We do not currently implement these libm ops for PowerPC.
Owen Anderson4a4fdf32011-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 Schmidtcd7a1552013-04-03 13:05:44 +0000107 setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000108
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000109 // PowerPC has no SREM/UREM instructions
Owen Anderson825b72b2009-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 Gohman3ce990d2007-10-08 17:28:24 +0000114
115 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson825b72b2009-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 Michelfdc40a02009-02-17 22:15:04 +0000124
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000125 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson825b72b2009-08-11 20:47:22 +0000126 setOperationAction(ISD::FSIN , MVT::f64, Expand);
127 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000128 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000129 setOperationAction(ISD::FREM , MVT::f64, Expand);
130 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Hal Finkel070b8db2012-06-22 00:49:52 +0000131 setOperationAction(ISD::FMA , MVT::f64, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000132 setOperationAction(ISD::FSIN , MVT::f32, Expand);
133 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000134 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000135 setOperationAction(ISD::FREM , MVT::f32, Expand);
136 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Hal Finkel070b8db2012-06-22 00:49:52 +0000137 setOperationAction(ISD::FMA , MVT::f32, Legal);
Dale Johannesen5c5eb802008-01-18 19:55:37 +0000138
Owen Anderson825b72b2009-08-11 20:47:22 +0000139 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000140
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000141 // If we're enabling GP optimizations, use hardware square root
Hal Finkel827307b2013-04-03 04:01:11 +0000142 if (!Subtarget->hasFSQRT() &&
143 !(TM.Options.UnsafeFPMath &&
144 Subtarget->hasFRSQRTE() && Subtarget->hasFRE()))
Owen Anderson825b72b2009-08-11 20:47:22 +0000145 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Hal Finkel827307b2013-04-03 04:01:11 +0000146
147 if (!Subtarget->hasFSQRT() &&
148 !(TM.Options.UnsafeFPMath &&
149 Subtarget->hasFRSQRTES() && Subtarget->hasFRES()))
Owen Anderson825b72b2009-08-11 20:47:22 +0000150 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000151
Hal Finkel953a7802013-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 Michelfdc40a02009-02-17 22:15:04 +0000159
Hal Finkelf5d5c432013-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 Finkel05a4d262013-08-08 04:31:34 +0000164 setOperationAction(ISD::FROUND, MVT::f64, Legal);
Hal Finkelf5d5c432013-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 Finkel05a4d262013-08-08 04:31:34 +0000169 setOperationAction(ISD::FROUND, MVT::f32, Legal);
Hal Finkelf5d5c432013-03-29 08:57:48 +0000170 }
171
Nate Begemand88fc032006-01-14 03:14:10 +0000172 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson825b72b2009-08-11 20:47:22 +0000173 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000174 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000175 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
176 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000177 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000178 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000179 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
180 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000181
Hal Finkelc53ab4d2013-03-28 13:29:47 +0000182 if (Subtarget->hasPOPCNTD()) {
Hal Finkel1fce8832013-04-01 15:58:15 +0000183 setOperationAction(ISD::CTPOP, MVT::i32 , Legal);
Hal Finkelc53ab4d2013-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 Begeman35ef9132006-01-11 21:21:00 +0000190 // PowerPC does not have ROTR
Owen Anderson825b72b2009-08-11 20:47:22 +0000191 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
192 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000193
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000194 // PowerPC does not have Select
Owen Anderson825b72b2009-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 Michelfdc40a02009-02-17 22:15:04 +0000199
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000200 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson825b72b2009-08-11 20:47:22 +0000201 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
202 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begeman44775902006-01-31 08:17:29 +0000203
Nate Begeman750ac1b2006-02-01 07:19:44 +0000204 // PowerPC wants to optimize integer setcc a bit
Owen Anderson825b72b2009-08-11 20:47:22 +0000205 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000206
Nate Begeman81e80972006-03-17 01:40:33 +0000207 // PowerPC does not have BRCOND which requires SetCC
Owen Anderson825b72b2009-08-11 20:47:22 +0000208 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Chengc35497f2006-10-30 08:02:39 +0000209
Owen Anderson825b72b2009-08-11 20:47:22 +0000210 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000211
Chris Lattnerf7605322005-08-31 21:09:52 +0000212 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson825b72b2009-08-11 20:47:22 +0000213 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000214
Jim Laskeyad23c9d2005-08-17 00:40:22 +0000215 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson825b72b2009-08-11 20:47:22 +0000216 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
217 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskeyad23c9d2005-08-17 00:40:22 +0000218
Wesley Peckbf17cfa2010-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 Lattner53e88452005-12-23 05:13:35 +0000223
Chris Lattner25b8b8c2006-04-28 21:56:10 +0000224 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson825b72b2009-08-11 20:47:22 +0000225 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000226
Hal Finkele9150472013-03-27 19:10:42 +0000227 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Hal Finkel7ee74a62013-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 Michelfdc40a02009-02-17 22:15:04 +0000235
236 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman28a6b022005-12-10 02:36:00 +0000237 // appropriate instructions to materialize the address.
Owen Anderson825b72b2009-08-11 20:47:22 +0000238 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
239 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000240 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Owen Anderson825b72b2009-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 Wilson3d90dbe2009-11-04 21:31:18 +0000245 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000246 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
247 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000248
Nate Begeman1db3c922008-08-11 17:36:31 +0000249 // TRAP is legal.
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling77959322008-09-17 00:30:57 +0000251
252 // TRAMPOLINE is custom lowered.
Duncan Sands4a544a72011-09-06 13:37:06 +0000253 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
254 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Bill Wendling77959322008-09-17 00:30:57 +0000255
Nate Begemanacc398c2006-01-25 18:21:52 +0000256 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000257 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000258
Evan Cheng769951f2012-07-02 22:39:56 +0000259 if (Subtarget->isSVR4ABI()) {
260 if (isPPC64) {
Hal Finkel179a4dd2012-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 Divackybdb226e2011-06-28 15:30:42 +0000276 } else
Owen Anderson825b72b2009-08-11 20:47:22 +0000277 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000278
Roman Divacky6ebf55d2013-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 Lattnerb22c08b2006-01-15 09:02:48 +0000285 // Use the default implementation.
Owen Anderson825b72b2009-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 Lattner56a752e2006-10-18 01:18:48 +0000291
Chris Lattner6d92cad2006-03-26 10:06:40 +0000292 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000294
Hal Finkelb1fd3cd2013-05-15 21:37:41 +0000295 // To handle counter-based loop conditions.
296 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
297
Dale Johannesen53e4e442008-11-07 22:54:33 +0000298 // Comparisons that require checking two conditions.
Owen Anderson825b72b2009-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 Michelfdc40a02009-02-17 22:15:04 +0000311
Evan Cheng769951f2012-07-02 22:39:56 +0000312 if (Subtarget->has64BitSupport()) {
Nate Begeman1d9d7422005-10-18 00:28:58 +0000313 // They also have instructions for converting between i64 and fp.
Owen Anderson825b72b2009-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 Johannesen4c9369d2009-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 Anderson825b72b2009-08-11 20:47:22 +0000320 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000321
Hal Finkel46479192013-04-01 17:52:07 +0000322 if (PPCSubTarget.hasLFIWAX() || Subtarget->isPPC64())
Hal Finkel9ad0f492013-03-31 01:58:02 +0000323 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begemanae749a92005-10-25 23:48:36 +0000324 } else {
Chris Lattner860e8862005-11-17 07:30:41 +0000325 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000326 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begeman9d2b8172005-10-18 00:56:42 +0000327 }
328
Hal Finkel46479192013-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 Cheng769951f2012-07-02 22:39:56 +0000344 if (Subtarget->use64BitRegs()) {
Chris Lattner26cb2862007-10-19 04:08:28 +0000345 // 64-bit PowerPC implementations can support i64 types directly
Craig Topperc9099502012-04-20 06:31:50 +0000346 addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
Nate Begeman1d9d7422005-10-18 00:28:58 +0000347 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson825b72b2009-08-11 20:47:22 +0000348 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman9ed06db2008-03-07 20:36:53 +0000349 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson825b72b2009-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 Begeman1d9d7422005-10-18 00:28:58 +0000353 } else {
Chris Lattner26cb2862007-10-19 04:08:28 +0000354 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson825b72b2009-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 Begemanc09eeec2005-09-06 22:03:27 +0000358 }
Evan Chengd30bf012006-03-01 01:11:20 +0000359
Evan Cheng769951f2012-07-02 22:39:56 +0000360 if (Subtarget->hasAltivec()) {
Chris Lattnere3fea5a2006-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 Anderson825b72b2009-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 Sands83ec4b62008-06-06 12:08:01 +0000366
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000367 // add/sub are legal for all supported vector VT's.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000368 setOperationAction(ISD::ADD , VT, Legal);
369 setOperationAction(ISD::SUB , VT, Legal);
Scott Michelfdc40a02009-02-17 22:15:04 +0000370
Chris Lattner7ff7e672006-04-04 17:25:31 +0000371 // We promote all shuffles to v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000372 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000373 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000374
375 // We promote all non-typed operations to v4i32.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000376 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000377 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000378 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000379 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000380 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000381 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000382 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000383 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000384 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000385 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000386 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000387 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelfdc40a02009-02-17 22:15:04 +0000388
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000389 // No other operations are legal.
Duncan Sands83ec4b62008-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 Finkelad3b34d2013-07-08 17:30:25 +0000396 setOperationAction(ISD::FREM, VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000397 setOperationAction(ISD::FNEG, VT, Expand);
Craig Topper44e394c2012-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 Topper1ab489a2012-11-14 08:11:25 +0000408 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper49010472012-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 Sands83ec4b62008-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 Carruth63974b22011-12-13 01:56:10 +0000424 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000425 setOperationAction(ISD::CTTZ, VT, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000426 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
Benjamin Kramer91223a42012-12-19 15:49:14 +0000427 setOperationAction(ISD::VSELECT, VT, Expand);
Adhemerval Zanellacfe09ed2012-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 Lattnere3fea5a2006-03-31 19:52:36 +0000438 }
439
Chris Lattner7ff7e672006-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 Anderson825b72b2009-08-11 20:47:22 +0000442 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner7ff7e672006-04-04 17:25:31 +0000443
Owen Anderson825b72b2009-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 Zanella51aaadb2012-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 Zanellae95ed2b2012-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 Michelfdc40a02009-02-17 22:15:04 +0000458
Craig Topperc9099502012-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 Michelfdc40a02009-02-17 22:15:04 +0000463
Owen Anderson825b72b2009-08-11 20:47:22 +0000464 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Hal Finkel070b8db2012-06-22 00:49:52 +0000465 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
Hal Finkel827307b2013-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 Anderson825b72b2009-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 Lattnerf1d0b2b2006-03-20 01:53:53 +0000475
Owen Anderson825b72b2009-08-11 20:47:22 +0000476 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
477 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000478
Owen Anderson825b72b2009-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 Zanella5f41fd62012-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 Finkel947d4472013-07-08 20:00:03 +0000491
492 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand);
493 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
Nate Begeman425a9692005-11-29 08:17:20 +0000494 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000495
Hal Finkel8cc34742012-08-04 14:10:46 +0000496 if (Subtarget->has64BitSupport()) {
Hal Finkel19aa2b52012-04-01 20:08:17 +0000497 setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
Hal Finkel8cc34742012-08-04 14:10:46 +0000498 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Legal);
499 }
Hal Finkel19aa2b52012-04-01 20:08:17 +0000500
Eli Friedman4db5aca2011-08-29 18:23:02 +0000501 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Expand);
502 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Expand);
Hal Finkelcd9ea512012-12-25 17:22:53 +0000503 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
504 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
Eli Friedman4db5aca2011-08-29 18:23:02 +0000505
Duncan Sands03228082008-11-23 15:47:28 +0000506 setBooleanContents(ZeroOrOneBooleanContent);
Bill Schmidtfa799112013-04-23 18:49:44 +0000507 // Altivec instructions set fields to all zeros or all ones.
508 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Scott Michelfdc40a02009-02-17 22:15:04 +0000509
Evan Cheng769951f2012-07-02 22:39:56 +0000510 if (isPPC64) {
Chris Lattner10da9572006-10-18 01:20:43 +0000511 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000512 setExceptionPointerRegister(PPC::X3);
513 setExceptionSelectorRegister(PPC::X4);
514 } else {
Chris Lattner10da9572006-10-18 01:20:43 +0000515 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000516 setExceptionPointerRegister(PPC::R3);
517 setExceptionSelectorRegister(PPC::R4);
518 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000519
Chris Lattner8c13d0a2006-03-01 04:57:39 +0000520 // We have target-specific dag combine patterns for the following nodes:
521 setTargetDAGCombine(ISD::SINT_TO_FP);
Hal Finkel80d10de2013-05-24 23:00:14 +0000522 setTargetDAGCombine(ISD::LOAD);
Chris Lattner51269842006-03-01 05:50:56 +0000523 setTargetDAGCombine(ISD::STORE);
Chris Lattner90564f22006-04-18 17:59:36 +0000524 setTargetDAGCombine(ISD::BR_CC);
Chris Lattnerd9989382006-07-10 20:56:58 +0000525 setTargetDAGCombine(ISD::BSWAP);
Hal Finkel5a0e6042013-05-25 04:05:05 +0000526 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
Scott Michelfdc40a02009-02-17 22:15:04 +0000527
Hal Finkel827307b2013-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 Johannesenfabd32d2007-10-19 00:59:18 +0000534 // Darwin long double math library functions have $LDBL128 appended.
Evan Cheng769951f2012-07-02 22:39:56 +0000535 if (Subtarget->isDarwin()) {
Duncan Sands007f9842008-01-10 10:28:30 +0000536 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000537 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
538 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands007f9842008-01-10 10:28:30 +0000539 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
540 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesen7794f2a2008-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 Johannesenfabd32d2007-10-19 00:59:18 +0000546 }
547
Hal Finkelc6129162011-10-17 18:53:03 +0000548 setMinFunctionAlignment(2);
549 if (PPCSubTarget.isDarwin())
550 setPrefFunctionAlignment(4);
Eli Friedmanfc5d3052011-05-06 20:34:06 +0000551
Evan Cheng769951f2012-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 Friedman26689ac2011-08-03 21:06:02 +0000557 setInsertFencesForAtomic(true);
558
Hal Finkel768c65f2011-11-22 16:21:04 +0000559 setSchedulingPreference(Sched::Hybrid);
560
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000561 computeRegisterProperties();
Hal Finkel621b77a2012-08-28 16:12:39 +0000562
563 // The Freescale cores does better with aggressive inlining of memcpy and
564 // friends. Gcc uses same threshold of 128 bytes (= 32 word stores).
565 if (Subtarget->getDarwinDirective() == PPC::DIR_E500mc ||
566 Subtarget->getDarwinDirective() == PPC::DIR_E5500) {
Jim Grosbach3450f802013-02-20 21:13:59 +0000567 MaxStoresPerMemset = 32;
568 MaxStoresPerMemsetOptSize = 16;
569 MaxStoresPerMemcpy = 32;
570 MaxStoresPerMemcpyOptSize = 8;
571 MaxStoresPerMemmove = 32;
572 MaxStoresPerMemmoveOptSize = 8;
Hal Finkel621b77a2012-08-28 16:12:39 +0000573
574 setPrefFunctionAlignment(4);
Hal Finkel621b77a2012-08-28 16:12:39 +0000575 }
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000576}
577
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000578/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
579/// function arguments in the caller parameter area.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000580unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
Dan Gohmanf0757b02010-04-21 01:34:56 +0000581 const TargetMachine &TM = getTargetMachine();
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000582 // Darwin passes everything on 4 byte boundary.
583 if (TM.getSubtarget<PPCSubtarget>().isDarwin())
584 return 4;
Roman Divacky466958c2012-04-02 15:49:30 +0000585
586 // 16byte and wider vectors are passed on 16byte boundary.
587 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
588 if (VTy->getBitWidth() >= 128)
589 return 16;
590
591 // The rest is 8 on PPC64 and 4 on PPC32 boundary.
592 if (PPCSubTarget.isPPC64())
593 return 8;
594
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000595 return 4;
596}
597
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000598const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
599 switch (Opcode) {
600 default: return 0;
Evan Cheng53301922008-07-12 02:23:19 +0000601 case PPCISD::FSEL: return "PPCISD::FSEL";
602 case PPCISD::FCFID: return "PPCISD::FCFID";
603 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
604 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Hal Finkel827307b2013-04-03 04:01:11 +0000605 case PPCISD::FRE: return "PPCISD::FRE";
606 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE";
Evan Cheng53301922008-07-12 02:23:19 +0000607 case PPCISD::STFIWX: return "PPCISD::STFIWX";
608 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
609 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
610 case PPCISD::VPERM: return "PPCISD::VPERM";
611 case PPCISD::Hi: return "PPCISD::Hi";
612 case PPCISD::Lo: return "PPCISD::Lo";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000613 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY";
Tilmann Scheller3a84dae2009-12-18 13:00:15 +0000614 case PPCISD::TOC_RESTORE: return "PPCISD::TOC_RESTORE";
615 case PPCISD::LOAD: return "PPCISD::LOAD";
616 case PPCISD::LOAD_TOC: return "PPCISD::LOAD_TOC";
Evan Cheng53301922008-07-12 02:23:19 +0000617 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
618 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
619 case PPCISD::SRL: return "PPCISD::SRL";
620 case PPCISD::SRA: return "PPCISD::SRA";
621 case PPCISD::SHL: return "PPCISD::SHL";
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000622 case PPCISD::CALL: return "PPCISD::CALL";
623 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP";
Evan Cheng53301922008-07-12 02:23:19 +0000624 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000625 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Evan Cheng53301922008-07-12 02:23:19 +0000626 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkel7ee74a62013-03-21 21:37:52 +0000627 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
628 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Ulrich Weigand965b20e2013-07-03 17:05:42 +0000629 case PPCISD::MFOCRF: return "PPCISD::MFOCRF";
Evan Cheng53301922008-07-12 02:23:19 +0000630 case PPCISD::VCMP: return "PPCISD::VCMP";
631 case PPCISD::VCMPo: return "PPCISD::VCMPo";
632 case PPCISD::LBRX: return "PPCISD::LBRX";
633 case PPCISD::STBRX: return "PPCISD::STBRX";
Evan Cheng53301922008-07-12 02:23:19 +0000634 case PPCISD::LARX: return "PPCISD::LARX";
635 case PPCISD::STCX: return "PPCISD::STCX";
636 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkelb1fd3cd2013-05-15 21:37:41 +0000637 case PPCISD::BDNZ: return "PPCISD::BDNZ";
638 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng53301922008-07-12 02:23:19 +0000639 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng53301922008-07-12 02:23:19 +0000640 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng53301922008-07-12 02:23:19 +0000641 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel82b38212012-08-28 02:10:27 +0000642 case PPCISD::CR6SET: return "PPCISD::CR6SET";
643 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Bill Schmidt34a9d4b2012-11-27 17:35:46 +0000644 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA";
645 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L";
646 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L";
Bill Schmidtb453e162012-12-14 17:02:38 +0000647 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
648 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtd7802bf2012-12-04 16:18:08 +0000649 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidt57ac1f42012-12-11 20:30:11 +0000650 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
651 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
652 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR";
Bill Schmidt349c2782012-12-12 19:29:35 +0000653 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
654 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
655 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR";
656 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
657 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L";
Bill Schmidtb34c79e2013-02-20 15:50:31 +0000658 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT";
Bill Schmidt5bbdb192013-05-14 19:35:45 +0000659 case PPCISD::SC: return "PPCISD::SC";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000660 }
661}
662
Matt Arsenault225ed702013-05-18 00:21:46 +0000663EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000664 if (!VT.isVector())
665 return MVT::i32;
666 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +0000667}
668
Chris Lattner1a635d62006-04-14 06:01:58 +0000669//===----------------------------------------------------------------------===//
670// Node matching predicates, for use by the tblgen matching code.
671//===----------------------------------------------------------------------===//
672
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000673/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman475871a2008-07-27 21:46:04 +0000674static bool isFloatingPointZero(SDValue Op) {
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000675 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000676 return CFP->getValueAPF().isZero();
Gabor Greifba36cb52008-08-28 21:40:38 +0000677 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000678 // Maybe this has already been legalized into the constant pool?
679 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Dan Gohman46510a72010-04-15 01:51:59 +0000680 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000681 return CFP->getValueAPF().isZero();
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000682 }
683 return false;
684}
685
Chris Lattnerddb739e2006-04-06 17:23:16 +0000686/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
687/// true if Op is undef or if it matches the specified value.
Nate Begeman9008ca62009-04-27 18:41:29 +0000688static bool isConstantOrUndef(int Op, int Val) {
689 return Op < 0 || Op == Val;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000690}
691
692/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
693/// VPKUHUM instruction.
Nate Begeman9008ca62009-04-27 18:41:29 +0000694bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnerf24380e2006-04-06 22:28:36 +0000695 if (!isUnary) {
696 for (unsigned i = 0; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000697 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000698 return false;
699 } else {
700 for (unsigned i = 0; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000701 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1) ||
702 !isConstantOrUndef(N->getMaskElt(i+8), i*2+1))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000703 return false;
704 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000705 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000706}
707
708/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
709/// VPKUWUM instruction.
Nate Begeman9008ca62009-04-27 18:41:29 +0000710bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnerf24380e2006-04-06 22:28:36 +0000711 if (!isUnary) {
712 for (unsigned i = 0; i != 16; i += 2)
Nate Begeman9008ca62009-04-27 18:41:29 +0000713 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
714 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000715 return false;
716 } else {
717 for (unsigned i = 0; i != 8; i += 2)
Nate Begeman9008ca62009-04-27 18:41:29 +0000718 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
719 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3) ||
720 !isConstantOrUndef(N->getMaskElt(i+8), i*2+2) ||
721 !isConstantOrUndef(N->getMaskElt(i+9), i*2+3))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000722 return false;
723 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000724 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000725}
726
Chris Lattnercaad1632006-04-06 22:02:42 +0000727/// isVMerge - Common function, used to match vmrg* shuffles.
728///
Nate Begeman9008ca62009-04-27 18:41:29 +0000729static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnercaad1632006-04-06 22:02:42 +0000730 unsigned LHSStart, unsigned RHSStart) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000731 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman9008ca62009-04-27 18:41:29 +0000732 "PPC only supports shuffles by bytes!");
Chris Lattner116cc482006-04-06 21:11:54 +0000733 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
734 "Unsupported merge size!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000735
Chris Lattner116cc482006-04-06 21:11:54 +0000736 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
737 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman9008ca62009-04-27 18:41:29 +0000738 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000739 LHSStart+j+i*UnitSize) ||
Nate Begeman9008ca62009-04-27 18:41:29 +0000740 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000741 RHSStart+j+i*UnitSize))
Chris Lattner116cc482006-04-06 21:11:54 +0000742 return false;
743 }
Nate Begeman9008ca62009-04-27 18:41:29 +0000744 return true;
Chris Lattnercaad1632006-04-06 22:02:42 +0000745}
746
747/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
748/// a VRGL* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000749bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman9008ca62009-04-27 18:41:29 +0000750 bool isUnary) {
Chris Lattnercaad1632006-04-06 22:02:42 +0000751 if (!isUnary)
752 return isVMerge(N, UnitSize, 8, 24);
753 return isVMerge(N, UnitSize, 8, 8);
Chris Lattner116cc482006-04-06 21:11:54 +0000754}
755
756/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
757/// a VRGH* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000758bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman9008ca62009-04-27 18:41:29 +0000759 bool isUnary) {
Chris Lattnercaad1632006-04-06 22:02:42 +0000760 if (!isUnary)
761 return isVMerge(N, UnitSize, 0, 16);
762 return isVMerge(N, UnitSize, 0, 0);
Chris Lattner116cc482006-04-06 21:11:54 +0000763}
764
765
Chris Lattnerd0608e12006-04-06 18:26:28 +0000766/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
767/// amount, otherwise return -1.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000768int PPC::isVSLDOIShuffleMask(SDNode *N, bool isUnary) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000769 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman9008ca62009-04-27 18:41:29 +0000770 "PPC only supports shuffles by bytes!");
771
772 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000773
Chris Lattnerd0608e12006-04-06 18:26:28 +0000774 // Find the first non-undef value in the shuffle mask.
775 unsigned i;
Nate Begeman9008ca62009-04-27 18:41:29 +0000776 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattnerd0608e12006-04-06 18:26:28 +0000777 /*search*/;
Scott Michelfdc40a02009-02-17 22:15:04 +0000778
Chris Lattnerd0608e12006-04-06 18:26:28 +0000779 if (i == 16) return -1; // all undef.
Scott Michelfdc40a02009-02-17 22:15:04 +0000780
Nate Begeman9008ca62009-04-27 18:41:29 +0000781 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattnerd0608e12006-04-06 18:26:28 +0000782 // numbered from this value.
Nate Begeman9008ca62009-04-27 18:41:29 +0000783 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattnerd0608e12006-04-06 18:26:28 +0000784 if (ShiftAmt < i) return -1;
785 ShiftAmt -= i;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000786
Chris Lattnerf24380e2006-04-06 22:28:36 +0000787 if (!isUnary) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000788 // Check the rest of the elements to see if they are consecutive.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000789 for (++i; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000790 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000791 return -1;
792 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000793 // Check the rest of the elements to see if they are consecutive.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000794 for (++i; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000795 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000796 return -1;
797 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000798 return ShiftAmt;
799}
Chris Lattneref819f82006-03-20 06:33:01 +0000800
801/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
802/// specifies a splat of a single element that is suitable for input to
803/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman9008ca62009-04-27 18:41:29 +0000804bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000805 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner7ff7e672006-04-04 17:25:31 +0000806 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelfdc40a02009-02-17 22:15:04 +0000807
Chris Lattner88a99ef2006-03-20 06:37:44 +0000808 // This is a splat operation if each element of the permute is the same, and
809 // if the value doesn't reference the second vector.
Nate Begeman9008ca62009-04-27 18:41:29 +0000810 unsigned ElementBase = N->getMaskElt(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000811
Nate Begeman9008ca62009-04-27 18:41:29 +0000812 // FIXME: Handle UNDEF elements too!
813 if (ElementBase >= 16)
Chris Lattner7ff7e672006-04-04 17:25:31 +0000814 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000815
Nate Begeman9008ca62009-04-27 18:41:29 +0000816 // Check that the indices are consecutive, in the case of a multi-byte element
817 // splatted with a v16i8 mask.
818 for (unsigned i = 1; i != EltSize; ++i)
819 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner7ff7e672006-04-04 17:25:31 +0000820 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000821
Chris Lattner7ff7e672006-04-04 17:25:31 +0000822 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000823 if (N->getMaskElt(i) < 0) continue;
Chris Lattner7ff7e672006-04-04 17:25:31 +0000824 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman9008ca62009-04-27 18:41:29 +0000825 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner7ff7e672006-04-04 17:25:31 +0000826 return false;
Chris Lattner88a99ef2006-03-20 06:37:44 +0000827 }
Chris Lattner7ff7e672006-04-04 17:25:31 +0000828 return true;
Chris Lattneref819f82006-03-20 06:33:01 +0000829}
830
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000831/// isAllNegativeZeroVector - Returns true if all elements of build_vector
832/// are -0.0.
833bool PPC::isAllNegativeZeroVector(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000834 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
835
836 APInt APVal, APUndef;
837 unsigned BitSize;
838 bool HasAnyUndefs;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000839
Dale Johannesen1e608812009-11-13 01:45:18 +0000840 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))
Nate Begeman9008ca62009-04-27 18:41:29 +0000841 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000842 return CFP->getValueAPF().isNegZero();
Nate Begeman9008ca62009-04-27 18:41:29 +0000843
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000844 return false;
845}
846
Chris Lattneref819f82006-03-20 06:33:01 +0000847/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
848/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Chris Lattner7ff7e672006-04-04 17:25:31 +0000849unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000850 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
851 assert(isSplatShuffleMask(SVOp, EltSize));
852 return SVOp->getMaskElt(0) / EltSize;
Chris Lattneref819f82006-03-20 06:33:01 +0000853}
854
Chris Lattnere87192a2006-04-12 17:37:20 +0000855/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattner140a58f2006-04-08 06:46:53 +0000856/// by using a vspltis[bhw] instruction of the specified element size, return
857/// the constant being splatted. The ByteSize field indicates the number of
858/// bytes of each element [124] -> [bhw].
Dan Gohman475871a2008-07-27 21:46:04 +0000859SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
860 SDValue OpVal(0, 0);
Chris Lattner79d9a882006-04-08 07:14:26 +0000861
862 // If ByteSize of the splat is bigger than the element size of the
863 // build_vector, then we have a case where we are checking for a splat where
864 // multiple elements of the buildvector are folded together into a single
865 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
866 unsigned EltSize = 16/N->getNumOperands();
867 if (EltSize < ByteSize) {
868 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman475871a2008-07-27 21:46:04 +0000869 SDValue UniquedVals[4];
Chris Lattner79d9a882006-04-08 07:14:26 +0000870 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelfdc40a02009-02-17 22:15:04 +0000871
Chris Lattner79d9a882006-04-08 07:14:26 +0000872 // See if all of the elements in the buildvector agree across.
873 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
874 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
875 // If the element isn't a constant, bail fully out.
Dan Gohman475871a2008-07-27 21:46:04 +0000876 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000877
Scott Michelfdc40a02009-02-17 22:15:04 +0000878
Gabor Greifba36cb52008-08-28 21:40:38 +0000879 if (UniquedVals[i&(Multiple-1)].getNode() == 0)
Chris Lattner79d9a882006-04-08 07:14:26 +0000880 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
881 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman475871a2008-07-27 21:46:04 +0000882 return SDValue(); // no match.
Chris Lattner79d9a882006-04-08 07:14:26 +0000883 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000884
Chris Lattner79d9a882006-04-08 07:14:26 +0000885 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
886 // either constant or undef values that are identical for each chunk. See
887 // if these chunks can form into a larger vspltis*.
Scott Michelfdc40a02009-02-17 22:15:04 +0000888
Chris Lattner79d9a882006-04-08 07:14:26 +0000889 // Check to see if all of the leading entries are either 0 or -1. If
890 // neither, then this won't fit into the immediate field.
891 bool LeadingZero = true;
892 bool LeadingOnes = true;
893 for (unsigned i = 0; i != Multiple-1; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000894 if (UniquedVals[i].getNode() == 0) continue; // Must have been undefs.
Scott Michelfdc40a02009-02-17 22:15:04 +0000895
Chris Lattner79d9a882006-04-08 07:14:26 +0000896 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
897 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
898 }
899 // Finally, check the least significant entry.
900 if (LeadingZero) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000901 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +0000902 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000903 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000904 if (Val < 16)
Owen Anderson825b72b2009-08-11 20:47:22 +0000905 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
Chris Lattner79d9a882006-04-08 07:14:26 +0000906 }
907 if (LeadingOnes) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000908 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
Dan Gohman7810bfe2008-09-26 21:54:37 +0000910 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000911 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Owen Anderson825b72b2009-08-11 20:47:22 +0000912 return DAG.getTargetConstant(Val, MVT::i32);
Chris Lattner79d9a882006-04-08 07:14:26 +0000913 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000914
Dan Gohman475871a2008-07-27 21:46:04 +0000915 return SDValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000916 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000917
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000918 // Check to see if this buildvec has a single non-undef value in its elements.
919 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
920 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greifba36cb52008-08-28 21:40:38 +0000921 if (OpVal.getNode() == 0)
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000922 OpVal = N->getOperand(i);
923 else if (OpVal != N->getOperand(i))
Dan Gohman475871a2008-07-27 21:46:04 +0000924 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000925 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000926
Gabor Greifba36cb52008-08-28 21:40:38 +0000927 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
Scott Michelfdc40a02009-02-17 22:15:04 +0000928
Eli Friedman1a8229b2009-05-24 02:03:36 +0000929 unsigned ValSizeInBytes = EltSize;
Nate Begeman98e70cc2006-03-28 04:15:58 +0000930 uint64_t Value = 0;
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000931 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000932 Value = CN->getZExtValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000933 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000934 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johanneseneaf08942007-08-31 04:03:46 +0000935 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000936 }
937
938 // If the splat value is larger than the element value, then we can never do
939 // this splat. The only case that we could fit the replicated bits into our
940 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman475871a2008-07-27 21:46:04 +0000941 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +0000942
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000943 // If the element value is larger than the splat value, cut it in half and
944 // check to see if the two halves are equal. Continue doing this until we
945 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
946 while (ValSizeInBytes > ByteSize) {
947 ValSizeInBytes >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000948
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000949 // If the top half equals the bottom half, we're still ok.
Chris Lattner9b42bdd2006-04-05 17:39:25 +0000950 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
951 (Value & ((1 << (8*ValSizeInBytes))-1)))
Dan Gohman475871a2008-07-27 21:46:04 +0000952 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000953 }
954
955 // Properly sign extend the value.
Richard Smith1144af32012-08-24 23:29:28 +0000956 int MaskVal = SignExtend32(Value, ByteSize * 8);
Scott Michelfdc40a02009-02-17 22:15:04 +0000957
Evan Cheng5b6a01b2006-03-26 09:52:32 +0000958 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman475871a2008-07-27 21:46:04 +0000959 if (MaskVal == 0) return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000960
Chris Lattner140a58f2006-04-08 06:46:53 +0000961 // Finally, if this value fits in a 5 bit sext field, return it
Richard Smith1144af32012-08-24 23:29:28 +0000962 if (SignExtend32<5>(MaskVal) == MaskVal)
Owen Anderson825b72b2009-08-11 20:47:22 +0000963 return DAG.getTargetConstant(MaskVal, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000964 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000965}
966
Chris Lattner1a635d62006-04-14 06:01:58 +0000967//===----------------------------------------------------------------------===//
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000968// Addressing Mode Selection
969//===----------------------------------------------------------------------===//
970
971/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
972/// or 64-bit immediate, and if the value can be accurately represented as a
973/// sign extension from a 16-bit value. If so, this returns true and the
974/// immediate.
975static bool isIntS16Immediate(SDNode *N, short &Imm) {
976 if (N->getOpcode() != ISD::Constant)
977 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000978
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000979 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000980 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000981 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000982 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000983 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000984}
Dan Gohman475871a2008-07-27 21:46:04 +0000985static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000986 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000987}
988
989
990/// SelectAddressRegReg - Given the specified addressed, check to see if it
991/// can be represented as an indexed [r+r] operation. Returns false if it
992/// can be more efficiently represented with [r+imm].
Dan Gohman475871a2008-07-27 21:46:04 +0000993bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
994 SDValue &Index,
Dan Gohman73e09142009-01-15 16:29:45 +0000995 SelectionDAG &DAG) const {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000996 short imm = 0;
997 if (N.getOpcode() == ISD::ADD) {
998 if (isIntS16Immediate(N.getOperand(1), imm))
999 return false; // r+i
1000 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1001 return false; // r+i
Scott Michelfdc40a02009-02-17 22:15:04 +00001002
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001003 Base = N.getOperand(0);
1004 Index = N.getOperand(1);
1005 return true;
1006 } else if (N.getOpcode() == ISD::OR) {
1007 if (isIntS16Immediate(N.getOperand(1), imm))
1008 return false; // r+i can fold it if we can.
Scott Michelfdc40a02009-02-17 22:15:04 +00001009
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001010 // If this is an or of disjoint bitfields, we can codegen this as an add
1011 // (for better address arithmetic) if the LHS and RHS of the OR are provably
1012 // disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001013 APInt LHSKnownZero, LHSKnownOne;
1014 APInt RHSKnownZero, RHSKnownOne;
1015 DAG.ComputeMaskedBits(N.getOperand(0),
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001016 LHSKnownZero, LHSKnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001018 if (LHSKnownZero.getBoolValue()) {
1019 DAG.ComputeMaskedBits(N.getOperand(1),
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001020 RHSKnownZero, RHSKnownOne);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001021 // If all of the bits are known zero on the LHS or RHS, the add won't
1022 // carry.
Dan Gohmanec59b952008-02-27 21:12:32 +00001023 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001024 Base = N.getOperand(0);
1025 Index = N.getOperand(1);
1026 return true;
1027 }
1028 }
1029 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001030
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001031 return false;
1032}
1033
Hal Finkelfa559692013-07-09 06:34:51 +00001034// If we happen to be doing an i64 load or store into a stack slot that has
1035// less than a 4-byte alignment, then the frame-index elimination may need to
1036// use an indexed load or store instruction (because the offset may not be a
1037// multiple of 4). The extra register needed to hold the offset comes from the
1038// register scavenger, and it is possible that the scavenger will need to use
1039// an emergency spill slot. As a result, we need to make sure that a spill slot
1040// is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1041// stack slot.
1042static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1043 // FIXME: This does not handle the LWA case.
1044 if (VT != MVT::i64)
1045 return;
1046
Hal Finkele355d852013-07-10 15:29:01 +00001047 // NOTE: We'll exclude negative FIs here, which come from argument
1048 // lowering, because there are no known test cases triggering this problem
1049 // using packed structures (or similar). We can remove this exclusion if
1050 // we find such a test case. The reason why this is so test-case driven is
1051 // because this entire 'fixup' is only to prevent crashes (from the
1052 // register scavenger) on not-really-valid inputs. For example, if we have:
1053 // %a = alloca i1
1054 // %b = bitcast i1* %a to i64*
1055 // store i64* a, i64 b
1056 // then the store should really be marked as 'align 1', but is not. If it
1057 // were marked as 'align 1' then the indexed form would have been
1058 // instruction-selected initially, and the problem this 'fixup' is preventing
1059 // won't happen regardless.
Hal Finkelfa559692013-07-09 06:34:51 +00001060 if (FrameIdx < 0)
1061 return;
1062
1063 MachineFunction &MF = DAG.getMachineFunction();
1064 MachineFrameInfo *MFI = MF.getFrameInfo();
1065
1066 unsigned Align = MFI->getObjectAlignment(FrameIdx);
1067 if (Align >= 4)
1068 return;
1069
1070 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1071 FuncInfo->setHasNonRISpills();
1072}
1073
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001074/// Returns true if the address N can be represented by a base register plus
1075/// a signed 16-bit displacement [r+imm], and if it is not better
Ulrich Weigand347a5072013-05-16 17:58:02 +00001076/// represented as reg+reg. If Aligned is true, only accept displacements
1077/// suitable for STD and friends, i.e. multiples of 4.
Dan Gohman475871a2008-07-27 21:46:04 +00001078bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman73e09142009-01-15 16:29:45 +00001079 SDValue &Base,
Ulrich Weigand347a5072013-05-16 17:58:02 +00001080 SelectionDAG &DAG,
1081 bool Aligned) const {
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001082 // FIXME dl should come from parent load or store, not from address
Andrew Trickac6d9be2013-05-25 02:42:55 +00001083 SDLoc dl(N);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001084 // If this can be more profitably realized as r+r, fail.
1085 if (SelectAddressRegReg(N, Disp, Base, DAG))
1086 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001087
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001088 if (N.getOpcode() == ISD::ADD) {
1089 short imm = 0;
Ulrich Weigand347a5072013-05-16 17:58:02 +00001090 if (isIntS16Immediate(N.getOperand(1), imm) &&
1091 (!Aligned || (imm & 3) == 0)) {
Ulrich Weigandf0ef8822013-05-16 14:53:05 +00001092 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001093 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1094 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkelfa559692013-07-09 06:34:51 +00001095 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001096 } else {
1097 Base = N.getOperand(0);
1098 }
1099 return true; // [r+i]
1100 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1101 // Match LOAD (ADD (X, Lo(G))).
Gabor Greif413ca0d2012-04-20 11:41:38 +00001102 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001103 && "Cannot handle constant offsets yet!");
1104 Disp = N.getOperand(1).getOperand(0); // The global address.
1105 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
Roman Divackyfd42ed62012-06-04 17:36:38 +00001106 Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001107 Disp.getOpcode() == ISD::TargetConstantPool ||
1108 Disp.getOpcode() == ISD::TargetJumpTable);
1109 Base = N.getOperand(0);
1110 return true; // [&g+r]
1111 }
1112 } else if (N.getOpcode() == ISD::OR) {
1113 short imm = 0;
Ulrich Weigand347a5072013-05-16 17:58:02 +00001114 if (isIntS16Immediate(N.getOperand(1), imm) &&
1115 (!Aligned || (imm & 3) == 0)) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001116 // If this is an or of disjoint bitfields, we can codegen this as an add
1117 // (for better address arithmetic) if the LHS and RHS of the OR are
1118 // provably disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001119 APInt LHSKnownZero, LHSKnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001120 DAG.ComputeMaskedBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
Bill Wendling3e98c302008-03-24 23:16:37 +00001121
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001122 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001123 // If all of the bits are known zero on the LHS or RHS, the add won't
1124 // carry.
1125 Base = N.getOperand(0);
Ulrich Weigandf0ef8822013-05-16 14:53:05 +00001126 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001127 return true;
1128 }
1129 }
1130 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1131 // Loading from a constant address.
Scott Michelfdc40a02009-02-17 22:15:04 +00001132
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001133 // If this address fits entirely in a 16-bit sext immediate field, codegen
1134 // this as "d, 0"
1135 short Imm;
Ulrich Weigand347a5072013-05-16 17:58:02 +00001136 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001137 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
Hal Finkel76973702013-03-21 23:45:03 +00001138 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1139 CN->getValueType(0));
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001140 return true;
1141 }
Chris Lattnerbc681d62007-02-17 06:44:03 +00001142
1143 // Handle 32-bit sext immediates with LIS + addr mode.
Ulrich Weigand347a5072013-05-16 17:58:02 +00001144 if ((CN->getValueType(0) == MVT::i32 ||
1145 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1146 (!Aligned || (CN->getZExtValue() & 3) == 0)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001147 int Addr = (int)CN->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001148
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001149 // Otherwise, break this down into an LIS + disp.
Owen Anderson825b72b2009-08-11 20:47:22 +00001150 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00001151
Owen Anderson825b72b2009-08-11 20:47:22 +00001152 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
1153 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dan Gohman602b0c82009-09-25 18:54:59 +00001154 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001155 return true;
1156 }
1157 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001158
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001159 Disp = DAG.getTargetConstant(0, getPointerTy());
Hal Finkelfa559692013-07-09 06:34:51 +00001160 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001161 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
Hal Finkelfa559692013-07-09 06:34:51 +00001162 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1163 } else
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001164 Base = N;
1165 return true; // [r+0]
1166}
1167
1168/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1169/// represented as an indexed [r+r] operation.
Dan Gohman475871a2008-07-27 21:46:04 +00001170bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1171 SDValue &Index,
Dan Gohman73e09142009-01-15 16:29:45 +00001172 SelectionDAG &DAG) const {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001173 // Check to see if we can easily represent this as an [r+r] address. This
1174 // will fail if it thinks that the address is more profitably represented as
1175 // reg+imm, e.g. where imm = 0.
1176 if (SelectAddressRegReg(N, Base, Index, DAG))
1177 return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001178
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001179 // If the operand is an addition, always emit this as [r+r], since this is
1180 // better (for code size, and execution, as the memop does the add for free)
1181 // than emitting an explicit add.
1182 if (N.getOpcode() == ISD::ADD) {
1183 Base = N.getOperand(0);
1184 Index = N.getOperand(1);
1185 return true;
1186 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001187
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001188 // Otherwise, do it the hard way, using R0 as the base register.
Hal Finkel76973702013-03-21 23:45:03 +00001189 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1190 N.getValueType());
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001191 Index = N;
1192 return true;
1193}
1194
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001195/// getPreIndexedAddressParts - returns true by value, base pointer and
1196/// offset pointer and addressing mode by reference if the node's address
1197/// can be legally represented as pre-indexed load / store address.
Dan Gohman475871a2008-07-27 21:46:04 +00001198bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1199 SDValue &Offset,
Evan Cheng144d8f02006-11-09 17:55:04 +00001200 ISD::MemIndexedMode &AM,
Dan Gohman73e09142009-01-15 16:29:45 +00001201 SelectionDAG &DAG) const {
Hal Finkel77838f92012-06-04 02:21:00 +00001202 if (DisablePPCPreinc) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001203
Ulrich Weigand881a7152013-03-22 14:58:48 +00001204 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00001205 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00001206 EVT VT;
Hal Finkel08a215c2013-03-18 23:00:58 +00001207 unsigned Alignment;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001208 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1209 Ptr = LD->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001210 VT = LD->getMemoryVT();
Hal Finkel08a215c2013-03-18 23:00:58 +00001211 Alignment = LD->getAlignment();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001212 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001213 Ptr = ST->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001214 VT = ST->getMemoryVT();
Hal Finkel08a215c2013-03-18 23:00:58 +00001215 Alignment = ST->getAlignment();
Ulrich Weigand881a7152013-03-22 14:58:48 +00001216 isLoad = false;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001217 } else
1218 return false;
1219
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001220 // PowerPC doesn't have preinc load/store instructions for vectors.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001221 if (VT.isVector())
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001222 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001223
Ulrich Weigand881a7152013-03-22 14:58:48 +00001224 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1225
1226 // Common code will reject creating a pre-inc form if the base pointer
1227 // is a frame index, or if N is a store and the base pointer is either
1228 // the same as or a predecessor of the value being stored. Check for
1229 // those situations here, and try with swapped Base/Offset instead.
1230 bool Swap = false;
1231
1232 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1233 Swap = true;
1234 else if (!isLoad) {
1235 SDValue Val = cast<StoreSDNode>(N)->getValue();
1236 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1237 Swap = true;
1238 }
1239
1240 if (Swap)
1241 std::swap(Base, Offset);
1242
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001243 AM = ISD::PRE_INC;
1244 return true;
Hal Finkelac81cc32012-06-19 02:34:32 +00001245 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001246
Ulrich Weigand347a5072013-05-16 17:58:02 +00001247 // LDU/STU can only handle immediates that are a multiple of 4.
Owen Anderson825b72b2009-08-11 20:47:22 +00001248 if (VT != MVT::i64) {
Ulrich Weigand347a5072013-05-16 17:58:02 +00001249 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
Chris Lattner0851b4f2006-11-15 19:55:13 +00001250 return false;
1251 } else {
Hal Finkel08a215c2013-03-18 23:00:58 +00001252 // LDU/STU need an address with at least 4-byte alignment.
1253 if (Alignment < 4)
1254 return false;
1255
Ulrich Weigand347a5072013-05-16 17:58:02 +00001256 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
Chris Lattner0851b4f2006-11-15 19:55:13 +00001257 return false;
1258 }
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001259
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001260 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner0851b4f2006-11-15 19:55:13 +00001261 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1262 // sext i32 to i64 when addr mode is r+i.
Owen Anderson825b72b2009-08-11 20:47:22 +00001263 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001264 LD->getExtensionType() == ISD::SEXTLOAD &&
1265 isa<ConstantSDNode>(Offset))
1266 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001267 }
1268
Chris Lattner4eab7142006-11-10 02:08:47 +00001269 AM = ISD::PRE_INC;
1270 return true;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001271}
1272
1273//===----------------------------------------------------------------------===//
Chris Lattner1a635d62006-04-14 06:01:58 +00001274// LowerOperation implementation
1275//===----------------------------------------------------------------------===//
1276
Chris Lattner1e61e692010-11-15 02:46:57 +00001277/// GetLabelAccessInfo - Return true if we should reference labels using a
1278/// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1279static bool GetLabelAccessInfo(const TargetMachine &TM, unsigned &HiOpFlags,
Chris Lattner6d2ff122010-11-15 03:13:19 +00001280 unsigned &LoOpFlags, const GlobalValue *GV = 0) {
Ulrich Weigand92cfa612013-06-21 14:42:20 +00001281 HiOpFlags = PPCII::MO_HA;
1282 LoOpFlags = PPCII::MO_LO;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001283
Chris Lattner1e61e692010-11-15 02:46:57 +00001284 // Don't use the pic base if not in PIC relocation model. Or if we are on a
1285 // non-darwin platform. We don't support PIC on other platforms yet.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001286 bool isPIC = TM.getRelocationModel() == Reloc::PIC_ &&
Chris Lattner1e61e692010-11-15 02:46:57 +00001287 TM.getSubtarget<PPCSubtarget>().isDarwin();
Chris Lattner6d2ff122010-11-15 03:13:19 +00001288 if (isPIC) {
1289 HiOpFlags |= PPCII::MO_PIC_FLAG;
1290 LoOpFlags |= PPCII::MO_PIC_FLAG;
1291 }
1292
1293 // If this is a reference to a global value that requires a non-lazy-ptr, make
1294 // sure that instruction lowering adds it.
1295 if (GV && TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV, TM)) {
1296 HiOpFlags |= PPCII::MO_NLP_FLAG;
1297 LoOpFlags |= PPCII::MO_NLP_FLAG;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001298
Chris Lattner6d2ff122010-11-15 03:13:19 +00001299 if (GV->hasHiddenVisibility()) {
1300 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1301 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1302 }
1303 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001304
Chris Lattner1e61e692010-11-15 02:46:57 +00001305 return isPIC;
1306}
1307
1308static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1309 SelectionDAG &DAG) {
1310 EVT PtrVT = HiPart.getValueType();
1311 SDValue Zero = DAG.getConstant(0, PtrVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001312 SDLoc DL(HiPart);
Chris Lattner1e61e692010-11-15 02:46:57 +00001313
1314 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1315 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001316
Chris Lattner1e61e692010-11-15 02:46:57 +00001317 // With PIC, the first instruction is actually "GR+hi(&G)".
1318 if (isPIC)
1319 Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1320 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001321
Chris Lattner1e61e692010-11-15 02:46:57 +00001322 // Generate non-pic code that has direct accesses to the constant pool.
1323 // The address of the global is just (hi(&g)+lo(&g)).
1324 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1325}
1326
Scott Michelfdc40a02009-02-17 22:15:04 +00001327SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00001328 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00001329 EVT PtrVT = Op.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00001330 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman46510a72010-04-15 01:51:59 +00001331 const Constant *C = CP->getConstVal();
Chris Lattner1a635d62006-04-14 06:01:58 +00001332
Roman Divacky9fb8b492012-08-24 16:26:02 +00001333 // 64-bit SVR4 ABI code is always position-independent.
1334 // The actual address of the GlobalValue is stored in the TOC.
1335 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1336 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001337 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
Roman Divacky9fb8b492012-08-24 16:26:02 +00001338 DAG.getRegister(PPC::X2, MVT::i64));
1339 }
1340
Chris Lattner1e61e692010-11-15 02:46:57 +00001341 unsigned MOHiFlag, MOLoFlag;
1342 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1343 SDValue CPIHi =
1344 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1345 SDValue CPILo =
1346 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1347 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00001348}
1349
Dan Gohmand858e902010-04-17 15:26:15 +00001350SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00001351 EVT PtrVT = Op.getValueType();
Nate Begeman37efe672006-04-22 18:53:45 +00001352 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001353
Roman Divacky9fb8b492012-08-24 16:26:02 +00001354 // 64-bit SVR4 ABI code is always position-independent.
1355 // The actual address of the GlobalValue is stored in the TOC.
1356 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1357 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001358 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
Roman Divacky9fb8b492012-08-24 16:26:02 +00001359 DAG.getRegister(PPC::X2, MVT::i64));
1360 }
1361
Chris Lattner1e61e692010-11-15 02:46:57 +00001362 unsigned MOHiFlag, MOLoFlag;
1363 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1364 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1365 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1366 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +00001367}
1368
Dan Gohmand858e902010-04-17 15:26:15 +00001369SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1370 SelectionDAG &DAG) const {
Bob Wilson3d90dbe2009-11-04 21:31:18 +00001371 EVT PtrVT = Op.getValueType();
Bob Wilson3d90dbe2009-11-04 21:31:18 +00001372
Dan Gohman46510a72010-04-15 01:51:59 +00001373 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001374
Chris Lattner1e61e692010-11-15 02:46:57 +00001375 unsigned MOHiFlag, MOLoFlag;
1376 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00001377 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1378 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattner1e61e692010-11-15 02:46:57 +00001379 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1380}
1381
Roman Divackyfd42ed62012-06-04 17:36:38 +00001382SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1383 SelectionDAG &DAG) const {
1384
1385 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001386 SDLoc dl(GA);
Roman Divackyfd42ed62012-06-04 17:36:38 +00001387 const GlobalValue *GV = GA->getGlobal();
1388 EVT PtrVT = getPointerTy();
1389 bool is64bit = PPCSubTarget.isPPC64();
1390
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001391 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackyfd42ed62012-06-04 17:36:38 +00001392
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001393 if (Model == TLSModel::LocalExec) {
1394 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigand92cfa612013-06-21 14:42:20 +00001395 PPCII::MO_TPREL_HA);
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001396 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
Ulrich Weigand92cfa612013-06-21 14:42:20 +00001397 PPCII::MO_TPREL_LO);
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001398 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1399 is64bit ? MVT::i64 : MVT::i32);
1400 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1401 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1402 }
Roman Divackyfd42ed62012-06-04 17:36:38 +00001403
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001404 if (!is64bit)
1405 llvm_unreachable("only local-exec is currently supported for ppc32");
1406
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001407 if (Model == TLSModel::InitialExec) {
Bill Schmidtdfebc4c2012-12-13 18:45:54 +00001408 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
Ulrich Weigand23a72c82013-07-05 12:22:36 +00001409 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1410 PPCII::MO_TLS);
Bill Schmidtdfebc4c2012-12-13 18:45:54 +00001411 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
Bill Schmidtb453e162012-12-14 17:02:38 +00001412 SDValue TPOffsetHi = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1413 PtrVT, GOTReg, TGA);
1414 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
1415 PtrVT, TGA, TPOffsetHi);
Ulrich Weigand23a72c82013-07-05 12:22:36 +00001416 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001417 }
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001418
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001419 if (Model == TLSModel::GeneralDynamic) {
1420 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1421 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1422 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1423 GOTReg, TGA);
1424 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl, PtrVT,
1425 GOTEntryHi, TGA);
1426
1427 // We need a chain node, and don't have one handy. The underlying
1428 // call has no side effects, so using the function entry node
1429 // suffices.
1430 SDValue Chain = DAG.getEntryNode();
1431 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1432 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1433 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLS_ADDR, dl,
1434 PtrVT, ParmReg, TGA);
Bill Schmidt349c2782012-12-12 19:29:35 +00001435 // The return value from GET_TLS_ADDR really is in X3 already, but
1436 // some hacks are needed here to tie everything together. The extra
1437 // copies dissolve during subsequent transforms.
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001438 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1439 return DAG.getCopyFromReg(Chain, dl, PPC::X3, PtrVT);
1440 }
1441
Bill Schmidt349c2782012-12-12 19:29:35 +00001442 if (Model == TLSModel::LocalDynamic) {
1443 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1444 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1445 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1446 GOTReg, TGA);
1447 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT,
1448 GOTEntryHi, TGA);
1449
1450 // We need a chain node, and don't have one handy. The underlying
1451 // call has no side effects, so using the function entry node
1452 // suffices.
1453 SDValue Chain = DAG.getEntryNode();
1454 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1455 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1456 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLSLD_ADDR, dl,
1457 PtrVT, ParmReg, TGA);
1458 // The return value from GET_TLSLD_ADDR really is in X3 already, but
1459 // some hacks are needed here to tie everything together. The extra
1460 // copies dissolve during subsequent transforms.
1461 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1462 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, PtrVT,
Bill Schmidt1e18b862012-12-13 20:57:10 +00001463 Chain, ParmReg, TGA);
Bill Schmidt349c2782012-12-12 19:29:35 +00001464 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1465 }
1466
1467 llvm_unreachable("Unknown TLS model!");
Roman Divackyfd42ed62012-06-04 17:36:38 +00001468}
1469
Chris Lattner1e61e692010-11-15 02:46:57 +00001470SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1471 SelectionDAG &DAG) const {
1472 EVT PtrVT = Op.getValueType();
1473 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001474 SDLoc DL(GSDN);
Chris Lattner1e61e692010-11-15 02:46:57 +00001475 const GlobalValue *GV = GSDN->getGlobal();
1476
Chris Lattner1e61e692010-11-15 02:46:57 +00001477 // 64-bit SVR4 ABI code is always position-independent.
1478 // The actual address of the GlobalValue is stored in the TOC.
1479 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1480 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1481 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1482 DAG.getRegister(PPC::X2, MVT::i64));
1483 }
1484
Chris Lattner6d2ff122010-11-15 03:13:19 +00001485 unsigned MOHiFlag, MOLoFlag;
1486 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag, GV);
Chris Lattner1e61e692010-11-15 02:46:57 +00001487
Chris Lattner6d2ff122010-11-15 03:13:19 +00001488 SDValue GAHi =
1489 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1490 SDValue GALo =
1491 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001492
Chris Lattner6d2ff122010-11-15 03:13:19 +00001493 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilson3d90dbe2009-11-04 21:31:18 +00001494
Chris Lattner6d2ff122010-11-15 03:13:19 +00001495 // If the global reference is actually to a non-lazy-pointer, we have to do an
1496 // extra load to get the address of the global.
1497 if (MOHiFlag & PPCII::MO_NLP_FLAG)
1498 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001499 false, false, false, 0);
Chris Lattner6d2ff122010-11-15 03:13:19 +00001500 return Ptr;
Chris Lattner1a635d62006-04-14 06:01:58 +00001501}
1502
Dan Gohmand858e902010-04-17 15:26:15 +00001503SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner1a635d62006-04-14 06:01:58 +00001504 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001505 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00001506
Chris Lattner1a635d62006-04-14 06:01:58 +00001507 // If we're comparing for equality to zero, expose the fact that this is
1508 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1509 // fold the new nodes.
1510 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1511 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Andersone50ed302009-08-10 22:56:29 +00001512 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001513 SDValue Zext = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001514 if (VT.bitsLT(MVT::i32)) {
1515 VT = MVT::i32;
Dale Johannesenf5d97892009-02-04 01:48:28 +00001516 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001517 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00001518 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001519 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1520 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson825b72b2009-08-11 20:47:22 +00001521 DAG.getConstant(Log2b, MVT::i32));
1522 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner1a635d62006-04-14 06:01:58 +00001523 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001524 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner1a635d62006-04-14 06:01:58 +00001525 // optimized. FIXME: revisit this when we can custom lower all setcc
1526 // optimizations.
1527 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman475871a2008-07-27 21:46:04 +00001528 return SDValue();
Chris Lattner1a635d62006-04-14 06:01:58 +00001529 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001530
Chris Lattner1a635d62006-04-14 06:01:58 +00001531 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattnerac011bc2006-11-14 05:28:08 +00001532 // by xor'ing the rhs with the lhs, which is faster than setting a
1533 // condition register, reading it back out, and masking the correct bit. The
1534 // normal approach here uses sub to do this instead of xor. Using xor exposes
1535 // the result to other bit-twiddling opportunities.
Owen Andersone50ed302009-08-10 22:56:29 +00001536 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001537 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Andersone50ed302009-08-10 22:56:29 +00001538 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001539 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner1a635d62006-04-14 06:01:58 +00001540 Op.getOperand(1));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001541 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner1a635d62006-04-14 06:01:58 +00001542 }
Dan Gohman475871a2008-07-27 21:46:04 +00001543 return SDValue();
Chris Lattner1a635d62006-04-14 06:01:58 +00001544}
1545
Dan Gohman475871a2008-07-27 21:46:04 +00001546SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001547 const PPCSubtarget &Subtarget) const {
Roman Divackybdb226e2011-06-28 15:30:42 +00001548 SDNode *Node = Op.getNode();
1549 EVT VT = Node->getValueType(0);
1550 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1551 SDValue InChain = Node->getOperand(0);
1552 SDValue VAListPtr = Node->getOperand(1);
1553 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001554 SDLoc dl(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001555
Roman Divackybdb226e2011-06-28 15:30:42 +00001556 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1557
1558 // gpr_index
1559 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1560 VAListPtr, MachinePointerInfo(SV), MVT::i8,
1561 false, false, 0);
1562 InChain = GprIndex.getValue(1);
1563
1564 if (VT == MVT::i64) {
1565 // Check if GprIndex is even
1566 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1567 DAG.getConstant(1, MVT::i32));
1568 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1569 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1570 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1571 DAG.getConstant(1, MVT::i32));
1572 // Align GprIndex to be even if it isn't
1573 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1574 GprIndex);
1575 }
1576
1577 // fpr index is 1 byte after gpr
1578 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1579 DAG.getConstant(1, MVT::i32));
1580
1581 // fpr
1582 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1583 FprPtr, MachinePointerInfo(SV), MVT::i8,
1584 false, false, 0);
1585 InChain = FprIndex.getValue(1);
1586
1587 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1588 DAG.getConstant(8, MVT::i32));
1589
1590 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1591 DAG.getConstant(4, MVT::i32));
1592
1593 // areas
1594 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001595 MachinePointerInfo(), false, false,
1596 false, 0);
Roman Divackybdb226e2011-06-28 15:30:42 +00001597 InChain = OverflowArea.getValue(1);
1598
1599 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001600 MachinePointerInfo(), false, false,
1601 false, 0);
Roman Divackybdb226e2011-06-28 15:30:42 +00001602 InChain = RegSaveArea.getValue(1);
1603
1604 // select overflow_area if index > 8
1605 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1606 DAG.getConstant(8, MVT::i32), ISD::SETLT);
1607
Roman Divackybdb226e2011-06-28 15:30:42 +00001608 // adjustment constant gpr_index * 4/8
1609 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1610 VT.isInteger() ? GprIndex : FprIndex,
1611 DAG.getConstant(VT.isInteger() ? 4 : 8,
1612 MVT::i32));
1613
1614 // OurReg = RegSaveArea + RegConstant
1615 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1616 RegConstant);
1617
1618 // Floating types are 32 bytes into RegSaveArea
1619 if (VT.isFloatingPoint())
1620 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1621 DAG.getConstant(32, MVT::i32));
1622
1623 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1624 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1625 VT.isInteger() ? GprIndex : FprIndex,
1626 DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1627 MVT::i32));
1628
1629 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1630 VT.isInteger() ? VAListPtr : FprPtr,
1631 MachinePointerInfo(SV),
1632 MVT::i8, false, false, 0);
1633
1634 // determine if we should load from reg_save_area or overflow_area
1635 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1636
1637 // increase overflow_area by 4/8 if gpr/fpr > 8
1638 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1639 DAG.getConstant(VT.isInteger() ? 4 : 8,
1640 MVT::i32));
1641
1642 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1643 OverflowAreaPlusN);
1644
1645 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
1646 OverflowAreaPtr,
1647 MachinePointerInfo(),
1648 MVT::i32, false, false, 0);
1649
NAKAMURA Takumi25f6b5a2012-08-30 15:52:23 +00001650 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001651 false, false, false, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001652}
1653
Roman Divacky6ebf55d2013-07-25 21:36:47 +00001654SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
1655 const PPCSubtarget &Subtarget) const {
1656 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
1657
1658 // We have to copy the entire va_list struct:
1659 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
1660 return DAG.getMemcpy(Op.getOperand(0), Op,
1661 Op.getOperand(1), Op.getOperand(2),
1662 DAG.getConstant(12, MVT::i32), 8, false, true,
1663 MachinePointerInfo(), MachinePointerInfo());
1664}
1665
Duncan Sands4a544a72011-09-06 13:37:06 +00001666SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
1667 SelectionDAG &DAG) const {
1668 return Op.getOperand(0);
1669}
1670
1671SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
1672 SelectionDAG &DAG) const {
Bill Wendling77959322008-09-17 00:30:57 +00001673 SDValue Chain = Op.getOperand(0);
1674 SDValue Trmp = Op.getOperand(1); // trampoline
1675 SDValue FPtr = Op.getOperand(2); // nested function
1676 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +00001677 SDLoc dl(Op);
Bill Wendling77959322008-09-17 00:30:57 +00001678
Owen Andersone50ed302009-08-10 22:56:29 +00001679 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00001680 bool isPPC64 = (PtrVT == MVT::i64);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001681 Type *IntPtrTy =
Micah Villmow3574eca2012-10-08 16:38:25 +00001682 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
Chandler Carruthece6c6b2012-11-01 08:07:29 +00001683 *DAG.getContext());
Bill Wendling77959322008-09-17 00:30:57 +00001684
Scott Michelfdc40a02009-02-17 22:15:04 +00001685 TargetLowering::ArgListTy Args;
Bill Wendling77959322008-09-17 00:30:57 +00001686 TargetLowering::ArgListEntry Entry;
1687
1688 Entry.Ty = IntPtrTy;
1689 Entry.Node = Trmp; Args.push_back(Entry);
1690
1691 // TrampSize == (isPPC64 ? 48 : 40);
1692 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson825b72b2009-08-11 20:47:22 +00001693 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling77959322008-09-17 00:30:57 +00001694 Args.push_back(Entry);
1695
1696 Entry.Node = FPtr; Args.push_back(Entry);
1697 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelfdc40a02009-02-17 22:15:04 +00001698
Bill Wendling77959322008-09-17 00:30:57 +00001699 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001700 TargetLowering::CallLoweringInfo CLI(Chain,
1701 Type::getVoidTy(*DAG.getContext()),
1702 false, false, false, false, 0,
1703 CallingConv::C,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001704 /*isTailCall=*/false,
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001705 /*doesNotRet=*/false,
1706 /*isReturnValueUsed=*/true,
Bill Wendling77959322008-09-17 00:30:57 +00001707 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
Bill Wendling46ada192010-03-02 01:55:18 +00001708 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001709 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Bill Wendling77959322008-09-17 00:30:57 +00001710
Duncan Sands4a544a72011-09-06 13:37:06 +00001711 return CallResult.second;
Bill Wendling77959322008-09-17 00:30:57 +00001712}
1713
Dan Gohman475871a2008-07-27 21:46:04 +00001714SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001715 const PPCSubtarget &Subtarget) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001716 MachineFunction &MF = DAG.getMachineFunction();
1717 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1718
Andrew Trickac6d9be2013-05-25 02:42:55 +00001719 SDLoc dl(Op);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001720
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001721 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray01119992007-04-03 13:59:52 +00001722 // vastart just stores the address of the VarArgsFrameIndex slot into the
1723 // memory location argument.
Owen Andersone50ed302009-08-10 22:56:29 +00001724 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman1e93df62010-04-17 14:41:14 +00001725 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001726 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner6229d0a2010-09-21 18:41:36 +00001727 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
1728 MachinePointerInfo(SV),
David Greene534502d12010-02-15 16:56:53 +00001729 false, false, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001730 }
1731
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001732 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray01119992007-04-03 13:59:52 +00001733 // We suppose the given va_list is already allocated.
1734 //
1735 // typedef struct {
1736 // char gpr; /* index into the array of 8 GPRs
1737 // * stored in the register save area
1738 // * gpr=0 corresponds to r3,
1739 // * gpr=1 to r4, etc.
1740 // */
1741 // char fpr; /* index into the array of 8 FPRs
1742 // * stored in the register save area
1743 // * fpr=0 corresponds to f1,
1744 // * fpr=1 to f2, etc.
1745 // */
1746 // char *overflow_arg_area;
1747 // /* location on stack that holds
1748 // * the next overflow argument
1749 // */
1750 // char *reg_save_area;
1751 // /* where r3:r10 and f1:f8 (if saved)
1752 // * are stored
1753 // */
1754 // } va_list[1];
1755
1756
Dan Gohman1e93df62010-04-17 14:41:14 +00001757 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
1758 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00001759
Nicolas Geoffray01119992007-04-03 13:59:52 +00001760
Owen Andersone50ed302009-08-10 22:56:29 +00001761 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00001762
Dan Gohman1e93df62010-04-17 14:41:14 +00001763 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
1764 PtrVT);
1765 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
1766 PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001767
Duncan Sands83ec4b62008-06-06 12:08:01 +00001768 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman475871a2008-07-27 21:46:04 +00001769 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001770
Duncan Sands83ec4b62008-06-06 12:08:01 +00001771 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001772 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001773
1774 uint64_t FPROffset = 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001775 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001776
Dan Gohman69de1932008-02-06 22:27:42 +00001777 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001778
Nicolas Geoffray01119992007-04-03 13:59:52 +00001779 // Store first byte : number of int regs
Tilmann Schellerffd02002009-07-03 06:45:56 +00001780 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001781 Op.getOperand(1),
1782 MachinePointerInfo(SV),
1783 MVT::i8, false, false, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001784 uint64_t nextOffset = FPROffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001785 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray01119992007-04-03 13:59:52 +00001786 ConstFPROffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001787
Nicolas Geoffray01119992007-04-03 13:59:52 +00001788 // Store second byte : number of float regs
Dan Gohman475871a2008-07-27 21:46:04 +00001789 SDValue secondStore =
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001790 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
1791 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene534502d12010-02-15 16:56:53 +00001792 false, false, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001793 nextOffset += StackOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001794 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001795
Nicolas Geoffray01119992007-04-03 13:59:52 +00001796 // Store second word : arguments given on stack
Dan Gohman475871a2008-07-27 21:46:04 +00001797 SDValue thirdStore =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001798 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
1799 MachinePointerInfo(SV, nextOffset),
David Greene534502d12010-02-15 16:56:53 +00001800 false, false, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001801 nextOffset += FrameOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001802 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001803
1804 // Store third word : arguments given in registers
Chris Lattner6229d0a2010-09-21 18:41:36 +00001805 return DAG.getStore(thirdStore, dl, FR, nextPtr,
1806 MachinePointerInfo(SV, nextOffset),
David Greene534502d12010-02-15 16:56:53 +00001807 false, false, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001808
Chris Lattner1a635d62006-04-14 06:01:58 +00001809}
1810
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00001811#include "PPCGenCallingConv.inc"
1812
Bill Schmidt7c42ede2013-08-26 20:11:46 +00001813// Function whose sole purpose is to kill compiler warnings
1814// stemming from unused functions included from PPCGenCallingConv.inc.
1815CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
1816 if (Flag == 1)
1817 return RetCC_PPC64_ELF_FIS; /* CC_PPC64_ELF_FIS in future patch. */
1818 else
1819 return RetCC_PPC64_ELF_FIS;
1820}
1821
Bill Schmidtd3f77662013-06-12 16:39:22 +00001822bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
1823 CCValAssign::LocInfo &LocInfo,
1824 ISD::ArgFlagsTy &ArgFlags,
1825 CCState &State) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001826 return true;
1827}
1828
Bill Schmidtd3f77662013-06-12 16:39:22 +00001829bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
1830 MVT &LocVT,
1831 CCValAssign::LocInfo &LocInfo,
1832 ISD::ArgFlagsTy &ArgFlags,
1833 CCState &State) {
Craig Topperc5eaae42012-03-11 07:57:25 +00001834 static const uint16_t ArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001835 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1836 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1837 };
1838 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001839
Tilmann Schellerffd02002009-07-03 06:45:56 +00001840 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1841
1842 // Skip one register if the first unallocated register has an even register
1843 // number and there are still argument registers available which have not been
1844 // allocated yet. RegNum is actually an index into ArgRegs, which means we
1845 // need to skip a register if RegNum is odd.
1846 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
1847 State.AllocateReg(ArgRegs[RegNum]);
1848 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001849
Tilmann Schellerffd02002009-07-03 06:45:56 +00001850 // Always return false here, as this function only makes sure that the first
1851 // unallocated register has an odd register number and does not actually
1852 // allocate a register for the current argument.
1853 return false;
1854}
1855
Bill Schmidtd3f77662013-06-12 16:39:22 +00001856bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
1857 MVT &LocVT,
1858 CCValAssign::LocInfo &LocInfo,
1859 ISD::ArgFlagsTy &ArgFlags,
1860 CCState &State) {
Craig Topperc5eaae42012-03-11 07:57:25 +00001861 static const uint16_t ArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001862 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1863 PPC::F8
1864 };
1865
1866 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001867
Tilmann Schellerffd02002009-07-03 06:45:56 +00001868 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1869
1870 // If there is only one Floating-point register left we need to put both f64
1871 // values of a split ppc_fp128 value on the stack.
1872 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
1873 State.AllocateReg(ArgRegs[RegNum]);
1874 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001875
Tilmann Schellerffd02002009-07-03 06:45:56 +00001876 // Always return false here, as this function only makes sure that the two f64
1877 // values a ppc_fp128 value is split into are both passed in registers or both
1878 // passed on the stack and does not actually allocate a register for the
1879 // current argument.
1880 return false;
1881}
1882
Chris Lattner9f0bc652007-02-25 05:34:32 +00001883/// GetFPR - Get the set of FP registers that should be allocated for arguments,
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001884/// on Darwin.
Craig Topperb78ca422012-03-11 07:16:55 +00001885static const uint16_t *GetFPR() {
1886 static const uint16_t FPR[] = {
Chris Lattner9f0bc652007-02-25 05:34:32 +00001887 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001888 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
Chris Lattner9f0bc652007-02-25 05:34:32 +00001889 };
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001890
Chris Lattner9f0bc652007-02-25 05:34:32 +00001891 return FPR;
1892}
1893
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001894/// CalculateStackSlotSize - Calculates the size reserved for this argument on
1895/// the stack.
Owen Andersone50ed302009-08-10 22:56:29 +00001896static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001897 unsigned PtrByteSize) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001898 unsigned ArgSize = ArgVT.getSizeInBits()/8;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001899 if (Flags.isByVal())
1900 ArgSize = Flags.getByValSize();
1901 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1902
1903 return ArgSize;
1904}
1905
Dan Gohman475871a2008-07-27 21:46:04 +00001906SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001907PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001908 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001909 const SmallVectorImpl<ISD::InputArg>
1910 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001911 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001912 SmallVectorImpl<SDValue> &InVals)
1913 const {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00001914 if (PPCSubTarget.isSVR4ABI()) {
1915 if (PPCSubTarget.isPPC64())
1916 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
1917 dl, DAG, InVals);
1918 else
1919 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
1920 dl, DAG, InVals);
Bill Schmidt419f3762012-09-19 15:42:13 +00001921 } else {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00001922 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
1923 dl, DAG, InVals);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001924 }
1925}
1926
1927SDValue
Bill Schmidt419f3762012-09-19 15:42:13 +00001928PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohman98ca4f22009-08-05 01:29:28 +00001929 SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001930 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001931 const SmallVectorImpl<ISD::InputArg>
1932 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001933 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001934 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001935
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001936 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001937 // +-----------------------------------+
1938 // +--> | Back chain |
1939 // | +-----------------------------------+
1940 // | | Floating-point register save area |
1941 // | +-----------------------------------+
1942 // | | General register save area |
1943 // | +-----------------------------------+
1944 // | | CR save word |
1945 // | +-----------------------------------+
1946 // | | VRSAVE save word |
1947 // | +-----------------------------------+
1948 // | | Alignment padding |
1949 // | +-----------------------------------+
1950 // | | Vector register save area |
1951 // | +-----------------------------------+
1952 // | | Local variable space |
1953 // | +-----------------------------------+
1954 // | | Parameter list area |
1955 // | +-----------------------------------+
1956 // | | LR save word |
1957 // | +-----------------------------------+
1958 // SP--> +--- | Back chain |
1959 // +-----------------------------------+
1960 //
1961 // Specifications:
1962 // System V Application Binary Interface PowerPC Processor Supplement
1963 // AltiVec Technology Programming Interface Manual
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001964
Tilmann Schellerffd02002009-07-03 06:45:56 +00001965 MachineFunction &MF = DAG.getMachineFunction();
1966 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman1e93df62010-04-17 14:41:14 +00001967 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001968
Owen Andersone50ed302009-08-10 22:56:29 +00001969 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001970 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001971 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
1972 (CallConv == CallingConv::Fast));
Tilmann Schellerffd02002009-07-03 06:45:56 +00001973 unsigned PtrByteSize = 4;
1974
1975 // Assign locations to all of the incoming arguments.
1976 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001977 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00001978 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001979
1980 // Reserve space for the linkage area on the stack.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001981 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001982
Bill Schmidt212af6a2013-02-06 17:33:58 +00001983 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001984
Tilmann Schellerffd02002009-07-03 06:45:56 +00001985 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1986 CCValAssign &VA = ArgLocs[i];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001987
Tilmann Schellerffd02002009-07-03 06:45:56 +00001988 // Arguments stored in registers.
1989 if (VA.isRegLoc()) {
Craig Topper44d23822012-02-22 05:59:10 +00001990 const TargetRegisterClass *RC;
Owen Andersone50ed302009-08-10 22:56:29 +00001991 EVT ValVT = VA.getValVT();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001992
Owen Anderson825b72b2009-08-11 20:47:22 +00001993 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001994 default:
Dan Gohman98ca4f22009-08-05 01:29:28 +00001995 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Owen Anderson825b72b2009-08-11 20:47:22 +00001996 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +00001997 RC = &PPC::GPRCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001998 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001999 case MVT::f32:
Craig Topperc9099502012-04-20 06:31:50 +00002000 RC = &PPC::F4RCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002001 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002002 case MVT::f64:
Craig Topperc9099502012-04-20 06:31:50 +00002003 RC = &PPC::F8RCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002004 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002005 case MVT::v16i8:
2006 case MVT::v8i16:
2007 case MVT::v4i32:
2008 case MVT::v4f32:
Craig Topperc9099502012-04-20 06:31:50 +00002009 RC = &PPC::VRRCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002010 break;
2011 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002012
Tilmann Schellerffd02002009-07-03 06:45:56 +00002013 // Transform the arguments stored in physical registers into virtual ones.
Devang Patel68e6bee2011-02-21 23:21:26 +00002014 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002015 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, ValVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002016
Dan Gohman98ca4f22009-08-05 01:29:28 +00002017 InVals.push_back(ArgValue);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002018 } else {
2019 // Argument stored in memory.
2020 assert(VA.isMemLoc());
2021
2022 unsigned ArgSize = VA.getLocVT().getSizeInBits() / 8;
2023 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Chenged2ae132010-07-03 00:40:23 +00002024 isImmutable);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002025
2026 // Create load nodes to retrieve arguments from the stack.
2027 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002028 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2029 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002030 false, false, false, 0));
Tilmann Schellerffd02002009-07-03 06:45:56 +00002031 }
2032 }
2033
2034 // Assign locations to all of the incoming aggregate by value arguments.
2035 // Aggregates passed by value are stored in the local variable space of the
2036 // caller's stack frame, right above the parameter list area.
2037 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002038 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00002039 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00002040
2041 // Reserve stack space for the allocations in CCInfo.
2042 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2043
Bill Schmidt212af6a2013-02-06 17:33:58 +00002044 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002045
2046 // Area that is at least reserved in the caller of this function.
2047 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002048
Tilmann Schellerffd02002009-07-03 06:45:56 +00002049 // Set the size that is at least reserved in caller of this function. Tail
2050 // call optimized function's reserved stack space needs to be aligned so that
2051 // taking the difference between two stack areas will result in an aligned
2052 // stack.
2053 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2054
2055 MinReservedArea =
2056 std::max(MinReservedArea,
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002057 PPCFrameLowering::getMinCallFrameSize(false, false));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002058
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002059 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameLowering()->
Tilmann Schellerffd02002009-07-03 06:45:56 +00002060 getStackAlignment();
2061 unsigned AlignMask = TargetAlign-1;
2062 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002063
Tilmann Schellerffd02002009-07-03 06:45:56 +00002064 FI->setMinReservedArea(MinReservedArea);
2065
2066 SmallVector<SDValue, 8> MemOps;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002067
Tilmann Schellerffd02002009-07-03 06:45:56 +00002068 // If the function takes variable number of arguments, make a frame index for
2069 // the start of the first vararg value... for expansion of llvm.va_start.
2070 if (isVarArg) {
Craig Topperc5eaae42012-03-11 07:57:25 +00002071 static const uint16_t GPArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002072 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2073 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2074 };
2075 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2076
Craig Topperc5eaae42012-03-11 07:57:25 +00002077 static const uint16_t FPArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002078 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2079 PPC::F8
2080 };
2081 const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2082
Dan Gohman1e93df62010-04-17 14:41:14 +00002083 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2084 NumGPArgRegs));
2085 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2086 NumFPArgRegs));
Tilmann Schellerffd02002009-07-03 06:45:56 +00002087
2088 // Make room for NumGPArgRegs and NumFPArgRegs.
2089 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Owen Anderson825b72b2009-08-11 20:47:22 +00002090 NumFPArgRegs * EVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002091
Dan Gohman1e93df62010-04-17 14:41:14 +00002092 FuncInfo->setVarArgsStackOffset(
2093 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002094 CCInfo.getNextStackOffset(), true));
Tilmann Schellerffd02002009-07-03 06:45:56 +00002095
Dan Gohman1e93df62010-04-17 14:41:14 +00002096 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2097 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002098
Jakob Stoklund Olesen4f9af2e2010-10-11 20:43:09 +00002099 // The fixed integer arguments of a variadic function are stored to the
2100 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2101 // the result of va_next.
2102 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2103 // Get an existing live-in vreg, or add a new one.
2104 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2105 if (!VReg)
Devang Patel68e6bee2011-02-21 23:21:26 +00002106 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002107
Dan Gohman98ca4f22009-08-05 01:29:28 +00002108 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner6229d0a2010-09-21 18:41:36 +00002109 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2110 MachinePointerInfo(), false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002111 MemOps.push_back(Store);
2112 // Increment the address by four for the next argument to store
2113 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2114 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2115 }
2116
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00002117 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2118 // is set.
Tilmann Schellerffd02002009-07-03 06:45:56 +00002119 // The double arguments are stored to the VarArgsFrameIndex
2120 // on the stack.
Jakob Stoklund Olesen4f9af2e2010-10-11 20:43:09 +00002121 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2122 // Get an existing live-in vreg, or add a new one.
2123 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2124 if (!VReg)
Devang Patel68e6bee2011-02-21 23:21:26 +00002125 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002126
Owen Anderson825b72b2009-08-11 20:47:22 +00002127 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner6229d0a2010-09-21 18:41:36 +00002128 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2129 MachinePointerInfo(), false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002130 MemOps.push_back(Store);
2131 // Increment the address by eight for the next argument to store
Owen Anderson825b72b2009-08-11 20:47:22 +00002132 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerffd02002009-07-03 06:45:56 +00002133 PtrVT);
2134 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2135 }
2136 }
2137
2138 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00002139 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00002140 MVT::Other, &MemOps[0], MemOps.size());
Tilmann Schellerffd02002009-07-03 06:45:56 +00002141
Dan Gohman98ca4f22009-08-05 01:29:28 +00002142 return Chain;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002143}
2144
Bill Schmidt726c2372012-10-23 15:51:16 +00002145// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2146// value to MVT::i64 and then truncate to the correct register size.
2147SDValue
2148PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2149 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002150 SDLoc dl) const {
Bill Schmidt726c2372012-10-23 15:51:16 +00002151 if (Flags.isSExt())
2152 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2153 DAG.getValueType(ObjectVT));
2154 else if (Flags.isZExt())
2155 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2156 DAG.getValueType(ObjectVT));
Matt Arsenault225ed702013-05-18 00:21:46 +00002157
Bill Schmidt726c2372012-10-23 15:51:16 +00002158 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2159}
2160
2161// Set the size that is at least reserved in caller of this function. Tail
2162// call optimized functions' reserved stack space needs to be aligned so that
2163// taking the difference between two stack areas will result in an aligned
2164// stack.
2165void
2166PPCTargetLowering::setMinReservedArea(MachineFunction &MF, SelectionDAG &DAG,
2167 unsigned nAltivecParamsAtEnd,
2168 unsigned MinReservedArea,
2169 bool isPPC64) const {
2170 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2171 // Add the Altivec parameters at the end, if needed.
2172 if (nAltivecParamsAtEnd) {
2173 MinReservedArea = ((MinReservedArea+15)/16)*16;
2174 MinReservedArea += 16*nAltivecParamsAtEnd;
2175 }
2176 MinReservedArea =
2177 std::max(MinReservedArea,
2178 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
2179 unsigned TargetAlign
2180 = DAG.getMachineFunction().getTarget().getFrameLowering()->
2181 getStackAlignment();
2182 unsigned AlignMask = TargetAlign-1;
2183 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
2184 FI->setMinReservedArea(MinReservedArea);
2185}
2186
Tilmann Schellerffd02002009-07-03 06:45:56 +00002187SDValue
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002188PPCTargetLowering::LowerFormalArguments_64SVR4(
2189 SDValue Chain,
2190 CallingConv::ID CallConv, bool isVarArg,
2191 const SmallVectorImpl<ISD::InputArg>
2192 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002193 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002194 SmallVectorImpl<SDValue> &InVals) const {
2195 // TODO: add description of PPC stack frame format, or at least some docs.
2196 //
2197 MachineFunction &MF = DAG.getMachineFunction();
2198 MachineFrameInfo *MFI = MF.getFrameInfo();
2199 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2200
2201 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2202 // Potential tail calls could cause overwriting of argument stack slots.
2203 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2204 (CallConv == CallingConv::Fast));
2205 unsigned PtrByteSize = 8;
2206
2207 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
2208 // Area that is at least reserved in caller of this function.
2209 unsigned MinReservedArea = ArgOffset;
2210
2211 static const uint16_t GPR[] = {
2212 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2213 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2214 };
2215
2216 static const uint16_t *FPR = GetFPR();
2217
2218 static const uint16_t VR[] = {
2219 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2220 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2221 };
2222
2223 const unsigned Num_GPR_Regs = array_lengthof(GPR);
2224 const unsigned Num_FPR_Regs = 13;
2225 const unsigned Num_VR_Regs = array_lengthof(VR);
2226
2227 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
2228
2229 // Add DAG nodes to load the arguments or copy them out of registers. On
2230 // entry to a function on PPC, the arguments start after the linkage area,
2231 // although the first ones are often in registers.
2232
2233 SmallVector<SDValue, 8> MemOps;
2234 unsigned nAltivecParamsAtEnd = 0;
2235 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt49deebb2013-02-20 17:31:41 +00002236 unsigned CurArgIdx = 0;
2237 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002238 SDValue ArgVal;
2239 bool needsLoad = false;
2240 EVT ObjectVT = Ins[ArgNo].VT;
2241 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
2242 unsigned ArgSize = ObjSize;
2243 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt49deebb2013-02-20 17:31:41 +00002244 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2245 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002246
2247 unsigned CurArgOffset = ArgOffset;
2248
2249 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
2250 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2251 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
2252 if (isVarArg) {
2253 MinReservedArea = ((MinReservedArea+15)/16)*16;
2254 MinReservedArea += CalculateStackSlotSize(ObjectVT,
2255 Flags,
2256 PtrByteSize);
2257 } else
2258 nAltivecParamsAtEnd++;
2259 } else
2260 // Calculate min reserved area.
2261 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
2262 Flags,
2263 PtrByteSize);
2264
2265 // FIXME the codegen can be much improved in some cases.
2266 // We do not have to keep everything in memory.
2267 if (Flags.isByVal()) {
2268 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2269 ObjSize = Flags.getByValSize();
2270 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt42d43352012-10-31 01:15:05 +00002271 // Empty aggregate parameters do not take up registers. Examples:
2272 // struct { } a;
2273 // union { } b;
2274 // int c[0];
2275 // etc. However, we have to provide a place-holder in InVals, so
2276 // pretend we have an 8-byte item at the current address for that
2277 // purpose.
2278 if (!ObjSize) {
2279 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2280 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2281 InVals.push_back(FIN);
2282 continue;
2283 }
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002284 // All aggregates smaller than 8 bytes must be passed right-justified.
Bill Schmidt7a6cb152012-10-16 13:30:53 +00002285 if (ObjSize < PtrByteSize)
2286 CurArgOffset = CurArgOffset + (PtrByteSize - ObjSize);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002287 // The value of the object is its address.
2288 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
2289 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2290 InVals.push_back(FIN);
Bill Schmidt37900c52012-10-25 13:38:09 +00002291
2292 if (ObjSize < 8) {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002293 if (GPR_idx != Num_GPR_Regs) {
Bill Schmidt37900c52012-10-25 13:38:09 +00002294 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002295 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt37900c52012-10-25 13:38:09 +00002296 SDValue Store;
2297
2298 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2299 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2300 (ObjSize == 2 ? MVT::i16 : MVT::i32));
2301 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
2302 MachinePointerInfo(FuncArg, CurArgOffset),
2303 ObjType, false, false, 0);
2304 } else {
2305 // For sizes that don't fit a truncating store (3, 5, 6, 7),
2306 // store the whole register as-is to the parameter save area
2307 // slot. The address of the parameter was already calculated
2308 // above (InVals.push_back(FIN)) to be the right-justified
2309 // offset within the slot. For this store, we need a new
2310 // frame index that points at the beginning of the slot.
2311 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2312 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2313 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2314 MachinePointerInfo(FuncArg, ArgOffset),
2315 false, false, 0);
2316 }
2317
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002318 MemOps.push_back(Store);
2319 ++GPR_idx;
2320 }
Bill Schmidt37900c52012-10-25 13:38:09 +00002321 // Whether we copied from a register or not, advance the offset
2322 // into the parameter save area by a full doubleword.
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002323 ArgOffset += PtrByteSize;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002324 continue;
2325 }
Bill Schmidt37900c52012-10-25 13:38:09 +00002326
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002327 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2328 // Store whatever pieces of the object are in registers
2329 // to memory. ArgOffset will be the address of the beginning
2330 // of the object.
2331 if (GPR_idx != Num_GPR_Regs) {
2332 unsigned VReg;
2333 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2334 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2335 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2336 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt37900c52012-10-25 13:38:09 +00002337 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002338 MachinePointerInfo(FuncArg, ArgOffset),
2339 false, false, 0);
2340 MemOps.push_back(Store);
2341 ++GPR_idx;
2342 ArgOffset += PtrByteSize;
2343 } else {
Bill Schmidt7a6cb152012-10-16 13:30:53 +00002344 ArgOffset += ArgSize - j;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002345 break;
2346 }
2347 }
2348 continue;
2349 }
2350
2351 switch (ObjectVT.getSimpleVT().SimpleTy) {
2352 default: llvm_unreachable("Unhandled argument type!");
2353 case MVT::i32:
2354 case MVT::i64:
2355 if (GPR_idx != Num_GPR_Regs) {
2356 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2357 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2358
Bill Schmidt726c2372012-10-23 15:51:16 +00002359 if (ObjectVT == MVT::i32)
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002360 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2361 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt726c2372012-10-23 15:51:16 +00002362 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002363
2364 ++GPR_idx;
2365 } else {
2366 needsLoad = true;
2367 ArgSize = PtrByteSize;
2368 }
2369 ArgOffset += 8;
2370 break;
2371
2372 case MVT::f32:
2373 case MVT::f64:
2374 // Every 8 bytes of argument space consumes one of the GPRs available for
2375 // argument passing.
2376 if (GPR_idx != Num_GPR_Regs) {
2377 ++GPR_idx;
2378 }
2379 if (FPR_idx != Num_FPR_Regs) {
2380 unsigned VReg;
2381
2382 if (ObjectVT == MVT::f32)
2383 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2384 else
2385 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
2386
2387 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2388 ++FPR_idx;
2389 } else {
2390 needsLoad = true;
Bill Schmidta867f372012-10-11 15:38:20 +00002391 ArgSize = PtrByteSize;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002392 }
2393
2394 ArgOffset += 8;
2395 break;
2396 case MVT::v4f32:
2397 case MVT::v4i32:
2398 case MVT::v8i16:
2399 case MVT::v16i8:
2400 // Note that vector arguments in registers don't reserve stack space,
2401 // except in varargs functions.
2402 if (VR_idx != Num_VR_Regs) {
2403 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
2404 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2405 if (isVarArg) {
2406 while ((ArgOffset % 16) != 0) {
2407 ArgOffset += PtrByteSize;
2408 if (GPR_idx != Num_GPR_Regs)
2409 GPR_idx++;
2410 }
2411 ArgOffset += 16;
2412 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
2413 }
2414 ++VR_idx;
2415 } else {
2416 // Vectors are aligned.
2417 ArgOffset = ((ArgOffset+15)/16)*16;
2418 CurArgOffset = ArgOffset;
2419 ArgOffset += 16;
2420 needsLoad = true;
2421 }
2422 break;
2423 }
2424
2425 // We need to load the argument to a virtual register if we determined
2426 // above that we ran out of physical registers of the appropriate type.
2427 if (needsLoad) {
2428 int FI = MFI->CreateFixedObject(ObjSize,
2429 CurArgOffset + (ArgSize - ObjSize),
2430 isImmutable);
2431 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2432 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2433 false, false, false, 0);
2434 }
2435
2436 InVals.push_back(ArgVal);
2437 }
2438
2439 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt726c2372012-10-23 15:51:16 +00002440 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002441 // taking the difference between two stack areas will result in an aligned
2442 // stack.
Bill Schmidt726c2372012-10-23 15:51:16 +00002443 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, true);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002444
2445 // If the function takes variable number of arguments, make a frame index for
2446 // the start of the first vararg value... for expansion of llvm.va_start.
2447 if (isVarArg) {
2448 int Depth = ArgOffset;
2449
2450 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt726c2372012-10-23 15:51:16 +00002451 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002452 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2453
2454 // If this function is vararg, store any remaining integer argument regs
2455 // to their spots on the stack so that they may be loaded by deferencing the
2456 // result of va_next.
2457 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
2458 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2459 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2460 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2461 MachinePointerInfo(), false, false, 0);
2462 MemOps.push_back(Store);
2463 // Increment the address by four for the next argument to store
Bill Schmidt726c2372012-10-23 15:51:16 +00002464 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002465 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2466 }
2467 }
2468
2469 if (!MemOps.empty())
2470 Chain = DAG.getNode(ISD::TokenFactor, dl,
2471 MVT::Other, &MemOps[0], MemOps.size());
2472
2473 return Chain;
2474}
2475
2476SDValue
2477PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002478 SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002479 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002480 const SmallVectorImpl<ISD::InputArg>
2481 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002482 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002483 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002484 // TODO: add description of PPC stack frame format, or at least some docs.
2485 //
2486 MachineFunction &MF = DAG.getMachineFunction();
2487 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman1e93df62010-04-17 14:41:14 +00002488 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002489
Owen Andersone50ed302009-08-10 22:56:29 +00002490 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00002491 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002492 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002493 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2494 (CallConv == CallingConv::Fast));
Jim Laskeye9bd7b22006-11-28 14:53:52 +00002495 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey2f616bf2006-11-16 22:43:37 +00002496
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002497 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002498 // Area that is at least reserved in caller of this function.
2499 unsigned MinReservedArea = ArgOffset;
2500
Craig Topperb78ca422012-03-11 07:16:55 +00002501 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002502 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2503 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2504 };
Craig Topperb78ca422012-03-11 07:16:55 +00002505 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerc91a4752006-06-26 22:48:35 +00002506 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2507 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2508 };
Scott Michelfdc40a02009-02-17 22:15:04 +00002509
Craig Topperb78ca422012-03-11 07:16:55 +00002510 static const uint16_t *FPR = GetFPR();
Scott Michelfdc40a02009-02-17 22:15:04 +00002511
Craig Topperb78ca422012-03-11 07:16:55 +00002512 static const uint16_t VR[] = {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002513 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2514 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2515 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00002516
Owen Anderson718cb662007-09-07 04:06:50 +00002517 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002518 const unsigned Num_FPR_Regs = 13;
Owen Anderson718cb662007-09-07 04:06:50 +00002519 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey2f616bf2006-11-16 22:43:37 +00002520
2521 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002522
Craig Topperb78ca422012-03-11 07:16:55 +00002523 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelfdc40a02009-02-17 22:15:04 +00002524
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002525 // In 32-bit non-varargs functions, the stack space for vectors is after the
2526 // stack space for non-vectors. We do not use this space unless we have
2527 // too many vectors to fit in registers, something that only occurs in
Scott Michelfdc40a02009-02-17 22:15:04 +00002528 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002529 // that out...for the pathological case, compute VecArgOffset as the
2530 // start of the vector parameter area. Computing VecArgOffset is the
2531 // entire point of the following loop.
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002532 unsigned VecArgOffset = ArgOffset;
2533 if (!isVarArg && !isPPC64) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002534 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002535 ++ArgNo) {
Owen Andersone50ed302009-08-10 22:56:29 +00002536 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002537 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002538
Duncan Sands276dcbd2008-03-21 09:14:45 +00002539 if (Flags.isByVal()) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002540 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer263109d2012-01-20 14:42:32 +00002541 unsigned ObjSize = Flags.getByValSize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002542 unsigned ArgSize =
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002543 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2544 VecArgOffset += ArgSize;
2545 continue;
2546 }
2547
Owen Anderson825b72b2009-08-11 20:47:22 +00002548 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002549 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002550 case MVT::i32:
2551 case MVT::f32:
Bill Schmidt419f3762012-09-19 15:42:13 +00002552 VecArgOffset += 4;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002553 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002554 case MVT::i64: // PPC64
2555 case MVT::f64:
Bill Schmidt419f3762012-09-19 15:42:13 +00002556 // FIXME: We are guaranteed to be !isPPC64 at this point.
2557 // Does MVT::i64 apply?
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002558 VecArgOffset += 8;
2559 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002560 case MVT::v4f32:
2561 case MVT::v4i32:
2562 case MVT::v8i16:
2563 case MVT::v16i8:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002564 // Nothing to do, we're only looking at Nonvector args here.
2565 break;
2566 }
2567 }
2568 }
2569 // We've found where the vector parameter area in memory is. Skip the
2570 // first 12 parameters; these don't use that memory.
2571 VecArgOffset = ((VecArgOffset+15)/16)*16;
2572 VecArgOffset += 12*16;
2573
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002574 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey2f616bf2006-11-16 22:43:37 +00002575 // entry to a function on PPC, the arguments start after the linkage area,
2576 // although the first ones are often in registers.
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00002577
Dan Gohman475871a2008-07-27 21:46:04 +00002578 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002579 unsigned nAltivecParamsAtEnd = 0;
Roman Divacky5236ab32012-09-24 20:47:19 +00002580 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidta7f2ce82013-05-08 17:22:33 +00002581 unsigned CurArgIdx = 0;
2582 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00002583 SDValue ArgVal;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002584 bool needsLoad = false;
Owen Andersone50ed302009-08-10 22:56:29 +00002585 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002586 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey619965d2006-11-29 13:37:09 +00002587 unsigned ArgSize = ObjSize;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002588 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidta7f2ce82013-05-08 17:22:33 +00002589 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2590 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002591
Chris Lattnerbe4849a2006-05-16 18:51:52 +00002592 unsigned CurArgOffset = ArgOffset;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002593
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002594 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00002595 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2596 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002597 if (isVarArg || isPPC64) {
2598 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002599 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohman095cc292008-09-13 01:54:27 +00002600 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002601 PtrByteSize);
2602 } else nAltivecParamsAtEnd++;
2603 } else
2604 // Calculate min reserved area.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002605 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohman095cc292008-09-13 01:54:27 +00002606 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002607 PtrByteSize);
2608
Dale Johannesen8419dd62008-03-07 20:27:40 +00002609 // FIXME the codegen can be much improved in some cases.
2610 // We do not have to keep everything in memory.
Duncan Sands276dcbd2008-03-21 09:14:45 +00002611 if (Flags.isByVal()) {
Dale Johannesen8419dd62008-03-07 20:27:40 +00002612 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sands276dcbd2008-03-21 09:14:45 +00002613 ObjSize = Flags.getByValSize();
Dale Johannesen8419dd62008-03-07 20:27:40 +00002614 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002615 // Objects of size 1 and 2 are right justified, everything else is
2616 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen7f96f392008-03-08 01:41:42 +00002617 if (ObjSize==1 || ObjSize==2) {
2618 CurArgOffset = CurArgOffset + (4 - ObjSize);
2619 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002620 // The value of the object is its address.
Evan Chenged2ae132010-07-03 00:40:23 +00002621 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
Dan Gohman475871a2008-07-27 21:46:04 +00002622 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002623 InVals.push_back(FIN);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002624 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen7f96f392008-03-08 01:41:42 +00002625 if (GPR_idx != Num_GPR_Regs) {
Roman Divacky951cd022011-06-17 15:21:10 +00002626 unsigned VReg;
2627 if (isPPC64)
2628 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2629 else
2630 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002631 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt726c2372012-10-23 15:51:16 +00002632 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelfdc40a02009-02-17 22:15:04 +00002633 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Roman Divacky5236ab32012-09-24 20:47:19 +00002634 MachinePointerInfo(FuncArg,
2635 CurArgOffset),
Bill Schmidt419f3762012-09-19 15:42:13 +00002636 ObjType, false, false, 0);
Dale Johannesen7f96f392008-03-08 01:41:42 +00002637 MemOps.push_back(Store);
2638 ++GPR_idx;
Dale Johannesen7f96f392008-03-08 01:41:42 +00002639 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002640
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002641 ArgOffset += PtrByteSize;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002642
Dale Johannesen7f96f392008-03-08 01:41:42 +00002643 continue;
2644 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002645 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2646 // Store whatever pieces of the object are in registers
Bill Schmidt419f3762012-09-19 15:42:13 +00002647 // to memory. ArgOffset will be the address of the beginning
2648 // of the object.
Dale Johannesen8419dd62008-03-07 20:27:40 +00002649 if (GPR_idx != Num_GPR_Regs) {
Roman Divacky951cd022011-06-17 15:21:10 +00002650 unsigned VReg;
2651 if (isPPC64)
2652 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2653 else
2654 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Chenged2ae132010-07-03 00:40:23 +00002655 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman475871a2008-07-27 21:46:04 +00002656 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002657 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002658 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Roman Divacky5236ab32012-09-24 20:47:19 +00002659 MachinePointerInfo(FuncArg, ArgOffset),
David Greene534502d12010-02-15 16:56:53 +00002660 false, false, 0);
Dale Johannesen8419dd62008-03-07 20:27:40 +00002661 MemOps.push_back(Store);
2662 ++GPR_idx;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002663 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002664 } else {
2665 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
2666 break;
2667 }
2668 }
2669 continue;
2670 }
2671
Owen Anderson825b72b2009-08-11 20:47:22 +00002672 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002673 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002674 case MVT::i32:
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002675 if (!isPPC64) {
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002676 if (GPR_idx != Num_GPR_Regs) {
Devang Patel68e6bee2011-02-21 23:21:26 +00002677 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002678 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002679 ++GPR_idx;
2680 } else {
2681 needsLoad = true;
2682 ArgSize = PtrByteSize;
2683 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002684 // All int arguments reserve stack space in the Darwin ABI.
2685 ArgOffset += PtrByteSize;
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002686 break;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002687 }
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002688 // FALLTHROUGH
Owen Anderson825b72b2009-08-11 20:47:22 +00002689 case MVT::i64: // PPC64
Chris Lattnerc91a4752006-06-26 22:48:35 +00002690 if (GPR_idx != Num_GPR_Regs) {
Devang Patel68e6bee2011-02-21 23:21:26 +00002691 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002692 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002693
Bill Schmidt726c2372012-10-23 15:51:16 +00002694 if (ObjectVT == MVT::i32)
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002695 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson825b72b2009-08-11 20:47:22 +00002696 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt726c2372012-10-23 15:51:16 +00002697 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002698
Chris Lattnerc91a4752006-06-26 22:48:35 +00002699 ++GPR_idx;
2700 } else {
2701 needsLoad = true;
Evan Cheng982a0592008-07-24 08:17:07 +00002702 ArgSize = PtrByteSize;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002703 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002704 // All int arguments reserve stack space in the Darwin ABI.
2705 ArgOffset += 8;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002706 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00002707
Owen Anderson825b72b2009-08-11 20:47:22 +00002708 case MVT::f32:
2709 case MVT::f64:
Chris Lattnerbe4849a2006-05-16 18:51:52 +00002710 // Every 4 bytes of argument space consumes one of the GPRs available for
2711 // argument passing.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002712 if (GPR_idx != Num_GPR_Regs) {
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002713 ++GPR_idx;
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002714 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002715 ++GPR_idx;
Chris Lattnerbe4849a2006-05-16 18:51:52 +00002716 }
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002717 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002718 unsigned VReg;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002719
Owen Anderson825b72b2009-08-11 20:47:22 +00002720 if (ObjectVT == MVT::f32)
Devang Patel68e6bee2011-02-21 23:21:26 +00002721 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002722 else
Devang Patel68e6bee2011-02-21 23:21:26 +00002723 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002724
Dan Gohman98ca4f22009-08-05 01:29:28 +00002725 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002726 ++FPR_idx;
2727 } else {
2728 needsLoad = true;
2729 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002730
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002731 // All FP arguments reserve stack space in the Darwin ABI.
2732 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002733 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002734 case MVT::v4f32:
2735 case MVT::v4i32:
2736 case MVT::v8i16:
2737 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00002738 // Note that vector arguments in registers don't reserve stack space,
2739 // except in varargs functions.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002740 if (VR_idx != Num_VR_Regs) {
Devang Patel68e6bee2011-02-21 23:21:26 +00002741 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002742 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesen75092de2008-03-12 00:22:17 +00002743 if (isVarArg) {
2744 while ((ArgOffset % 16) != 0) {
2745 ArgOffset += PtrByteSize;
2746 if (GPR_idx != Num_GPR_Regs)
2747 GPR_idx++;
2748 }
2749 ArgOffset += 16;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00002750 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesen75092de2008-03-12 00:22:17 +00002751 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002752 ++VR_idx;
2753 } else {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002754 if (!isVarArg && !isPPC64) {
2755 // Vectors go after all the nonvectors.
2756 CurArgOffset = VecArgOffset;
2757 VecArgOffset += 16;
2758 } else {
2759 // Vectors are aligned.
2760 ArgOffset = ((ArgOffset+15)/16)*16;
2761 CurArgOffset = ArgOffset;
2762 ArgOffset += 16;
Dale Johannesen404d9902008-03-12 00:49:20 +00002763 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002764 needsLoad = true;
2765 }
2766 break;
2767 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002768
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002769 // We need to load the argument to a virtual register if we determined above
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002770 // that we ran out of physical registers of the appropriate type.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002771 if (needsLoad) {
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002772 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002773 CurArgOffset + (ArgSize - ObjSize),
Evan Chenged2ae132010-07-03 00:40:23 +00002774 isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00002775 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002776 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002777 false, false, false, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002778 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002779
Dan Gohman98ca4f22009-08-05 01:29:28 +00002780 InVals.push_back(ArgVal);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002781 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002782
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002783 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt726c2372012-10-23 15:51:16 +00002784 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002785 // taking the difference between two stack areas will result in an aligned
2786 // stack.
Bill Schmidt726c2372012-10-23 15:51:16 +00002787 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, isPPC64);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002788
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002789 // If the function takes variable number of arguments, make a frame index for
2790 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002791 if (isVarArg) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002792 int Depth = ArgOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00002793
Dan Gohman1e93df62010-04-17 14:41:14 +00002794 FuncInfo->setVarArgsFrameIndex(
2795 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002796 Depth, true));
Dan Gohman1e93df62010-04-17 14:41:14 +00002797 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002798
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002799 // If this function is vararg, store any remaining integer argument regs
2800 // to their spots on the stack so that they may be loaded by deferencing the
2801 // result of va_next.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002802 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002803 unsigned VReg;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002804
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002805 if (isPPC64)
Devang Patel68e6bee2011-02-21 23:21:26 +00002806 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002807 else
Devang Patel68e6bee2011-02-21 23:21:26 +00002808 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002809
Dan Gohman98ca4f22009-08-05 01:29:28 +00002810 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner6229d0a2010-09-21 18:41:36 +00002811 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2812 MachinePointerInfo(), false, false, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002813 MemOps.push_back(Store);
2814 // Increment the address by four for the next argument to store
Dan Gohman475871a2008-07-27 21:46:04 +00002815 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00002816 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002817 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002818 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002819
Dale Johannesen8419dd62008-03-07 20:27:40 +00002820 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00002821 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00002822 MVT::Other, &MemOps[0], MemOps.size());
Dale Johannesen8419dd62008-03-07 20:27:40 +00002823
Dan Gohman98ca4f22009-08-05 01:29:28 +00002824 return Chain;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002825}
2826
Bill Schmidt419f3762012-09-19 15:42:13 +00002827/// CalculateParameterAndLinkageAreaSize - Get the size of the parameter plus
2828/// linkage area for the Darwin ABI, or the 64-bit SVR4 ABI.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002829static unsigned
2830CalculateParameterAndLinkageAreaSize(SelectionDAG &DAG,
2831 bool isPPC64,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002832 bool isVarArg,
2833 unsigned CC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002834 const SmallVectorImpl<ISD::OutputArg>
2835 &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002836 const SmallVectorImpl<SDValue> &OutVals,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002837 unsigned &nAltivecParamsAtEnd) {
2838 // Count how many bytes are to be pushed on the stack, including the linkage
2839 // area, and parameter passing area. We start with 24/48 bytes, which is
2840 // prereserved space for [SP][CR][LR][3 x unused].
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002841 unsigned NumBytes = PPCFrameLowering::getLinkageSize(isPPC64, true);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002842 unsigned NumOps = Outs.size();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002843 unsigned PtrByteSize = isPPC64 ? 8 : 4;
2844
2845 // Add up all the space actually used.
2846 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
2847 // they all go in registers, but we must reserve stack space for them for
2848 // possible use by the caller. In varargs or 64-bit calls, parameters are
2849 // assigned stack space in order, with padding so Altivec parameters are
2850 // 16-byte aligned.
2851 nAltivecParamsAtEnd = 0;
2852 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002853 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohmanc9403652010-07-07 15:54:55 +00002854 EVT ArgVT = Outs[i].VT;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002855 // Varargs Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00002856 if (ArgVT==MVT::v4f32 || ArgVT==MVT::v4i32 ||
2857 ArgVT==MVT::v8i16 || ArgVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002858 if (!isVarArg && !isPPC64) {
2859 // Non-varargs Altivec parameters go after all the non-Altivec
2860 // parameters; handle those later so we know how much padding we need.
2861 nAltivecParamsAtEnd++;
2862 continue;
2863 }
2864 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
2865 NumBytes = ((NumBytes+15)/16)*16;
2866 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002867 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002868 }
2869
2870 // Allow for Altivec parameters at the end, if needed.
2871 if (nAltivecParamsAtEnd) {
2872 NumBytes = ((NumBytes+15)/16)*16;
2873 NumBytes += 16*nAltivecParamsAtEnd;
2874 }
2875
2876 // The prolog code of the callee may store up to 8 GPR argument registers to
2877 // the stack, allowing va_start to index over them in memory if its varargs.
2878 // Because we cannot tell if this is needed on the caller side, we have to
2879 // conservatively assume that it is needed. As such, make sure we have at
2880 // least enough stack space for the caller to store the 8 GPRs.
2881 NumBytes = std::max(NumBytes,
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002882 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002883
2884 // Tail call needs the stack to be aligned.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002885 if (CC == CallingConv::Fast && DAG.getTarget().Options.GuaranteedTailCallOpt){
2886 unsigned TargetAlign = DAG.getMachineFunction().getTarget().
2887 getFrameLowering()->getStackAlignment();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002888 unsigned AlignMask = TargetAlign-1;
2889 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2890 }
2891
2892 return NumBytes;
2893}
2894
2895/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002896/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesenb60d5192009-11-24 01:09:07 +00002897static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002898 unsigned ParamSize) {
2899
Dale Johannesenb60d5192009-11-24 01:09:07 +00002900 if (!isTailCall) return 0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002901
2902 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
2903 unsigned CallerMinReservedArea = FI->getMinReservedArea();
2904 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
2905 // Remember only if the new adjustement is bigger.
2906 if (SPDiff < FI->getTailCallSPDelta())
2907 FI->setTailCallSPDelta(SPDiff);
2908
2909 return SPDiff;
2910}
2911
Dan Gohman98ca4f22009-08-05 01:29:28 +00002912/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2913/// for tail call optimization. Targets which want to do tail call
2914/// optimization should implement this function.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002915bool
Dan Gohman98ca4f22009-08-05 01:29:28 +00002916PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002917 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002918 bool isVarArg,
2919 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002920 SelectionDAG& DAG) const {
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002921 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng6c2e8a92010-01-29 23:05:56 +00002922 return false;
2923
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002924 // Variable argument functions are not supported.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002925 if (isVarArg)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002926 return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002927
Dan Gohman98ca4f22009-08-05 01:29:28 +00002928 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002929 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002930 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
2931 // Functions containing by val parameters are not supported.
2932 for (unsigned i = 0; i != Ins.size(); i++) {
2933 ISD::ArgFlagsTy Flags = Ins[i].Flags;
2934 if (Flags.isByVal()) return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002935 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002936
2937 // Non PIC/GOT tail calls are supported.
2938 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
2939 return true;
2940
2941 // At the moment we can only do local tail calls (in same module, hidden
2942 // or protected) if we are generating PIC.
2943 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2944 return G->getGlobal()->hasHiddenVisibility()
2945 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002946 }
2947
2948 return false;
2949}
2950
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002951/// isCallCompatibleAddress - Return the immediate to use if the specified
2952/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman475871a2008-07-27 21:46:04 +00002953static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002954 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
2955 if (!C) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002956
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002957 int Addr = C->getZExtValue();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002958 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith1144af32012-08-24 23:29:28 +00002959 SignExtend32<26>(Addr) != Addr)
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002960 return 0; // Top 6 bits have to be sext of immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00002961
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002962 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greifba36cb52008-08-28 21:40:38 +00002963 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002964}
2965
Dan Gohman844731a2008-05-13 00:00:25 +00002966namespace {
2967
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002968struct TailCallArgumentInfo {
Dan Gohman475871a2008-07-27 21:46:04 +00002969 SDValue Arg;
2970 SDValue FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002971 int FrameIdx;
2972
2973 TailCallArgumentInfo() : FrameIdx(0) {}
2974};
2975
Dan Gohman844731a2008-05-13 00:00:25 +00002976}
2977
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002978/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
2979static void
2980StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Chengff89dcb2009-10-18 18:16:27 +00002981 SDValue Chain,
Craig Toppera0ec3f92013-07-14 04:42:23 +00002982 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
2983 SmallVectorImpl<SDValue> &MemOpChains,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002984 SDLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002985 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002986 SDValue Arg = TailCallArgs[i].Arg;
2987 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002988 int FI = TailCallArgs[i].FrameIdx;
2989 // Store relative to framepointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00002990 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002991 MachinePointerInfo::getFixedStack(FI),
2992 false, false, 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002993 }
2994}
2995
2996/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
2997/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman475871a2008-07-27 21:46:04 +00002998static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002999 MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00003000 SDValue Chain,
3001 SDValue OldRetAddr,
3002 SDValue OldFP,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003003 int SPDiff,
3004 bool isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003005 bool isDarwinABI,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003006 SDLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003007 if (SPDiff) {
3008 // Calculate the new stack slot for the return address.
3009 int SlotSize = isPPC64 ? 8 : 4;
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00003010 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003011 isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003012 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003013 NewRetAddrLoc, true);
Owen Anderson825b72b2009-08-11 20:47:22 +00003014 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00003015 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003016 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003017 MachinePointerInfo::getFixedStack(NewRetAddr),
David Greene534502d12010-02-15 16:56:53 +00003018 false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003019
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003020 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3021 // slot as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003022 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00003023 int NewFPLoc =
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00003024 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
David Greene3f2bf852009-11-12 20:49:22 +00003025 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Chenged2ae132010-07-03 00:40:23 +00003026 true);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003027 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3028 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003029 MachinePointerInfo::getFixedStack(NewFPIdx),
David Greene534502d12010-02-15 16:56:53 +00003030 false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003031 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003032 }
3033 return Chain;
3034}
3035
3036/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3037/// the position of the argument.
3038static void
3039CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman475871a2008-07-27 21:46:04 +00003040 SDValue Arg, int SPDiff, unsigned ArgOffset,
Craig Toppera0ec3f92013-07-14 04:42:23 +00003041 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003042 int Offset = ArgOffset + SPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003043 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00003044 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson825b72b2009-08-11 20:47:22 +00003045 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00003046 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003047 TailCallArgumentInfo Info;
3048 Info.Arg = Arg;
3049 Info.FrameIdxOp = FIN;
3050 Info.FrameIdx = FI;
3051 TailCallArguments.push_back(Info);
3052}
3053
3054/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3055/// stack slot. Returns the chain as result and the loaded frame pointers in
3056/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman475871a2008-07-27 21:46:04 +00003057SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen33c960f2009-02-04 20:06:27 +00003058 int SPDiff,
3059 SDValue Chain,
3060 SDValue &LROpOut,
3061 SDValue &FPOpOut,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003062 bool isDarwinABI,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003063 SDLoc dl) const {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003064 if (SPDiff) {
3065 // Load the LR and FP stack slot for later adjusting.
Owen Anderson825b72b2009-08-11 20:47:22 +00003066 EVT VT = PPCSubTarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003067 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003068 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003069 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00003070 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003071
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003072 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3073 // slot as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003074 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00003075 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003076 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003077 false, false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003078 Chain = SDValue(FPOpOut.getNode(), 1);
3079 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003080 }
3081 return Chain;
3082}
3083
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003084/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelfdc40a02009-02-17 22:15:04 +00003085/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003086/// specified by the specific parameter attribute. The copy will be passed as
3087/// a byval function parameter.
3088/// Sometimes what we are copying is the end of a larger object, the part that
3089/// does not fit in registers.
Scott Michelfdc40a02009-02-17 22:15:04 +00003090static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00003091CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sands276dcbd2008-03-21 09:14:45 +00003092 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003093 SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003094 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003095 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Chris Lattnere72f2022010-09-21 05:40:29 +00003096 false, false, MachinePointerInfo(0),
3097 MachinePointerInfo(0));
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003098}
Chris Lattner9f0bc652007-02-25 05:34:32 +00003099
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003100/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3101/// tail calls.
3102static void
Dan Gohman475871a2008-07-27 21:46:04 +00003103LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3104 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003105 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Craig Toppera0ec3f92013-07-14 04:42:23 +00003106 bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3107 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003108 SDLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00003109 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003110 if (!isTailCall) {
3111 if (isVector) {
Dan Gohman475871a2008-07-27 21:46:04 +00003112 SDValue StackPtr;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003113 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00003114 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003115 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003116 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003117 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003118 DAG.getConstant(ArgOffset, PtrVT));
3119 }
Chris Lattner6229d0a2010-09-21 18:41:36 +00003120 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3121 MachinePointerInfo(), false, false, 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003122 // Calculate and remember argument location.
3123 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3124 TailCallArguments);
3125}
3126
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003127static
3128void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003129 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003130 SDValue LROp, SDValue FPOp, bool isDarwinABI,
Craig Toppera0ec3f92013-07-14 04:42:23 +00003131 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003132 MachineFunction &MF = DAG.getMachineFunction();
3133
3134 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3135 // might overwrite each other in case of tail call optimization.
3136 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003137 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003138 InFlag = SDValue();
3139 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3140 MemOpChains2, dl);
3141 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00003142 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003143 &MemOpChains2[0], MemOpChains2.size());
3144
3145 // Store the return address to the appropriate stack slot.
3146 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3147 isPPC64, isDarwinABI, dl);
3148
3149 // Emit callseq_end just before tailcall node.
3150 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003151 DAG.getIntPtrConstant(0, true), InFlag, dl);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003152 InFlag = Chain.getValue(1);
3153}
3154
3155static
3156unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003157 SDValue &Chain, SDLoc dl, int SPDiff, bool isTailCall,
Craig Toppera0ec3f92013-07-14 04:42:23 +00003158 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
3159 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
Chris Lattnerb9082582010-11-14 23:42:06 +00003160 const PPCSubtarget &PPCSubTarget) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003161
Chris Lattnerb9082582010-11-14 23:42:06 +00003162 bool isPPC64 = PPCSubTarget.isPPC64();
3163 bool isSVR4ABI = PPCSubTarget.isSVR4ABI();
3164
Owen Andersone50ed302009-08-10 22:56:29 +00003165 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00003166 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003167 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003168
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003169 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003170
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003171 bool needIndirectCall = true;
3172 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003173 // If this is an absolute destination address, use the munged value.
3174 Callee = SDValue(Dest, 0);
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003175 needIndirectCall = false;
3176 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003177
Chris Lattnerb9082582010-11-14 23:42:06 +00003178 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3179 // XXX Work around for http://llvm.org/bugs/show_bug.cgi?id=5201
3180 // Use indirect calls for ALL functions calls in JIT mode, since the
3181 // far-call stubs may be outside relocation limits for a BL instruction.
3182 if (!DAG.getTarget().getSubtarget<PPCSubtarget>().isJITCodeModel()) {
3183 unsigned OpFlags = 0;
3184 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyd5601cc2011-07-24 08:22:56 +00003185 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00003186 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
Chris Lattnerb9082582010-11-14 23:42:06 +00003187 (G->getGlobal()->isDeclaration() ||
3188 G->getGlobal()->isWeakForLinker())) {
3189 // PC-relative references to external symbols should go through $stub,
3190 // unless we're building with the leopard linker or later, which
3191 // automatically synthesizes these stubs.
3192 OpFlags = PPCII::MO_DARWIN_STUB;
3193 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003194
Chris Lattnerb9082582010-11-14 23:42:06 +00003195 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3196 // every direct call is) turn it into a TargetGlobalAddress /
3197 // TargetExternalSymbol node so that legalize doesn't hack it.
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003198 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
Chris Lattnerb9082582010-11-14 23:42:06 +00003199 Callee.getValueType(),
3200 0, OpFlags);
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003201 needIndirectCall = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003202 }
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003203 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003204
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003205 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerb9082582010-11-14 23:42:06 +00003206 unsigned char OpFlags = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003207
Chris Lattnerb9082582010-11-14 23:42:06 +00003208 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyd5601cc2011-07-24 08:22:56 +00003209 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00003210 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattnerb9082582010-11-14 23:42:06 +00003211 // PC-relative references to external symbols should go through $stub,
3212 // unless we're building with the leopard linker or later, which
3213 // automatically synthesizes these stubs.
3214 OpFlags = PPCII::MO_DARWIN_STUB;
3215 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003216
Chris Lattnerb9082582010-11-14 23:42:06 +00003217 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3218 OpFlags);
3219 needIndirectCall = false;
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003220 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003221
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003222 if (needIndirectCall) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003223 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
3224 // to do the call, we can't use PPCISD::CALL.
3225 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003226
3227 if (isSVR4ABI && isPPC64) {
3228 // Function pointers in the 64-bit SVR4 ABI do not point to the function
3229 // entry point, but to the function descriptor (the function entry point
3230 // address is part of the function descriptor though).
3231 // The function descriptor is a three doubleword structure with the
3232 // following fields: function entry point, TOC base address and
3233 // environment pointer.
3234 // Thus for a call through a function pointer, the following actions need
3235 // to be performed:
3236 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt726c2372012-10-23 15:51:16 +00003237 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003238 // 2. Load the address of the function entry point from the function
3239 // descriptor.
3240 // 3. Load the TOC of the callee from the function descriptor into r2.
3241 // 4. Load the environment pointer from the function descriptor into
3242 // r11.
3243 // 5. Branch to the function entry point address.
3244 // 6. On return of the callee, the TOC of the caller needs to be
3245 // restored (this is done in FinishCall()).
3246 //
3247 // All those operations are flagged together to ensure that no other
3248 // operations can be scheduled in between. E.g. without flagging the
3249 // operations together, a TOC access in the caller could be scheduled
3250 // between the load of the callee TOC and the branch to the callee, which
3251 // results in the TOC access going through the TOC of the callee instead
3252 // of going through the TOC of the caller, which leads to incorrect code.
3253
3254 // Load the address of the function entry point from the function
3255 // descriptor.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003256 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::Other, MVT::Glue);
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003257 SDValue LoadFuncPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, MTCTROps,
3258 InFlag.getNode() ? 3 : 2);
3259 Chain = LoadFuncPtr.getValue(1);
3260 InFlag = LoadFuncPtr.getValue(2);
3261
3262 // Load environment pointer into r11.
3263 // Offset of the environment pointer within the function descriptor.
3264 SDValue PtrOff = DAG.getIntPtrConstant(16);
3265
3266 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
3267 SDValue LoadEnvPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, Chain, AddPtr,
3268 InFlag);
3269 Chain = LoadEnvPtr.getValue(1);
3270 InFlag = LoadEnvPtr.getValue(2);
3271
3272 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3273 InFlag);
3274 Chain = EnvVal.getValue(0);
3275 InFlag = EnvVal.getValue(1);
3276
3277 // Load TOC of the callee into r2. We are using a target-specific load
3278 // with r2 hard coded, because the result of a target-independent load
3279 // would never go directly into r2, since r2 is a reserved register (which
3280 // prevents the register allocator from allocating it), resulting in an
3281 // additional register being allocated and an unnecessary move instruction
3282 // being generated.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003283 VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003284 SDValue LoadTOCPtr = DAG.getNode(PPCISD::LOAD_TOC, dl, VTs, Chain,
3285 Callee, InFlag);
3286 Chain = LoadTOCPtr.getValue(0);
3287 InFlag = LoadTOCPtr.getValue(1);
3288
3289 MTCTROps[0] = Chain;
3290 MTCTROps[1] = LoadFuncPtr;
3291 MTCTROps[2] = InFlag;
3292 }
3293
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003294 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys, MTCTROps,
3295 2 + (InFlag.getNode() != 0));
3296 InFlag = Chain.getValue(1);
3297
3298 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00003299 NodeTys.push_back(MVT::Other);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003300 NodeTys.push_back(MVT::Glue);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003301 Ops.push_back(Chain);
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003302 CallOpc = PPCISD::BCTRL;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003303 Callee.setNode(0);
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003304 // Add use of X11 (holding environment pointer)
3305 if (isSVR4ABI && isPPC64)
3306 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003307 // Add CTR register as callee so a bctr can be emitted later.
3308 if (isTailCall)
Roman Divacky0c9b5592011-06-03 15:47:49 +00003309 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003310 }
3311
3312 // If this is a direct call, pass the chain and the callee.
3313 if (Callee.getNode()) {
3314 Ops.push_back(Chain);
3315 Ops.push_back(Callee);
3316 }
3317 // If this is a tail call add stack pointer delta.
3318 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00003319 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003320
3321 // Add argument registers to the end of the list so that they are known live
3322 // into the call.
3323 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3324 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3325 RegsToPass[i].second.getValueType()));
3326
3327 return CallOpc;
3328}
3329
Roman Divackyeb8b7dc2012-09-18 16:47:58 +00003330static
3331bool isLocalCall(const SDValue &Callee)
3332{
3333 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Roman Divacky6fc3ea22012-09-18 18:27:49 +00003334 return !G->getGlobal()->isDeclaration() &&
3335 !G->getGlobal()->isWeakForLinker();
Roman Divackyeb8b7dc2012-09-18 16:47:58 +00003336 return false;
3337}
3338
Dan Gohman98ca4f22009-08-05 01:29:28 +00003339SDValue
3340PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003341 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003342 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003343 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00003344 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003345
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003346 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003347 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00003348 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00003349 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003350
3351 // Copy all of the result registers out of their specified physreg.
3352 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3353 CCValAssign &VA = RVLocs[i];
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003354 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand86aef0a2012-11-05 19:39:45 +00003355
3356 SDValue Val = DAG.getCopyFromReg(Chain, dl,
3357 VA.getLocReg(), VA.getLocVT(), InFlag);
3358 Chain = Val.getValue(1);
3359 InFlag = Val.getValue(2);
3360
3361 switch (VA.getLocInfo()) {
3362 default: llvm_unreachable("Unknown loc info!");
3363 case CCValAssign::Full: break;
3364 case CCValAssign::AExt:
3365 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3366 break;
3367 case CCValAssign::ZExt:
3368 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3369 DAG.getValueType(VA.getValVT()));
3370 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3371 break;
3372 case CCValAssign::SExt:
3373 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3374 DAG.getValueType(VA.getValVT()));
3375 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3376 break;
3377 }
3378
3379 InVals.push_back(Val);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003380 }
3381
Dan Gohman98ca4f22009-08-05 01:29:28 +00003382 return Chain;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003383}
3384
Dan Gohman98ca4f22009-08-05 01:29:28 +00003385SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00003386PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003387 bool isTailCall, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003388 SelectionDAG &DAG,
3389 SmallVector<std::pair<unsigned, SDValue>, 8>
3390 &RegsToPass,
3391 SDValue InFlag, SDValue Chain,
3392 SDValue &Callee,
3393 int SPDiff, unsigned NumBytes,
3394 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohmand858e902010-04-17 15:26:15 +00003395 SmallVectorImpl<SDValue> &InVals) const {
Owen Andersone50ed302009-08-10 22:56:29 +00003396 std::vector<EVT> NodeTys;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003397 SmallVector<SDValue, 8> Ops;
3398 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, dl, SPDiff,
3399 isTailCall, RegsToPass, Ops, NodeTys,
Chris Lattnerb9082582010-11-14 23:42:06 +00003400 PPCSubTarget);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003401
Hal Finkel82b38212012-08-28 02:10:27 +00003402 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
3403 if (isVarArg && PPCSubTarget.isSVR4ABI() && !PPCSubTarget.isPPC64())
3404 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3405
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003406 // When performing tail call optimization the callee pops its arguments off
3407 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky700ed802013-02-21 20:05:00 +00003408 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003409 int BytesCalleePops =
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003410 (CallConv == CallingConv::Fast &&
3411 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003412
Roman Divackye46137f2012-03-06 16:41:49 +00003413 // Add a register mask operand representing the call-preserved registers.
3414 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
3415 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3416 assert(Mask && "Missing call preserved mask for calling convention");
3417 Ops.push_back(DAG.getRegisterMask(Mask));
3418
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003419 if (InFlag.getNode())
3420 Ops.push_back(InFlag);
3421
3422 // Emit tail call.
3423 if (isTailCall) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003424 assert(((Callee.getOpcode() == ISD::Register &&
3425 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3426 Callee.getOpcode() == ISD::TargetExternalSymbol ||
3427 Callee.getOpcode() == ISD::TargetGlobalAddress ||
3428 isa<ConstantSDNode>(Callee)) &&
3429 "Expecting an global address, external symbol, absolute value or register");
3430
Owen Anderson825b72b2009-08-11 20:47:22 +00003431 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, &Ops[0], Ops.size());
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003432 }
3433
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003434 // Add a NOP immediately after the branch instruction when using the 64-bit
3435 // SVR4 ABI. At link time, if caller and callee are in a different module and
3436 // thus have a different TOC, the call will be replaced with a call to a stub
3437 // function which saves the current TOC, loads the TOC of the callee and
3438 // branches to the callee. The NOP will be replaced with a load instruction
3439 // which restores the TOC of the caller from the TOC save slot of the current
3440 // stack frame. If caller and callee belong to the same module (and have the
3441 // same TOC), the NOP will remain unchanged.
Hal Finkel5b00cea2012-03-31 14:45:15 +00003442
3443 bool needsTOCRestore = false;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003444 if (!isTailCall && PPCSubTarget.isSVR4ABI()&& PPCSubTarget.isPPC64()) {
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003445 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003446 // This is a call through a function pointer.
3447 // Restore the caller TOC from the save area into R2.
3448 // See PrepareCall() for more information about calls through function
3449 // pointers in the 64-bit SVR4 ABI.
3450 // We are using a target-specific load with r2 hard coded, because the
3451 // result of a target-independent load would never go directly into r2,
3452 // since r2 is a reserved register (which prevents the register allocator
3453 // from allocating it), resulting in an additional register being
3454 // allocated and an unnecessary move instruction being generated.
Hal Finkel5b00cea2012-03-31 14:45:15 +00003455 needsTOCRestore = true;
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003456 } else if ((CallOpc == PPCISD::CALL) && !isLocalCall(Callee)) {
Roman Divackyeb8b7dc2012-09-18 16:47:58 +00003457 // Otherwise insert NOP for non-local calls.
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003458 CallOpc = PPCISD::CALL_NOP;
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003459 }
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003460 }
3461
Hal Finkel5b00cea2012-03-31 14:45:15 +00003462 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
3463 InFlag = Chain.getValue(1);
3464
3465 if (needsTOCRestore) {
3466 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3467 Chain = DAG.getNode(PPCISD::TOC_RESTORE, dl, VTs, Chain, InFlag);
3468 InFlag = Chain.getValue(1);
3469 }
3470
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003471 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3472 DAG.getIntPtrConstant(BytesCalleePops, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003473 InFlag, dl);
Dan Gohman98ca4f22009-08-05 01:29:28 +00003474 if (!Ins.empty())
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003475 InFlag = Chain.getValue(1);
3476
Dan Gohman98ca4f22009-08-05 01:29:28 +00003477 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3478 Ins, dl, DAG, InVals);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003479}
3480
Dan Gohman98ca4f22009-08-05 01:29:28 +00003481SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003482PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00003483 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003484 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00003485 SDLoc &dl = CLI.DL;
3486 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
3487 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
3488 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003489 SDValue Chain = CLI.Chain;
3490 SDValue Callee = CLI.Callee;
3491 bool &isTailCall = CLI.IsTailCall;
3492 CallingConv::ID CallConv = CLI.CallConv;
3493 bool isVarArg = CLI.IsVarArg;
3494
Evan Cheng0c439eb2010-01-27 00:07:07 +00003495 if (isTailCall)
3496 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
3497 Ins, DAG);
3498
Bill Schmidt726c2372012-10-23 15:51:16 +00003499 if (PPCSubTarget.isSVR4ABI()) {
3500 if (PPCSubTarget.isPPC64())
3501 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
3502 isTailCall, Outs, OutVals, Ins,
3503 dl, DAG, InVals);
3504 else
3505 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
3506 isTailCall, Outs, OutVals, Ins,
3507 dl, DAG, InVals);
3508 }
Chris Lattnerb9082582010-11-14 23:42:06 +00003509
Bill Schmidt726c2372012-10-23 15:51:16 +00003510 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
3511 isTailCall, Outs, OutVals, Ins,
3512 dl, DAG, InVals);
Dan Gohman98ca4f22009-08-05 01:29:28 +00003513}
3514
3515SDValue
Bill Schmidt419f3762012-09-19 15:42:13 +00003516PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
3517 CallingConv::ID CallConv, bool isVarArg,
3518 bool isTailCall,
3519 const SmallVectorImpl<ISD::OutputArg> &Outs,
3520 const SmallVectorImpl<SDValue> &OutVals,
3521 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003522 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt419f3762012-09-19 15:42:13 +00003523 SmallVectorImpl<SDValue> &InVals) const {
3524 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003525 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohman98ca4f22009-08-05 01:29:28 +00003526
Dan Gohman98ca4f22009-08-05 01:29:28 +00003527 assert((CallConv == CallingConv::C ||
3528 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerffd02002009-07-03 06:45:56 +00003529
Tilmann Schellerffd02002009-07-03 06:45:56 +00003530 unsigned PtrByteSize = 4;
3531
3532 MachineFunction &MF = DAG.getMachineFunction();
3533
3534 // Mark this function as potentially containing a function that contains a
3535 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3536 // and restoring the callers stack pointer in this functions epilog. This is
3537 // done because by tail calling the called function might overwrite the value
3538 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003539 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3540 CallConv == CallingConv::Fast)
Tilmann Schellerffd02002009-07-03 06:45:56 +00003541 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003542
Tilmann Schellerffd02002009-07-03 06:45:56 +00003543 // Count how many bytes are to be pushed on the stack, including the linkage
3544 // area, parameter list area and the part of the local variable space which
3545 // contains copies of aggregates which are passed by value.
3546
3547 // Assign locations to all of the outgoing arguments.
3548 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003549 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00003550 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00003551
3552 // Reserve space for the linkage area on the stack.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00003553 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003554
3555 if (isVarArg) {
3556 // Handle fixed and variable vector arguments differently.
3557 // Fixed vector arguments go into registers as long as registers are
3558 // available. Variable vector arguments always go into memory.
Dan Gohman98ca4f22009-08-05 01:29:28 +00003559 unsigned NumArgs = Outs.size();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003560
Tilmann Schellerffd02002009-07-03 06:45:56 +00003561 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00003562 MVT ArgVT = Outs[i].VT;
Dan Gohman98ca4f22009-08-05 01:29:28 +00003563 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerffd02002009-07-03 06:45:56 +00003564 bool Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003565
Dan Gohman98ca4f22009-08-05 01:29:28 +00003566 if (Outs[i].IsFixed) {
Bill Schmidt212af6a2013-02-06 17:33:58 +00003567 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
3568 CCInfo);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003569 } else {
Bill Schmidt212af6a2013-02-06 17:33:58 +00003570 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
3571 ArgFlags, CCInfo);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003572 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003573
Tilmann Schellerffd02002009-07-03 06:45:56 +00003574 if (Result) {
Torok Edwindac237e2009-07-08 20:53:28 +00003575#ifndef NDEBUG
Chris Lattner45cfe542009-08-23 06:03:38 +00003576 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sands1440e8b2010-11-03 11:35:31 +00003577 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +00003578#endif
Torok Edwinc23197a2009-07-14 16:55:14 +00003579 llvm_unreachable(0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003580 }
3581 }
3582 } else {
3583 // All arguments are treated the same.
Bill Schmidt212af6a2013-02-06 17:33:58 +00003584 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003585 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003586
Tilmann Schellerffd02002009-07-03 06:45:56 +00003587 // Assign locations to all of the outgoing aggregate by value arguments.
3588 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003589 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00003590 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00003591
3592 // Reserve stack space for the allocations in CCInfo.
3593 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
3594
Bill Schmidt212af6a2013-02-06 17:33:58 +00003595 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003596
3597 // Size of the linkage area, parameter list area and the part of the local
3598 // space variable where copies of aggregates which are passed by value are
3599 // stored.
3600 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003601
Tilmann Schellerffd02002009-07-03 06:45:56 +00003602 // Calculate by how many bytes the stack has to be adjusted in case of tail
3603 // call optimization.
3604 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3605
3606 // Adjust the stack pointer for the new arguments...
3607 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003608 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3609 dl);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003610 SDValue CallSeqStart = Chain;
3611
3612 // Load the return address and frame pointer so it can be moved somewhere else
3613 // later.
3614 SDValue LROp, FPOp;
3615 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
3616 dl);
3617
3618 // Set up a copy of the stack pointer for use loading and storing any
3619 // arguments that may not fit in the registers available for argument
3620 // passing.
Owen Anderson825b72b2009-08-11 20:47:22 +00003621 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003622
Tilmann Schellerffd02002009-07-03 06:45:56 +00003623 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3624 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3625 SmallVector<SDValue, 8> MemOpChains;
3626
Roman Divacky0aaa9192011-08-30 17:04:16 +00003627 bool seenFloatArg = false;
Tilmann Schellerffd02002009-07-03 06:45:56 +00003628 // Walk the register/memloc assignments, inserting copies/loads.
3629 for (unsigned i = 0, j = 0, e = ArgLocs.size();
3630 i != e;
3631 ++i) {
3632 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003633 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00003634 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003635
Tilmann Schellerffd02002009-07-03 06:45:56 +00003636 if (Flags.isByVal()) {
3637 // Argument is an aggregate which is passed by value, thus we need to
3638 // create a copy of it in the local variable space of the current stack
3639 // frame (which is the stack frame of the caller) and pass the address of
3640 // this copy to the callee.
3641 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
3642 CCValAssign &ByValVA = ByValArgLocs[j++];
3643 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003644
Tilmann Schellerffd02002009-07-03 06:45:56 +00003645 // Memory reserved in the local variable space of the callers stack frame.
3646 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003647
Tilmann Schellerffd02002009-07-03 06:45:56 +00003648 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3649 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003650
Tilmann Schellerffd02002009-07-03 06:45:56 +00003651 // Create a copy of the argument in the local area of the current
3652 // stack frame.
3653 SDValue MemcpyCall =
3654 CreateCopyOfByValArgument(Arg, PtrOff,
3655 CallSeqStart.getNode()->getOperand(0),
3656 Flags, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003657
Tilmann Schellerffd02002009-07-03 06:45:56 +00003658 // This must go outside the CALLSEQ_START..END.
3659 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003660 CallSeqStart.getNode()->getOperand(1),
3661 SDLoc(MemcpyCall));
Tilmann Schellerffd02002009-07-03 06:45:56 +00003662 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3663 NewCallSeqStart.getNode());
3664 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003665
Tilmann Schellerffd02002009-07-03 06:45:56 +00003666 // Pass the address of the aggregate copy on the stack either in a
3667 // physical register or in the parameter list area of the current stack
3668 // frame to the callee.
3669 Arg = PtrOff;
3670 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003671
Tilmann Schellerffd02002009-07-03 06:45:56 +00003672 if (VA.isRegLoc()) {
Roman Divacky0aaa9192011-08-30 17:04:16 +00003673 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerffd02002009-07-03 06:45:56 +00003674 // Put argument in a physical register.
3675 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3676 } else {
3677 // Put argument in the parameter list area of the current stack frame.
3678 assert(VA.isMemLoc());
3679 unsigned LocMemOffset = VA.getLocMemOffset();
3680
3681 if (!isTailCall) {
3682 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3683 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
3684
3685 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner6229d0a2010-09-21 18:41:36 +00003686 MachinePointerInfo(),
David Greene534502d12010-02-15 16:56:53 +00003687 false, false, 0));
Tilmann Schellerffd02002009-07-03 06:45:56 +00003688 } else {
3689 // Calculate and remember argument location.
3690 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
3691 TailCallArguments);
3692 }
3693 }
3694 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003695
Tilmann Schellerffd02002009-07-03 06:45:56 +00003696 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00003697 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Schellerffd02002009-07-03 06:45:56 +00003698 &MemOpChains[0], MemOpChains.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003699
Tilmann Schellerffd02002009-07-03 06:45:56 +00003700 // Build a sequence of copy-to-reg nodes chained together with token chain
3701 // and flag operands which copy the outgoing args into the appropriate regs.
3702 SDValue InFlag;
3703 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
3704 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
3705 RegsToPass[i].second, InFlag);
3706 InFlag = Chain.getValue(1);
3707 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003708
Hal Finkel82b38212012-08-28 02:10:27 +00003709 // Set CR bit 6 to true if this is a vararg call with floating args passed in
3710 // registers.
3711 if (isVarArg) {
NAKAMURA Takumid2a35f22012-08-30 15:52:29 +00003712 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3713 SDValue Ops[] = { Chain, InFlag };
3714
Hal Finkel82b38212012-08-28 02:10:27 +00003715 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
NAKAMURA Takumid2a35f22012-08-30 15:52:29 +00003716 dl, VTs, Ops, InFlag.getNode() ? 2 : 1);
3717
Hal Finkel82b38212012-08-28 02:10:27 +00003718 InFlag = Chain.getValue(1);
3719 }
3720
Chris Lattnerb9082582010-11-14 23:42:06 +00003721 if (isTailCall)
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003722 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
3723 false, TailCallArguments);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003724
Dan Gohman98ca4f22009-08-05 01:29:28 +00003725 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
3726 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
3727 Ins, InVals);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003728}
3729
Bill Schmidt726c2372012-10-23 15:51:16 +00003730// Copy an argument into memory, being careful to do this outside the
3731// call sequence for the call to which the argument belongs.
Dan Gohman98ca4f22009-08-05 01:29:28 +00003732SDValue
Bill Schmidt726c2372012-10-23 15:51:16 +00003733PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
3734 SDValue CallSeqStart,
3735 ISD::ArgFlagsTy Flags,
3736 SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003737 SDLoc dl) const {
Bill Schmidt726c2372012-10-23 15:51:16 +00003738 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
3739 CallSeqStart.getNode()->getOperand(0),
3740 Flags, DAG, dl);
3741 // The MEMCPY must go outside the CALLSEQ_START..END.
3742 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003743 CallSeqStart.getNode()->getOperand(1),
3744 SDLoc(MemcpyCall));
Bill Schmidt726c2372012-10-23 15:51:16 +00003745 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3746 NewCallSeqStart.getNode());
3747 return NewCallSeqStart;
3748}
3749
3750SDValue
3751PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003752 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003753 bool isTailCall,
3754 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003755 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003756 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003757 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00003758 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003759
Bill Schmidt726c2372012-10-23 15:51:16 +00003760 unsigned NumOps = Outs.size();
Bill Schmidt419f3762012-09-19 15:42:13 +00003761
Bill Schmidt726c2372012-10-23 15:51:16 +00003762 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3763 unsigned PtrByteSize = 8;
3764
3765 MachineFunction &MF = DAG.getMachineFunction();
3766
3767 // Mark this function as potentially containing a function that contains a
3768 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3769 // and restoring the callers stack pointer in this functions epilog. This is
3770 // done because by tail calling the called function might overwrite the value
3771 // in this function's (MF) stack pointer stack slot 0(SP).
3772 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3773 CallConv == CallingConv::Fast)
3774 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
3775
3776 unsigned nAltivecParamsAtEnd = 0;
3777
3778 // Count how many bytes are to be pushed on the stack, including the linkage
3779 // area, and parameter passing area. We start with at least 48 bytes, which
3780 // is reserved space for [SP][CR][LR][3 x unused].
3781 // NOTE: For PPC64, nAltivecParamsAtEnd always remains zero as a result
3782 // of this call.
3783 unsigned NumBytes =
3784 CalculateParameterAndLinkageAreaSize(DAG, true, isVarArg, CallConv,
3785 Outs, OutVals, nAltivecParamsAtEnd);
3786
3787 // Calculate by how many bytes the stack has to be adjusted in case of tail
3788 // call optimization.
3789 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3790
3791 // To protect arguments on the stack from being clobbered in a tail call,
3792 // force all the loads to happen before doing any other lowering.
3793 if (isTailCall)
3794 Chain = DAG.getStackArgumentTokenFactor(Chain);
3795
3796 // Adjust the stack pointer for the new arguments...
3797 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003798 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3799 dl);
Bill Schmidt726c2372012-10-23 15:51:16 +00003800 SDValue CallSeqStart = Chain;
3801
3802 // Load the return address and frame pointer so it can be move somewhere else
3803 // later.
3804 SDValue LROp, FPOp;
3805 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
3806 dl);
3807
3808 // Set up a copy of the stack pointer for use loading and storing any
3809 // arguments that may not fit in the registers available for argument
3810 // passing.
3811 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
3812
3813 // Figure out which arguments are going to go in registers, and which in
3814 // memory. Also, if this is a vararg function, floating point operations
3815 // must be stored to our stack, and loaded into integer regs as well, if
3816 // any integer regs are available for argument passing.
3817 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
3818 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3819
3820 static const uint16_t GPR[] = {
3821 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3822 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3823 };
3824 static const uint16_t *FPR = GetFPR();
3825
3826 static const uint16_t VR[] = {
3827 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3828 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3829 };
3830 const unsigned NumGPRs = array_lengthof(GPR);
3831 const unsigned NumFPRs = 13;
3832 const unsigned NumVRs = array_lengthof(VR);
3833
3834 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3835 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3836
3837 SmallVector<SDValue, 8> MemOpChains;
3838 for (unsigned i = 0; i != NumOps; ++i) {
3839 SDValue Arg = OutVals[i];
3840 ISD::ArgFlagsTy Flags = Outs[i].Flags;
3841
3842 // PtrOff will be used to store the current argument to the stack if a
3843 // register cannot be found for it.
3844 SDValue PtrOff;
3845
3846 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
3847
3848 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
3849
3850 // Promote integers to 64-bit values.
3851 if (Arg.getValueType() == MVT::i32) {
3852 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
3853 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3854 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
3855 }
3856
3857 // FIXME memcpy is used way more than necessary. Correctness first.
3858 // Note: "by value" is code for passing a structure by value, not
3859 // basic types.
3860 if (Flags.isByVal()) {
3861 // Note: Size includes alignment padding, so
3862 // struct x { short a; char b; }
3863 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
3864 // These are the proper values we need for right-justifying the
3865 // aggregate in a parameter register.
3866 unsigned Size = Flags.getByValSize();
Bill Schmidt42d43352012-10-31 01:15:05 +00003867
3868 // An empty aggregate parameter takes up no storage and no
3869 // registers.
3870 if (Size == 0)
3871 continue;
3872
Bill Schmidt726c2372012-10-23 15:51:16 +00003873 // All aggregates smaller than 8 bytes must be passed right-justified.
3874 if (Size==1 || Size==2 || Size==4) {
3875 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
3876 if (GPR_idx != NumGPRs) {
3877 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
3878 MachinePointerInfo(), VT,
3879 false, false, 0);
3880 MemOpChains.push_back(Load.getValue(1));
3881 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3882
3883 ArgOffset += PtrByteSize;
3884 continue;
3885 }
3886 }
3887
3888 if (GPR_idx == NumGPRs && Size < 8) {
3889 SDValue Const = DAG.getConstant(PtrByteSize - Size,
3890 PtrOff.getValueType());
3891 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3892 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3893 CallSeqStart,
3894 Flags, DAG, dl);
3895 ArgOffset += PtrByteSize;
3896 continue;
3897 }
3898 // Copy entire object into memory. There are cases where gcc-generated
3899 // code assumes it is there, even if it could be put entirely into
3900 // registers. (This is not what the doc says.)
3901
3902 // FIXME: The above statement is likely due to a misunderstanding of the
3903 // documents. All arguments must be copied into the parameter area BY
3904 // THE CALLEE in the event that the callee takes the address of any
3905 // formal argument. That has not yet been implemented. However, it is
3906 // reasonable to use the stack area as a staging area for the register
3907 // load.
3908
3909 // Skip this for small aggregates, as we will use the same slot for a
3910 // right-justified copy, below.
3911 if (Size >= 8)
3912 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
3913 CallSeqStart,
3914 Flags, DAG, dl);
3915
3916 // When a register is available, pass a small aggregate right-justified.
3917 if (Size < 8 && GPR_idx != NumGPRs) {
3918 // The easiest way to get this right-justified in a register
3919 // is to copy the structure into the rightmost portion of a
3920 // local variable slot, then load the whole slot into the
3921 // register.
3922 // FIXME: The memcpy seems to produce pretty awful code for
3923 // small aggregates, particularly for packed ones.
Matt Arsenault225ed702013-05-18 00:21:46 +00003924 // FIXME: It would be preferable to use the slot in the
Bill Schmidt726c2372012-10-23 15:51:16 +00003925 // parameter save area instead of a new local variable.
3926 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
3927 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3928 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3929 CallSeqStart,
3930 Flags, DAG, dl);
3931
3932 // Load the slot into the register.
3933 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
3934 MachinePointerInfo(),
3935 false, false, false, 0);
3936 MemOpChains.push_back(Load.getValue(1));
3937 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3938
3939 // Done with this argument.
3940 ArgOffset += PtrByteSize;
3941 continue;
3942 }
3943
3944 // For aggregates larger than PtrByteSize, copy the pieces of the
3945 // object that fit into registers from the parameter save area.
3946 for (unsigned j=0; j<Size; j+=PtrByteSize) {
3947 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
3948 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
3949 if (GPR_idx != NumGPRs) {
3950 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
3951 MachinePointerInfo(),
3952 false, false, false, 0);
3953 MemOpChains.push_back(Load.getValue(1));
3954 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3955 ArgOffset += PtrByteSize;
3956 } else {
3957 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
3958 break;
3959 }
3960 }
3961 continue;
3962 }
3963
Craig Topper5a0910b2013-08-15 02:33:50 +00003964 switch (Arg.getSimpleValueType().SimpleTy) {
Bill Schmidt726c2372012-10-23 15:51:16 +00003965 default: llvm_unreachable("Unexpected ValueType for argument!");
3966 case MVT::i32:
3967 case MVT::i64:
3968 if (GPR_idx != NumGPRs) {
3969 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
3970 } else {
3971 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3972 true, isTailCall, false, MemOpChains,
3973 TailCallArguments, dl);
3974 }
3975 ArgOffset += PtrByteSize;
3976 break;
3977 case MVT::f32:
3978 case MVT::f64:
3979 if (FPR_idx != NumFPRs) {
3980 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
3981
3982 if (isVarArg) {
Bill Schmidte6c56432012-10-29 21:18:16 +00003983 // A single float or an aggregate containing only a single float
3984 // must be passed right-justified in the stack doubleword, and
3985 // in the GPR, if one is available.
3986 SDValue StoreOff;
Craig Topper5a0910b2013-08-15 02:33:50 +00003987 if (Arg.getSimpleValueType().SimpleTy == MVT::f32) {
Bill Schmidte6c56432012-10-29 21:18:16 +00003988 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
3989 StoreOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
3990 } else
3991 StoreOff = PtrOff;
3992
3993 SDValue Store = DAG.getStore(Chain, dl, Arg, StoreOff,
Bill Schmidt726c2372012-10-23 15:51:16 +00003994 MachinePointerInfo(), false, false, 0);
3995 MemOpChains.push_back(Store);
3996
3997 // Float varargs are always shadowed in available integer registers
3998 if (GPR_idx != NumGPRs) {
3999 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4000 MachinePointerInfo(), false, false,
4001 false, 0);
4002 MemOpChains.push_back(Load.getValue(1));
4003 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4004 }
4005 } else if (GPR_idx != NumGPRs)
4006 // If we have any FPRs remaining, we may also have GPRs remaining.
4007 ++GPR_idx;
4008 } else {
4009 // Single-precision floating-point values are mapped to the
4010 // second (rightmost) word of the stack doubleword.
4011 if (Arg.getValueType() == MVT::f32) {
4012 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4013 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4014 }
4015
4016 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4017 true, isTailCall, false, MemOpChains,
4018 TailCallArguments, dl);
4019 }
4020 ArgOffset += 8;
4021 break;
4022 case MVT::v4f32:
4023 case MVT::v4i32:
4024 case MVT::v8i16:
4025 case MVT::v16i8:
4026 if (isVarArg) {
4027 // These go aligned on the stack, or in the corresponding R registers
4028 // when within range. The Darwin PPC ABI doc claims they also go in
4029 // V registers; in fact gcc does this only for arguments that are
4030 // prototyped, not for those that match the ... We do it for all
4031 // arguments, seems to work.
4032 while (ArgOffset % 16 !=0) {
4033 ArgOffset += PtrByteSize;
4034 if (GPR_idx != NumGPRs)
4035 GPR_idx++;
4036 }
4037 // We could elide this store in the case where the object fits
4038 // entirely in R registers. Maybe later.
4039 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
4040 DAG.getConstant(ArgOffset, PtrVT));
4041 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4042 MachinePointerInfo(), false, false, 0);
4043 MemOpChains.push_back(Store);
4044 if (VR_idx != NumVRs) {
4045 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
4046 MachinePointerInfo(),
4047 false, false, false, 0);
4048 MemOpChains.push_back(Load.getValue(1));
4049 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4050 }
4051 ArgOffset += 16;
4052 for (unsigned i=0; i<16; i+=PtrByteSize) {
4053 if (GPR_idx == NumGPRs)
4054 break;
4055 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4056 DAG.getConstant(i, PtrVT));
4057 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4058 false, false, false, 0);
4059 MemOpChains.push_back(Load.getValue(1));
4060 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4061 }
4062 break;
4063 }
4064
4065 // Non-varargs Altivec params generally go in registers, but have
4066 // stack space allocated at the end.
4067 if (VR_idx != NumVRs) {
4068 // Doesn't have GPR space allocated.
4069 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4070 } else {
4071 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4072 true, isTailCall, true, MemOpChains,
4073 TailCallArguments, dl);
4074 ArgOffset += 16;
4075 }
4076 break;
4077 }
4078 }
4079
4080 if (!MemOpChains.empty())
4081 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
4082 &MemOpChains[0], MemOpChains.size());
4083
4084 // Check if this is an indirect call (MTCTR/BCTRL).
4085 // See PrepareCall() for more information about calls through function
4086 // pointers in the 64-bit SVR4 ABI.
4087 if (!isTailCall &&
4088 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4089 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4090 !isBLACompatibleAddress(Callee, DAG)) {
4091 // Load r2 into a virtual register and store it to the TOC save area.
4092 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4093 // TOC save area offset.
4094 SDValue PtrOff = DAG.getIntPtrConstant(40);
4095 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4096 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr, MachinePointerInfo(),
4097 false, false, 0);
4098 // R12 must contain the address of an indirect callee. This does not
4099 // mean the MTCTR instruction must use R12; it's easier to model this
4100 // as an extra parameter, so do that.
4101 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
4102 }
4103
4104 // Build a sequence of copy-to-reg nodes chained together with token chain
4105 // and flag operands which copy the outgoing args into the appropriate regs.
4106 SDValue InFlag;
4107 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4108 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4109 RegsToPass[i].second, InFlag);
4110 InFlag = Chain.getValue(1);
4111 }
4112
4113 if (isTailCall)
4114 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4115 FPOp, true, TailCallArguments);
4116
4117 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4118 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4119 Ins, InVals);
4120}
4121
4122SDValue
4123PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4124 CallingConv::ID CallConv, bool isVarArg,
4125 bool isTailCall,
4126 const SmallVectorImpl<ISD::OutputArg> &Outs,
4127 const SmallVectorImpl<SDValue> &OutVals,
4128 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004129 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt726c2372012-10-23 15:51:16 +00004130 SmallVectorImpl<SDValue> &InVals) const {
4131
4132 unsigned NumOps = Outs.size();
Scott Michelfdc40a02009-02-17 22:15:04 +00004133
Owen Andersone50ed302009-08-10 22:56:29 +00004134 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00004135 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerc91a4752006-06-26 22:48:35 +00004136 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004137
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004138 MachineFunction &MF = DAG.getMachineFunction();
4139
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004140 // Mark this function as potentially containing a function that contains a
4141 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4142 // and restoring the callers stack pointer in this functions epilog. This is
4143 // done because by tail calling the called function might overwrite the value
4144 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky8a8d4792011-12-02 22:16:29 +00004145 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4146 CallConv == CallingConv::Fast)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004147 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4148
4149 unsigned nAltivecParamsAtEnd = 0;
4150
Chris Lattnerabde4602006-05-16 22:56:08 +00004151 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerc91a4752006-06-26 22:48:35 +00004152 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004153 // prereserved space for [SP][CR][LR][3 x unused].
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004154 unsigned NumBytes =
Dan Gohman98ca4f22009-08-05 01:29:28 +00004155 CalculateParameterAndLinkageAreaSize(DAG, isPPC64, isVarArg, CallConv,
Dan Gohmanc9403652010-07-07 15:54:55 +00004156 Outs, OutVals,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004157 nAltivecParamsAtEnd);
Dale Johannesen75092de2008-03-12 00:22:17 +00004158
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004159 // Calculate by how many bytes the stack has to be adjusted in case of tail
4160 // call optimization.
4161 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelfdc40a02009-02-17 22:15:04 +00004162
Dan Gohman98ca4f22009-08-05 01:29:28 +00004163 // To protect arguments on the stack from being clobbered in a tail call,
4164 // force all the loads to happen before doing any other lowering.
4165 if (isTailCall)
4166 Chain = DAG.getStackArgumentTokenFactor(Chain);
4167
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004168 // Adjust the stack pointer for the new arguments...
4169 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trick6e0b2a02013-05-29 22:03:55 +00004170 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4171 dl);
Dan Gohman475871a2008-07-27 21:46:04 +00004172 SDValue CallSeqStart = Chain;
Scott Michelfdc40a02009-02-17 22:15:04 +00004173
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004174 // Load the return address and frame pointer so it can be move somewhere else
4175 // later.
Dan Gohman475871a2008-07-27 21:46:04 +00004176 SDValue LROp, FPOp;
Tilmann Schellerffd02002009-07-03 06:45:56 +00004177 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4178 dl);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004179
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004180 // Set up a copy of the stack pointer for use loading and storing any
4181 // arguments that may not fit in the registers available for argument
4182 // passing.
Dan Gohman475871a2008-07-27 21:46:04 +00004183 SDValue StackPtr;
Chris Lattnerc91a4752006-06-26 22:48:35 +00004184 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00004185 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerc91a4752006-06-26 22:48:35 +00004186 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004187 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00004188
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004189 // Figure out which arguments are going to go in registers, and which in
4190 // memory. Also, if this is a vararg function, floating point operations
4191 // must be stored to our stack, and loaded into integer regs as well, if
4192 // any integer regs are available for argument passing.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00004193 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004194 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004195
Craig Topperb78ca422012-03-11 07:16:55 +00004196 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattner9a2a4972006-05-17 06:01:33 +00004197 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4198 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4199 };
Craig Topperb78ca422012-03-11 07:16:55 +00004200 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerc91a4752006-06-26 22:48:35 +00004201 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4202 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4203 };
Craig Topperb78ca422012-03-11 07:16:55 +00004204 static const uint16_t *FPR = GetFPR();
Scott Michelfdc40a02009-02-17 22:15:04 +00004205
Craig Topperb78ca422012-03-11 07:16:55 +00004206 static const uint16_t VR[] = {
Chris Lattner9a2a4972006-05-17 06:01:33 +00004207 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4208 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4209 };
Owen Anderson718cb662007-09-07 04:06:50 +00004210 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004211 const unsigned NumFPRs = 13;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00004212 const unsigned NumVRs = array_lengthof(VR);
Scott Michelfdc40a02009-02-17 22:15:04 +00004213
Craig Topperb78ca422012-03-11 07:16:55 +00004214 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerc91a4752006-06-26 22:48:35 +00004215
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004216 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004217 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4218
Dan Gohman475871a2008-07-27 21:46:04 +00004219 SmallVector<SDValue, 8> MemOpChains;
Evan Cheng4360bdc2006-05-25 00:57:32 +00004220 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanc9403652010-07-07 15:54:55 +00004221 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00004222 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00004223
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004224 // PtrOff will be used to store the current argument to the stack if a
4225 // register cannot be found for it.
Dan Gohman475871a2008-07-27 21:46:04 +00004226 SDValue PtrOff;
Scott Michelfdc40a02009-02-17 22:15:04 +00004227
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004228 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00004229
Dale Johannesen39355f92009-02-04 02:34:38 +00004230 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerc91a4752006-06-26 22:48:35 +00004231
4232 // On PPC64, promote integers to 64-bit values.
Owen Anderson825b72b2009-08-11 20:47:22 +00004233 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00004234 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4235 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson825b72b2009-08-11 20:47:22 +00004236 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerc91a4752006-06-26 22:48:35 +00004237 }
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004238
Dale Johannesen8419dd62008-03-07 20:27:40 +00004239 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt419f3762012-09-19 15:42:13 +00004240 // Note: "by value" is code for passing a structure by value, not
4241 // basic types.
Duncan Sands276dcbd2008-03-21 09:14:45 +00004242 if (Flags.isByVal()) {
4243 unsigned Size = Flags.getByValSize();
Bill Schmidt726c2372012-10-23 15:51:16 +00004244 // Very small objects are passed right-justified. Everything else is
4245 // passed left-justified.
4246 if (Size==1 || Size==2) {
4247 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesen8419dd62008-03-07 20:27:40 +00004248 if (GPR_idx != NumGPRs) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004249 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004250 MachinePointerInfo(), VT,
4251 false, false, 0);
Dale Johannesen8419dd62008-03-07 20:27:40 +00004252 MemOpChains.push_back(Load.getValue(1));
4253 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004254
4255 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00004256 } else {
Bill Schmidt7a6cb152012-10-16 13:30:53 +00004257 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4258 PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00004259 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt726c2372012-10-23 15:51:16 +00004260 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4261 CallSeqStart,
4262 Flags, DAG, dl);
Dale Johannesen8419dd62008-03-07 20:27:40 +00004263 ArgOffset += PtrByteSize;
4264 }
4265 continue;
4266 }
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00004267 // Copy entire object into memory. There are cases where gcc-generated
4268 // code assumes it is there, even if it could be put entirely into
4269 // registers. (This is not what the doc says.)
Bill Schmidt726c2372012-10-23 15:51:16 +00004270 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4271 CallSeqStart,
4272 Flags, DAG, dl);
Bill Schmidt419f3762012-09-19 15:42:13 +00004273
4274 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
4275 // copy the pieces of the object that fit into registers from the
4276 // parameter save area.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004277 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman475871a2008-07-27 21:46:04 +00004278 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00004279 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004280 if (GPR_idx != NumGPRs) {
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004281 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4282 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004283 false, false, false, 0);
Dale Johannesen1f797a32008-03-05 23:31:27 +00004284 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004285 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004286 ArgOffset += PtrByteSize;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004287 } else {
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00004288 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00004289 break;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004290 }
4291 }
4292 continue;
4293 }
4294
Craig Topper5a0910b2013-08-15 02:33:50 +00004295 switch (Arg.getSimpleValueType().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004296 default: llvm_unreachable("Unexpected ValueType for argument!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004297 case MVT::i32:
4298 case MVT::i64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00004299 if (GPR_idx != NumGPRs) {
4300 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004301 } else {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004302 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4303 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004304 TailCallArguments, dl);
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004305 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004306 ArgOffset += PtrByteSize;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004307 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00004308 case MVT::f32:
4309 case MVT::f64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00004310 if (FPR_idx != NumFPRs) {
4311 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4312
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004313 if (isVarArg) {
Chris Lattner6229d0a2010-09-21 18:41:36 +00004314 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4315 MachinePointerInfo(), false, false, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004316 MemOpChains.push_back(Store);
4317
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004318 // Float varargs are always shadowed in available integer registers
Chris Lattner9a2a4972006-05-17 06:01:33 +00004319 if (GPR_idx != NumGPRs) {
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004320 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooperd752e0f2011-11-08 18:42:53 +00004321 MachinePointerInfo(), false, false,
4322 false, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004323 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004324 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004325 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004326 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman475871a2008-07-27 21:46:04 +00004327 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00004328 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004329 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4330 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004331 false, false, false, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004332 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004333 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerabde4602006-05-16 22:56:08 +00004334 }
4335 } else {
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004336 // If we have any FPRs remaining, we may also have GPRs remaining.
4337 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
4338 // GPRs.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004339 if (GPR_idx != NumGPRs)
4340 ++GPR_idx;
Owen Anderson825b72b2009-08-11 20:47:22 +00004341 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004342 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
4343 ++GPR_idx;
Chris Lattnerabde4602006-05-16 22:56:08 +00004344 }
Bill Schmidt726c2372012-10-23 15:51:16 +00004345 } else
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004346 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4347 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004348 TailCallArguments, dl);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004349 if (isPPC64)
4350 ArgOffset += 8;
4351 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004352 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004353 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00004354 case MVT::v4f32:
4355 case MVT::v4i32:
4356 case MVT::v8i16:
4357 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00004358 if (isVarArg) {
4359 // These go aligned on the stack, or in the corresponding R registers
Scott Michelfdc40a02009-02-17 22:15:04 +00004360 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesen75092de2008-03-12 00:22:17 +00004361 // V registers; in fact gcc does this only for arguments that are
4362 // prototyped, not for those that match the ... We do it for all
4363 // arguments, seems to work.
4364 while (ArgOffset % 16 !=0) {
4365 ArgOffset += PtrByteSize;
4366 if (GPR_idx != NumGPRs)
4367 GPR_idx++;
4368 }
4369 // We could elide this store in the case where the object fits
4370 // entirely in R registers. Maybe later.
Scott Michelfdc40a02009-02-17 22:15:04 +00004371 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesen75092de2008-03-12 00:22:17 +00004372 DAG.getConstant(ArgOffset, PtrVT));
Chris Lattner6229d0a2010-09-21 18:41:36 +00004373 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4374 MachinePointerInfo(), false, false, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00004375 MemOpChains.push_back(Store);
4376 if (VR_idx != NumVRs) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004377 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004378 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004379 false, false, false, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00004380 MemOpChains.push_back(Load.getValue(1));
4381 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4382 }
4383 ArgOffset += 16;
4384 for (unsigned i=0; i<16; i+=PtrByteSize) {
4385 if (GPR_idx == NumGPRs)
4386 break;
Dale Johannesen39355f92009-02-04 02:34:38 +00004387 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesen75092de2008-03-12 00:22:17 +00004388 DAG.getConstant(i, PtrVT));
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004389 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004390 false, false, false, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00004391 MemOpChains.push_back(Load.getValue(1));
4392 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4393 }
4394 break;
4395 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004396
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004397 // Non-varargs Altivec params generally go in registers, but have
4398 // stack space allocated at the end.
4399 if (VR_idx != NumVRs) {
4400 // Doesn't have GPR space allocated.
4401 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4402 } else if (nAltivecParamsAtEnd==0) {
4403 // We are emitting Altivec params in order.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004404 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4405 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004406 TailCallArguments, dl);
Dale Johannesen75092de2008-03-12 00:22:17 +00004407 ArgOffset += 16;
Dale Johannesen75092de2008-03-12 00:22:17 +00004408 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004409 break;
Chris Lattnerabde4602006-05-16 22:56:08 +00004410 }
Chris Lattnerabde4602006-05-16 22:56:08 +00004411 }
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004412 // If all Altivec parameters fit in registers, as they usually do,
4413 // they get stack space following the non-Altivec parameters. We
4414 // don't track this here because nobody below needs it.
4415 // If there are more Altivec parameters than fit in registers emit
4416 // the stores here.
4417 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
4418 unsigned j = 0;
4419 // Offset is aligned; skip 1st 12 params which go in V registers.
4420 ArgOffset = ((ArgOffset+15)/16)*16;
4421 ArgOffset += 12*16;
4422 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanc9403652010-07-07 15:54:55 +00004423 SDValue Arg = OutVals[i];
4424 EVT ArgType = Outs[i].VT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004425 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
4426 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004427 if (++j > NumVRs) {
Dan Gohman475871a2008-07-27 21:46:04 +00004428 SDValue PtrOff;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004429 // We are emitting Altivec params in order.
4430 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4431 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004432 TailCallArguments, dl);
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004433 ArgOffset += 16;
4434 }
4435 }
4436 }
4437 }
4438
Chris Lattner9a2a4972006-05-17 06:01:33 +00004439 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00004440 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnere2199452006-08-11 17:38:39 +00004441 &MemOpChains[0], MemOpChains.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00004442
Dale Johannesenf7b73042010-03-09 20:15:42 +00004443 // On Darwin, R12 must contain the address of an indirect callee. This does
4444 // not mean the MTCTR instruction must use R12; it's easier to model this as
4445 // an extra parameter, so do that.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004446 if (!isTailCall &&
Dale Johannesenf7b73042010-03-09 20:15:42 +00004447 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4448 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4449 !isBLACompatibleAddress(Callee, DAG))
4450 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
4451 PPC::R12), Callee));
4452
Chris Lattner9a2a4972006-05-17 06:01:33 +00004453 // Build a sequence of copy-to-reg nodes chained together with token chain
4454 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman475871a2008-07-27 21:46:04 +00004455 SDValue InFlag;
Chris Lattner9a2a4972006-05-17 06:01:33 +00004456 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004457 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen39355f92009-02-04 02:34:38 +00004458 RegsToPass[i].second, InFlag);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004459 InFlag = Chain.getValue(1);
4460 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004461
Chris Lattnerb9082582010-11-14 23:42:06 +00004462 if (isTailCall)
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004463 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
4464 FPOp, true, TailCallArguments);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004465
Dan Gohman98ca4f22009-08-05 01:29:28 +00004466 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4467 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4468 Ins, InVals);
Chris Lattnerabde4602006-05-16 22:56:08 +00004469}
4470
Hal Finkeld712f932011-10-14 19:51:36 +00004471bool
4472PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
4473 MachineFunction &MF, bool isVarArg,
4474 const SmallVectorImpl<ISD::OutputArg> &Outs,
4475 LLVMContext &Context) const {
4476 SmallVector<CCValAssign, 16> RVLocs;
4477 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
4478 RVLocs, Context);
4479 return CCInfo.CheckReturn(Outs, RetCC_PPC);
4480}
4481
Dan Gohman98ca4f22009-08-05 01:29:28 +00004482SDValue
4483PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00004484 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004485 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00004486 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004487 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00004488
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004489 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00004490 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00004491 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004492 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelfdc40a02009-02-17 22:15:04 +00004493
Dan Gohman475871a2008-07-27 21:46:04 +00004494 SDValue Flag;
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004495 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00004496
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004497 // Copy the result values into the output registers.
4498 for (unsigned i = 0; i != RVLocs.size(); ++i) {
4499 CCValAssign &VA = RVLocs[i];
4500 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand86aef0a2012-11-05 19:39:45 +00004501
4502 SDValue Arg = OutVals[i];
4503
4504 switch (VA.getLocInfo()) {
4505 default: llvm_unreachable("Unknown loc info!");
4506 case CCValAssign::Full: break;
4507 case CCValAssign::AExt:
4508 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
4509 break;
4510 case CCValAssign::ZExt:
4511 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
4512 break;
4513 case CCValAssign::SExt:
4514 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
4515 break;
4516 }
4517
4518 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004519 Flag = Chain.getValue(1);
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004520 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004521 }
4522
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004523 RetOps[0] = Chain; // Update chain.
4524
4525 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00004526 if (Flag.getNode())
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004527 RetOps.push_back(Flag);
4528
4529 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other,
4530 &RetOps[0], RetOps.size());
Chris Lattner1a635d62006-04-14 06:01:58 +00004531}
4532
Dan Gohman475871a2008-07-27 21:46:04 +00004533SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00004534 const PPCSubtarget &Subtarget) const {
Jim Laskeyefc7e522006-12-04 22:04:42 +00004535 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004536 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004537
Jim Laskeyefc7e522006-12-04 22:04:42 +00004538 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00004539 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeyefc7e522006-12-04 22:04:42 +00004540
4541 // Construct the stack pointer operand.
Dale Johannesenb60d5192009-11-24 01:09:07 +00004542 bool isPPC64 = Subtarget.isPPC64();
4543 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman475871a2008-07-27 21:46:04 +00004544 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeyefc7e522006-12-04 22:04:42 +00004545
4546 // Get the operands for the STACKRESTORE.
Dan Gohman475871a2008-07-27 21:46:04 +00004547 SDValue Chain = Op.getOperand(0);
4548 SDValue SaveSP = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004549
Jim Laskeyefc7e522006-12-04 22:04:42 +00004550 // Load the old link SP.
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004551 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
4552 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004553 false, false, false, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004554
Jim Laskeyefc7e522006-12-04 22:04:42 +00004555 // Restore the stack pointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004556 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelfdc40a02009-02-17 22:15:04 +00004557
Jim Laskeyefc7e522006-12-04 22:04:42 +00004558 // Store the old link SP.
Chris Lattner6229d0a2010-09-21 18:41:36 +00004559 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene534502d12010-02-15 16:56:53 +00004560 false, false, 0);
Jim Laskeyefc7e522006-12-04 22:04:42 +00004561}
4562
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004563
4564
Dan Gohman475871a2008-07-27 21:46:04 +00004565SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004566PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey2f616bf2006-11-16 22:43:37 +00004567 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesenb60d5192009-11-24 01:09:07 +00004568 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004569 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00004570 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004571
4572 // Get current frame pointer save index. The users of this index will be
4573 // primarily DYNALLOC instructions.
4574 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4575 int RASI = FI->getReturnAddrSaveIndex();
4576
4577 // If the frame pointer save index hasn't been defined yet.
4578 if (!RASI) {
4579 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00004580 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004581 // Allocate the frame index for frame pointer save area.
Evan Chenged2ae132010-07-03 00:40:23 +00004582 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, true);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004583 // Save the result.
4584 FI->setReturnAddrSaveIndex(RASI);
4585 }
4586 return DAG.getFrameIndex(RASI, PtrVT);
4587}
4588
Dan Gohman475871a2008-07-27 21:46:04 +00004589SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004590PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
4591 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesenb60d5192009-11-24 01:09:07 +00004592 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004593 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00004594 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00004595
4596 // Get current frame pointer save index. The users of this index will be
4597 // primarily DYNALLOC instructions.
4598 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4599 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004600
Jim Laskey2f616bf2006-11-16 22:43:37 +00004601 // If the frame pointer save index hasn't been defined yet.
4602 if (!FPSI) {
4603 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00004604 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004605 isDarwinABI);
Scott Michelfdc40a02009-02-17 22:15:04 +00004606
Jim Laskey2f616bf2006-11-16 22:43:37 +00004607 // Allocate the frame index for frame pointer save area.
Evan Chenged2ae132010-07-03 00:40:23 +00004608 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004609 // Save the result.
Scott Michelfdc40a02009-02-17 22:15:04 +00004610 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004611 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004612 return DAG.getFrameIndex(FPSI, PtrVT);
4613}
Jim Laskey2f616bf2006-11-16 22:43:37 +00004614
Dan Gohman475871a2008-07-27 21:46:04 +00004615SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004616 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00004617 const PPCSubtarget &Subtarget) const {
Jim Laskey2f616bf2006-11-16 22:43:37 +00004618 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00004619 SDValue Chain = Op.getOperand(0);
4620 SDValue Size = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004621 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004622
Jim Laskey2f616bf2006-11-16 22:43:37 +00004623 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00004624 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00004625 // Negate the size.
Dale Johannesende064702009-02-06 21:50:26 +00004626 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey2f616bf2006-11-16 22:43:37 +00004627 DAG.getConstant(0, PtrVT), Size);
4628 // Construct a node for the frame pointer save index.
Dan Gohman475871a2008-07-27 21:46:04 +00004629 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004630 // Build a DYNALLOC node.
Dan Gohman475871a2008-07-27 21:46:04 +00004631 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson825b72b2009-08-11 20:47:22 +00004632 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Dale Johannesende064702009-02-06 21:50:26 +00004633 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops, 3);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004634}
4635
Hal Finkel7ee74a62013-03-21 21:37:52 +00004636SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
4637 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004638 SDLoc DL(Op);
Hal Finkel7ee74a62013-03-21 21:37:52 +00004639 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
4640 DAG.getVTList(MVT::i32, MVT::Other),
4641 Op.getOperand(0), Op.getOperand(1));
4642}
4643
4644SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
4645 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004646 SDLoc DL(Op);
Hal Finkel7ee74a62013-03-21 21:37:52 +00004647 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
4648 Op.getOperand(0), Op.getOperand(1));
4649}
4650
Chris Lattner1a635d62006-04-14 06:01:58 +00004651/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
4652/// possible.
Dan Gohmand858e902010-04-17 15:26:15 +00004653SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner1a635d62006-04-14 06:01:58 +00004654 // Not FP? Not a fsel.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004655 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
4656 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedmanc06441e2009-05-28 04:31:08 +00004657 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00004658
Hal Finkel59889f72013-04-07 22:11:09 +00004659 // We might be able to do better than this under some circumstances, but in
4660 // general, fsel-based lowering of select is a finite-math-only optimization.
4661 // For more information, see section F.3 of the 2.06 ISA specification.
4662 if (!DAG.getTarget().Options.NoInfsFPMath ||
4663 !DAG.getTarget().Options.NoNaNsFPMath)
4664 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00004665
Hal Finkel59889f72013-04-07 22:11:09 +00004666 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004667
Owen Andersone50ed302009-08-10 22:56:29 +00004668 EVT ResVT = Op.getValueType();
4669 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004670 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
4671 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004672 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004673
Chris Lattner1a635d62006-04-14 06:01:58 +00004674 // If the RHS of the comparison is a 0.0, we don't need to do the
4675 // subtraction at all.
Hal Finkel59889f72013-04-07 22:11:09 +00004676 SDValue Sel1;
Chris Lattner1a635d62006-04-14 06:01:58 +00004677 if (isFloatingPointZero(RHS))
4678 switch (CC) {
4679 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel59889f72013-04-07 22:11:09 +00004680 case ISD::SETNE:
4681 std::swap(TV, FV);
4682 case ISD::SETEQ:
4683 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4684 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
4685 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
4686 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4687 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4688 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4689 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004690 case ISD::SETULT:
4691 case ISD::SETLT:
4692 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00004693 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004694 case ISD::SETGE:
Owen Anderson825b72b2009-08-11 20:47:22 +00004695 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4696 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00004697 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004698 case ISD::SETUGT:
4699 case ISD::SETGT:
4700 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00004701 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004702 case ISD::SETLE:
Owen Anderson825b72b2009-08-11 20:47:22 +00004703 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4704 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00004705 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00004706 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004707 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004708
Dan Gohman475871a2008-07-27 21:46:04 +00004709 SDValue Cmp;
Chris Lattner1a635d62006-04-14 06:01:58 +00004710 switch (CC) {
4711 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel59889f72013-04-07 22:11:09 +00004712 case ISD::SETNE:
4713 std::swap(TV, FV);
4714 case ISD::SETEQ:
4715 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
4716 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4717 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
4718 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
4719 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4720 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4721 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4722 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004723 case ISD::SETULT:
4724 case ISD::SETLT:
Dale Johannesende064702009-02-06 21:50:26 +00004725 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004726 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4727 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004728 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00004729 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004730 case ISD::SETGE:
Dale Johannesende064702009-02-06 21:50:26 +00004731 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004732 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4733 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004734 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004735 case ISD::SETUGT:
4736 case ISD::SETGT:
Dale Johannesende064702009-02-06 21:50:26 +00004737 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004738 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4739 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004740 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00004741 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004742 case ISD::SETLE:
Dale Johannesende064702009-02-06 21:50:26 +00004743 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004744 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4745 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004746 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004747 }
Eli Friedmanc06441e2009-05-28 04:31:08 +00004748 return Op;
Chris Lattner1a635d62006-04-14 06:01:58 +00004749}
4750
Chris Lattner1f873002007-11-28 18:44:47 +00004751// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004752SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004753 SDLoc dl) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004754 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman475871a2008-07-27 21:46:04 +00004755 SDValue Src = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00004756 if (Src.getValueType() == MVT::f32)
4757 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sandsa7360f02008-07-19 16:26:02 +00004758
Dan Gohman475871a2008-07-27 21:46:04 +00004759 SDValue Tmp;
Craig Topper5a0910b2013-08-15 02:33:50 +00004760 switch (Op.getSimpleValueType().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004761 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004762 case MVT::i32:
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004763 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ :
Hal Finkel46479192013-04-01 17:52:07 +00004764 (PPCSubTarget.hasFPCVT() ? PPCISD::FCTIWUZ :
4765 PPCISD::FCTIDZ),
Owen Anderson825b72b2009-08-11 20:47:22 +00004766 dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00004767 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00004768 case MVT::i64:
Hal Finkela1646ce2013-04-01 18:42:58 +00004769 assert((Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT()) &&
4770 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkel46479192013-04-01 17:52:07 +00004771 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
4772 PPCISD::FCTIDUZ,
4773 dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00004774 break;
4775 }
Duncan Sandsa7360f02008-07-19 16:26:02 +00004776
Chris Lattner1a635d62006-04-14 06:01:58 +00004777 // Convert the FP value to an int value through memory.
Hal Finkel46479192013-04-01 17:52:07 +00004778 bool i32Stack = Op.getValueType() == MVT::i32 && PPCSubTarget.hasSTFIWX() &&
4779 (Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT());
4780 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
4781 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
4782 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
Duncan Sandsa7360f02008-07-19 16:26:02 +00004783
Chris Lattner1de7c1d2007-10-15 20:14:52 +00004784 // Emit a store to the stack slot.
Hal Finkel46479192013-04-01 17:52:07 +00004785 SDValue Chain;
4786 if (i32Stack) {
4787 MachineFunction &MF = DAG.getMachineFunction();
4788 MachineMemOperand *MMO =
4789 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
4790 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
4791 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
4792 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
4793 MVT::i32, MMO);
4794 } else
4795 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
4796 MPI, false, false, 0);
Chris Lattner1de7c1d2007-10-15 20:14:52 +00004797
4798 // Result is a load from the stack slot. If loading 4 bytes, make sure to
4799 // add in a bias.
Hal Finkel46479192013-04-01 17:52:07 +00004800 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004801 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner1de7c1d2007-10-15 20:14:52 +00004802 DAG.getConstant(4, FIPtr.getValueType()));
Hal Finkel46479192013-04-01 17:52:07 +00004803 MPI = MachinePointerInfo();
4804 }
4805
4806 return DAG.getLoad(Op.getValueType(), dl, Chain, FIPtr, MPI,
Pete Cooperd752e0f2011-11-08 18:42:53 +00004807 false, false, false, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00004808}
4809
Hal Finkel46479192013-04-01 17:52:07 +00004810SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00004811 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004812 SDLoc dl(Op);
Dan Gohman034f60e2008-03-11 01:59:03 +00004813 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson825b72b2009-08-11 20:47:22 +00004814 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman475871a2008-07-27 21:46:04 +00004815 return SDValue();
Dan Gohman034f60e2008-03-11 01:59:03 +00004816
Hal Finkel46479192013-04-01 17:52:07 +00004817 assert((Op.getOpcode() == ISD::SINT_TO_FP || PPCSubTarget.hasFPCVT()) &&
4818 "UINT_TO_FP is supported only with FPCVT");
4819
4820 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel2a401952013-04-02 03:29:51 +00004821 // Otherwise, convert to double-precision and then round.
Hal Finkel46479192013-04-01 17:52:07 +00004822 unsigned FCFOp = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4823 (Op.getOpcode() == ISD::UINT_TO_FP ?
4824 PPCISD::FCFIDUS : PPCISD::FCFIDS) :
4825 (Op.getOpcode() == ISD::UINT_TO_FP ?
4826 PPCISD::FCFIDU : PPCISD::FCFID);
4827 MVT FCFTy = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4828 MVT::f32 : MVT::f64;
4829
Owen Anderson825b72b2009-08-11 20:47:22 +00004830 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigand6c28a7e2012-10-18 13:16:11 +00004831 SDValue SINT = Op.getOperand(0);
4832 // When converting to single-precision, we actually need to convert
4833 // to double-precision first and then round to single-precision.
4834 // To avoid double-rounding effects during that operation, we have
4835 // to prepare the input operand. Bits that might be truncated when
4836 // converting to double-precision are replaced by a bit that won't
4837 // be lost at this stage, but is below the single-precision rounding
4838 // position.
4839 //
4840 // However, if -enable-unsafe-fp-math is in effect, accept double
4841 // rounding to avoid the extra overhead.
4842 if (Op.getValueType() == MVT::f32 &&
Hal Finkel46479192013-04-01 17:52:07 +00004843 !PPCSubTarget.hasFPCVT() &&
Ulrich Weigand6c28a7e2012-10-18 13:16:11 +00004844 !DAG.getTarget().Options.UnsafeFPMath) {
4845
4846 // Twiddle input to make sure the low 11 bits are zero. (If this
4847 // is the case, we are guaranteed the value will fit into the 53 bit
4848 // mantissa of an IEEE double-precision value without rounding.)
4849 // If any of those low 11 bits were not zero originally, make sure
4850 // bit 12 (value 2048) is set instead, so that the final rounding
4851 // to single-precision gets the correct result.
4852 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4853 SINT, DAG.getConstant(2047, MVT::i64));
4854 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
4855 Round, DAG.getConstant(2047, MVT::i64));
4856 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
4857 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4858 Round, DAG.getConstant(-2048, MVT::i64));
4859
4860 // However, we cannot use that value unconditionally: if the magnitude
4861 // of the input value is small, the bit-twiddling we did above might
4862 // end up visibly changing the output. Fortunately, in that case, we
4863 // don't need to twiddle bits since the original input will convert
4864 // exactly to double-precision floating-point already. Therefore,
4865 // construct a conditional to use the original value if the top 11
4866 // bits are all sign-bit copies, and use the rounded value computed
4867 // above otherwise.
4868 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
4869 SINT, DAG.getConstant(53, MVT::i32));
4870 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
4871 Cond, DAG.getConstant(1, MVT::i64));
4872 Cond = DAG.getSetCC(dl, MVT::i32,
4873 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
4874
4875 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
4876 }
Hal Finkel46479192013-04-01 17:52:07 +00004877
Ulrich Weigand6c28a7e2012-10-18 13:16:11 +00004878 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
Hal Finkel46479192013-04-01 17:52:07 +00004879 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
4880
4881 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Scott Michelfdc40a02009-02-17 22:15:04 +00004882 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004883 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00004884 return FP;
4885 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004886
Owen Anderson825b72b2009-08-11 20:47:22 +00004887 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkel46479192013-04-01 17:52:07 +00004888 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner1a635d62006-04-14 06:01:58 +00004889 // Since we only generate this in 64-bit mode, we can take advantage of
4890 // 64-bit registers. In particular, sign extend the input value into the
4891 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
4892 // then lfd it and fcfid it.
Dan Gohmanc76909a2009-09-25 20:36:54 +00004893 MachineFunction &MF = DAG.getMachineFunction();
4894 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004895 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00004896
Hal Finkel8049ab12013-03-31 10:12:51 +00004897 SDValue Ld;
Hal Finkel46479192013-04-01 17:52:07 +00004898 if (PPCSubTarget.hasLFIWAX() || PPCSubTarget.hasFPCVT()) {
Hal Finkel8049ab12013-03-31 10:12:51 +00004899 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
4900 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004901
Hal Finkel8049ab12013-03-31 10:12:51 +00004902 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
4903 MachinePointerInfo::getFixedStack(FrameIdx),
4904 false, false, 0);
Hal Finkel9ad0f492013-03-31 01:58:02 +00004905
Hal Finkel8049ab12013-03-31 10:12:51 +00004906 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
4907 "Expected an i32 store");
4908 MachineMemOperand *MMO =
4909 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
4910 MachineMemOperand::MOLoad, 4, 4);
4911 SDValue Ops[] = { Store, FIdx };
Hal Finkel46479192013-04-01 17:52:07 +00004912 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
4913 PPCISD::LFIWZX : PPCISD::LFIWAX,
4914 dl, DAG.getVTList(MVT::f64, MVT::Other),
4915 Ops, 2, MVT::i32, MMO);
Hal Finkel8049ab12013-03-31 10:12:51 +00004916 } else {
Hal Finkel46479192013-04-01 17:52:07 +00004917 assert(PPCSubTarget.isPPC64() &&
4918 "i32->FP without LFIWAX supported only on PPC64");
4919
Hal Finkel8049ab12013-03-31 10:12:51 +00004920 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
4921 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
4922
4923 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
4924 Op.getOperand(0));
4925
4926 // STD the extended value into the stack slot.
4927 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
4928 MachinePointerInfo::getFixedStack(FrameIdx),
4929 false, false, 0);
4930
4931 // Load the value as a double.
4932 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
4933 MachinePointerInfo::getFixedStack(FrameIdx),
4934 false, false, false, 0);
4935 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004936
Chris Lattner1a635d62006-04-14 06:01:58 +00004937 // FCFID it and return it.
Hal Finkel46479192013-04-01 17:52:07 +00004938 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
4939 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Owen Anderson825b72b2009-08-11 20:47:22 +00004940 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00004941 return FP;
4942}
4943
Dan Gohmand858e902010-04-17 15:26:15 +00004944SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
4945 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004946 SDLoc dl(Op);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004947 /*
4948 The rounding mode is in bits 30:31 of FPSR, and has the following
4949 settings:
4950 00 Round to nearest
4951 01 Round to 0
4952 10 Round to +inf
4953 11 Round to -inf
4954
4955 FLT_ROUNDS, on the other hand, expects the following:
4956 -1 Undefined
4957 0 Round to 0
4958 1 Round to nearest
4959 2 Round to +inf
4960 3 Round to -inf
4961
4962 To perform the conversion, we do:
4963 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
4964 */
4965
4966 MachineFunction &MF = DAG.getMachineFunction();
Owen Andersone50ed302009-08-10 22:56:29 +00004967 EVT VT = Op.getValueType();
4968 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00004969 SDValue MFFSreg, InFlag;
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004970
4971 // Save FP Control Word to register
Benjamin Kramer3853f742013-03-07 20:33:29 +00004972 EVT NodeTys[] = {
4973 MVT::f64, // return register
4974 MVT::Glue // unused in this context
4975 };
Dale Johannesen33c960f2009-02-04 20:06:27 +00004976 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004977
4978 // Save FP register to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00004979 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman475871a2008-07-27 21:46:04 +00004980 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00004981 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner6229d0a2010-09-21 18:41:36 +00004982 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004983
4984 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00004985 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00004986 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004987 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004988 false, false, false, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004989
4990 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00004991 SDValue CWD1 =
Owen Anderson825b72b2009-08-11 20:47:22 +00004992 DAG.getNode(ISD::AND, dl, MVT::i32,
4993 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman475871a2008-07-27 21:46:04 +00004994 SDValue CWD2 =
Owen Anderson825b72b2009-08-11 20:47:22 +00004995 DAG.getNode(ISD::SRL, dl, MVT::i32,
4996 DAG.getNode(ISD::AND, dl, MVT::i32,
4997 DAG.getNode(ISD::XOR, dl, MVT::i32,
4998 CWD, DAG.getConstant(3, MVT::i32)),
4999 DAG.getConstant(3, MVT::i32)),
5000 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c5eb802008-01-18 19:55:37 +00005001
Dan Gohman475871a2008-07-27 21:46:04 +00005002 SDValue RetVal =
Owen Anderson825b72b2009-08-11 20:47:22 +00005003 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00005004
Duncan Sands83ec4b62008-06-06 12:08:01 +00005005 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen33c960f2009-02-04 20:06:27 +00005006 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00005007}
5008
Dan Gohmand858e902010-04-17 15:26:15 +00005009SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005010 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005011 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005012 SDLoc dl(Op);
Dan Gohman9ed06db2008-03-07 20:36:53 +00005013 assert(Op.getNumOperands() == 3 &&
5014 VT == Op.getOperand(1).getValueType() &&
5015 "Unexpected SHL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005016
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00005017 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00005018 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00005019 SDValue Lo = Op.getOperand(0);
5020 SDValue Hi = Op.getOperand(1);
5021 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00005022 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005023
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005024 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005025 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005026 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
5027 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
5028 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
5029 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005030 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005031 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
5032 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5033 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00005034 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005035 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00005036}
5037
Dan Gohmand858e902010-04-17 15:26:15 +00005038SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005039 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005040 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005041 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00005042 assert(Op.getNumOperands() == 3 &&
5043 VT == Op.getOperand(1).getValueType() &&
5044 "Unexpected SRL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005045
Dan Gohman9ed06db2008-03-07 20:36:53 +00005046 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00005047 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00005048 SDValue Lo = Op.getOperand(0);
5049 SDValue Hi = Op.getOperand(1);
5050 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00005051 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005052
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005053 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005054 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005055 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5056 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5057 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5058 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005059 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005060 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
5061 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5062 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00005063 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005064 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00005065}
5066
Dan Gohmand858e902010-04-17 15:26:15 +00005067SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005068 SDLoc dl(Op);
Owen Andersone50ed302009-08-10 22:56:29 +00005069 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005070 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00005071 assert(Op.getNumOperands() == 3 &&
5072 VT == Op.getOperand(1).getValueType() &&
5073 "Unexpected SRA!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005074
Dan Gohman9ed06db2008-03-07 20:36:53 +00005075 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman475871a2008-07-27 21:46:04 +00005076 SDValue Lo = Op.getOperand(0);
5077 SDValue Hi = Op.getOperand(1);
5078 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00005079 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005080
Dale Johannesenf5d97892009-02-04 01:48:28 +00005081 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005082 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf5d97892009-02-04 01:48:28 +00005083 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5084 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5085 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5086 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005087 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00005088 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
5089 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
5090 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005091 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman475871a2008-07-27 21:46:04 +00005092 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005093 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00005094}
5095
5096//===----------------------------------------------------------------------===//
5097// Vector related lowering.
5098//
5099
Chris Lattner4a998b92006-04-17 06:00:21 +00005100/// BuildSplatI - Build a canonical splati of Val with an element size of
5101/// SplatSize. Cast the result to VT.
Owen Andersone50ed302009-08-10 22:56:29 +00005102static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005103 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner4a998b92006-04-17 06:00:21 +00005104 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner70fa4932006-12-01 01:45:39 +00005105
Owen Andersone50ed302009-08-10 22:56:29 +00005106 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson825b72b2009-08-11 20:47:22 +00005107 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner4a998b92006-04-17 06:00:21 +00005108 };
Chris Lattner70fa4932006-12-01 01:45:39 +00005109
Owen Anderson825b72b2009-08-11 20:47:22 +00005110 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00005111
Chris Lattner70fa4932006-12-01 01:45:39 +00005112 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
5113 if (Val == -1)
5114 SplatSize = 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00005115
Owen Andersone50ed302009-08-10 22:56:29 +00005116 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00005117
Chris Lattner4a998b92006-04-17 06:00:21 +00005118 // Build a canonical splat for this value.
Owen Anderson825b72b2009-08-11 20:47:22 +00005119 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00005120 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005121 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Evan Chenga87008d2009-02-25 22:49:59 +00005122 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT,
5123 &Ops[0], Ops.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005124 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00005125}
5126
Hal Finkel80d10de2013-05-24 23:00:14 +00005127/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
5128/// specified intrinsic ID.
5129static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005130 SelectionDAG &DAG, SDLoc dl,
Hal Finkel80d10de2013-05-24 23:00:14 +00005131 EVT DestVT = MVT::Other) {
5132 if (DestVT == MVT::Other) DestVT = Op.getValueType();
5133 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
5134 DAG.getConstant(IID, MVT::i32), Op);
5135}
5136
Chris Lattnere7c768e2006-04-18 03:24:30 +00005137/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner6876e662006-04-17 06:58:41 +00005138/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00005139static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005140 SelectionDAG &DAG, SDLoc dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005141 EVT DestVT = MVT::Other) {
5142 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00005143 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00005144 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner6876e662006-04-17 06:58:41 +00005145}
5146
Chris Lattnere7c768e2006-04-18 03:24:30 +00005147/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
5148/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00005149static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesened2eee62009-02-06 01:31:28 +00005150 SDValue Op2, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005151 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005152 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00005153 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00005154 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnere7c768e2006-04-18 03:24:30 +00005155}
5156
5157
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005158/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
5159/// amount. The result has the specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005160static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005161 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005162 // Force LHS/RHS to be the right type.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005163 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
5164 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsd038e042008-07-21 10:20:31 +00005165
Nate Begeman9008ca62009-04-27 18:41:29 +00005166 int Ops[16];
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005167 for (unsigned i = 0; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005168 Ops[i] = i + Amt;
Owen Anderson825b72b2009-08-11 20:47:22 +00005169 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005170 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005171}
5172
Chris Lattnerf1b47082006-04-14 05:19:18 +00005173// If this is a case we can't handle, return null and let the default
5174// expansion code take care of it. If we CAN select this case, and if it
5175// selects to a single instruction, return Op. Otherwise, if we can codegen
5176// this case more efficiently than a constant pool load, lower it to the
5177// sequence of ops that should be used.
Dan Gohmand858e902010-04-17 15:26:15 +00005178SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
5179 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005180 SDLoc dl(Op);
Bob Wilsona27ea9e2009-03-01 01:13:55 +00005181 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
5182 assert(BVN != 0 && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Micheldf380432009-02-25 03:12:50 +00005183
Bob Wilson24e338e2009-03-02 23:24:16 +00005184 // Check if this is a splat of a constant value.
5185 APInt APSplatBits, APSplatUndef;
5186 unsigned SplatBitSize;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00005187 bool HasAnyUndefs;
Bob Wilsonf2950b02009-03-03 19:26:27 +00005188 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Dale Johannesen1e608812009-11-13 01:45:18 +00005189 HasAnyUndefs, 0, true) || SplatBitSize > 32)
Bob Wilsonf2950b02009-03-03 19:26:27 +00005190 return SDValue();
Evan Chenga87008d2009-02-25 22:49:59 +00005191
Bob Wilsonf2950b02009-03-03 19:26:27 +00005192 unsigned SplatBits = APSplatBits.getZExtValue();
5193 unsigned SplatUndef = APSplatUndef.getZExtValue();
5194 unsigned SplatSize = SplatBitSize / 8;
Scott Michelfdc40a02009-02-17 22:15:04 +00005195
Bob Wilsonf2950b02009-03-03 19:26:27 +00005196 // First, handle single instruction cases.
5197
5198 // All zeros?
5199 if (SplatBits == 0) {
5200 // Canonicalize all zero vectors to be v4i32.
Owen Anderson825b72b2009-08-11 20:47:22 +00005201 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
5202 SDValue Z = DAG.getConstant(0, MVT::i32);
5203 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005204 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattnerf1b47082006-04-14 05:19:18 +00005205 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00005206 return Op;
5207 }
Chris Lattnerb17f1672006-04-16 01:01:29 +00005208
Bob Wilsonf2950b02009-03-03 19:26:27 +00005209 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
5210 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
5211 (32-SplatBitSize));
5212 if (SextVal >= -16 && SextVal <= 15)
5213 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005214
5215
Bob Wilsonf2950b02009-03-03 19:26:27 +00005216 // Two instruction sequences.
Scott Michelfdc40a02009-02-17 22:15:04 +00005217
Bob Wilsonf2950b02009-03-03 19:26:27 +00005218 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtabc40282013-02-20 20:41:42 +00005219 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
5220 // If this value is in the range [17,31] and is odd, use:
5221 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
5222 // If this value is in the range [-31,-17] and is odd, use:
5223 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
5224 // Note the last two are three-instruction sequences.
5225 if (SextVal >= -32 && SextVal <= 31) {
5226 // To avoid having these optimizations undone by constant folding,
5227 // we convert to a pseudo that will be expanded later into one of
5228 // the above forms.
5229 SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
Bill Schmidtb34c79e2013-02-20 15:50:31 +00005230 EVT VT = Op.getValueType();
5231 int Size = VT == MVT::v16i8 ? 1 : (VT == MVT::v8i16 ? 2 : 4);
5232 SDValue EltSize = DAG.getConstant(Size, MVT::i32);
5233 return DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005234 }
5235
5236 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
5237 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
5238 // for fneg/fabs.
5239 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
5240 // Make -1 and vspltisw -1:
Owen Anderson825b72b2009-08-11 20:47:22 +00005241 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005242
5243 // Make the VSLW intrinsic, computing 0x8000_0000.
5244 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
5245 OnesV, DAG, dl);
5246
5247 // xor by OnesV to invert it.
Owen Anderson825b72b2009-08-11 20:47:22 +00005248 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005249 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005250 }
5251
5252 // Check to see if this is a wide variety of vsplti*, binop self cases.
5253 static const signed char SplatCsts[] = {
5254 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
5255 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
5256 };
5257
5258 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
5259 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
5260 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
5261 int i = SplatCsts[idx];
5262
5263 // Figure out what shift amount will be used by altivec if shifted by i in
5264 // this splat size.
5265 unsigned TypeShiftAmt = i & (SplatBitSize-1);
5266
5267 // vsplti + shl self.
Richard Smith1144af32012-08-24 23:29:28 +00005268 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005269 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005270 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5271 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
5272 Intrinsic::ppc_altivec_vslw
5273 };
5274 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005275 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00005276 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005277
Bob Wilsonf2950b02009-03-03 19:26:27 +00005278 // vsplti + srl self.
5279 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005280 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005281 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5282 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
5283 Intrinsic::ppc_altivec_vsrw
5284 };
5285 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005286 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00005287 }
5288
Bob Wilsonf2950b02009-03-03 19:26:27 +00005289 // vsplti + sra self.
5290 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005291 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005292 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5293 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
5294 Intrinsic::ppc_altivec_vsraw
5295 };
5296 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005297 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00005298 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005299
Bob Wilsonf2950b02009-03-03 19:26:27 +00005300 // vsplti + rol self.
5301 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
5302 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005303 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005304 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5305 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
5306 Intrinsic::ppc_altivec_vrlw
5307 };
5308 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005309 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005310 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005311
Bob Wilsonf2950b02009-03-03 19:26:27 +00005312 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith1144af32012-08-24 23:29:28 +00005313 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005314 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005315 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnerdbce85d2006-04-17 18:09:22 +00005316 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00005317 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith1144af32012-08-24 23:29:28 +00005318 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005319 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005320 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattnerf1b47082006-04-14 05:19:18 +00005321 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00005322 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith1144af32012-08-24 23:29:28 +00005323 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005324 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005325 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
5326 }
5327 }
5328
Dan Gohman475871a2008-07-27 21:46:04 +00005329 return SDValue();
Chris Lattnerf1b47082006-04-14 05:19:18 +00005330}
5331
Chris Lattner59138102006-04-17 05:28:54 +00005332/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5333/// the specified operations to build the shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00005334static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00005335 SDValue RHS, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005336 SDLoc dl) {
Chris Lattner59138102006-04-17 05:28:54 +00005337 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling77959322008-09-17 00:30:57 +00005338 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner59138102006-04-17 05:28:54 +00005339 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005340
Chris Lattner59138102006-04-17 05:28:54 +00005341 enum {
Chris Lattner00402c72006-05-16 04:20:24 +00005342 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
Chris Lattner59138102006-04-17 05:28:54 +00005343 OP_VMRGHW,
5344 OP_VMRGLW,
5345 OP_VSPLTISW0,
5346 OP_VSPLTISW1,
5347 OP_VSPLTISW2,
5348 OP_VSPLTISW3,
5349 OP_VSLDOI4,
5350 OP_VSLDOI8,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00005351 OP_VSLDOI12
Chris Lattner59138102006-04-17 05:28:54 +00005352 };
Scott Michelfdc40a02009-02-17 22:15:04 +00005353
Chris Lattner59138102006-04-17 05:28:54 +00005354 if (OpNum == OP_COPY) {
5355 if (LHSID == (1*9+2)*9+3) return LHS;
5356 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5357 return RHS;
5358 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005359
Dan Gohman475871a2008-07-27 21:46:04 +00005360 SDValue OpLHS, OpRHS;
Dale Johannesened2eee62009-02-06 01:31:28 +00005361 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5362 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005363
Nate Begeman9008ca62009-04-27 18:41:29 +00005364 int ShufIdxs[16];
Chris Lattner59138102006-04-17 05:28:54 +00005365 switch (OpNum) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005366 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner59138102006-04-17 05:28:54 +00005367 case OP_VMRGHW:
5368 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
5369 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
5370 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
5371 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
5372 break;
5373 case OP_VMRGLW:
5374 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
5375 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
5376 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
5377 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
5378 break;
5379 case OP_VSPLTISW0:
5380 for (unsigned i = 0; i != 16; ++i)
5381 ShufIdxs[i] = (i&3)+0;
5382 break;
5383 case OP_VSPLTISW1:
5384 for (unsigned i = 0; i != 16; ++i)
5385 ShufIdxs[i] = (i&3)+4;
5386 break;
5387 case OP_VSPLTISW2:
5388 for (unsigned i = 0; i != 16; ++i)
5389 ShufIdxs[i] = (i&3)+8;
5390 break;
5391 case OP_VSPLTISW3:
5392 for (unsigned i = 0; i != 16; ++i)
5393 ShufIdxs[i] = (i&3)+12;
5394 break;
5395 case OP_VSLDOI4:
Dale Johannesened2eee62009-02-06 01:31:28 +00005396 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005397 case OP_VSLDOI8:
Dale Johannesened2eee62009-02-06 01:31:28 +00005398 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005399 case OP_VSLDOI12:
Dale Johannesened2eee62009-02-06 01:31:28 +00005400 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005401 }
Owen Andersone50ed302009-08-10 22:56:29 +00005402 EVT VT = OpLHS.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005403 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
5404 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00005405 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005406 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner59138102006-04-17 05:28:54 +00005407}
5408
Chris Lattnerf1b47082006-04-14 05:19:18 +00005409/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
5410/// is a shuffle we can handle in a single instruction, return it. Otherwise,
5411/// return the code it can be lowered into. Worst case, it can always be
5412/// lowered into a vperm.
Scott Michelfdc40a02009-02-17 22:15:04 +00005413SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005414 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005415 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005416 SDValue V1 = Op.getOperand(0);
5417 SDValue V2 = Op.getOperand(1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005418 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Andersone50ed302009-08-10 22:56:29 +00005419 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005420
Chris Lattnerf1b47082006-04-14 05:19:18 +00005421 // Cases that are handled by instructions that take permute immediates
5422 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
5423 // selected by the instruction selector.
5424 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005425 if (PPC::isSplatShuffleMask(SVOp, 1) ||
5426 PPC::isSplatShuffleMask(SVOp, 2) ||
5427 PPC::isSplatShuffleMask(SVOp, 4) ||
5428 PPC::isVPKUWUMShuffleMask(SVOp, true) ||
5429 PPC::isVPKUHUMShuffleMask(SVOp, true) ||
5430 PPC::isVSLDOIShuffleMask(SVOp, true) != -1 ||
5431 PPC::isVMRGLShuffleMask(SVOp, 1, true) ||
5432 PPC::isVMRGLShuffleMask(SVOp, 2, true) ||
5433 PPC::isVMRGLShuffleMask(SVOp, 4, true) ||
5434 PPC::isVMRGHShuffleMask(SVOp, 1, true) ||
5435 PPC::isVMRGHShuffleMask(SVOp, 2, true) ||
5436 PPC::isVMRGHShuffleMask(SVOp, 4, true)) {
Chris Lattnerf1b47082006-04-14 05:19:18 +00005437 return Op;
5438 }
5439 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005440
Chris Lattnerf1b47082006-04-14 05:19:18 +00005441 // Altivec has a variety of "shuffle immediates" that take two vector inputs
5442 // and produce a fixed permutation. If any of these match, do not lower to
5443 // VPERM.
Nate Begeman9008ca62009-04-27 18:41:29 +00005444 if (PPC::isVPKUWUMShuffleMask(SVOp, false) ||
5445 PPC::isVPKUHUMShuffleMask(SVOp, false) ||
5446 PPC::isVSLDOIShuffleMask(SVOp, false) != -1 ||
5447 PPC::isVMRGLShuffleMask(SVOp, 1, false) ||
5448 PPC::isVMRGLShuffleMask(SVOp, 2, false) ||
5449 PPC::isVMRGLShuffleMask(SVOp, 4, false) ||
5450 PPC::isVMRGHShuffleMask(SVOp, 1, false) ||
5451 PPC::isVMRGHShuffleMask(SVOp, 2, false) ||
5452 PPC::isVMRGHShuffleMask(SVOp, 4, false))
Chris Lattnerf1b47082006-04-14 05:19:18 +00005453 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00005454
Chris Lattner59138102006-04-17 05:28:54 +00005455 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
5456 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00005457 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005458
Chris Lattner59138102006-04-17 05:28:54 +00005459 unsigned PFIndexes[4];
5460 bool isFourElementShuffle = true;
5461 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
5462 unsigned EltNo = 8; // Start out undef.
5463 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman9008ca62009-04-27 18:41:29 +00005464 if (PermMask[i*4+j] < 0)
Chris Lattner59138102006-04-17 05:28:54 +00005465 continue; // Undef, ignore it.
Scott Michelfdc40a02009-02-17 22:15:04 +00005466
Nate Begeman9008ca62009-04-27 18:41:29 +00005467 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner59138102006-04-17 05:28:54 +00005468 if ((ByteSource & 3) != j) {
5469 isFourElementShuffle = false;
5470 break;
5471 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005472
Chris Lattner59138102006-04-17 05:28:54 +00005473 if (EltNo == 8) {
5474 EltNo = ByteSource/4;
5475 } else if (EltNo != ByteSource/4) {
5476 isFourElementShuffle = false;
5477 break;
5478 }
5479 }
5480 PFIndexes[i] = EltNo;
5481 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005482
5483 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner59138102006-04-17 05:28:54 +00005484 // perfect shuffle vector to determine if it is cost effective to do this as
5485 // discrete instructions, or whether we should use a vperm.
5486 if (isFourElementShuffle) {
5487 // Compute the index in the perfect shuffle table.
Scott Michelfdc40a02009-02-17 22:15:04 +00005488 unsigned PFTableIndex =
Chris Lattner59138102006-04-17 05:28:54 +00005489 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelfdc40a02009-02-17 22:15:04 +00005490
Chris Lattner59138102006-04-17 05:28:54 +00005491 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5492 unsigned Cost = (PFEntry >> 30);
Scott Michelfdc40a02009-02-17 22:15:04 +00005493
Chris Lattner59138102006-04-17 05:28:54 +00005494 // Determining when to avoid vperm is tricky. Many things affect the cost
5495 // of vperm, particularly how many times the perm mask needs to be computed.
5496 // For example, if the perm mask can be hoisted out of a loop or is already
5497 // used (perhaps because there are multiple permutes with the same shuffle
5498 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
5499 // the loop requires an extra register.
5500 //
5501 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelfdc40a02009-02-17 22:15:04 +00005502 // generated in 3 or fewer operations. When we have loop information
Chris Lattner59138102006-04-17 05:28:54 +00005503 // available, if this block is within a loop, we should avoid using vperm
5504 // for 3-operation perms and use a constant pool load instead.
Scott Michelfdc40a02009-02-17 22:15:04 +00005505 if (Cost < 3)
Dale Johannesened2eee62009-02-06 01:31:28 +00005506 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005507 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005508
Chris Lattnerf1b47082006-04-14 05:19:18 +00005509 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
5510 // vector that will get spilled to the constant pool.
5511 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelfdc40a02009-02-17 22:15:04 +00005512
Chris Lattnerf1b47082006-04-14 05:19:18 +00005513 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
5514 // that it is in input element units, not in bytes. Convert now.
Owen Andersone50ed302009-08-10 22:56:29 +00005515 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005516 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelfdc40a02009-02-17 22:15:04 +00005517
Dan Gohman475871a2008-07-27 21:46:04 +00005518 SmallVector<SDValue, 16> ResultMask;
Nate Begeman9008ca62009-04-27 18:41:29 +00005519 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
5520 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00005521
Chris Lattnerf1b47082006-04-14 05:19:18 +00005522 for (unsigned j = 0; j != BytesPerElement; ++j)
5523 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
Owen Anderson825b72b2009-08-11 20:47:22 +00005524 MVT::i32));
Chris Lattnerf1b47082006-04-14 05:19:18 +00005525 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005526
Owen Anderson825b72b2009-08-11 20:47:22 +00005527 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Evan Chenga87008d2009-02-25 22:49:59 +00005528 &ResultMask[0], ResultMask.size());
Dale Johannesened2eee62009-02-06 01:31:28 +00005529 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), V1, V2, VPermMask);
Chris Lattnerf1b47082006-04-14 05:19:18 +00005530}
5531
Chris Lattner90564f22006-04-18 17:59:36 +00005532/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
5533/// altivec comparison. If it is, return true and fill in Opc/isDot with
5534/// information about the intrinsic.
Dan Gohman475871a2008-07-27 21:46:04 +00005535static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner90564f22006-04-18 17:59:36 +00005536 bool &isDot) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005537 unsigned IntrinsicID =
5538 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00005539 CompareOpc = -1;
5540 isDot = false;
5541 switch (IntrinsicID) {
5542 default: return false;
5543 // Comparison predicates.
Chris Lattner1a635d62006-04-14 06:01:58 +00005544 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
5545 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
5546 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
5547 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
5548 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
5549 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
5550 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
5551 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
5552 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
5553 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
5554 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
5555 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
5556 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005557
Chris Lattner1a635d62006-04-14 06:01:58 +00005558 // Normal Comparisons.
5559 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
5560 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
5561 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
5562 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
5563 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
5564 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
5565 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
5566 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
5567 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
5568 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
5569 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
5570 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
5571 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
5572 }
Chris Lattner90564f22006-04-18 17:59:36 +00005573 return true;
5574}
5575
5576/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
5577/// lower, do it, otherwise return null.
Scott Michelfdc40a02009-02-17 22:15:04 +00005578SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005579 SelectionDAG &DAG) const {
Chris Lattner90564f22006-04-18 17:59:36 +00005580 // If this is a lowered altivec predicate compare, CompareOpc is set to the
5581 // opcode number of the comparison.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005582 SDLoc dl(Op);
Chris Lattner90564f22006-04-18 17:59:36 +00005583 int CompareOpc;
5584 bool isDot;
5585 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman475871a2008-07-27 21:46:04 +00005586 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelfdc40a02009-02-17 22:15:04 +00005587
Chris Lattner90564f22006-04-18 17:59:36 +00005588 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner1a635d62006-04-14 06:01:58 +00005589 if (!isDot) {
Dale Johannesen3484c092009-02-05 22:07:54 +00005590 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner149add02010-03-14 22:44:11 +00005591 Op.getOperand(1), Op.getOperand(2),
5592 DAG.getConstant(CompareOpc, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005593 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner1a635d62006-04-14 06:01:58 +00005594 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005595
Chris Lattner1a635d62006-04-14 06:01:58 +00005596 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman475871a2008-07-27 21:46:04 +00005597 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00005598 Op.getOperand(2), // LHS
5599 Op.getOperand(3), // RHS
Owen Anderson825b72b2009-08-11 20:47:22 +00005600 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00005601 };
Benjamin Kramer3853f742013-03-07 20:33:29 +00005602 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesen3484c092009-02-05 22:07:54 +00005603 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00005604
Chris Lattner1a635d62006-04-14 06:01:58 +00005605 // Now that we have the comparison, emit a copy from the CR to a GPR.
5606 // This is flagged to the above dot comparison.
Ulrich Weigand965b20e2013-07-03 17:05:42 +00005607 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00005608 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelfdc40a02009-02-17 22:15:04 +00005609 CompNode.getValue(1));
5610
Chris Lattner1a635d62006-04-14 06:01:58 +00005611 // Unpack the result based on how the target uses it.
5612 unsigned BitNo; // Bit # of CR6.
5613 bool InvertBit; // Invert result?
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005614 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner1a635d62006-04-14 06:01:58 +00005615 default: // Can't happen, don't crash on invalid number though.
5616 case 0: // Return the value of the EQ bit of CR6.
5617 BitNo = 0; InvertBit = false;
5618 break;
5619 case 1: // Return the inverted value of the EQ bit of CR6.
5620 BitNo = 0; InvertBit = true;
5621 break;
5622 case 2: // Return the value of the LT bit of CR6.
5623 BitNo = 2; InvertBit = false;
5624 break;
5625 case 3: // Return the inverted value of the LT bit of CR6.
5626 BitNo = 2; InvertBit = true;
5627 break;
5628 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005629
Chris Lattner1a635d62006-04-14 06:01:58 +00005630 // Shift the bit into the low position.
Owen Anderson825b72b2009-08-11 20:47:22 +00005631 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
5632 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00005633 // Isolate the bit.
Owen Anderson825b72b2009-08-11 20:47:22 +00005634 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
5635 DAG.getConstant(1, MVT::i32));
Scott Michelfdc40a02009-02-17 22:15:04 +00005636
Chris Lattner1a635d62006-04-14 06:01:58 +00005637 // If we are supposed to, toggle the bit.
5638 if (InvertBit)
Owen Anderson825b72b2009-08-11 20:47:22 +00005639 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
5640 DAG.getConstant(1, MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00005641 return Flags;
5642}
5643
Scott Michelfdc40a02009-02-17 22:15:04 +00005644SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005645 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005646 SDLoc dl(Op);
Chris Lattner1a635d62006-04-14 06:01:58 +00005647 // Create a stack slot that is 16-byte aligned.
5648 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene3f2bf852009-11-12 20:49:22 +00005649 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Dale Johannesen08673d22010-05-03 22:59:34 +00005650 EVT PtrVT = getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00005651 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005652
Chris Lattner1a635d62006-04-14 06:01:58 +00005653 // Store the input value into Value#0 of the stack slot.
Dale Johannesen33c960f2009-02-04 20:06:27 +00005654 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00005655 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene534502d12010-02-15 16:56:53 +00005656 false, false, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00005657 // Load it out.
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00005658 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005659 false, false, false, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00005660}
5661
Dan Gohmand858e902010-04-17 15:26:15 +00005662SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005663 SDLoc dl(Op);
Owen Anderson825b72b2009-08-11 20:47:22 +00005664 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman475871a2008-07-27 21:46:04 +00005665 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005666
Owen Anderson825b72b2009-08-11 20:47:22 +00005667 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
5668 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelfdc40a02009-02-17 22:15:04 +00005669
Dan Gohman475871a2008-07-27 21:46:04 +00005670 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesened2eee62009-02-06 01:31:28 +00005671 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005672
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005673 // Shrinkify inputs to v8i16.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005674 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
5675 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
5676 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelfdc40a02009-02-17 22:15:04 +00005677
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005678 // Low parts multiplied together, generating 32-bit results (we ignore the
5679 // top parts).
Dan Gohman475871a2008-07-27 21:46:04 +00005680 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson825b72b2009-08-11 20:47:22 +00005681 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00005682
Dan Gohman475871a2008-07-27 21:46:04 +00005683 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson825b72b2009-08-11 20:47:22 +00005684 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005685 // Shift the high parts up 16 bits.
Scott Michelfdc40a02009-02-17 22:15:04 +00005686 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesened2eee62009-02-06 01:31:28 +00005687 Neg16, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00005688 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
5689 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005690 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005691
Owen Anderson825b72b2009-08-11 20:47:22 +00005692 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005693
Chris Lattnercea2aa72006-04-18 04:28:57 +00005694 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesened2eee62009-02-06 01:31:28 +00005695 LHS, RHS, Zero, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00005696 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005697 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005698
Chris Lattner19a81522006-04-18 03:57:35 +00005699 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00005700 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson825b72b2009-08-11 20:47:22 +00005701 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005702 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00005703
Chris Lattner19a81522006-04-18 03:57:35 +00005704 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00005705 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson825b72b2009-08-11 20:47:22 +00005706 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005707 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00005708
Chris Lattner19a81522006-04-18 03:57:35 +00005709 // Merge the results together.
Nate Begeman9008ca62009-04-27 18:41:29 +00005710 int Ops[16];
Chris Lattner19a81522006-04-18 03:57:35 +00005711 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005712 Ops[i*2 ] = 2*i+1;
5713 Ops[i*2+1] = 2*i+1+16;
Chris Lattner19a81522006-04-18 03:57:35 +00005714 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005715 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005716 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00005717 llvm_unreachable("Unknown mul to lower!");
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005718 }
Chris Lattnere7c768e2006-04-18 03:24:30 +00005719}
5720
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00005721/// LowerOperation - Provide custom lowering hooks for some operations.
5722///
Dan Gohmand858e902010-04-17 15:26:15 +00005723SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00005724 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005725 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner1a635d62006-04-14 06:01:58 +00005726 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilson3d90dbe2009-11-04 21:31:18 +00005727 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00005728 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackyfd42ed62012-06-04 17:36:38 +00005729 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman37efe672006-04-22 18:53:45 +00005730 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00005731 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +00005732 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
5733 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005734 case ISD::VASTART:
Dan Gohman1e93df62010-04-17 14:41:14 +00005735 return LowerVASTART(Op, DAG, PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00005736
5737 case ISD::VAARG:
Dan Gohman1e93df62010-04-17 14:41:14 +00005738 return LowerVAARG(Op, DAG, PPCSubTarget);
Nicolas Geoffray01119992007-04-03 13:59:52 +00005739
Roman Divacky6ebf55d2013-07-25 21:36:47 +00005740 case ISD::VACOPY:
5741 return LowerVACOPY(Op, DAG, PPCSubTarget);
5742
Jim Laskeyefc7e522006-12-04 22:04:42 +00005743 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, PPCSubTarget);
Chris Lattner9f0bc652007-02-25 05:34:32 +00005744 case ISD::DYNAMIC_STACKALLOC:
5745 return LowerDYNAMIC_STACKALLOC(Op, DAG, PPCSubTarget);
Evan Cheng54fc97d2008-04-19 01:30:48 +00005746
Hal Finkel7ee74a62013-03-21 21:37:52 +00005747 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
5748 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
5749
Chris Lattner1a635d62006-04-14 06:01:58 +00005750 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen4c9369d2009-06-04 20:53:52 +00005751 case ISD::FP_TO_UINT:
5752 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005753 SDLoc(Op));
Hal Finkel46479192013-04-01 17:52:07 +00005754 case ISD::UINT_TO_FP:
5755 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00005756 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00005757
Chris Lattner1a635d62006-04-14 06:01:58 +00005758 // Lower 64-bit shifts.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00005759 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
5760 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
5761 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00005762
Chris Lattner1a635d62006-04-14 06:01:58 +00005763 // Vector-related lowering.
5764 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
5765 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
5766 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
5767 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Chris Lattnere7c768e2006-04-18 03:24:30 +00005768 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005769
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00005770 // For counter-based loop handling.
5771 case ISD::INTRINSIC_W_CHAIN: return SDValue();
5772
Chris Lattner3fc027d2007-12-08 06:59:59 +00005773 // Frame & Return address.
5774 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005775 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnerbc11c342005-08-31 20:23:54 +00005776 }
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00005777}
5778
Duncan Sands1607f052008-12-01 11:39:25 +00005779void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
5780 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00005781 SelectionDAG &DAG) const {
Roman Divackybdb226e2011-06-28 15:30:42 +00005782 const TargetMachine &TM = getTargetMachine();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005783 SDLoc dl(N);
Chris Lattner1f873002007-11-28 18:44:47 +00005784 switch (N->getOpcode()) {
Duncan Sands57760d92008-10-28 15:00:32 +00005785 default:
Craig Topperbc219812012-02-07 02:50:20 +00005786 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00005787 case ISD::INTRINSIC_W_CHAIN: {
5788 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
5789 Intrinsic::ppc_is_decremented_ctr_nonzero)
5790 break;
5791
5792 assert(N->getValueType(0) == MVT::i1 &&
5793 "Unexpected result type for CTR decrement intrinsic");
Matt Arsenault225ed702013-05-18 00:21:46 +00005794 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00005795 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
5796 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
5797 N->getOperand(1));
5798
5799 Results.push_back(NewInt);
5800 Results.push_back(NewInt.getValue(1));
5801 break;
5802 }
Roman Divackybdb226e2011-06-28 15:30:42 +00005803 case ISD::VAARG: {
5804 if (!TM.getSubtarget<PPCSubtarget>().isSVR4ABI()
5805 || TM.getSubtarget<PPCSubtarget>().isPPC64())
5806 return;
5807
5808 EVT VT = N->getValueType(0);
5809
5810 if (VT == MVT::i64) {
5811 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, PPCSubTarget);
5812
5813 Results.push_back(NewNode);
5814 Results.push_back(NewNode.getValue(1));
5815 }
5816 return;
5817 }
Duncan Sands1607f052008-12-01 11:39:25 +00005818 case ISD::FP_ROUND_INREG: {
Owen Anderson825b72b2009-08-11 20:47:22 +00005819 assert(N->getValueType(0) == MVT::ppcf128);
5820 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelfdc40a02009-02-17 22:15:04 +00005821 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005822 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00005823 DAG.getIntPtrConstant(0));
Dale Johannesen3484c092009-02-05 22:07:54 +00005824 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005825 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00005826 DAG.getIntPtrConstant(1));
5827
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00005828 // Add the two halves of the long double in round-to-zero mode.
5829 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands1607f052008-12-01 11:39:25 +00005830
5831 // We know the low half is about to be thrown away, so just use something
5832 // convenient.
Owen Anderson825b72b2009-08-11 20:47:22 +00005833 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesen3484c092009-02-05 22:07:54 +00005834 FPreg, FPreg));
Duncan Sands1607f052008-12-01 11:39:25 +00005835 return;
Duncan Sandsa7360f02008-07-19 16:26:02 +00005836 }
Duncan Sands1607f052008-12-01 11:39:25 +00005837 case ISD::FP_TO_SINT:
Bill Schmidt7c2d8f72013-07-09 18:50:20 +00005838 // LowerFP_TO_INT() can only handle f32 and f64.
5839 if (N->getOperand(0).getValueType() == MVT::ppcf128)
5840 return;
Dale Johannesen4c9369d2009-06-04 20:53:52 +00005841 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands1607f052008-12-01 11:39:25 +00005842 return;
Chris Lattner1f873002007-11-28 18:44:47 +00005843 }
5844}
5845
5846
Chris Lattner1a635d62006-04-14 06:01:58 +00005847//===----------------------------------------------------------------------===//
5848// Other Lowering Code
5849//===----------------------------------------------------------------------===//
5850
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00005851MachineBasicBlock *
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005852PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00005853 bool is64bit, unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00005854 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005855 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5856
5857 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5858 MachineFunction *F = BB->getParent();
5859 MachineFunction::iterator It = BB;
5860 ++It;
5861
5862 unsigned dest = MI->getOperand(0).getReg();
5863 unsigned ptrA = MI->getOperand(1).getReg();
5864 unsigned ptrB = MI->getOperand(2).getReg();
5865 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00005866 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005867
5868 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5869 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5870 F->insert(It, loopMBB);
5871 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00005872 exitMBB->splice(exitMBB->begin(), BB,
5873 llvm::next(MachineBasicBlock::iterator(MI)),
5874 BB->end());
5875 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005876
5877 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesen0e55f062008-08-29 18:29:46 +00005878 unsigned TmpReg = (!BinOpcode) ? incr :
5879 RegInfo.createVirtualRegister(
Dale Johannesena619d012008-09-02 20:30:23 +00005880 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5881 (const TargetRegisterClass *) &PPC::GPRCRegClass);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005882
5883 // thisMBB:
5884 // ...
5885 // fallthrough --> loopMBB
5886 BB->addSuccessor(loopMBB);
5887
5888 // loopMBB:
5889 // l[wd]arx dest, ptr
5890 // add r0, dest, incr
5891 // st[wd]cx. r0, ptr
5892 // bne- loopMBB
5893 // fallthrough --> exitMBB
5894 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00005895 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005896 .addReg(ptrA).addReg(ptrB);
Dale Johannesen0e55f062008-08-29 18:29:46 +00005897 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00005898 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
5899 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005900 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005901 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00005902 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005903 BB->addSuccessor(loopMBB);
5904 BB->addSuccessor(exitMBB);
5905
5906 // exitMBB:
5907 // ...
5908 BB = exitMBB;
5909 return BB;
5910}
5911
5912MachineBasicBlock *
Scott Michelfdc40a02009-02-17 22:15:04 +00005913PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesen97efa362008-08-28 17:53:09 +00005914 MachineBasicBlock *BB,
5915 bool is8bit, // operation
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00005916 unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00005917 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesen97efa362008-08-28 17:53:09 +00005918 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5919 // In 64 bit mode we have to use 64 bits for addresses, even though the
5920 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
5921 // registers without caring whether they're 32 or 64, but here we're
5922 // doing actual arithmetic on the addresses.
5923 bool is64bit = PPCSubTarget.isPPC64();
Hal Finkel76973702013-03-21 23:45:03 +00005924 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen97efa362008-08-28 17:53:09 +00005925
5926 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5927 MachineFunction *F = BB->getParent();
5928 MachineFunction::iterator It = BB;
5929 ++It;
5930
5931 unsigned dest = MI->getOperand(0).getReg();
5932 unsigned ptrA = MI->getOperand(1).getReg();
5933 unsigned ptrB = MI->getOperand(2).getReg();
5934 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00005935 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen97efa362008-08-28 17:53:09 +00005936
5937 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5938 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5939 F->insert(It, loopMBB);
5940 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00005941 exitMBB->splice(exitMBB->begin(), BB,
5942 llvm::next(MachineBasicBlock::iterator(MI)),
5943 BB->end());
5944 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen97efa362008-08-28 17:53:09 +00005945
5946 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00005947 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00005948 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5949 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesen97efa362008-08-28 17:53:09 +00005950 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
5951 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
5952 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
5953 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
5954 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
5955 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
5956 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
5957 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
5958 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
5959 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen0e55f062008-08-29 18:29:46 +00005960 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00005961 unsigned Ptr1Reg;
Dale Johannesen0e55f062008-08-29 18:29:46 +00005962 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00005963
5964 // thisMBB:
5965 // ...
5966 // fallthrough --> loopMBB
5967 BB->addSuccessor(loopMBB);
5968
5969 // The 4-byte load must be aligned, while a char or short may be
5970 // anywhere in the word. Hence all this nasty bookkeeping code.
5971 // add ptr1, ptrA, ptrB [copy if ptrA==0]
5972 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00005973 // xori shift, shift1, 24 [16]
Dale Johannesen97efa362008-08-28 17:53:09 +00005974 // rlwinm ptr, ptr1, 0, 0, 29
5975 // slw incr2, incr, shift
5976 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
5977 // slw mask, mask2, shift
5978 // loopMBB:
Dale Johannesenea9eedb2008-08-30 00:08:53 +00005979 // lwarx tmpDest, ptr
Dale Johannesen0e55f062008-08-29 18:29:46 +00005980 // add tmp, tmpDest, incr2
5981 // andc tmp2, tmpDest, mask
Dale Johannesen97efa362008-08-28 17:53:09 +00005982 // and tmp3, tmp, mask
5983 // or tmp4, tmp3, tmp2
Dale Johannesenea9eedb2008-08-30 00:08:53 +00005984 // stwcx. tmp4, ptr
Dale Johannesen97efa362008-08-28 17:53:09 +00005985 // bne- loopMBB
5986 // fallthrough --> exitMBB
Dale Johannesen0e55f062008-08-29 18:29:46 +00005987 // srw dest, tmpDest, shift
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00005988 if (ptrA != ZeroReg) {
Dale Johannesen97efa362008-08-28 17:53:09 +00005989 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005990 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005991 .addReg(ptrA).addReg(ptrB);
5992 } else {
5993 Ptr1Reg = ptrB;
5994 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00005995 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005996 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005997 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005998 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
5999 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00006000 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00006001 .addReg(Ptr1Reg).addImm(0).addImm(61);
6002 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00006003 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00006004 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006005 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00006006 .addReg(incr).addReg(ShiftReg);
6007 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00006008 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen97efa362008-08-28 17:53:09 +00006009 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00006010 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6011 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesen97efa362008-08-28 17:53:09 +00006012 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00006013 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00006014 .addReg(Mask2Reg).addReg(ShiftReg);
6015
6016 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006017 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006018 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen0e55f062008-08-29 18:29:46 +00006019 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00006020 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00006021 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006022 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00006023 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006024 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00006025 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006026 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00006027 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidtdebf7d32013-04-02 18:37:08 +00006028 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006029 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006030 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00006031 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesen97efa362008-08-28 17:53:09 +00006032 BB->addSuccessor(loopMBB);
6033 BB->addSuccessor(exitMBB);
6034
6035 // exitMBB:
6036 // ...
6037 BB = exitMBB;
Jakob Stoklund Olesen5fcb81d2011-04-04 17:57:29 +00006038 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
6039 .addReg(ShiftReg);
Dale Johannesen97efa362008-08-28 17:53:09 +00006040 return BB;
6041}
6042
Hal Finkel7ee74a62013-03-21 21:37:52 +00006043llvm::MachineBasicBlock*
6044PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
6045 MachineBasicBlock *MBB) const {
6046 DebugLoc DL = MI->getDebugLoc();
6047 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6048
6049 MachineFunction *MF = MBB->getParent();
6050 MachineRegisterInfo &MRI = MF->getRegInfo();
6051
6052 const BasicBlock *BB = MBB->getBasicBlock();
6053 MachineFunction::iterator I = MBB;
6054 ++I;
6055
6056 // Memory Reference
6057 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6058 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6059
6060 unsigned DstReg = MI->getOperand(0).getReg();
6061 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
6062 assert(RC->hasType(MVT::i32) && "Invalid destination!");
6063 unsigned mainDstReg = MRI.createVirtualRegister(RC);
6064 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
6065
6066 MVT PVT = getPointerTy();
6067 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6068 "Invalid Pointer Size!");
6069 // For v = setjmp(buf), we generate
6070 //
6071 // thisMBB:
6072 // SjLjSetup mainMBB
6073 // bl mainMBB
6074 // v_restore = 1
6075 // b sinkMBB
6076 //
6077 // mainMBB:
6078 // buf[LabelOffset] = LR
6079 // v_main = 0
6080 //
6081 // sinkMBB:
6082 // v = phi(main, restore)
6083 //
6084
6085 MachineBasicBlock *thisMBB = MBB;
6086 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
6087 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
6088 MF->insert(I, mainMBB);
6089 MF->insert(I, sinkMBB);
6090
6091 MachineInstrBuilder MIB;
6092
6093 // Transfer the remainder of BB and its successor edges to sinkMBB.
6094 sinkMBB->splice(sinkMBB->begin(), MBB,
6095 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
6096 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
6097
6098 // Note that the structure of the jmp_buf used here is not compatible
6099 // with that used by libc, and is not designed to be. Specifically, it
6100 // stores only those 'reserved' registers that LLVM does not otherwise
6101 // understand how to spill. Also, by convention, by the time this
6102 // intrinsic is called, Clang has already stored the frame address in the
6103 // first slot of the buffer and stack address in the third. Following the
6104 // X86 target code, we'll store the jump address in the second slot. We also
6105 // need to save the TOC pointer (R2) to handle jumps between shared
6106 // libraries, and that will be stored in the fourth slot. The thread
6107 // identifier (R13) is not affected.
6108
6109 // thisMBB:
6110 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6111 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkel05417222013-07-17 23:50:51 +00006112 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel7ee74a62013-03-21 21:37:52 +00006113
6114 // Prepare IP either in reg.
6115 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
6116 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
6117 unsigned BufReg = MI->getOperand(1).getReg();
6118
6119 if (PPCSubTarget.isPPC64() && PPCSubTarget.isSVR4ABI()) {
6120 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
6121 .addReg(PPC::X2)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006122 .addImm(TOCOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006123 .addReg(BufReg);
Hal Finkel7ee74a62013-03-21 21:37:52 +00006124 MIB.setMemRefs(MMOBegin, MMOEnd);
6125 }
6126
Hal Finkel05417222013-07-17 23:50:51 +00006127 // Naked functions never have a base pointer, and so we use r1. For all
6128 // other functions, this decision must be delayed until during PEI.
6129 unsigned BaseReg;
6130 if (MF->getFunction()->getAttributes().hasAttribute(
6131 AttributeSet::FunctionIndex, Attribute::Naked))
6132 BaseReg = PPCSubTarget.isPPC64() ? PPC::X1 : PPC::R1;
6133 else
6134 BaseReg = PPCSubTarget.isPPC64() ? PPC::BP8 : PPC::BP;
6135
6136 MIB = BuildMI(*thisMBB, MI, DL,
6137 TII->get(PPCSubTarget.isPPC64() ? PPC::STD : PPC::STW))
6138 .addReg(BaseReg)
6139 .addImm(BPOffset)
6140 .addReg(BufReg);
6141 MIB.setMemRefs(MMOBegin, MMOEnd);
6142
Hal Finkel7ee74a62013-03-21 21:37:52 +00006143 // Setup
Hal Finkelcaeeb182013-04-04 22:55:54 +00006144 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Bill Wendling80ada582013-06-07 07:55:53 +00006145 const PPCRegisterInfo *TRI =
6146 static_cast<const PPCRegisterInfo*>(getTargetMachine().getRegisterInfo());
6147 MIB.addRegMask(TRI->getNoPreservedMask());
Hal Finkel7ee74a62013-03-21 21:37:52 +00006148
6149 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
6150
6151 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
6152 .addMBB(mainMBB);
6153 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
6154
6155 thisMBB->addSuccessor(mainMBB, /* weight */ 0);
6156 thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
6157
6158 // mainMBB:
6159 // mainDstReg = 0
6160 MIB = BuildMI(mainMBB, DL,
6161 TII->get(PPCSubTarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
6162
6163 // Store IP
6164 if (PPCSubTarget.isPPC64()) {
6165 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
6166 .addReg(LabelReg)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006167 .addImm(LabelOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006168 .addReg(BufReg);
6169 } else {
6170 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
6171 .addReg(LabelReg)
6172 .addImm(LabelOffset)
6173 .addReg(BufReg);
6174 }
6175
6176 MIB.setMemRefs(MMOBegin, MMOEnd);
6177
6178 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
6179 mainMBB->addSuccessor(sinkMBB);
6180
6181 // sinkMBB:
6182 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
6183 TII->get(PPC::PHI), DstReg)
6184 .addReg(mainDstReg).addMBB(mainMBB)
6185 .addReg(restoreDstReg).addMBB(thisMBB);
6186
6187 MI->eraseFromParent();
6188 return sinkMBB;
6189}
6190
6191MachineBasicBlock *
6192PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
6193 MachineBasicBlock *MBB) const {
6194 DebugLoc DL = MI->getDebugLoc();
6195 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6196
6197 MachineFunction *MF = MBB->getParent();
6198 MachineRegisterInfo &MRI = MF->getRegInfo();
6199
6200 // Memory Reference
6201 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6202 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6203
6204 MVT PVT = getPointerTy();
6205 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6206 "Invalid Pointer Size!");
6207
6208 const TargetRegisterClass *RC =
6209 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
6210 unsigned Tmp = MRI.createVirtualRegister(RC);
6211 // Since FP is only updated here but NOT referenced, it's treated as GPR.
6212 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
6213 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
Hal Finkel05417222013-07-17 23:50:51 +00006214 unsigned BP = (PVT == MVT::i64) ? PPC::X30 : PPC::R30;
Hal Finkel7ee74a62013-03-21 21:37:52 +00006215
6216 MachineInstrBuilder MIB;
6217
6218 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6219 const int64_t SPOffset = 2 * PVT.getStoreSize();
6220 const int64_t TOCOffset = 3 * PVT.getStoreSize();
Hal Finkel05417222013-07-17 23:50:51 +00006221 const int64_t BPOffset = 4 * PVT.getStoreSize();
Hal Finkel7ee74a62013-03-21 21:37:52 +00006222
6223 unsigned BufReg = MI->getOperand(0).getReg();
6224
6225 // Reload FP (the jumped-to function may not have had a
6226 // frame pointer, and if so, then its r31 will be restored
6227 // as necessary).
6228 if (PVT == MVT::i64) {
6229 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
6230 .addImm(0)
6231 .addReg(BufReg);
6232 } else {
6233 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
6234 .addImm(0)
6235 .addReg(BufReg);
6236 }
6237 MIB.setMemRefs(MMOBegin, MMOEnd);
6238
6239 // Reload IP
6240 if (PVT == MVT::i64) {
6241 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006242 .addImm(LabelOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006243 .addReg(BufReg);
6244 } else {
6245 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
6246 .addImm(LabelOffset)
6247 .addReg(BufReg);
6248 }
6249 MIB.setMemRefs(MMOBegin, MMOEnd);
6250
6251 // Reload SP
6252 if (PVT == MVT::i64) {
6253 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006254 .addImm(SPOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006255 .addReg(BufReg);
6256 } else {
6257 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
6258 .addImm(SPOffset)
6259 .addReg(BufReg);
6260 }
6261 MIB.setMemRefs(MMOBegin, MMOEnd);
6262
Hal Finkel05417222013-07-17 23:50:51 +00006263 // Reload BP
6264 if (PVT == MVT::i64) {
6265 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
6266 .addImm(BPOffset)
6267 .addReg(BufReg);
6268 } else {
6269 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
6270 .addImm(BPOffset)
6271 .addReg(BufReg);
6272 }
6273 MIB.setMemRefs(MMOBegin, MMOEnd);
Hal Finkel7ee74a62013-03-21 21:37:52 +00006274
6275 // Reload TOC
6276 if (PVT == MVT::i64 && PPCSubTarget.isSVR4ABI()) {
6277 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006278 .addImm(TOCOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006279 .addReg(BufReg);
6280
6281 MIB.setMemRefs(MMOBegin, MMOEnd);
6282 }
6283
6284 // Jump
6285 BuildMI(*MBB, MI, DL,
6286 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
6287 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
6288
6289 MI->eraseFromParent();
6290 return MBB;
6291}
6292
Dale Johannesen97efa362008-08-28 17:53:09 +00006293MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00006294PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00006295 MachineBasicBlock *BB) const {
Hal Finkel7ee74a62013-03-21 21:37:52 +00006296 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
6297 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
6298 return emitEHSjLjSetJmp(MI, BB);
6299 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
6300 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
6301 return emitEHSjLjLongJmp(MI, BB);
6302 }
6303
Evan Chengc0f64ff2006-11-27 23:37:22 +00006304 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng53301922008-07-12 02:23:19 +00006305
6306 // To "insert" these instructions we actually have to insert their
6307 // control-flow patterns.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006308 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006309 MachineFunction::iterator It = BB;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006310 ++It;
Evan Cheng53301922008-07-12 02:23:19 +00006311
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006312 MachineFunction *F = BB->getParent();
Evan Cheng53301922008-07-12 02:23:19 +00006313
Hal Finkel009f7af2012-06-22 23:10:08 +00006314 if (PPCSubTarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6315 MI->getOpcode() == PPC::SELECT_CC_I8)) {
Hal Finkelff56d1a2013-04-05 23:29:01 +00006316 SmallVector<MachineOperand, 2> Cond;
6317 Cond.push_back(MI->getOperand(4));
6318 Cond.push_back(MI->getOperand(1));
6319
Hal Finkel009f7af2012-06-22 23:10:08 +00006320 DebugLoc dl = MI->getDebugLoc();
Bill Wendling80ada582013-06-07 07:55:53 +00006321 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6322 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
6323 Cond, MI->getOperand(2).getReg(),
6324 MI->getOperand(3).getReg());
Hal Finkel009f7af2012-06-22 23:10:08 +00006325 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6326 MI->getOpcode() == PPC::SELECT_CC_I8 ||
6327 MI->getOpcode() == PPC::SELECT_CC_F4 ||
6328 MI->getOpcode() == PPC::SELECT_CC_F8 ||
6329 MI->getOpcode() == PPC::SELECT_CC_VRRC) {
6330
Evan Cheng53301922008-07-12 02:23:19 +00006331
6332 // The incoming instruction knows the destination vreg to set, the
6333 // condition code register to branch on, the true/false values to
6334 // select between, and a branch opcode to use.
6335
6336 // thisMBB:
6337 // ...
6338 // TrueVal = ...
6339 // cmpTY ccX, r1, r2
6340 // bCC copy1MBB
6341 // fallthrough --> copy0MBB
6342 MachineBasicBlock *thisMBB = BB;
6343 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
6344 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
6345 unsigned SelectPred = MI->getOperand(4).getImm();
Dale Johannesen536a2f12009-02-13 02:27:39 +00006346 DebugLoc dl = MI->getDebugLoc();
Evan Cheng53301922008-07-12 02:23:19 +00006347 F->insert(It, copy0MBB);
6348 F->insert(It, sinkMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00006349
6350 // Transfer the remainder of BB and its successor edges to sinkMBB.
6351 sinkMBB->splice(sinkMBB->begin(), BB,
6352 llvm::next(MachineBasicBlock::iterator(MI)),
6353 BB->end());
6354 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
6355
Evan Cheng53301922008-07-12 02:23:19 +00006356 // Next, add the true and fallthrough blocks as its successors.
6357 BB->addSuccessor(copy0MBB);
6358 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006359
Dan Gohman14152b42010-07-06 20:24:04 +00006360 BuildMI(BB, dl, TII->get(PPC::BCC))
6361 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
6362
Evan Cheng53301922008-07-12 02:23:19 +00006363 // copy0MBB:
6364 // %FalseValue = ...
6365 // # fallthrough to sinkMBB
6366 BB = copy0MBB;
Scott Michelfdc40a02009-02-17 22:15:04 +00006367
Evan Cheng53301922008-07-12 02:23:19 +00006368 // Update machine-CFG edges
6369 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006370
Evan Cheng53301922008-07-12 02:23:19 +00006371 // sinkMBB:
6372 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
6373 // ...
6374 BB = sinkMBB;
Dan Gohman14152b42010-07-06 20:24:04 +00006375 BuildMI(*BB, BB->begin(), dl,
6376 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng53301922008-07-12 02:23:19 +00006377 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
6378 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
6379 }
Dale Johannesen97efa362008-08-28 17:53:09 +00006380 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
6381 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
6382 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
6383 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006384 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
6385 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
6386 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
6387 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006388
6389 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
6390 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
6391 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
6392 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006393 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
6394 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
6395 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
6396 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006397
6398 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
6399 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
6400 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
6401 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006402 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
6403 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
6404 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
6405 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006406
6407 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
6408 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
6409 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
6410 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006411 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
6412 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
6413 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
6414 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006415
6416 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Dale Johannesen209a4092008-09-11 02:15:03 +00006417 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ANDC);
Dale Johannesen97efa362008-08-28 17:53:09 +00006418 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Dale Johannesen209a4092008-09-11 02:15:03 +00006419 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006420 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Dale Johannesen209a4092008-09-11 02:15:03 +00006421 BB = EmitAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006422 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Dale Johannesen209a4092008-09-11 02:15:03 +00006423 BB = EmitAtomicBinary(MI, BB, true, PPC::ANDC8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006424
6425 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
6426 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
6427 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
6428 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006429 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
6430 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
6431 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
6432 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006433
Dale Johannesen0e55f062008-08-29 18:29:46 +00006434 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
6435 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
6436 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
6437 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
6438 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
6439 BB = EmitAtomicBinary(MI, BB, false, 0);
6440 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
6441 BB = EmitAtomicBinary(MI, BB, true, 0);
6442
Evan Cheng53301922008-07-12 02:23:19 +00006443 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
6444 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
6445 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
6446
6447 unsigned dest = MI->getOperand(0).getReg();
6448 unsigned ptrA = MI->getOperand(1).getReg();
6449 unsigned ptrB = MI->getOperand(2).getReg();
6450 unsigned oldval = MI->getOperand(3).getReg();
6451 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00006452 DebugLoc dl = MI->getDebugLoc();
Evan Cheng53301922008-07-12 02:23:19 +00006453
Dale Johannesen65e39732008-08-25 18:53:26 +00006454 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6455 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6456 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng53301922008-07-12 02:23:19 +00006457 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen65e39732008-08-25 18:53:26 +00006458 F->insert(It, loop1MBB);
6459 F->insert(It, loop2MBB);
6460 F->insert(It, midMBB);
Evan Cheng53301922008-07-12 02:23:19 +00006461 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00006462 exitMBB->splice(exitMBB->begin(), BB,
6463 llvm::next(MachineBasicBlock::iterator(MI)),
6464 BB->end());
6465 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng53301922008-07-12 02:23:19 +00006466
6467 // thisMBB:
6468 // ...
6469 // fallthrough --> loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00006470 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00006471
Dale Johannesen65e39732008-08-25 18:53:26 +00006472 // loop1MBB:
Evan Cheng53301922008-07-12 02:23:19 +00006473 // l[wd]arx dest, ptr
Dale Johannesen65e39732008-08-25 18:53:26 +00006474 // cmp[wd] dest, oldval
6475 // bne- midMBB
6476 // loop2MBB:
Evan Cheng53301922008-07-12 02:23:19 +00006477 // st[wd]cx. newval, ptr
6478 // bne- loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00006479 // b exitBB
6480 // midMBB:
6481 // st[wd]cx. dest, ptr
6482 // exitBB:
6483 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006484 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng53301922008-07-12 02:23:19 +00006485 .addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006486 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng53301922008-07-12 02:23:19 +00006487 .addReg(oldval).addReg(dest);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006488 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00006489 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6490 BB->addSuccessor(loop2MBB);
6491 BB->addSuccessor(midMBB);
6492
6493 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006494 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng53301922008-07-12 02:23:19 +00006495 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006496 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00006497 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006498 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen65e39732008-08-25 18:53:26 +00006499 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00006500 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006501
Dale Johannesen65e39732008-08-25 18:53:26 +00006502 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006503 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen65e39732008-08-25 18:53:26 +00006504 .addReg(dest).addReg(ptrA).addReg(ptrB);
6505 BB->addSuccessor(exitMBB);
6506
Evan Cheng53301922008-07-12 02:23:19 +00006507 // exitMBB:
6508 // ...
6509 BB = exitMBB;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006510 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
6511 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
6512 // We must use 64-bit registers for addresses when targeting 64-bit,
6513 // since we're actually doing arithmetic on them. Other registers
6514 // can be 32-bit.
6515 bool is64bit = PPCSubTarget.isPPC64();
6516 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
6517
6518 unsigned dest = MI->getOperand(0).getReg();
6519 unsigned ptrA = MI->getOperand(1).getReg();
6520 unsigned ptrB = MI->getOperand(2).getReg();
6521 unsigned oldval = MI->getOperand(3).getReg();
6522 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00006523 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006524
6525 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6526 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6527 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
6528 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6529 F->insert(It, loop1MBB);
6530 F->insert(It, loop2MBB);
6531 F->insert(It, midMBB);
6532 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00006533 exitMBB->splice(exitMBB->begin(), BB,
6534 llvm::next(MachineBasicBlock::iterator(MI)),
6535 BB->end());
6536 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006537
6538 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00006539 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00006540 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
6541 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006542 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
6543 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
6544 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
6545 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
6546 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
6547 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
6548 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
6549 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
6550 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
6551 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
6552 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
6553 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
6554 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
6555 unsigned Ptr1Reg;
6556 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkel76973702013-03-21 23:45:03 +00006557 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006558 // thisMBB:
6559 // ...
6560 // fallthrough --> loopMBB
6561 BB->addSuccessor(loop1MBB);
6562
6563 // The 4-byte load must be aligned, while a char or short may be
6564 // anywhere in the word. Hence all this nasty bookkeeping code.
6565 // add ptr1, ptrA, ptrB [copy if ptrA==0]
6566 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00006567 // xori shift, shift1, 24 [16]
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006568 // rlwinm ptr, ptr1, 0, 0, 29
6569 // slw newval2, newval, shift
6570 // slw oldval2, oldval,shift
6571 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
6572 // slw mask, mask2, shift
6573 // and newval3, newval2, mask
6574 // and oldval3, oldval2, mask
6575 // loop1MBB:
6576 // lwarx tmpDest, ptr
6577 // and tmp, tmpDest, mask
6578 // cmpw tmp, oldval3
6579 // bne- midMBB
6580 // loop2MBB:
6581 // andc tmp2, tmpDest, mask
6582 // or tmp4, tmp2, newval3
6583 // stwcx. tmp4, ptr
6584 // bne- loop1MBB
6585 // b exitBB
6586 // midMBB:
6587 // stwcx. tmpDest, ptr
6588 // exitBB:
6589 // srw dest, tmpDest, shift
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006590 if (ptrA != ZeroReg) {
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006591 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006592 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006593 .addReg(ptrA).addReg(ptrB);
6594 } else {
6595 Ptr1Reg = ptrB;
6596 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00006597 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006598 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006599 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006600 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
6601 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00006602 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006603 .addReg(Ptr1Reg).addImm(0).addImm(61);
6604 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00006605 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006606 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006607 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006608 .addReg(newval).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006609 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006610 .addReg(oldval).addReg(ShiftReg);
6611 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00006612 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006613 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00006614 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6615 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
6616 .addReg(Mask3Reg).addImm(65535);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006617 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00006618 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006619 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006620 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006621 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006622 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006623 .addReg(OldVal2Reg).addReg(MaskReg);
6624
6625 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006626 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006627 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006628 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
6629 .addReg(TmpDestReg).addReg(MaskReg);
6630 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006631 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006632 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006633 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6634 BB->addSuccessor(loop2MBB);
6635 BB->addSuccessor(midMBB);
6636
6637 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006638 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
6639 .addReg(TmpDestReg).addReg(MaskReg);
6640 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
6641 .addReg(Tmp2Reg).addReg(NewVal3Reg);
6642 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006643 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006644 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006645 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006646 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006647 BB->addSuccessor(loop1MBB);
6648 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006649
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006650 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006651 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006652 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006653 BB->addSuccessor(exitMBB);
6654
6655 // exitMBB:
6656 // ...
6657 BB = exitMBB;
Jakob Stoklund Olesen5fcb81d2011-04-04 17:57:29 +00006658 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
6659 .addReg(ShiftReg);
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00006660 } else if (MI->getOpcode() == PPC::FADDrtz) {
6661 // This pseudo performs an FADD with rounding mode temporarily forced
6662 // to round-to-zero. We emit this via custom inserter since the FPSCR
6663 // is not modeled at the SelectionDAG level.
6664 unsigned Dest = MI->getOperand(0).getReg();
6665 unsigned Src1 = MI->getOperand(1).getReg();
6666 unsigned Src2 = MI->getOperand(2).getReg();
6667 DebugLoc dl = MI->getDebugLoc();
6668
6669 MachineRegisterInfo &RegInfo = F->getRegInfo();
6670 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
6671
6672 // Save FPSCR value.
6673 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
6674
6675 // Set rounding mode to round-to-zero.
6676 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
6677 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
6678
6679 // Perform addition.
6680 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
6681
6682 // Restore FPSCR value.
6683 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSF)).addImm(1).addReg(MFFSReg);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006684 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00006685 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng53301922008-07-12 02:23:19 +00006686 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006687
Dan Gohman14152b42010-07-06 20:24:04 +00006688 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006689 return BB;
6690}
6691
Chris Lattner1a635d62006-04-14 06:01:58 +00006692//===----------------------------------------------------------------------===//
6693// Target Optimization Hooks
6694//===----------------------------------------------------------------------===//
6695
Hal Finkel63c32a72013-04-03 17:44:56 +00006696SDValue PPCTargetLowering::DAGCombineFastRecip(SDValue Op,
6697 DAGCombinerInfo &DCI) const {
Hal Finkel827307b2013-04-03 04:01:11 +00006698 if (DCI.isAfterLegalizeVectorOps())
6699 return SDValue();
6700
Hal Finkel63c32a72013-04-03 17:44:56 +00006701 EVT VT = Op.getValueType();
6702
6703 if ((VT == MVT::f32 && PPCSubTarget.hasFRES()) ||
6704 (VT == MVT::f64 && PPCSubTarget.hasFRE()) ||
6705 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel827307b2013-04-03 04:01:11 +00006706
6707 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6708 // For the reciprocal, we need to find the zero of the function:
6709 // F(X) = A X - 1 [which has a zero at X = 1/A]
6710 // =>
6711 // X_{i+1} = X_i (2 - A X_i) = X_i + X_i (1 - A X_i) [this second form
6712 // does not require additional intermediate precision]
6713
6714 // Convergence is quadratic, so we essentially double the number of digits
6715 // correct after every iteration. The minimum architected relative
6716 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6717 // 23 digits and double has 52 digits.
6718 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkel63c32a72013-04-03 17:44:56 +00006719 if (VT.getScalarType() == MVT::f64)
Hal Finkel827307b2013-04-03 04:01:11 +00006720 ++Iterations;
6721
6722 SelectionDAG &DAG = DCI.DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006723 SDLoc dl(Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006724
6725 SDValue FPOne =
Hal Finkel63c32a72013-04-03 17:44:56 +00006726 DAG.getConstantFP(1.0, VT.getScalarType());
6727 if (VT.isVector()) {
6728 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel827307b2013-04-03 04:01:11 +00006729 "Unknown vector type");
Hal Finkel63c32a72013-04-03 17:44:56 +00006730 FPOne = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
Hal Finkel827307b2013-04-03 04:01:11 +00006731 FPOne, FPOne, FPOne, FPOne);
6732 }
6733
Hal Finkel63c32a72013-04-03 17:44:56 +00006734 SDValue Est = DAG.getNode(PPCISD::FRE, dl, VT, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006735 DCI.AddToWorklist(Est.getNode());
6736
6737 // Newton iterations: Est = Est + Est (1 - Arg * Est)
6738 for (int i = 0; i < Iterations; ++i) {
Hal Finkel63c32a72013-04-03 17:44:56 +00006739 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Op, Est);
Hal Finkel827307b2013-04-03 04:01:11 +00006740 DCI.AddToWorklist(NewEst.getNode());
6741
Hal Finkel63c32a72013-04-03 17:44:56 +00006742 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPOne, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006743 DCI.AddToWorklist(NewEst.getNode());
6744
Hal Finkel63c32a72013-04-03 17:44:56 +00006745 NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006746 DCI.AddToWorklist(NewEst.getNode());
6747
Hal Finkel63c32a72013-04-03 17:44:56 +00006748 Est = DAG.getNode(ISD::FADD, dl, VT, Est, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006749 DCI.AddToWorklist(Est.getNode());
6750 }
6751
6752 return Est;
6753 }
6754
6755 return SDValue();
6756}
6757
Hal Finkel63c32a72013-04-03 17:44:56 +00006758SDValue PPCTargetLowering::DAGCombineFastRecipFSQRT(SDValue Op,
Hal Finkel827307b2013-04-03 04:01:11 +00006759 DAGCombinerInfo &DCI) const {
6760 if (DCI.isAfterLegalizeVectorOps())
6761 return SDValue();
6762
Hal Finkel63c32a72013-04-03 17:44:56 +00006763 EVT VT = Op.getValueType();
6764
6765 if ((VT == MVT::f32 && PPCSubTarget.hasFRSQRTES()) ||
6766 (VT == MVT::f64 && PPCSubTarget.hasFRSQRTE()) ||
6767 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel827307b2013-04-03 04:01:11 +00006768
6769 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6770 // For the reciprocal sqrt, we need to find the zero of the function:
6771 // F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)]
6772 // =>
6773 // X_{i+1} = X_i (1.5 - A X_i^2 / 2)
6774 // As a result, we precompute A/2 prior to the iteration loop.
6775
6776 // Convergence is quadratic, so we essentially double the number of digits
6777 // correct after every iteration. The minimum architected relative
6778 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6779 // 23 digits and double has 52 digits.
6780 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkel63c32a72013-04-03 17:44:56 +00006781 if (VT.getScalarType() == MVT::f64)
Hal Finkel827307b2013-04-03 04:01:11 +00006782 ++Iterations;
6783
6784 SelectionDAG &DAG = DCI.DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006785 SDLoc dl(Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006786
Hal Finkel63c32a72013-04-03 17:44:56 +00006787 SDValue FPThreeHalves =
6788 DAG.getConstantFP(1.5, VT.getScalarType());
6789 if (VT.isVector()) {
6790 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel827307b2013-04-03 04:01:11 +00006791 "Unknown vector type");
Hal Finkel63c32a72013-04-03 17:44:56 +00006792 FPThreeHalves = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
6793 FPThreeHalves, FPThreeHalves,
6794 FPThreeHalves, FPThreeHalves);
Hal Finkel827307b2013-04-03 04:01:11 +00006795 }
6796
Hal Finkel63c32a72013-04-03 17:44:56 +00006797 SDValue Est = DAG.getNode(PPCISD::FRSQRTE, dl, VT, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006798 DCI.AddToWorklist(Est.getNode());
6799
6800 // We now need 0.5*Arg which we can write as (1.5*Arg - Arg) so that
6801 // this entire sequence requires only one FP constant.
Hal Finkel63c32a72013-04-03 17:44:56 +00006802 SDValue HalfArg = DAG.getNode(ISD::FMUL, dl, VT, FPThreeHalves, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006803 DCI.AddToWorklist(HalfArg.getNode());
6804
Hal Finkel63c32a72013-04-03 17:44:56 +00006805 HalfArg = DAG.getNode(ISD::FSUB, dl, VT, HalfArg, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006806 DCI.AddToWorklist(HalfArg.getNode());
6807
6808 // Newton iterations: Est = Est * (1.5 - HalfArg * Est * Est)
6809 for (int i = 0; i < Iterations; ++i) {
Hal Finkel63c32a72013-04-03 17:44:56 +00006810 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, Est);
Hal Finkel827307b2013-04-03 04:01:11 +00006811 DCI.AddToWorklist(NewEst.getNode());
6812
Hal Finkel63c32a72013-04-03 17:44:56 +00006813 NewEst = DAG.getNode(ISD::FMUL, dl, VT, HalfArg, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006814 DCI.AddToWorklist(NewEst.getNode());
6815
Hal Finkel63c32a72013-04-03 17:44:56 +00006816 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPThreeHalves, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006817 DCI.AddToWorklist(NewEst.getNode());
6818
Hal Finkel63c32a72013-04-03 17:44:56 +00006819 Est = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006820 DCI.AddToWorklist(Est.getNode());
6821 }
6822
6823 return Est;
6824 }
6825
6826 return SDValue();
6827}
6828
Hal Finkel119da2e2013-05-27 02:06:39 +00006829// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
6830// not enforce equality of the chain operands.
6831static bool isConsecutiveLS(LSBaseSDNode *LS, LSBaseSDNode *Base,
6832 unsigned Bytes, int Dist,
6833 SelectionDAG &DAG) {
6834 EVT VT = LS->getMemoryVT();
6835 if (VT.getSizeInBits() / 8 != Bytes)
6836 return false;
6837
6838 SDValue Loc = LS->getBasePtr();
6839 SDValue BaseLoc = Base->getBasePtr();
6840 if (Loc.getOpcode() == ISD::FrameIndex) {
6841 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6842 return false;
6843 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6844 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6845 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6846 int FS = MFI->getObjectSize(FI);
6847 int BFS = MFI->getObjectSize(BFI);
6848 if (FS != BFS || FS != (int)Bytes) return false;
6849 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6850 }
6851
6852 // Handle X+C
6853 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6854 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6855 return true;
6856
6857 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6858 const GlobalValue *GV1 = NULL;
6859 const GlobalValue *GV2 = NULL;
6860 int64_t Offset1 = 0;
6861 int64_t Offset2 = 0;
6862 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6863 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
6864 if (isGA1 && isGA2 && GV1 == GV2)
6865 return Offset1 == (Offset2 + Dist*Bytes);
6866 return false;
6867}
6868
Hal Finkel1907cad2013-05-26 18:08:30 +00006869// Return true is there is a nearyby consecutive load to the one provided
6870// (regardless of alignment). We search up and down the chain, looking though
6871// token factors and other loads (but nothing else). As a result, a true
6872// results indicates that it is safe to create a new consecutive load adjacent
6873// to the load provided.
6874static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
6875 SDValue Chain = LD->getChain();
6876 EVT VT = LD->getMemoryVT();
6877
6878 SmallSet<SDNode *, 16> LoadRoots;
6879 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
6880 SmallSet<SDNode *, 16> Visited;
6881
6882 // First, search up the chain, branching to follow all token-factor operands.
6883 // If we find a consecutive load, then we're done, otherwise, record all
6884 // nodes just above the top-level loads and token factors.
6885 while (!Queue.empty()) {
6886 SDNode *ChainNext = Queue.pop_back_val();
6887 if (!Visited.insert(ChainNext))
6888 continue;
6889
6890 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(ChainNext)) {
Hal Finkel119da2e2013-05-27 02:06:39 +00006891 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel1907cad2013-05-26 18:08:30 +00006892 return true;
6893
6894 if (!Visited.count(ChainLD->getChain().getNode()))
6895 Queue.push_back(ChainLD->getChain().getNode());
6896 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
6897 for (SDNode::op_iterator O = ChainNext->op_begin(),
6898 OE = ChainNext->op_end(); O != OE; ++O)
6899 if (!Visited.count(O->getNode()))
6900 Queue.push_back(O->getNode());
6901 } else
6902 LoadRoots.insert(ChainNext);
6903 }
6904
6905 // Second, search down the chain, starting from the top-level nodes recorded
6906 // in the first phase. These top-level nodes are the nodes just above all
6907 // loads and token factors. Starting with their uses, recursively look though
6908 // all loads (just the chain uses) and token factors to find a consecutive
6909 // load.
6910 Visited.clear();
6911 Queue.clear();
6912
6913 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
6914 IE = LoadRoots.end(); I != IE; ++I) {
6915 Queue.push_back(*I);
6916
6917 while (!Queue.empty()) {
6918 SDNode *LoadRoot = Queue.pop_back_val();
6919 if (!Visited.insert(LoadRoot))
6920 continue;
6921
6922 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(LoadRoot))
Hal Finkel119da2e2013-05-27 02:06:39 +00006923 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel1907cad2013-05-26 18:08:30 +00006924 return true;
6925
6926 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
6927 UE = LoadRoot->use_end(); UI != UE; ++UI)
6928 if (((isa<LoadSDNode>(*UI) &&
6929 cast<LoadSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
6930 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
6931 Queue.push_back(*UI);
6932 }
6933 }
6934
6935 return false;
6936}
6937
Duncan Sands25cf2272008-11-24 14:53:14 +00006938SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
6939 DAGCombinerInfo &DCI) const {
Dan Gohmanf0757b02010-04-21 01:34:56 +00006940 const TargetMachine &TM = getTargetMachine();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00006941 SelectionDAG &DAG = DCI.DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006942 SDLoc dl(N);
Chris Lattner8c13d0a2006-03-01 04:57:39 +00006943 switch (N->getOpcode()) {
6944 default: break;
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006945 case PPCISD::SHL:
6946 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmane368b462010-06-18 14:22:04 +00006947 if (C->isNullValue()) // 0 << V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006948 return N->getOperand(0);
6949 }
6950 break;
6951 case PPCISD::SRL:
6952 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmane368b462010-06-18 14:22:04 +00006953 if (C->isNullValue()) // 0 >>u V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006954 return N->getOperand(0);
6955 }
6956 break;
6957 case PPCISD::SRA:
6958 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmane368b462010-06-18 14:22:04 +00006959 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006960 C->isAllOnesValue()) // -1 >>s V -> -1.
6961 return N->getOperand(0);
6962 }
6963 break;
Hal Finkel827307b2013-04-03 04:01:11 +00006964 case ISD::FDIV: {
6965 assert(TM.Options.UnsafeFPMath &&
6966 "Reciprocal estimates require UnsafeFPMath");
Scott Michelfdc40a02009-02-17 22:15:04 +00006967
Hal Finkel827307b2013-04-03 04:01:11 +00006968 if (N->getOperand(1).getOpcode() == ISD::FSQRT) {
Hal Finkel63c32a72013-04-03 17:44:56 +00006969 SDValue RV =
6970 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0), DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00006971 if (RV.getNode() != 0) {
6972 DCI.AddToWorklist(RV.getNode());
6973 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6974 N->getOperand(0), RV);
6975 }
Hal Finkel7530a9f2013-04-04 22:44:12 +00006976 } else if (N->getOperand(1).getOpcode() == ISD::FP_EXTEND &&
6977 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
6978 SDValue RV =
6979 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
6980 DCI);
6981 if (RV.getNode() != 0) {
6982 DCI.AddToWorklist(RV.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006983 RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N->getOperand(1)),
Hal Finkel7530a9f2013-04-04 22:44:12 +00006984 N->getValueType(0), RV);
6985 DCI.AddToWorklist(RV.getNode());
6986 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6987 N->getOperand(0), RV);
6988 }
6989 } else if (N->getOperand(1).getOpcode() == ISD::FP_ROUND &&
6990 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
6991 SDValue RV =
6992 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
6993 DCI);
6994 if (RV.getNode() != 0) {
6995 DCI.AddToWorklist(RV.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006996 RV = DAG.getNode(ISD::FP_ROUND, SDLoc(N->getOperand(1)),
Hal Finkel7530a9f2013-04-04 22:44:12 +00006997 N->getValueType(0), RV,
6998 N->getOperand(1).getOperand(1));
6999 DCI.AddToWorklist(RV.getNode());
7000 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7001 N->getOperand(0), RV);
7002 }
Hal Finkel827307b2013-04-03 04:01:11 +00007003 }
7004
Hal Finkel63c32a72013-04-03 17:44:56 +00007005 SDValue RV = DAGCombineFastRecip(N->getOperand(1), DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00007006 if (RV.getNode() != 0) {
7007 DCI.AddToWorklist(RV.getNode());
7008 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
7009 N->getOperand(0), RV);
7010 }
7011
7012 }
7013 break;
7014 case ISD::FSQRT: {
7015 assert(TM.Options.UnsafeFPMath &&
7016 "Reciprocal estimates require UnsafeFPMath");
7017
7018 // Compute this as 1/(1/sqrt(X)), which is the reciprocal of the
7019 // reciprocal sqrt.
Hal Finkel63c32a72013-04-03 17:44:56 +00007020 SDValue RV = DAGCombineFastRecipFSQRT(N->getOperand(0), DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00007021 if (RV.getNode() != 0) {
7022 DCI.AddToWorklist(RV.getNode());
Hal Finkel63c32a72013-04-03 17:44:56 +00007023 RV = DAGCombineFastRecip(RV, DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00007024 if (RV.getNode() != 0)
7025 return RV;
7026 }
7027
7028 }
7029 break;
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007030 case ISD::SINT_TO_FP:
Chris Lattnera7a58542006-06-16 17:34:12 +00007031 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00007032 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
7033 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
7034 // We allow the src/dst to be either f32/f64, but the intermediate
7035 // type must be i64.
Owen Anderson825b72b2009-08-11 20:47:22 +00007036 if (N->getOperand(0).getValueType() == MVT::i64 &&
7037 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007038 SDValue Val = N->getOperand(0).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007039 if (Val.getValueType() == MVT::f32) {
7040 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007041 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00007042 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007043
Owen Anderson825b72b2009-08-11 20:47:22 +00007044 Val = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007045 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00007046 Val = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007047 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00007048 if (N->getValueType(0) == MVT::f32) {
7049 Val = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Val,
Chris Lattner0bd48932008-01-17 07:00:52 +00007050 DAG.getIntPtrConstant(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00007051 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00007052 }
7053 return Val;
Owen Anderson825b72b2009-08-11 20:47:22 +00007054 } else if (N->getOperand(0).getValueType() == MVT::i32) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00007055 // If the intermediate type is i32, we can avoid the load/store here
7056 // too.
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007057 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007058 }
7059 }
7060 break;
Chris Lattner51269842006-03-01 05:50:56 +00007061 case ISD::STORE:
7062 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
7063 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnera7a02fb2008-01-18 16:54:56 +00007064 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner51269842006-03-01 05:50:56 +00007065 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007066 N->getOperand(1).getValueType() == MVT::i32 &&
7067 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007068 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007069 if (Val.getValueType() == MVT::f32) {
7070 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007071 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00007072 }
Owen Anderson825b72b2009-08-11 20:47:22 +00007073 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007074 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00007075
Hal Finkelf170cc92013-04-01 15:37:53 +00007076 SDValue Ops[] = {
7077 N->getOperand(0), Val, N->getOperand(2),
7078 DAG.getValueType(N->getOperand(1).getValueType())
7079 };
7080
7081 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
7082 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
7083 cast<StoreSDNode>(N)->getMemoryVT(),
7084 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greifba36cb52008-08-28 21:40:38 +00007085 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00007086 return Val;
7087 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007088
Chris Lattnerd9989382006-07-10 20:56:58 +00007089 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman6acaaa82009-09-25 00:57:30 +00007090 if (cast<StoreSDNode>(N)->isUnindexed() &&
7091 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007092 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007093 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkelefdd4672013-03-28 19:25:55 +00007094 N->getOperand(1).getValueType() == MVT::i16 ||
7095 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel2544f222013-03-28 20:23:46 +00007096 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkelefdd4672013-03-28 19:25:55 +00007097 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007098 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnerd9989382006-07-10 20:56:58 +00007099 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson825b72b2009-08-11 20:47:22 +00007100 if (BSwapOp.getValueType() == MVT::i16)
7101 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnerd9989382006-07-10 20:56:58 +00007102
Dan Gohmanc76909a2009-09-25 20:36:54 +00007103 SDValue Ops[] = {
7104 N->getOperand(0), BSwapOp, N->getOperand(2),
7105 DAG.getValueType(N->getOperand(1).getValueType())
7106 };
7107 return
7108 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
7109 Ops, array_lengthof(Ops),
7110 cast<StoreSDNode>(N)->getMemoryVT(),
7111 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnerd9989382006-07-10 20:56:58 +00007112 }
7113 break;
Hal Finkel80d10de2013-05-24 23:00:14 +00007114 case ISD::LOAD: {
7115 LoadSDNode *LD = cast<LoadSDNode>(N);
7116 EVT VT = LD->getValueType(0);
7117 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
7118 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
7119 if (ISD::isNON_EXTLoad(N) && VT.isVector() &&
7120 TM.getSubtarget<PPCSubtarget>().hasAltivec() &&
7121 DCI.getDAGCombineLevel() == AfterLegalizeTypes &&
7122 LD->getAlignment() < ABIAlignment) {
7123 // This is a type-legal unaligned Altivec load.
7124 SDValue Chain = LD->getChain();
7125 SDValue Ptr = LD->getBasePtr();
7126
7127 // This implements the loading of unaligned vectors as described in
7128 // the venerable Apple Velocity Engine overview. Specifically:
7129 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
7130 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
7131 //
7132 // The general idea is to expand a sequence of one or more unaligned
7133 // loads into a alignment-based permutation-control instruction (lvsl),
7134 // a series of regular vector loads (which always truncate their
7135 // input address to an aligned address), and a series of permutations.
7136 // The results of these permutations are the requested loaded values.
7137 // The trick is that the last "extra" load is not taken from the address
7138 // you might suspect (sizeof(vector) bytes after the last requested
7139 // load), but rather sizeof(vector) - 1 bytes after the last
7140 // requested vector. The point of this is to avoid a page fault if the
7141 // base address happend to be aligned. This works because if the base
7142 // address is aligned, then adding less than a full vector length will
7143 // cause the last vector in the sequence to be (re)loaded. Otherwise,
7144 // the next vector will be fetched as you might suspect was necessary.
7145
Hal Finkel5a0e6042013-05-25 04:05:05 +00007146 // We might be able to reuse the permutation generation from
Hal Finkel80d10de2013-05-24 23:00:14 +00007147 // a different base address offset from this one by an aligned amount.
Hal Finkel5a0e6042013-05-25 04:05:05 +00007148 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
7149 // optimization later.
Hal Finkel80d10de2013-05-24 23:00:14 +00007150 SDValue PermCntl = BuildIntrinsicOp(Intrinsic::ppc_altivec_lvsl, Ptr,
7151 DAG, dl, MVT::v16i8);
7152
7153 // Refine the alignment of the original load (a "new" load created here
7154 // which was identical to the first except for the alignment would be
7155 // merged with the existing node regardless).
7156 MachineFunction &MF = DAG.getMachineFunction();
7157 MachineMemOperand *MMO =
7158 MF.getMachineMemOperand(LD->getPointerInfo(),
7159 LD->getMemOperand()->getFlags(),
7160 LD->getMemoryVT().getStoreSize(),
7161 ABIAlignment);
7162 LD->refineAlignment(MMO);
7163 SDValue BaseLoad = SDValue(LD, 0);
7164
7165 // Note that the value of IncOffset (which is provided to the next
7166 // load's pointer info offset value, and thus used to calculate the
7167 // alignment), and the value of IncValue (which is actually used to
7168 // increment the pointer value) are different! This is because we
7169 // require the next load to appear to be aligned, even though it
7170 // is actually offset from the base pointer by a lesser amount.
7171 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel1907cad2013-05-26 18:08:30 +00007172 int IncValue = IncOffset;
7173
7174 // Walk (both up and down) the chain looking for another load at the real
7175 // (aligned) offset (the alignment of the other load does not matter in
7176 // this case). If found, then do not use the offset reduction trick, as
7177 // that will prevent the loads from being later combined (as they would
7178 // otherwise be duplicates).
7179 if (!findConsecutiveLoad(LD, DAG))
7180 --IncValue;
7181
Hal Finkel80d10de2013-05-24 23:00:14 +00007182 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
7183 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
7184
Hal Finkel80d10de2013-05-24 23:00:14 +00007185 SDValue ExtraLoad =
7186 DAG.getLoad(VT, dl, Chain, Ptr,
7187 LD->getPointerInfo().getWithOffset(IncOffset),
7188 LD->isVolatile(), LD->isNonTemporal(),
7189 LD->isInvariant(), ABIAlignment);
7190
7191 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
7192 BaseLoad.getValue(1), ExtraLoad.getValue(1));
7193
7194 if (BaseLoad.getValueType() != MVT::v4i32)
7195 BaseLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, BaseLoad);
7196
7197 if (ExtraLoad.getValueType() != MVT::v4i32)
7198 ExtraLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, ExtraLoad);
7199
7200 SDValue Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
7201 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
7202
7203 if (VT != MVT::v4i32)
7204 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
7205
7206 // Now we need to be really careful about how we update the users of the
7207 // original load. We cannot just call DCI.CombineTo (or
7208 // DAG.ReplaceAllUsesWith for that matter), because the load still has
7209 // uses created here (the permutation for example) that need to stay.
7210 SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
7211 while (UI != UE) {
7212 SDUse &Use = UI.getUse();
7213 SDNode *User = *UI;
7214 // Note: BaseLoad is checked here because it might not be N, but a
7215 // bitcast of N.
7216 if (User == Perm.getNode() || User == BaseLoad.getNode() ||
7217 User == TF.getNode() || Use.getResNo() > 1) {
7218 ++UI;
7219 continue;
7220 }
7221
7222 SDValue To = Use.getResNo() ? TF : Perm;
7223 ++UI;
7224
7225 SmallVector<SDValue, 8> Ops;
7226 for (SDNode::op_iterator O = User->op_begin(),
7227 OE = User->op_end(); O != OE; ++O) {
7228 if (*O == Use)
7229 Ops.push_back(To);
7230 else
7231 Ops.push_back(*O);
7232 }
7233
7234 DAG.UpdateNodeOperands(User, Ops.data(), Ops.size());
7235 }
7236
7237 return SDValue(N, 0);
7238 }
7239 }
7240 break;
Hal Finkel5a0e6042013-05-25 04:05:05 +00007241 case ISD::INTRINSIC_WO_CHAIN:
7242 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() ==
7243 Intrinsic::ppc_altivec_lvsl &&
7244 N->getOperand(1)->getOpcode() == ISD::ADD) {
7245 SDValue Add = N->getOperand(1);
7246
7247 if (DAG.MaskedValueIsZero(Add->getOperand(1),
7248 APInt::getAllOnesValue(4 /* 16 byte alignment */).zext(
7249 Add.getValueType().getScalarType().getSizeInBits()))) {
7250 SDNode *BasePtr = Add->getOperand(0).getNode();
7251 for (SDNode::use_iterator UI = BasePtr->use_begin(),
7252 UE = BasePtr->use_end(); UI != UE; ++UI) {
7253 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7254 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
7255 Intrinsic::ppc_altivec_lvsl) {
7256 // We've found another LVSL, and this address if an aligned
7257 // multiple of that one. The results will be the same, so use the
7258 // one we've just found instead.
7259
7260 return SDValue(*UI, 0);
7261 }
7262 }
7263 }
7264 }
Chris Lattnerd9989382006-07-10 20:56:58 +00007265 case ISD::BSWAP:
7266 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greifba36cb52008-08-28 21:40:38 +00007267 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnerd9989382006-07-10 20:56:58 +00007268 N->getOperand(0).hasOneUse() &&
Hal Finkelefdd4672013-03-28 19:25:55 +00007269 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
7270 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel2544f222013-03-28 20:23:46 +00007271 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkelefdd4672013-03-28 19:25:55 +00007272 N->getValueType(0) == MVT::i64))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007273 SDValue Load = N->getOperand(0);
Evan Cheng466685d2006-10-09 20:57:25 +00007274 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnerd9989382006-07-10 20:56:58 +00007275 // Create the byte-swapping load.
Dan Gohman475871a2008-07-27 21:46:04 +00007276 SDValue Ops[] = {
Evan Cheng466685d2006-10-09 20:57:25 +00007277 LD->getChain(), // Chain
7278 LD->getBasePtr(), // Ptr
Chris Lattner79e490a2006-08-11 17:18:05 +00007279 DAG.getValueType(N->getValueType(0)) // VT
7280 };
Dan Gohmanc76909a2009-09-25 20:36:54 +00007281 SDValue BSLoad =
7282 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkelefdd4672013-03-28 19:25:55 +00007283 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
7284 MVT::i64 : MVT::i32, MVT::Other),
Hal Finkelb52980b2013-03-28 19:43:12 +00007285 Ops, 3, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnerd9989382006-07-10 20:56:58 +00007286
Scott Michelfdc40a02009-02-17 22:15:04 +00007287 // If this is an i16 load, insert the truncate.
Dan Gohman475871a2008-07-27 21:46:04 +00007288 SDValue ResVal = BSLoad;
Owen Anderson825b72b2009-08-11 20:47:22 +00007289 if (N->getValueType(0) == MVT::i16)
7290 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelfdc40a02009-02-17 22:15:04 +00007291
Chris Lattnerd9989382006-07-10 20:56:58 +00007292 // First, combine the bswap away. This makes the value produced by the
7293 // load dead.
7294 DCI.CombineTo(N, ResVal);
7295
7296 // Next, combine the load away, we give it a bogus result value but a real
7297 // chain result. The result value is dead because the bswap is dead.
Gabor Greifba36cb52008-08-28 21:40:38 +00007298 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007299
Chris Lattnerd9989382006-07-10 20:56:58 +00007300 // Return N so it doesn't get rechecked!
Dan Gohman475871a2008-07-27 21:46:04 +00007301 return SDValue(N, 0);
Chris Lattnerd9989382006-07-10 20:56:58 +00007302 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007303
Chris Lattner51269842006-03-01 05:50:56 +00007304 break;
Chris Lattner4468c222006-03-31 06:02:07 +00007305 case PPCISD::VCMP: {
7306 // If a VCMPo node already exists with exactly the same operands as this
7307 // node, use its result instead of this node (VCMPo computes both a CR6 and
7308 // a normal output).
7309 //
7310 if (!N->getOperand(0).hasOneUse() &&
7311 !N->getOperand(1).hasOneUse() &&
7312 !N->getOperand(2).hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007313
Chris Lattner4468c222006-03-31 06:02:07 +00007314 // Scan all of the users of the LHS, looking for VCMPo's that match.
7315 SDNode *VCMPoNode = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00007316
Gabor Greifba36cb52008-08-28 21:40:38 +00007317 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattner4468c222006-03-31 06:02:07 +00007318 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
7319 UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00007320 if (UI->getOpcode() == PPCISD::VCMPo &&
7321 UI->getOperand(1) == N->getOperand(1) &&
7322 UI->getOperand(2) == N->getOperand(2) &&
7323 UI->getOperand(0) == N->getOperand(0)) {
7324 VCMPoNode = *UI;
Chris Lattner4468c222006-03-31 06:02:07 +00007325 break;
7326 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007327
Chris Lattner00901202006-04-18 18:28:22 +00007328 // If there is no VCMPo node, or if the flag value has a single use, don't
7329 // transform this.
7330 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
7331 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007332
7333 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner00901202006-04-18 18:28:22 +00007334 // chain, this transformation is more complex. Note that multiple things
7335 // could use the value result, which we should ignore.
7336 SDNode *FlagUser = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00007337 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Chris Lattner00901202006-04-18 18:28:22 +00007338 FlagUser == 0; ++UI) {
7339 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman89684502008-07-27 20:43:25 +00007340 SDNode *User = *UI;
Chris Lattner00901202006-04-18 18:28:22 +00007341 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007342 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner00901202006-04-18 18:28:22 +00007343 FlagUser = User;
7344 break;
7345 }
7346 }
7347 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007348
Ulrich Weigand965b20e2013-07-03 17:05:42 +00007349 // If the user is a MFOCRF instruction, we know this is safe.
7350 // Otherwise we give up for right now.
7351 if (FlagUser->getOpcode() == PPCISD::MFOCRF)
Dan Gohman475871a2008-07-27 21:46:04 +00007352 return SDValue(VCMPoNode, 0);
Chris Lattner4468c222006-03-31 06:02:07 +00007353 }
7354 break;
7355 }
Chris Lattner90564f22006-04-18 17:59:36 +00007356 case ISD::BR_CC: {
7357 // If this is a branch on an altivec predicate comparison, lower this so
Ulrich Weigand965b20e2013-07-03 17:05:42 +00007358 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This
Chris Lattner90564f22006-04-18 17:59:36 +00007359 // lowering is done pre-legalize, because the legalizer lowers the predicate
7360 // compare down to code that is difficult to reassemble.
7361 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman475871a2008-07-27 21:46:04 +00007362 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00007363
7364 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
7365 // value. If so, pass-through the AND to get to the intrinsic.
7366 if (LHS.getOpcode() == ISD::AND &&
7367 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7368 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
7369 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7370 isa<ConstantSDNode>(LHS.getOperand(1)) &&
7371 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
7372 isZero())
7373 LHS = LHS.getOperand(0);
7374
7375 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7376 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
7377 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7378 isa<ConstantSDNode>(RHS)) {
7379 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
7380 "Counter decrement comparison is not EQ or NE");
7381
7382 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
7383 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
7384 (CC == ISD::SETNE && !Val);
7385
7386 // We now need to make the intrinsic dead (it cannot be instruction
7387 // selected).
7388 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
7389 assert(LHS.getNode()->hasOneUse() &&
7390 "Counter decrement has more than one use");
7391
7392 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
7393 N->getOperand(0), N->getOperand(4));
7394 }
7395
Chris Lattner90564f22006-04-18 17:59:36 +00007396 int CompareOpc;
7397 bool isDot;
Scott Michelfdc40a02009-02-17 22:15:04 +00007398
Chris Lattner90564f22006-04-18 17:59:36 +00007399 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7400 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
7401 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
7402 assert(isDot && "Can't compare against a vector result!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007403
Chris Lattner90564f22006-04-18 17:59:36 +00007404 // If this is a comparison against something other than 0/1, then we know
7405 // that the condition is never/always true.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007406 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00007407 if (Val != 0 && Val != 1) {
7408 if (CC == ISD::SETEQ) // Cond never true, remove branch.
7409 return N->getOperand(0);
7410 // Always !=, turn it into an unconditional branch.
Owen Anderson825b72b2009-08-11 20:47:22 +00007411 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner90564f22006-04-18 17:59:36 +00007412 N->getOperand(0), N->getOperand(4));
7413 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007414
Chris Lattner90564f22006-04-18 17:59:36 +00007415 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00007416
Chris Lattner90564f22006-04-18 17:59:36 +00007417 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman475871a2008-07-27 21:46:04 +00007418 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00007419 LHS.getOperand(2), // LHS of compare
7420 LHS.getOperand(3), // RHS of compare
Owen Anderson825b72b2009-08-11 20:47:22 +00007421 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00007422 };
Benjamin Kramer3853f742013-03-07 20:33:29 +00007423 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesen3484c092009-02-05 22:07:54 +00007424 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007425
Chris Lattner90564f22006-04-18 17:59:36 +00007426 // Unpack the result based on how the target uses it.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007427 PPC::Predicate CompOpc;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007428 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner90564f22006-04-18 17:59:36 +00007429 default: // Can't happen, don't crash on invalid number though.
7430 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007431 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner90564f22006-04-18 17:59:36 +00007432 break;
7433 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007434 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner90564f22006-04-18 17:59:36 +00007435 break;
7436 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007437 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner90564f22006-04-18 17:59:36 +00007438 break;
7439 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007440 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner90564f22006-04-18 17:59:36 +00007441 break;
7442 }
7443
Owen Anderson825b72b2009-08-11 20:47:22 +00007444 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
7445 DAG.getConstant(CompOpc, MVT::i32),
7446 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner90564f22006-04-18 17:59:36 +00007447 N->getOperand(4), CompNode.getValue(1));
7448 }
7449 break;
7450 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007451 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007452
Dan Gohman475871a2008-07-27 21:46:04 +00007453 return SDValue();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007454}
7455
Chris Lattner1a635d62006-04-14 06:01:58 +00007456//===----------------------------------------------------------------------===//
7457// Inline Assembly Support
7458//===----------------------------------------------------------------------===//
7459
Dan Gohman475871a2008-07-27 21:46:04 +00007460void PPCTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Scott Michelfdc40a02009-02-17 22:15:04 +00007461 APInt &KnownZero,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007462 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00007463 const SelectionDAG &DAG,
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007464 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00007465 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007466 switch (Op.getOpcode()) {
7467 default: break;
Chris Lattnerd9989382006-07-10 20:56:58 +00007468 case PPCISD::LBRX: {
7469 // lhbrx is known to have the top bits cleared out.
Dan Gohmanae03af22009-09-27 23:17:47 +00007470 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnerd9989382006-07-10 20:56:58 +00007471 KnownZero = 0xFFFF0000;
7472 break;
7473 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007474 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007475 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007476 default: break;
7477 case Intrinsic::ppc_altivec_vcmpbfp_p:
7478 case Intrinsic::ppc_altivec_vcmpeqfp_p:
7479 case Intrinsic::ppc_altivec_vcmpequb_p:
7480 case Intrinsic::ppc_altivec_vcmpequh_p:
7481 case Intrinsic::ppc_altivec_vcmpequw_p:
7482 case Intrinsic::ppc_altivec_vcmpgefp_p:
7483 case Intrinsic::ppc_altivec_vcmpgtfp_p:
7484 case Intrinsic::ppc_altivec_vcmpgtsb_p:
7485 case Intrinsic::ppc_altivec_vcmpgtsh_p:
7486 case Intrinsic::ppc_altivec_vcmpgtsw_p:
7487 case Intrinsic::ppc_altivec_vcmpgtub_p:
7488 case Intrinsic::ppc_altivec_vcmpgtuh_p:
7489 case Intrinsic::ppc_altivec_vcmpgtuw_p:
7490 KnownZero = ~1U; // All bits but the low one are known to be zero.
7491 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007492 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007493 }
7494 }
7495}
7496
7497
Chris Lattner4234f572007-03-25 02:14:49 +00007498/// getConstraintType - Given a constraint, return the type of
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00007499/// constraint it is for this target.
Scott Michelfdc40a02009-02-17 22:15:04 +00007500PPCTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00007501PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
7502 if (Constraint.size() == 1) {
7503 switch (Constraint[0]) {
7504 default: break;
7505 case 'b':
7506 case 'r':
7507 case 'f':
7508 case 'v':
7509 case 'y':
7510 return C_RegisterClass;
Hal Finkel827b7a02012-11-05 18:18:42 +00007511 case 'Z':
7512 // FIXME: While Z does indicate a memory constraint, it specifically
7513 // indicates an r+r address (used in conjunction with the 'y' modifier
7514 // in the replacement string). Currently, we're forcing the base
7515 // register to be r0 in the asm printer (which is interpreted as zero)
7516 // and forming the complete address in the second register. This is
7517 // suboptimal.
7518 return C_Memory;
Chris Lattner4234f572007-03-25 02:14:49 +00007519 }
7520 }
7521 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00007522}
7523
John Thompson44ab89e2010-10-29 17:29:13 +00007524/// Examine constraint type and operand type and determine a weight value.
7525/// This object must already have been set up with the operand type
7526/// and the current alternative constraint selected.
7527TargetLowering::ConstraintWeight
7528PPCTargetLowering::getSingleConstraintMatchWeight(
7529 AsmOperandInfo &info, const char *constraint) const {
7530 ConstraintWeight weight = CW_Invalid;
7531 Value *CallOperandVal = info.CallOperandVal;
7532 // If we don't have a value, we can't do a match,
7533 // but allow it at the lowest weight.
7534 if (CallOperandVal == NULL)
7535 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007536 Type *type = CallOperandVal->getType();
John Thompson44ab89e2010-10-29 17:29:13 +00007537 // Look at the constraint type.
7538 switch (*constraint) {
7539 default:
7540 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
7541 break;
7542 case 'b':
7543 if (type->isIntegerTy())
7544 weight = CW_Register;
7545 break;
7546 case 'f':
7547 if (type->isFloatTy())
7548 weight = CW_Register;
7549 break;
7550 case 'd':
7551 if (type->isDoubleTy())
7552 weight = CW_Register;
7553 break;
7554 case 'v':
7555 if (type->isVectorTy())
7556 weight = CW_Register;
7557 break;
7558 case 'y':
7559 weight = CW_Register;
7560 break;
Hal Finkel827b7a02012-11-05 18:18:42 +00007561 case 'Z':
7562 weight = CW_Memory;
7563 break;
John Thompson44ab89e2010-10-29 17:29:13 +00007564 }
7565 return weight;
7566}
7567
Scott Michelfdc40a02009-02-17 22:15:04 +00007568std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner331d1bc2006-11-02 01:44:04 +00007569PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +00007570 MVT VT) const {
Chris Lattnerddc787d2006-01-31 19:20:21 +00007571 if (Constraint.size() == 1) {
Chris Lattner331d1bc2006-11-02 01:44:04 +00007572 // GCC RS6000 Constraint Letters
7573 switch (Constraint[0]) {
7574 case 'b': // R1-R31
Hal Finkela548afc2013-03-19 18:51:05 +00007575 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
7576 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
7577 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007578 case 'r': // R0-R31
Owen Anderson825b72b2009-08-11 20:47:22 +00007579 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
Craig Topperc9099502012-04-20 06:31:50 +00007580 return std::make_pair(0U, &PPC::G8RCRegClass);
7581 return std::make_pair(0U, &PPC::GPRCRegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007582 case 'f':
Ulrich Weigand78dab642012-10-29 17:49:34 +00007583 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00007584 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand78dab642012-10-29 17:49:34 +00007585 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00007586 return std::make_pair(0U, &PPC::F8RCRegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007587 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007588 case 'v':
Craig Topperc9099502012-04-20 06:31:50 +00007589 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007590 case 'y': // crrc
Craig Topperc9099502012-04-20 06:31:50 +00007591 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattnerddc787d2006-01-31 19:20:21 +00007592 }
7593 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007594
Hal Finkel5cad12d2013-08-03 12:25:10 +00007595 std::pair<unsigned, const TargetRegisterClass*> R =
7596 TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
7597
7598 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
7599 // (which we call X[0-9]+). If a 64-bit value has been requested, and a
7600 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
7601 // register.
7602 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
7603 // the AsmName field from *RegisterInfo.td, then this would not be necessary.
7604 if (R.first && VT == MVT::i64 && PPCSubTarget.isPPC64() &&
7605 PPC::GPRCRegClass.contains(R.first)) {
7606 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
7607 return std::make_pair(TRI->getMatchingSuperReg(R.first,
Hal Finkel341c1a52013-08-14 20:05:04 +00007608 PPC::sub_32, &PPC::G8RCRegClass),
Hal Finkel5cad12d2013-08-03 12:25:10 +00007609 &PPC::G8RCRegClass);
7610 }
7611
7612 return R;
Chris Lattnerddc787d2006-01-31 19:20:21 +00007613}
Chris Lattner763317d2006-02-07 00:47:13 +00007614
Chris Lattner331d1bc2006-11-02 01:44:04 +00007615
Chris Lattner48884cd2007-08-25 00:47:38 +00007616/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesen1784d162010-06-25 21:55:36 +00007617/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher471e4222011-06-08 23:55:35 +00007618void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +00007619 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +00007620 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00007621 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007622 SDValue Result(0,0);
Eric Christopher471e4222011-06-08 23:55:35 +00007623
Eric Christopher100c8332011-06-02 23:16:42 +00007624 // Only support length 1 constraints.
7625 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +00007626
Eric Christopher100c8332011-06-02 23:16:42 +00007627 char Letter = Constraint[0];
Chris Lattner763317d2006-02-07 00:47:13 +00007628 switch (Letter) {
7629 default: break;
7630 case 'I':
7631 case 'J':
7632 case 'K':
7633 case 'L':
7634 case 'M':
7635 case 'N':
7636 case 'O':
7637 case 'P': {
Chris Lattner9f5d5782007-05-15 01:31:05 +00007638 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattner48884cd2007-08-25 00:47:38 +00007639 if (!CST) return; // Must be an immediate to match.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007640 unsigned Value = CST->getZExtValue();
Chris Lattner763317d2006-02-07 00:47:13 +00007641 switch (Letter) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007642 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner763317d2006-02-07 00:47:13 +00007643 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007644 if ((short)Value == (int)Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00007645 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007646 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007647 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
7648 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007649 if ((short)Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00007650 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007651 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007652 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007653 if ((Value >> 16) == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00007654 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007655 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007656 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007657 if (Value > 31)
Chris Lattner48884cd2007-08-25 00:47:38 +00007658 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007659 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007660 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007661 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattner48884cd2007-08-25 00:47:38 +00007662 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007663 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007664 case 'O': // "O" is the constant zero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007665 if (Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00007666 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007667 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007668 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007669 if ((short)-Value == (int)-Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00007670 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007671 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007672 }
7673 break;
7674 }
7675 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007676
Gabor Greifba36cb52008-08-28 21:40:38 +00007677 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00007678 Ops.push_back(Result);
7679 return;
7680 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007681
Chris Lattner763317d2006-02-07 00:47:13 +00007682 // Handle standard constraint letters.
Eric Christopher100c8332011-06-02 23:16:42 +00007683 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner763317d2006-02-07 00:47:13 +00007684}
Evan Chengc4c62572006-03-13 23:20:37 +00007685
Chris Lattnerc9addb72007-03-30 23:15:24 +00007686// isLegalAddressingMode - Return true if the addressing mode represented
7687// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00007688bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007689 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +00007690 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelfdc40a02009-02-17 22:15:04 +00007691
Chris Lattnerc9addb72007-03-30 23:15:24 +00007692 // PPC allows a sign-extended 16-bit immediate field.
7693 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
7694 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007695
Chris Lattnerc9addb72007-03-30 23:15:24 +00007696 // No global is ever allowed as a base.
7697 if (AM.BaseGV)
7698 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007699
7700 // PPC only support r+r,
Chris Lattnerc9addb72007-03-30 23:15:24 +00007701 switch (AM.Scale) {
7702 case 0: // "r+i" or just "i", depending on HasBaseReg.
7703 break;
7704 case 1:
7705 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
7706 return false;
7707 // Otherwise we have r+r or r+i.
7708 break;
7709 case 2:
7710 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
7711 return false;
7712 // Allow 2*r as r+r.
7713 break;
Chris Lattner7c7ba9d2007-04-09 22:10:05 +00007714 default:
7715 // No other scales are supported.
7716 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00007717 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007718
Chris Lattnerc9addb72007-03-30 23:15:24 +00007719 return true;
7720}
7721
Dan Gohmand858e902010-04-17 15:26:15 +00007722SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
7723 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007724 MachineFunction &MF = DAG.getMachineFunction();
7725 MachineFrameInfo *MFI = MF.getFrameInfo();
7726 MFI->setReturnAddressIsTaken(true);
7727
Andrew Trickac6d9be2013-05-25 02:42:55 +00007728 SDLoc dl(Op);
Dale Johannesen08673d22010-05-03 22:59:34 +00007729 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattner3fc027d2007-12-08 06:59:59 +00007730
Dale Johannesen08673d22010-05-03 22:59:34 +00007731 // Make sure the function does not optimize away the store of the RA to
7732 // the stack.
Chris Lattner3fc027d2007-12-08 06:59:59 +00007733 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen08673d22010-05-03 22:59:34 +00007734 FuncInfo->setLRStoreRequired();
7735 bool isPPC64 = PPCSubTarget.isPPC64();
7736 bool isDarwinABI = PPCSubTarget.isDarwinABI();
7737
7738 if (Depth > 0) {
7739 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7740 SDValue Offset =
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007741
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00007742 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI),
Dale Johannesen08673d22010-05-03 22:59:34 +00007743 isPPC64? MVT::i64 : MVT::i32);
7744 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
7745 DAG.getNode(ISD::ADD, dl, getPointerTy(),
7746 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007747 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen08673d22010-05-03 22:59:34 +00007748 }
Chris Lattner3fc027d2007-12-08 06:59:59 +00007749
Chris Lattner3fc027d2007-12-08 06:59:59 +00007750 // Just load the return address off the stack.
Dan Gohman475871a2008-07-27 21:46:04 +00007751 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Dale Johannesen08673d22010-05-03 22:59:34 +00007752 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007753 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Chris Lattner3fc027d2007-12-08 06:59:59 +00007754}
7755
Dan Gohmand858e902010-04-17 15:26:15 +00007756SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
7757 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007758 SDLoc dl(Op);
Dale Johannesen08673d22010-05-03 22:59:34 +00007759 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007760
Owen Andersone50ed302009-08-10 22:56:29 +00007761 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00007762 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelfdc40a02009-02-17 22:15:04 +00007763
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00007764 MachineFunction &MF = DAG.getMachineFunction();
7765 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen08673d22010-05-03 22:59:34 +00007766 MFI->setFrameAddressIsTaken(true);
Hal Finkele9cc0a02013-03-21 19:03:19 +00007767
7768 // Naked functions never have a frame pointer, and so we use r1. For all
7769 // other functions, this decision must be delayed until during PEI.
7770 unsigned FrameReg;
7771 if (MF.getFunction()->getAttributes().hasAttribute(
7772 AttributeSet::FunctionIndex, Attribute::Naked))
7773 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
7774 else
7775 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
7776
Dale Johannesen08673d22010-05-03 22:59:34 +00007777 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
7778 PtrVT);
7779 while (Depth--)
7780 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007781 FrameAddr, MachinePointerInfo(), false, false,
7782 false, 0);
Dale Johannesen08673d22010-05-03 22:59:34 +00007783 return FrameAddr;
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00007784}
Dan Gohman54aeea32008-10-21 03:41:46 +00007785
7786bool
7787PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
7788 // The PowerPC target isn't yet aware of offsets.
7789 return false;
7790}
Tilmann Schellerffd02002009-07-03 06:45:56 +00007791
Evan Cheng42642d02010-04-01 20:10:42 +00007792/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengf28f8bc2010-04-02 19:36:14 +00007793/// and store operations as a result of memset, memcpy, and memmove
7794/// lowering. If DstAlign is zero that means it's safe to destination
7795/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
7796/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00007797/// probably because the source does not need to be loaded. If 'IsMemset' is
7798/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
7799/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
7800/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00007801/// It returns EVT::Other if the type should be determined using generic
7802/// target-independent logic.
Evan Cheng255f20f2010-04-01 06:04:33 +00007803EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
7804 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00007805 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00007806 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00007807 MachineFunction &MF) const {
Tilmann Schellerffd02002009-07-03 06:45:56 +00007808 if (this->PPCSubTarget.isPPC64()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007809 return MVT::i64;
Tilmann Schellerffd02002009-07-03 06:45:56 +00007810 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00007811 return MVT::i32;
Tilmann Schellerffd02002009-07-03 06:45:56 +00007812 }
7813}
Hal Finkel3f31d492012-04-01 19:23:08 +00007814
Hal Finkel2d37f7b2013-03-15 15:27:13 +00007815bool PPCTargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
7816 bool *Fast) const {
7817 if (DisablePPCUnaligned)
7818 return false;
7819
7820 // PowerPC supports unaligned memory access for simple non-vector types.
7821 // Although accessing unaligned addresses is not as efficient as accessing
7822 // aligned addresses, it is generally more efficient than manual expansion,
7823 // and generally only traps for software emulation when crossing page
7824 // boundaries.
7825
7826 if (!VT.isSimple())
7827 return false;
7828
7829 if (VT.getSimpleVT().isVector())
7830 return false;
7831
7832 if (VT == MVT::ppcf128)
7833 return false;
7834
7835 if (Fast)
7836 *Fast = true;
7837
7838 return true;
7839}
7840
Stephen Line54885a2013-07-09 18:16:56 +00007841bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
7842 VT = VT.getScalarType();
7843
Hal Finkel070b8db2012-06-22 00:49:52 +00007844 if (!VT.isSimple())
7845 return false;
7846
7847 switch (VT.getSimpleVT().SimpleTy) {
7848 case MVT::f32:
7849 case MVT::f64:
Hal Finkel070b8db2012-06-22 00:49:52 +00007850 return true;
7851 default:
7852 break;
7853 }
7854
7855 return false;
7856}
7857
Hal Finkel3f31d492012-04-01 19:23:08 +00007858Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Hal Finkel71ffcfe2012-06-10 19:32:29 +00007859 if (DisableILPPref)
7860 return TargetLowering::getSchedulingPreference(N);
Hal Finkel3f31d492012-04-01 19:23:08 +00007861
Hal Finkel71ffcfe2012-06-10 19:32:29 +00007862 return Sched::ILP;
Hal Finkel3f31d492012-04-01 19:23:08 +00007863}
7864
Bill Schmidt646cd792013-07-30 00:50:39 +00007865// Create a fast isel object.
7866FastISel *
7867PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
7868 const TargetLibraryInfo *LibInfo) const {
7869 return PPC::createFastISel(FuncInfo, LibInfo);
7870}