blob: 10a8e1ac59add26250fb8a05cc6b6b8d1b290a64 [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
Bill Schmidt212af6a2013-02-06 17:33:58 +000040static bool CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
41 CCValAssign::LocInfo &LocInfo,
42 ISD::ArgFlagsTy &ArgFlags,
43 CCState &State);
44static bool CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
Duncan Sands1440e8b2010-11-03 11:35:31 +000045 MVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +000046 CCValAssign::LocInfo &LocInfo,
47 ISD::ArgFlagsTy &ArgFlags,
48 CCState &State);
Bill Schmidt212af6a2013-02-06 17:33:58 +000049static bool CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
50 MVT &LocVT,
51 CCValAssign::LocInfo &LocInfo,
52 ISD::ArgFlagsTy &ArgFlags,
53 CCState &State);
Tilmann Schellerffd02002009-07-03 06:45:56 +000054
Hal Finkel77838f92012-06-04 02:21:00 +000055static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
56cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
Chris Lattner4eab7142006-11-10 02:08:47 +000057
Hal Finkel71ffcfe2012-06-10 19:32:29 +000058static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
59cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
60
Hal Finkel2d37f7b2013-03-15 15:27:13 +000061static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
62cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
63
Chris Lattnerf0144122009-07-28 03:13:23 +000064static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
65 if (TM.getSubtargetImpl()->isDarwin())
Bill Wendling505ad8b2010-03-15 21:09:38 +000066 return new TargetLoweringObjectFileMachO();
Bill Wendling53351a12010-03-12 02:00:43 +000067
Bill Schmidt240b9b62013-05-13 19:34:37 +000068 if (TM.getSubtargetImpl()->isSVR4ABI())
69 return new PPC64LinuxTargetObjectFile();
70
Bruno Cardoso Lopesfdf229e2009-08-13 23:30:21 +000071 return new TargetLoweringObjectFileELF();
Chris Lattnerf0144122009-07-28 03:13:23 +000072}
73
Chris Lattner331d1bc2006-11-02 01:44:04 +000074PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +000075 : TargetLowering(TM, CreateTLOF(TM)), PPCSubTarget(*TM.getSubtargetImpl()) {
Evan Cheng769951f2012-07-02 22:39:56 +000076 const PPCSubtarget *Subtarget = &TM.getSubtarget<PPCSubtarget>();
Hal Finkel7ee74a62013-03-21 21:37:52 +000077 PPCRegInfo = TM.getRegisterInfo();
Hal Finkelff56d1a2013-04-05 23:29:01 +000078 PPCII = TM.getInstrInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +000079
Nate Begeman405e3ec2005-10-21 00:02:42 +000080 setPow2DivIsCheap();
Dale Johannesen72324642008-07-31 18:13:12 +000081
Chris Lattnerd145a612005-09-27 22:18:25 +000082 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000083 setUseUnderscoreSetJmp(true);
84 setUseUnderscoreLongJmp(true);
Scott Michelfdc40a02009-02-17 22:15:04 +000085
Chris Lattner749dc722010-10-10 18:34:00 +000086 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
87 // arguments are at least 4/8 bytes aligned.
Evan Cheng769951f2012-07-02 22:39:56 +000088 bool isPPC64 = Subtarget->isPPC64();
89 setMinStackArgumentAlignment(isPPC64 ? 8:4);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000090
Chris Lattner7c5a3d32005-08-16 17:14:42 +000091 // Set up the register classes.
Craig Topperc9099502012-04-20 06:31:50 +000092 addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
93 addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
94 addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
Scott Michelfdc40a02009-02-17 22:15:04 +000095
Evan Chengc5484282006-10-04 00:56:09 +000096 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Owen Anderson825b72b2009-08-11 20:47:22 +000097 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
98 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Duncan Sandsf9c98e62008-01-23 20:39:46 +000099
Owen Anderson825b72b2009-08-11 20:47:22 +0000100 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000101
Chris Lattner94e509c2006-11-10 23:58:45 +0000102 // PowerPC has pre-inc load and store's.
Owen Anderson825b72b2009-08-11 20:47:22 +0000103 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
104 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
105 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
106 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
107 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
108 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
109 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
110 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
111 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
112 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
Evan Chengcd633192006-11-09 19:11:50 +0000113
Dale Johannesen6eaeff22007-10-10 01:01:31 +0000114 // This is used in the ppcf128->int sequence. Note it has different semantics
115 // from FP_ROUND: that rounds to nearest, this rounds to zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000116 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesen638ccd52007-10-06 01:24:11 +0000117
Roman Divacky0016f732012-08-16 18:19:29 +0000118 // We do not currently implement these libm ops for PowerPC.
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000119 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
120 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand);
121 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
122 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand);
123 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
Bill Schmidtcd7a1552013-04-03 13:05:44 +0000124 setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000125
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000126 // PowerPC has no SREM/UREM instructions
Owen Anderson825b72b2009-08-11 20:47:22 +0000127 setOperationAction(ISD::SREM, MVT::i32, Expand);
128 setOperationAction(ISD::UREM, MVT::i32, Expand);
129 setOperationAction(ISD::SREM, MVT::i64, Expand);
130 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman3ce990d2007-10-08 17:28:24 +0000131
132 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson825b72b2009-08-11 20:47:22 +0000133 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
134 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
135 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
136 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
137 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
138 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
139 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
140 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000141
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000142 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson825b72b2009-08-11 20:47:22 +0000143 setOperationAction(ISD::FSIN , MVT::f64, Expand);
144 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000145 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000146 setOperationAction(ISD::FREM , MVT::f64, Expand);
147 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Hal Finkel070b8db2012-06-22 00:49:52 +0000148 setOperationAction(ISD::FMA , MVT::f64, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000149 setOperationAction(ISD::FSIN , MVT::f32, Expand);
150 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Evan Cheng8688a582013-01-29 02:32:37 +0000151 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000152 setOperationAction(ISD::FREM , MVT::f32, Expand);
153 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Hal Finkel070b8db2012-06-22 00:49:52 +0000154 setOperationAction(ISD::FMA , MVT::f32, Legal);
Dale Johannesen5c5eb802008-01-18 19:55:37 +0000155
Owen Anderson825b72b2009-08-11 20:47:22 +0000156 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000157
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000158 // If we're enabling GP optimizations, use hardware square root
Hal Finkel827307b2013-04-03 04:01:11 +0000159 if (!Subtarget->hasFSQRT() &&
160 !(TM.Options.UnsafeFPMath &&
161 Subtarget->hasFRSQRTE() && Subtarget->hasFRE()))
Owen Anderson825b72b2009-08-11 20:47:22 +0000162 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
Hal Finkel827307b2013-04-03 04:01:11 +0000163
164 if (!Subtarget->hasFSQRT() &&
165 !(TM.Options.UnsafeFPMath &&
166 Subtarget->hasFRSQRTES() && Subtarget->hasFRES()))
Owen Anderson825b72b2009-08-11 20:47:22 +0000167 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000168
Owen Anderson825b72b2009-08-11 20:47:22 +0000169 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
170 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000171
Hal Finkelf5d5c432013-03-29 08:57:48 +0000172 if (Subtarget->hasFPRND()) {
173 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
174 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
175 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
176
177 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
178 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
179 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
180
181 // frin does not implement "ties to even." Thus, this is safe only in
182 // fast-math mode.
183 if (TM.Options.UnsafeFPMath) {
184 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
185 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
Hal Finkel0882fd62013-03-29 19:41:55 +0000186
187 // These need to set FE_INEXACT, and use a custom inserter.
188 setOperationAction(ISD::FRINT, MVT::f64, Legal);
189 setOperationAction(ISD::FRINT, MVT::f32, Legal);
Hal Finkelf5d5c432013-03-29 08:57:48 +0000190 }
191 }
192
Nate Begemand88fc032006-01-14 03:14:10 +0000193 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson825b72b2009-08-11 20:47:22 +0000194 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000195 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000196 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
197 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000198 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000199 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000200 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
201 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000202
Hal Finkelc53ab4d2013-03-28 13:29:47 +0000203 if (Subtarget->hasPOPCNTD()) {
Hal Finkel1fce8832013-04-01 15:58:15 +0000204 setOperationAction(ISD::CTPOP, MVT::i32 , Legal);
Hal Finkelc53ab4d2013-03-28 13:29:47 +0000205 setOperationAction(ISD::CTPOP, MVT::i64 , Legal);
206 } else {
207 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
208 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
209 }
210
Nate Begeman35ef9132006-01-11 21:21:00 +0000211 // PowerPC does not have ROTR
Owen Anderson825b72b2009-08-11 20:47:22 +0000212 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
213 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000214
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000215 // PowerPC does not have Select
Owen Anderson825b72b2009-08-11 20:47:22 +0000216 setOperationAction(ISD::SELECT, MVT::i32, Expand);
217 setOperationAction(ISD::SELECT, MVT::i64, Expand);
218 setOperationAction(ISD::SELECT, MVT::f32, Expand);
219 setOperationAction(ISD::SELECT, MVT::f64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000220
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000221 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson825b72b2009-08-11 20:47:22 +0000222 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
223 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begeman44775902006-01-31 08:17:29 +0000224
Nate Begeman750ac1b2006-02-01 07:19:44 +0000225 // PowerPC wants to optimize integer setcc a bit
Owen Anderson825b72b2009-08-11 20:47:22 +0000226 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000227
Nate Begeman81e80972006-03-17 01:40:33 +0000228 // PowerPC does not have BRCOND which requires SetCC
Owen Anderson825b72b2009-08-11 20:47:22 +0000229 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Chengc35497f2006-10-30 08:02:39 +0000230
Owen Anderson825b72b2009-08-11 20:47:22 +0000231 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000232
Chris Lattnerf7605322005-08-31 21:09:52 +0000233 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson825b72b2009-08-11 20:47:22 +0000234 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000235
Jim Laskeyad23c9d2005-08-17 00:40:22 +0000236 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson825b72b2009-08-11 20:47:22 +0000237 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
238 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskeyad23c9d2005-08-17 00:40:22 +0000239
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000240 setOperationAction(ISD::BITCAST, MVT::f32, Expand);
241 setOperationAction(ISD::BITCAST, MVT::i32, Expand);
242 setOperationAction(ISD::BITCAST, MVT::i64, Expand);
243 setOperationAction(ISD::BITCAST, MVT::f64, Expand);
Chris Lattner53e88452005-12-23 05:13:35 +0000244
Chris Lattner25b8b8c2006-04-28 21:56:10 +0000245 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson825b72b2009-08-11 20:47:22 +0000246 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000247
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
249 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
250 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
251 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000252
Hal Finkele9150472013-03-27 19:10:42 +0000253 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
Hal Finkel7ee74a62013-03-21 21:37:52 +0000254 // SjLj exception handling but a light-weight setjmp/longjmp replacement to
255 // support continuation, user-level threading, and etc.. As a result, no
256 // other SjLj exception interfaces are implemented and please don't build
257 // your own exception handling based on them.
258 // LLVM/Clang supports zero-cost DWARF exception handling.
259 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
260 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000261
262 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman28a6b022005-12-10 02:36:00 +0000263 // appropriate instructions to materialize the address.
Owen Anderson825b72b2009-08-11 20:47:22 +0000264 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
265 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000266 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
268 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
269 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
270 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000271 setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
273 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000274
Nate Begeman1db3c922008-08-11 17:36:31 +0000275 // TRAP is legal.
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling77959322008-09-17 00:30:57 +0000277
278 // TRAMPOLINE is custom lowered.
Duncan Sands4a544a72011-09-06 13:37:06 +0000279 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
280 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Bill Wendling77959322008-09-17 00:30:57 +0000281
Nate Begemanacc398c2006-01-25 18:21:52 +0000282 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000283 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000284
Evan Cheng769951f2012-07-02 22:39:56 +0000285 if (Subtarget->isSVR4ABI()) {
286 if (isPPC64) {
Hal Finkel179a4dd2012-03-24 03:53:55 +0000287 // VAARG always uses double-word chunks, so promote anything smaller.
288 setOperationAction(ISD::VAARG, MVT::i1, Promote);
289 AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
290 setOperationAction(ISD::VAARG, MVT::i8, Promote);
291 AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
292 setOperationAction(ISD::VAARG, MVT::i16, Promote);
293 AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
294 setOperationAction(ISD::VAARG, MVT::i32, Promote);
295 AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
296 setOperationAction(ISD::VAARG, MVT::Other, Expand);
297 } else {
298 // VAARG is custom lowered with the 32-bit SVR4 ABI.
299 setOperationAction(ISD::VAARG, MVT::Other, Custom);
300 setOperationAction(ISD::VAARG, MVT::i64, Custom);
301 }
Roman Divackybdb226e2011-06-28 15:30:42 +0000302 } else
Owen Anderson825b72b2009-08-11 20:47:22 +0000303 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000304
Chris Lattnerb22c08b2006-01-15 09:02:48 +0000305 // Use the default implementation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000306 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
307 setOperationAction(ISD::VAEND , MVT::Other, Expand);
308 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
309 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
310 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
311 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Chris Lattner56a752e2006-10-18 01:18:48 +0000312
Chris Lattner6d92cad2006-03-26 10:06:40 +0000313 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000314 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000315
Hal Finkelb1fd3cd2013-05-15 21:37:41 +0000316 // To handle counter-based loop conditions.
317 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
318
Dale Johannesen53e4e442008-11-07 22:54:33 +0000319 // Comparisons that require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000320 setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
321 setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
322 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
323 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
324 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
325 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
326 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
327 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
328 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
329 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
330 setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
331 setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000332
Evan Cheng769951f2012-07-02 22:39:56 +0000333 if (Subtarget->has64BitSupport()) {
Nate Begeman1d9d7422005-10-18 00:28:58 +0000334 // They also have instructions for converting between i64 and fp.
Owen Anderson825b72b2009-08-11 20:47:22 +0000335 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
336 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
337 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
338 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Dale Johannesen4c9369d2009-06-04 20:53:52 +0000339 // This is just the low 32 bits of a (signed) fp->i64 conversion.
340 // We cannot do this with Promote because i64 is not a legal type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000341 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000342
Hal Finkel46479192013-04-01 17:52:07 +0000343 if (PPCSubTarget.hasLFIWAX() || Subtarget->isPPC64())
Hal Finkel9ad0f492013-03-31 01:58:02 +0000344 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begemanae749a92005-10-25 23:48:36 +0000345 } else {
Chris Lattner860e8862005-11-17 07:30:41 +0000346 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000347 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begeman9d2b8172005-10-18 00:56:42 +0000348 }
349
Hal Finkel46479192013-04-01 17:52:07 +0000350 // With the instructions enabled under FPCVT, we can do everything.
351 if (PPCSubTarget.hasFPCVT()) {
352 if (Subtarget->has64BitSupport()) {
353 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
354 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
355 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
356 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
357 }
358
359 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
360 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
361 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
362 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
363 }
364
Evan Cheng769951f2012-07-02 22:39:56 +0000365 if (Subtarget->use64BitRegs()) {
Chris Lattner26cb2862007-10-19 04:08:28 +0000366 // 64-bit PowerPC implementations can support i64 types directly
Craig Topperc9099502012-04-20 06:31:50 +0000367 addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
Nate Begeman1d9d7422005-10-18 00:28:58 +0000368 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson825b72b2009-08-11 20:47:22 +0000369 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman9ed06db2008-03-07 20:36:53 +0000370 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson825b72b2009-08-11 20:47:22 +0000371 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
372 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
373 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman1d9d7422005-10-18 00:28:58 +0000374 } else {
Chris Lattner26cb2862007-10-19 04:08:28 +0000375 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson825b72b2009-08-11 20:47:22 +0000376 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
377 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
378 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000379 }
Evan Chengd30bf012006-03-01 01:11:20 +0000380
Evan Cheng769951f2012-07-02 22:39:56 +0000381 if (Subtarget->hasAltivec()) {
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000382 // First set operation action for all vector types to expand. Then we
383 // will selectively turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000384 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
385 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
386 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000387
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000388 // add/sub are legal for all supported vector VT's.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000389 setOperationAction(ISD::ADD , VT, Legal);
390 setOperationAction(ISD::SUB , VT, Legal);
Scott Michelfdc40a02009-02-17 22:15:04 +0000391
Chris Lattner7ff7e672006-04-04 17:25:31 +0000392 // We promote all shuffles to v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000393 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000394 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000395
396 // We promote all non-typed operations to v4i32.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000397 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000398 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000399 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000400 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000401 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000402 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000403 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000404 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000405 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000406 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000407 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000408 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelfdc40a02009-02-17 22:15:04 +0000409
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000410 // No other operations are legal.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000411 setOperationAction(ISD::MUL , VT, Expand);
412 setOperationAction(ISD::SDIV, VT, Expand);
413 setOperationAction(ISD::SREM, VT, Expand);
414 setOperationAction(ISD::UDIV, VT, Expand);
415 setOperationAction(ISD::UREM, VT, Expand);
416 setOperationAction(ISD::FDIV, VT, Expand);
417 setOperationAction(ISD::FNEG, VT, Expand);
Craig Topper44e394c2012-11-15 08:02:19 +0000418 setOperationAction(ISD::FSQRT, VT, Expand);
419 setOperationAction(ISD::FLOG, VT, Expand);
420 setOperationAction(ISD::FLOG10, VT, Expand);
421 setOperationAction(ISD::FLOG2, VT, Expand);
422 setOperationAction(ISD::FEXP, VT, Expand);
423 setOperationAction(ISD::FEXP2, VT, Expand);
424 setOperationAction(ISD::FSIN, VT, Expand);
425 setOperationAction(ISD::FCOS, VT, Expand);
426 setOperationAction(ISD::FABS, VT, Expand);
427 setOperationAction(ISD::FPOWI, VT, Expand);
Craig Topper1ab489a2012-11-14 08:11:25 +0000428 setOperationAction(ISD::FFLOOR, VT, Expand);
Craig Topper49010472012-11-15 06:51:10 +0000429 setOperationAction(ISD::FCEIL, VT, Expand);
430 setOperationAction(ISD::FTRUNC, VT, Expand);
431 setOperationAction(ISD::FRINT, VT, Expand);
432 setOperationAction(ISD::FNEARBYINT, VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000433 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
434 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
435 setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
436 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
437 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
438 setOperationAction(ISD::UDIVREM, VT, Expand);
439 setOperationAction(ISD::SDIVREM, VT, Expand);
440 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
441 setOperationAction(ISD::FPOW, VT, Expand);
442 setOperationAction(ISD::CTPOP, VT, Expand);
443 setOperationAction(ISD::CTLZ, VT, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000444 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000445 setOperationAction(ISD::CTTZ, VT, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000446 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
Benjamin Kramer91223a42012-12-19 15:49:14 +0000447 setOperationAction(ISD::VSELECT, VT, Expand);
Adhemerval Zanellacfe09ed2012-11-05 17:15:56 +0000448 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
449
450 for (unsigned j = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
451 j <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++j) {
452 MVT::SimpleValueType InnerVT = (MVT::SimpleValueType)j;
453 setTruncStoreAction(VT, InnerVT, Expand);
454 }
455 setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
456 setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
457 setLoadExtAction(ISD::EXTLOAD, VT, Expand);
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000458 }
459
Chris Lattner7ff7e672006-04-04 17:25:31 +0000460 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
461 // with merges, splats, etc.
Owen Anderson825b72b2009-08-11 20:47:22 +0000462 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner7ff7e672006-04-04 17:25:31 +0000463
Owen Anderson825b72b2009-08-11 20:47:22 +0000464 setOperationAction(ISD::AND , MVT::v4i32, Legal);
465 setOperationAction(ISD::OR , MVT::v4i32, Legal);
466 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
467 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
468 setOperationAction(ISD::SELECT, MVT::v4i32, Expand);
469 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
Adhemerval Zanella51aaadb2012-10-08 17:27:24 +0000470 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
471 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
472 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
473 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
Adhemerval Zanellae95ed2b2012-11-15 20:56:03 +0000474 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
475 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
476 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
477 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
Scott Michelfdc40a02009-02-17 22:15:04 +0000478
Craig Topperc9099502012-04-20 06:31:50 +0000479 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
480 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
481 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
482 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
Scott Michelfdc40a02009-02-17 22:15:04 +0000483
Owen Anderson825b72b2009-08-11 20:47:22 +0000484 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Hal Finkel070b8db2012-06-22 00:49:52 +0000485 setOperationAction(ISD::FMA, MVT::v4f32, Legal);
Hal Finkel827307b2013-04-03 04:01:11 +0000486
487 if (TM.Options.UnsafeFPMath) {
488 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
489 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
490 }
491
Owen Anderson825b72b2009-08-11 20:47:22 +0000492 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
493 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
494 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnerf1d0b2b2006-03-20 01:53:53 +0000495
Owen Anderson825b72b2009-08-11 20:47:22 +0000496 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
497 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000498
Owen Anderson825b72b2009-08-11 20:47:22 +0000499 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
500 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
501 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
502 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Adhemerval Zanella5f41fd62012-10-30 13:50:19 +0000503
504 // Altivec does not contain unordered floating-point compare instructions
505 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
506 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
507 setCondCodeAction(ISD::SETUGT, MVT::v4f32, Expand);
508 setCondCodeAction(ISD::SETUGE, MVT::v4f32, Expand);
509 setCondCodeAction(ISD::SETULT, MVT::v4f32, Expand);
510 setCondCodeAction(ISD::SETULE, MVT::v4f32, Expand);
Nate Begeman425a9692005-11-29 08:17:20 +0000511 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000512
Hal Finkel8cc34742012-08-04 14:10:46 +0000513 if (Subtarget->has64BitSupport()) {
Hal Finkel19aa2b52012-04-01 20:08:17 +0000514 setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
Hal Finkel8cc34742012-08-04 14:10:46 +0000515 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Legal);
516 }
Hal Finkel19aa2b52012-04-01 20:08:17 +0000517
Eli Friedman4db5aca2011-08-29 18:23:02 +0000518 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Expand);
519 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Expand);
Hal Finkelcd9ea512012-12-25 17:22:53 +0000520 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand);
521 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
Eli Friedman4db5aca2011-08-29 18:23:02 +0000522
Duncan Sands03228082008-11-23 15:47:28 +0000523 setBooleanContents(ZeroOrOneBooleanContent);
Bill Schmidtfa799112013-04-23 18:49:44 +0000524 // Altivec instructions set fields to all zeros or all ones.
525 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Scott Michelfdc40a02009-02-17 22:15:04 +0000526
Evan Cheng769951f2012-07-02 22:39:56 +0000527 if (isPPC64) {
Chris Lattner10da9572006-10-18 01:20:43 +0000528 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000529 setExceptionPointerRegister(PPC::X3);
530 setExceptionSelectorRegister(PPC::X4);
531 } else {
Chris Lattner10da9572006-10-18 01:20:43 +0000532 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000533 setExceptionPointerRegister(PPC::R3);
534 setExceptionSelectorRegister(PPC::R4);
535 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000536
Chris Lattner8c13d0a2006-03-01 04:57:39 +0000537 // We have target-specific dag combine patterns for the following nodes:
538 setTargetDAGCombine(ISD::SINT_TO_FP);
Hal Finkel80d10de2013-05-24 23:00:14 +0000539 setTargetDAGCombine(ISD::LOAD);
Chris Lattner51269842006-03-01 05:50:56 +0000540 setTargetDAGCombine(ISD::STORE);
Chris Lattner90564f22006-04-18 17:59:36 +0000541 setTargetDAGCombine(ISD::BR_CC);
Chris Lattnerd9989382006-07-10 20:56:58 +0000542 setTargetDAGCombine(ISD::BSWAP);
Hal Finkel5a0e6042013-05-25 04:05:05 +0000543 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
Scott Michelfdc40a02009-02-17 22:15:04 +0000544
Hal Finkel827307b2013-04-03 04:01:11 +0000545 // Use reciprocal estimates.
546 if (TM.Options.UnsafeFPMath) {
547 setTargetDAGCombine(ISD::FDIV);
548 setTargetDAGCombine(ISD::FSQRT);
549 }
550
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000551 // Darwin long double math library functions have $LDBL128 appended.
Evan Cheng769951f2012-07-02 22:39:56 +0000552 if (Subtarget->isDarwin()) {
Duncan Sands007f9842008-01-10 10:28:30 +0000553 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000554 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
555 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands007f9842008-01-10 10:28:30 +0000556 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
557 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000558 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
559 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
560 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
561 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
562 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000563 }
564
Hal Finkelc6129162011-10-17 18:53:03 +0000565 setMinFunctionAlignment(2);
566 if (PPCSubTarget.isDarwin())
567 setPrefFunctionAlignment(4);
Eli Friedmanfc5d3052011-05-06 20:34:06 +0000568
Evan Cheng769951f2012-07-02 22:39:56 +0000569 if (isPPC64 && Subtarget->isJITCodeModel())
570 // Temporary workaround for the inability of PPC64 JIT to handle jump
571 // tables.
572 setSupportJumpTables(false);
573
Eli Friedman26689ac2011-08-03 21:06:02 +0000574 setInsertFencesForAtomic(true);
575
Hal Finkel768c65f2011-11-22 16:21:04 +0000576 setSchedulingPreference(Sched::Hybrid);
577
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000578 computeRegisterProperties();
Hal Finkel621b77a2012-08-28 16:12:39 +0000579
580 // The Freescale cores does better with aggressive inlining of memcpy and
581 // friends. Gcc uses same threshold of 128 bytes (= 32 word stores).
582 if (Subtarget->getDarwinDirective() == PPC::DIR_E500mc ||
583 Subtarget->getDarwinDirective() == PPC::DIR_E5500) {
Jim Grosbach3450f802013-02-20 21:13:59 +0000584 MaxStoresPerMemset = 32;
585 MaxStoresPerMemsetOptSize = 16;
586 MaxStoresPerMemcpy = 32;
587 MaxStoresPerMemcpyOptSize = 8;
588 MaxStoresPerMemmove = 32;
589 MaxStoresPerMemmoveOptSize = 8;
Hal Finkel621b77a2012-08-28 16:12:39 +0000590
591 setPrefFunctionAlignment(4);
Hal Finkel621b77a2012-08-28 16:12:39 +0000592 }
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000593}
594
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000595/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
596/// function arguments in the caller parameter area.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000597unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
Dan Gohmanf0757b02010-04-21 01:34:56 +0000598 const TargetMachine &TM = getTargetMachine();
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000599 // Darwin passes everything on 4 byte boundary.
600 if (TM.getSubtarget<PPCSubtarget>().isDarwin())
601 return 4;
Roman Divacky466958c2012-04-02 15:49:30 +0000602
603 // 16byte and wider vectors are passed on 16byte boundary.
604 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
605 if (VTy->getBitWidth() >= 128)
606 return 16;
607
608 // The rest is 8 on PPC64 and 4 on PPC32 boundary.
609 if (PPCSubTarget.isPPC64())
610 return 8;
611
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000612 return 4;
613}
614
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000615const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
616 switch (Opcode) {
617 default: return 0;
Evan Cheng53301922008-07-12 02:23:19 +0000618 case PPCISD::FSEL: return "PPCISD::FSEL";
619 case PPCISD::FCFID: return "PPCISD::FCFID";
620 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
621 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Hal Finkel827307b2013-04-03 04:01:11 +0000622 case PPCISD::FRE: return "PPCISD::FRE";
623 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE";
Evan Cheng53301922008-07-12 02:23:19 +0000624 case PPCISD::STFIWX: return "PPCISD::STFIWX";
625 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
626 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
627 case PPCISD::VPERM: return "PPCISD::VPERM";
628 case PPCISD::Hi: return "PPCISD::Hi";
629 case PPCISD::Lo: return "PPCISD::Lo";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000630 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY";
Tilmann Scheller3a84dae2009-12-18 13:00:15 +0000631 case PPCISD::TOC_RESTORE: return "PPCISD::TOC_RESTORE";
632 case PPCISD::LOAD: return "PPCISD::LOAD";
633 case PPCISD::LOAD_TOC: return "PPCISD::LOAD_TOC";
Evan Cheng53301922008-07-12 02:23:19 +0000634 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
635 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
636 case PPCISD::SRL: return "PPCISD::SRL";
637 case PPCISD::SRA: return "PPCISD::SRA";
638 case PPCISD::SHL: return "PPCISD::SHL";
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000639 case PPCISD::CALL: return "PPCISD::CALL";
640 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP";
Evan Cheng53301922008-07-12 02:23:19 +0000641 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Ulrich Weigand86765fb2013-03-22 15:24:13 +0000642 case PPCISD::BCTRL: return "PPCISD::BCTRL";
Evan Cheng53301922008-07-12 02:23:19 +0000643 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Hal Finkel7ee74a62013-03-21 21:37:52 +0000644 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP";
645 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
Evan Cheng53301922008-07-12 02:23:19 +0000646 case PPCISD::MFCR: return "PPCISD::MFCR";
647 case PPCISD::VCMP: return "PPCISD::VCMP";
648 case PPCISD::VCMPo: return "PPCISD::VCMPo";
649 case PPCISD::LBRX: return "PPCISD::LBRX";
650 case PPCISD::STBRX: return "PPCISD::STBRX";
Evan Cheng53301922008-07-12 02:23:19 +0000651 case PPCISD::LARX: return "PPCISD::LARX";
652 case PPCISD::STCX: return "PPCISD::STCX";
653 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Hal Finkelb1fd3cd2013-05-15 21:37:41 +0000654 case PPCISD::BDNZ: return "PPCISD::BDNZ";
655 case PPCISD::BDZ: return "PPCISD::BDZ";
Evan Cheng53301922008-07-12 02:23:19 +0000656 case PPCISD::MFFS: return "PPCISD::MFFS";
Evan Cheng53301922008-07-12 02:23:19 +0000657 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
Evan Cheng53301922008-07-12 02:23:19 +0000658 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Hal Finkel82b38212012-08-28 02:10:27 +0000659 case PPCISD::CR6SET: return "PPCISD::CR6SET";
660 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET";
Bill Schmidt34a9d4b2012-11-27 17:35:46 +0000661 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA";
662 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L";
663 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L";
Bill Schmidtb453e162012-12-14 17:02:38 +0000664 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
665 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L";
Bill Schmidtd7802bf2012-12-04 16:18:08 +0000666 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS";
Bill Schmidt57ac1f42012-12-11 20:30:11 +0000667 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA";
668 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L";
669 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR";
Bill Schmidt349c2782012-12-12 19:29:35 +0000670 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA";
671 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L";
672 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR";
673 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
674 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L";
Bill Schmidtb34c79e2013-02-20 15:50:31 +0000675 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT";
Bill Schmidt5bbdb192013-05-14 19:35:45 +0000676 case PPCISD::SC: return "PPCISD::SC";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000677 }
678}
679
Matt Arsenault225ed702013-05-18 00:21:46 +0000680EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Adhemerval Zanella1c7d69b2012-10-08 18:59:53 +0000681 if (!VT.isVector())
682 return MVT::i32;
683 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +0000684}
685
Chris Lattner1a635d62006-04-14 06:01:58 +0000686//===----------------------------------------------------------------------===//
687// Node matching predicates, for use by the tblgen matching code.
688//===----------------------------------------------------------------------===//
689
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000690/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman475871a2008-07-27 21:46:04 +0000691static bool isFloatingPointZero(SDValue Op) {
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000692 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000693 return CFP->getValueAPF().isZero();
Gabor Greifba36cb52008-08-28 21:40:38 +0000694 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000695 // Maybe this has already been legalized into the constant pool?
696 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Dan Gohman46510a72010-04-15 01:51:59 +0000697 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000698 return CFP->getValueAPF().isZero();
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000699 }
700 return false;
701}
702
Chris Lattnerddb739e2006-04-06 17:23:16 +0000703/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
704/// true if Op is undef or if it matches the specified value.
Nate Begeman9008ca62009-04-27 18:41:29 +0000705static bool isConstantOrUndef(int Op, int Val) {
706 return Op < 0 || Op == Val;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000707}
708
709/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
710/// VPKUHUM instruction.
Nate Begeman9008ca62009-04-27 18:41:29 +0000711bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnerf24380e2006-04-06 22:28:36 +0000712 if (!isUnary) {
713 for (unsigned i = 0; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000714 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000715 return false;
716 } else {
717 for (unsigned i = 0; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000718 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1) ||
719 !isConstantOrUndef(N->getMaskElt(i+8), i*2+1))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000720 return false;
721 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000722 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000723}
724
725/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
726/// VPKUWUM instruction.
Nate Begeman9008ca62009-04-27 18:41:29 +0000727bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnerf24380e2006-04-06 22:28:36 +0000728 if (!isUnary) {
729 for (unsigned i = 0; i != 16; i += 2)
Nate Begeman9008ca62009-04-27 18:41:29 +0000730 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
731 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000732 return false;
733 } else {
734 for (unsigned i = 0; i != 8; i += 2)
Nate Begeman9008ca62009-04-27 18:41:29 +0000735 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
736 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3) ||
737 !isConstantOrUndef(N->getMaskElt(i+8), i*2+2) ||
738 !isConstantOrUndef(N->getMaskElt(i+9), i*2+3))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000739 return false;
740 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000741 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000742}
743
Chris Lattnercaad1632006-04-06 22:02:42 +0000744/// isVMerge - Common function, used to match vmrg* shuffles.
745///
Nate Begeman9008ca62009-04-27 18:41:29 +0000746static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnercaad1632006-04-06 22:02:42 +0000747 unsigned LHSStart, unsigned RHSStart) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000748 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman9008ca62009-04-27 18:41:29 +0000749 "PPC only supports shuffles by bytes!");
Chris Lattner116cc482006-04-06 21:11:54 +0000750 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
751 "Unsupported merge size!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000752
Chris Lattner116cc482006-04-06 21:11:54 +0000753 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
754 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman9008ca62009-04-27 18:41:29 +0000755 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000756 LHSStart+j+i*UnitSize) ||
Nate Begeman9008ca62009-04-27 18:41:29 +0000757 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000758 RHSStart+j+i*UnitSize))
Chris Lattner116cc482006-04-06 21:11:54 +0000759 return false;
760 }
Nate Begeman9008ca62009-04-27 18:41:29 +0000761 return true;
Chris Lattnercaad1632006-04-06 22:02:42 +0000762}
763
764/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
765/// a VRGL* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000766bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman9008ca62009-04-27 18:41:29 +0000767 bool isUnary) {
Chris Lattnercaad1632006-04-06 22:02:42 +0000768 if (!isUnary)
769 return isVMerge(N, UnitSize, 8, 24);
770 return isVMerge(N, UnitSize, 8, 8);
Chris Lattner116cc482006-04-06 21:11:54 +0000771}
772
773/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
774/// a VRGH* instruction with the specified unit size (1,2 or 4 bytes).
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000775bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
Nate Begeman9008ca62009-04-27 18:41:29 +0000776 bool isUnary) {
Chris Lattnercaad1632006-04-06 22:02:42 +0000777 if (!isUnary)
778 return isVMerge(N, UnitSize, 0, 16);
779 return isVMerge(N, UnitSize, 0, 0);
Chris Lattner116cc482006-04-06 21:11:54 +0000780}
781
782
Chris Lattnerd0608e12006-04-06 18:26:28 +0000783/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
784/// amount, otherwise return -1.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000785int PPC::isVSLDOIShuffleMask(SDNode *N, bool isUnary) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000786 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman9008ca62009-04-27 18:41:29 +0000787 "PPC only supports shuffles by bytes!");
788
789 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000790
Chris Lattnerd0608e12006-04-06 18:26:28 +0000791 // Find the first non-undef value in the shuffle mask.
792 unsigned i;
Nate Begeman9008ca62009-04-27 18:41:29 +0000793 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattnerd0608e12006-04-06 18:26:28 +0000794 /*search*/;
Scott Michelfdc40a02009-02-17 22:15:04 +0000795
Chris Lattnerd0608e12006-04-06 18:26:28 +0000796 if (i == 16) return -1; // all undef.
Scott Michelfdc40a02009-02-17 22:15:04 +0000797
Nate Begeman9008ca62009-04-27 18:41:29 +0000798 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattnerd0608e12006-04-06 18:26:28 +0000799 // numbered from this value.
Nate Begeman9008ca62009-04-27 18:41:29 +0000800 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattnerd0608e12006-04-06 18:26:28 +0000801 if (ShiftAmt < i) return -1;
802 ShiftAmt -= i;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000803
Chris Lattnerf24380e2006-04-06 22:28:36 +0000804 if (!isUnary) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000805 // Check the rest of the elements to see if they are consecutive.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000806 for (++i; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000807 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000808 return -1;
809 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000810 // Check the rest of the elements to see if they are consecutive.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000811 for (++i; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000812 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000813 return -1;
814 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000815 return ShiftAmt;
816}
Chris Lattneref819f82006-03-20 06:33:01 +0000817
818/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
819/// specifies a splat of a single element that is suitable for input to
820/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman9008ca62009-04-27 18:41:29 +0000821bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000822 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner7ff7e672006-04-04 17:25:31 +0000823 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelfdc40a02009-02-17 22:15:04 +0000824
Chris Lattner88a99ef2006-03-20 06:37:44 +0000825 // This is a splat operation if each element of the permute is the same, and
826 // if the value doesn't reference the second vector.
Nate Begeman9008ca62009-04-27 18:41:29 +0000827 unsigned ElementBase = N->getMaskElt(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000828
Nate Begeman9008ca62009-04-27 18:41:29 +0000829 // FIXME: Handle UNDEF elements too!
830 if (ElementBase >= 16)
Chris Lattner7ff7e672006-04-04 17:25:31 +0000831 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000832
Nate Begeman9008ca62009-04-27 18:41:29 +0000833 // Check that the indices are consecutive, in the case of a multi-byte element
834 // splatted with a v16i8 mask.
835 for (unsigned i = 1; i != EltSize; ++i)
836 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner7ff7e672006-04-04 17:25:31 +0000837 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000838
Chris Lattner7ff7e672006-04-04 17:25:31 +0000839 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000840 if (N->getMaskElt(i) < 0) continue;
Chris Lattner7ff7e672006-04-04 17:25:31 +0000841 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman9008ca62009-04-27 18:41:29 +0000842 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner7ff7e672006-04-04 17:25:31 +0000843 return false;
Chris Lattner88a99ef2006-03-20 06:37:44 +0000844 }
Chris Lattner7ff7e672006-04-04 17:25:31 +0000845 return true;
Chris Lattneref819f82006-03-20 06:33:01 +0000846}
847
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000848/// isAllNegativeZeroVector - Returns true if all elements of build_vector
849/// are -0.0.
850bool PPC::isAllNegativeZeroVector(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000851 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
852
853 APInt APVal, APUndef;
854 unsigned BitSize;
855 bool HasAnyUndefs;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000856
Dale Johannesen1e608812009-11-13 01:45:18 +0000857 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))
Nate Begeman9008ca62009-04-27 18:41:29 +0000858 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000859 return CFP->getValueAPF().isNegZero();
Nate Begeman9008ca62009-04-27 18:41:29 +0000860
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000861 return false;
862}
863
Chris Lattneref819f82006-03-20 06:33:01 +0000864/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
865/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Chris Lattner7ff7e672006-04-04 17:25:31 +0000866unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000867 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
868 assert(isSplatShuffleMask(SVOp, EltSize));
869 return SVOp->getMaskElt(0) / EltSize;
Chris Lattneref819f82006-03-20 06:33:01 +0000870}
871
Chris Lattnere87192a2006-04-12 17:37:20 +0000872/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattner140a58f2006-04-08 06:46:53 +0000873/// by using a vspltis[bhw] instruction of the specified element size, return
874/// the constant being splatted. The ByteSize field indicates the number of
875/// bytes of each element [124] -> [bhw].
Dan Gohman475871a2008-07-27 21:46:04 +0000876SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
877 SDValue OpVal(0, 0);
Chris Lattner79d9a882006-04-08 07:14:26 +0000878
879 // If ByteSize of the splat is bigger than the element size of the
880 // build_vector, then we have a case where we are checking for a splat where
881 // multiple elements of the buildvector are folded together into a single
882 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
883 unsigned EltSize = 16/N->getNumOperands();
884 if (EltSize < ByteSize) {
885 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman475871a2008-07-27 21:46:04 +0000886 SDValue UniquedVals[4];
Chris Lattner79d9a882006-04-08 07:14:26 +0000887 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelfdc40a02009-02-17 22:15:04 +0000888
Chris Lattner79d9a882006-04-08 07:14:26 +0000889 // See if all of the elements in the buildvector agree across.
890 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
891 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
892 // If the element isn't a constant, bail fully out.
Dan Gohman475871a2008-07-27 21:46:04 +0000893 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000894
Scott Michelfdc40a02009-02-17 22:15:04 +0000895
Gabor Greifba36cb52008-08-28 21:40:38 +0000896 if (UniquedVals[i&(Multiple-1)].getNode() == 0)
Chris Lattner79d9a882006-04-08 07:14:26 +0000897 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
898 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman475871a2008-07-27 21:46:04 +0000899 return SDValue(); // no match.
Chris Lattner79d9a882006-04-08 07:14:26 +0000900 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000901
Chris Lattner79d9a882006-04-08 07:14:26 +0000902 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
903 // either constant or undef values that are identical for each chunk. See
904 // if these chunks can form into a larger vspltis*.
Scott Michelfdc40a02009-02-17 22:15:04 +0000905
Chris Lattner79d9a882006-04-08 07:14:26 +0000906 // Check to see if all of the leading entries are either 0 or -1. If
907 // neither, then this won't fit into the immediate field.
908 bool LeadingZero = true;
909 bool LeadingOnes = true;
910 for (unsigned i = 0; i != Multiple-1; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000911 if (UniquedVals[i].getNode() == 0) continue; // Must have been undefs.
Scott Michelfdc40a02009-02-17 22:15:04 +0000912
Chris Lattner79d9a882006-04-08 07:14:26 +0000913 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
914 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
915 }
916 // Finally, check the least significant entry.
917 if (LeadingZero) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000918 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +0000919 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000920 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000921 if (Val < 16)
Owen Anderson825b72b2009-08-11 20:47:22 +0000922 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
Chris Lattner79d9a882006-04-08 07:14:26 +0000923 }
924 if (LeadingOnes) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000925 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +0000926 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
Dan Gohman7810bfe2008-09-26 21:54:37 +0000927 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000928 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Owen Anderson825b72b2009-08-11 20:47:22 +0000929 return DAG.getTargetConstant(Val, MVT::i32);
Chris Lattner79d9a882006-04-08 07:14:26 +0000930 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000931
Dan Gohman475871a2008-07-27 21:46:04 +0000932 return SDValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000933 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000934
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000935 // Check to see if this buildvec has a single non-undef value in its elements.
936 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
937 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greifba36cb52008-08-28 21:40:38 +0000938 if (OpVal.getNode() == 0)
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000939 OpVal = N->getOperand(i);
940 else if (OpVal != N->getOperand(i))
Dan Gohman475871a2008-07-27 21:46:04 +0000941 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000942 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000943
Gabor Greifba36cb52008-08-28 21:40:38 +0000944 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
Scott Michelfdc40a02009-02-17 22:15:04 +0000945
Eli Friedman1a8229b2009-05-24 02:03:36 +0000946 unsigned ValSizeInBytes = EltSize;
Nate Begeman98e70cc2006-03-28 04:15:58 +0000947 uint64_t Value = 0;
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000948 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000949 Value = CN->getZExtValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000950 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000951 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johanneseneaf08942007-08-31 04:03:46 +0000952 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000953 }
954
955 // If the splat value is larger than the element value, then we can never do
956 // this splat. The only case that we could fit the replicated bits into our
957 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman475871a2008-07-27 21:46:04 +0000958 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +0000959
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000960 // If the element value is larger than the splat value, cut it in half and
961 // check to see if the two halves are equal. Continue doing this until we
962 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
963 while (ValSizeInBytes > ByteSize) {
964 ValSizeInBytes >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000965
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000966 // If the top half equals the bottom half, we're still ok.
Chris Lattner9b42bdd2006-04-05 17:39:25 +0000967 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
968 (Value & ((1 << (8*ValSizeInBytes))-1)))
Dan Gohman475871a2008-07-27 21:46:04 +0000969 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000970 }
971
972 // Properly sign extend the value.
Richard Smith1144af32012-08-24 23:29:28 +0000973 int MaskVal = SignExtend32(Value, ByteSize * 8);
Scott Michelfdc40a02009-02-17 22:15:04 +0000974
Evan Cheng5b6a01b2006-03-26 09:52:32 +0000975 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman475871a2008-07-27 21:46:04 +0000976 if (MaskVal == 0) return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000977
Chris Lattner140a58f2006-04-08 06:46:53 +0000978 // Finally, if this value fits in a 5 bit sext field, return it
Richard Smith1144af32012-08-24 23:29:28 +0000979 if (SignExtend32<5>(MaskVal) == MaskVal)
Owen Anderson825b72b2009-08-11 20:47:22 +0000980 return DAG.getTargetConstant(MaskVal, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000981 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000982}
983
Chris Lattner1a635d62006-04-14 06:01:58 +0000984//===----------------------------------------------------------------------===//
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000985// Addressing Mode Selection
986//===----------------------------------------------------------------------===//
987
988/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
989/// or 64-bit immediate, and if the value can be accurately represented as a
990/// sign extension from a 16-bit value. If so, this returns true and the
991/// immediate.
992static bool isIntS16Immediate(SDNode *N, short &Imm) {
993 if (N->getOpcode() != ISD::Constant)
994 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000995
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000996 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000997 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000998 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000999 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001000 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001001}
Dan Gohman475871a2008-07-27 21:46:04 +00001002static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001003 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001004}
1005
1006
1007/// SelectAddressRegReg - Given the specified addressed, check to see if it
1008/// can be represented as an indexed [r+r] operation. Returns false if it
1009/// can be more efficiently represented with [r+imm].
Dan Gohman475871a2008-07-27 21:46:04 +00001010bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1011 SDValue &Index,
Dan Gohman73e09142009-01-15 16:29:45 +00001012 SelectionDAG &DAG) const {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001013 short imm = 0;
1014 if (N.getOpcode() == ISD::ADD) {
1015 if (isIntS16Immediate(N.getOperand(1), imm))
1016 return false; // r+i
1017 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1018 return false; // r+i
Scott Michelfdc40a02009-02-17 22:15:04 +00001019
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001020 Base = N.getOperand(0);
1021 Index = N.getOperand(1);
1022 return true;
1023 } else if (N.getOpcode() == ISD::OR) {
1024 if (isIntS16Immediate(N.getOperand(1), imm))
1025 return false; // r+i can fold it if we can.
Scott Michelfdc40a02009-02-17 22:15:04 +00001026
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001027 // If this is an or of disjoint bitfields, we can codegen this as an add
1028 // (for better address arithmetic) if the LHS and RHS of the OR are provably
1029 // disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001030 APInt LHSKnownZero, LHSKnownOne;
1031 APInt RHSKnownZero, RHSKnownOne;
1032 DAG.ComputeMaskedBits(N.getOperand(0),
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001033 LHSKnownZero, LHSKnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001034
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001035 if (LHSKnownZero.getBoolValue()) {
1036 DAG.ComputeMaskedBits(N.getOperand(1),
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001037 RHSKnownZero, RHSKnownOne);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001038 // If all of the bits are known zero on the LHS or RHS, the add won't
1039 // carry.
Dan Gohmanec59b952008-02-27 21:12:32 +00001040 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001041 Base = N.getOperand(0);
1042 Index = N.getOperand(1);
1043 return true;
1044 }
1045 }
1046 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001047
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001048 return false;
1049}
1050
1051/// Returns true if the address N can be represented by a base register plus
1052/// a signed 16-bit displacement [r+imm], and if it is not better
Ulrich Weigand347a5072013-05-16 17:58:02 +00001053/// represented as reg+reg. If Aligned is true, only accept displacements
1054/// suitable for STD and friends, i.e. multiples of 4.
Dan Gohman475871a2008-07-27 21:46:04 +00001055bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman73e09142009-01-15 16:29:45 +00001056 SDValue &Base,
Ulrich Weigand347a5072013-05-16 17:58:02 +00001057 SelectionDAG &DAG,
1058 bool Aligned) const {
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001059 // FIXME dl should come from parent load or store, not from address
Andrew Trickac6d9be2013-05-25 02:42:55 +00001060 SDLoc dl(N);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001061 // If this can be more profitably realized as r+r, fail.
1062 if (SelectAddressRegReg(N, Disp, Base, DAG))
1063 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001064
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001065 if (N.getOpcode() == ISD::ADD) {
1066 short imm = 0;
Ulrich Weigand347a5072013-05-16 17:58:02 +00001067 if (isIntS16Immediate(N.getOperand(1), imm) &&
1068 (!Aligned || (imm & 3) == 0)) {
Ulrich Weigandf0ef8822013-05-16 14:53:05 +00001069 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001070 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1071 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1072 } else {
1073 Base = N.getOperand(0);
1074 }
1075 return true; // [r+i]
1076 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1077 // Match LOAD (ADD (X, Lo(G))).
Gabor Greif413ca0d2012-04-20 11:41:38 +00001078 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001079 && "Cannot handle constant offsets yet!");
1080 Disp = N.getOperand(1).getOperand(0); // The global address.
1081 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
Roman Divackyfd42ed62012-06-04 17:36:38 +00001082 Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001083 Disp.getOpcode() == ISD::TargetConstantPool ||
1084 Disp.getOpcode() == ISD::TargetJumpTable);
1085 Base = N.getOperand(0);
1086 return true; // [&g+r]
1087 }
1088 } else if (N.getOpcode() == ISD::OR) {
1089 short imm = 0;
Ulrich Weigand347a5072013-05-16 17:58:02 +00001090 if (isIntS16Immediate(N.getOperand(1), imm) &&
1091 (!Aligned || (imm & 3) == 0)) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001092 // If this is an or of disjoint bitfields, we can codegen this as an add
1093 // (for better address arithmetic) if the LHS and RHS of the OR are
1094 // provably disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001095 APInt LHSKnownZero, LHSKnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001096 DAG.ComputeMaskedBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
Bill Wendling3e98c302008-03-24 23:16:37 +00001097
Dan Gohmanb3564aa2008-02-27 01:23:58 +00001098 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001099 // If all of the bits are known zero on the LHS or RHS, the add won't
1100 // carry.
1101 Base = N.getOperand(0);
Ulrich Weigandf0ef8822013-05-16 14:53:05 +00001102 Disp = DAG.getTargetConstant(imm, N.getValueType());
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001103 return true;
1104 }
1105 }
1106 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1107 // Loading from a constant address.
Scott Michelfdc40a02009-02-17 22:15:04 +00001108
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001109 // If this address fits entirely in a 16-bit sext immediate field, codegen
1110 // this as "d, 0"
1111 short Imm;
Ulrich Weigand347a5072013-05-16 17:58:02 +00001112 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001113 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
Hal Finkel76973702013-03-21 23:45:03 +00001114 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1115 CN->getValueType(0));
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001116 return true;
1117 }
Chris Lattnerbc681d62007-02-17 06:44:03 +00001118
1119 // Handle 32-bit sext immediates with LIS + addr mode.
Ulrich Weigand347a5072013-05-16 17:58:02 +00001120 if ((CN->getValueType(0) == MVT::i32 ||
1121 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1122 (!Aligned || (CN->getZExtValue() & 3) == 0)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001123 int Addr = (int)CN->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001124
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001125 // Otherwise, break this down into an LIS + disp.
Owen Anderson825b72b2009-08-11 20:47:22 +00001126 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00001127
Owen Anderson825b72b2009-08-11 20:47:22 +00001128 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
1129 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dan Gohman602b0c82009-09-25 18:54:59 +00001130 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001131 return true;
1132 }
1133 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001134
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001135 Disp = DAG.getTargetConstant(0, getPointerTy());
1136 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N))
1137 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1138 else
1139 Base = N;
1140 return true; // [r+0]
1141}
1142
1143/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1144/// represented as an indexed [r+r] operation.
Dan Gohman475871a2008-07-27 21:46:04 +00001145bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1146 SDValue &Index,
Dan Gohman73e09142009-01-15 16:29:45 +00001147 SelectionDAG &DAG) const {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001148 // Check to see if we can easily represent this as an [r+r] address. This
1149 // will fail if it thinks that the address is more profitably represented as
1150 // reg+imm, e.g. where imm = 0.
1151 if (SelectAddressRegReg(N, Base, Index, DAG))
1152 return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001153
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001154 // If the operand is an addition, always emit this as [r+r], since this is
1155 // better (for code size, and execution, as the memop does the add for free)
1156 // than emitting an explicit add.
1157 if (N.getOpcode() == ISD::ADD) {
1158 Base = N.getOperand(0);
1159 Index = N.getOperand(1);
1160 return true;
1161 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001162
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001163 // Otherwise, do it the hard way, using R0 as the base register.
Hal Finkel76973702013-03-21 23:45:03 +00001164 Base = DAG.getRegister(PPCSubTarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1165 N.getValueType());
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001166 Index = N;
1167 return true;
1168}
1169
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001170/// getPreIndexedAddressParts - returns true by value, base pointer and
1171/// offset pointer and addressing mode by reference if the node's address
1172/// can be legally represented as pre-indexed load / store address.
Dan Gohman475871a2008-07-27 21:46:04 +00001173bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1174 SDValue &Offset,
Evan Cheng144d8f02006-11-09 17:55:04 +00001175 ISD::MemIndexedMode &AM,
Dan Gohman73e09142009-01-15 16:29:45 +00001176 SelectionDAG &DAG) const {
Hal Finkel77838f92012-06-04 02:21:00 +00001177 if (DisablePPCPreinc) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001178
Ulrich Weigand881a7152013-03-22 14:58:48 +00001179 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00001180 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00001181 EVT VT;
Hal Finkel08a215c2013-03-18 23:00:58 +00001182 unsigned Alignment;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001183 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1184 Ptr = LD->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001185 VT = LD->getMemoryVT();
Hal Finkel08a215c2013-03-18 23:00:58 +00001186 Alignment = LD->getAlignment();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001187 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001188 Ptr = ST->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001189 VT = ST->getMemoryVT();
Hal Finkel08a215c2013-03-18 23:00:58 +00001190 Alignment = ST->getAlignment();
Ulrich Weigand881a7152013-03-22 14:58:48 +00001191 isLoad = false;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001192 } else
1193 return false;
1194
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001195 // PowerPC doesn't have preinc load/store instructions for vectors.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001196 if (VT.isVector())
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001197 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001198
Ulrich Weigand881a7152013-03-22 14:58:48 +00001199 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1200
1201 // Common code will reject creating a pre-inc form if the base pointer
1202 // is a frame index, or if N is a store and the base pointer is either
1203 // the same as or a predecessor of the value being stored. Check for
1204 // those situations here, and try with swapped Base/Offset instead.
1205 bool Swap = false;
1206
1207 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1208 Swap = true;
1209 else if (!isLoad) {
1210 SDValue Val = cast<StoreSDNode>(N)->getValue();
1211 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1212 Swap = true;
1213 }
1214
1215 if (Swap)
1216 std::swap(Base, Offset);
1217
Hal Finkel0fcdd8b2012-06-20 15:43:03 +00001218 AM = ISD::PRE_INC;
1219 return true;
Hal Finkelac81cc32012-06-19 02:34:32 +00001220 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001221
Ulrich Weigand347a5072013-05-16 17:58:02 +00001222 // LDU/STU can only handle immediates that are a multiple of 4.
Owen Anderson825b72b2009-08-11 20:47:22 +00001223 if (VT != MVT::i64) {
Ulrich Weigand347a5072013-05-16 17:58:02 +00001224 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
Chris Lattner0851b4f2006-11-15 19:55:13 +00001225 return false;
1226 } else {
Hal Finkel08a215c2013-03-18 23:00:58 +00001227 // LDU/STU need an address with at least 4-byte alignment.
1228 if (Alignment < 4)
1229 return false;
1230
Ulrich Weigand347a5072013-05-16 17:58:02 +00001231 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
Chris Lattner0851b4f2006-11-15 19:55:13 +00001232 return false;
1233 }
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001234
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001235 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner0851b4f2006-11-15 19:55:13 +00001236 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1237 // sext i32 to i64 when addr mode is r+i.
Owen Anderson825b72b2009-08-11 20:47:22 +00001238 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001239 LD->getExtensionType() == ISD::SEXTLOAD &&
1240 isa<ConstantSDNode>(Offset))
1241 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001242 }
1243
Chris Lattner4eab7142006-11-10 02:08:47 +00001244 AM = ISD::PRE_INC;
1245 return true;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001246}
1247
1248//===----------------------------------------------------------------------===//
Chris Lattner1a635d62006-04-14 06:01:58 +00001249// LowerOperation implementation
1250//===----------------------------------------------------------------------===//
1251
Chris Lattner1e61e692010-11-15 02:46:57 +00001252/// GetLabelAccessInfo - Return true if we should reference labels using a
1253/// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1254static bool GetLabelAccessInfo(const TargetMachine &TM, unsigned &HiOpFlags,
Chris Lattner6d2ff122010-11-15 03:13:19 +00001255 unsigned &LoOpFlags, const GlobalValue *GV = 0) {
1256 HiOpFlags = PPCII::MO_HA16;
1257 LoOpFlags = PPCII::MO_LO16;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001258
Chris Lattner1e61e692010-11-15 02:46:57 +00001259 // Don't use the pic base if not in PIC relocation model. Or if we are on a
1260 // non-darwin platform. We don't support PIC on other platforms yet.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001261 bool isPIC = TM.getRelocationModel() == Reloc::PIC_ &&
Chris Lattner1e61e692010-11-15 02:46:57 +00001262 TM.getSubtarget<PPCSubtarget>().isDarwin();
Chris Lattner6d2ff122010-11-15 03:13:19 +00001263 if (isPIC) {
1264 HiOpFlags |= PPCII::MO_PIC_FLAG;
1265 LoOpFlags |= PPCII::MO_PIC_FLAG;
1266 }
1267
1268 // If this is a reference to a global value that requires a non-lazy-ptr, make
1269 // sure that instruction lowering adds it.
1270 if (GV && TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV, TM)) {
1271 HiOpFlags |= PPCII::MO_NLP_FLAG;
1272 LoOpFlags |= PPCII::MO_NLP_FLAG;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001273
Chris Lattner6d2ff122010-11-15 03:13:19 +00001274 if (GV->hasHiddenVisibility()) {
1275 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1276 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1277 }
1278 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001279
Chris Lattner1e61e692010-11-15 02:46:57 +00001280 return isPIC;
1281}
1282
1283static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1284 SelectionDAG &DAG) {
1285 EVT PtrVT = HiPart.getValueType();
1286 SDValue Zero = DAG.getConstant(0, PtrVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001287 SDLoc DL(HiPart);
Chris Lattner1e61e692010-11-15 02:46:57 +00001288
1289 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1290 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001291
Chris Lattner1e61e692010-11-15 02:46:57 +00001292 // With PIC, the first instruction is actually "GR+hi(&G)".
1293 if (isPIC)
1294 Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1295 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001296
Chris Lattner1e61e692010-11-15 02:46:57 +00001297 // Generate non-pic code that has direct accesses to the constant pool.
1298 // The address of the global is just (hi(&g)+lo(&g)).
1299 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1300}
1301
Scott Michelfdc40a02009-02-17 22:15:04 +00001302SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00001303 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00001304 EVT PtrVT = Op.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00001305 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman46510a72010-04-15 01:51:59 +00001306 const Constant *C = CP->getConstVal();
Chris Lattner1a635d62006-04-14 06:01:58 +00001307
Roman Divacky9fb8b492012-08-24 16:26:02 +00001308 // 64-bit SVR4 ABI code is always position-independent.
1309 // The actual address of the GlobalValue is stored in the TOC.
1310 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1311 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001312 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
Roman Divacky9fb8b492012-08-24 16:26:02 +00001313 DAG.getRegister(PPC::X2, MVT::i64));
1314 }
1315
Chris Lattner1e61e692010-11-15 02:46:57 +00001316 unsigned MOHiFlag, MOLoFlag;
1317 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1318 SDValue CPIHi =
1319 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1320 SDValue CPILo =
1321 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1322 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00001323}
1324
Dan Gohmand858e902010-04-17 15:26:15 +00001325SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00001326 EVT PtrVT = Op.getValueType();
Nate Begeman37efe672006-04-22 18:53:45 +00001327 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001328
Roman Divacky9fb8b492012-08-24 16:26:02 +00001329 // 64-bit SVR4 ABI code is always position-independent.
1330 // The actual address of the GlobalValue is stored in the TOC.
1331 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1332 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001333 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
Roman Divacky9fb8b492012-08-24 16:26:02 +00001334 DAG.getRegister(PPC::X2, MVT::i64));
1335 }
1336
Chris Lattner1e61e692010-11-15 02:46:57 +00001337 unsigned MOHiFlag, MOLoFlag;
1338 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
1339 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1340 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1341 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +00001342}
1343
Dan Gohmand858e902010-04-17 15:26:15 +00001344SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1345 SelectionDAG &DAG) const {
Bob Wilson3d90dbe2009-11-04 21:31:18 +00001346 EVT PtrVT = Op.getValueType();
Bob Wilson3d90dbe2009-11-04 21:31:18 +00001347
Dan Gohman46510a72010-04-15 01:51:59 +00001348 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001349
Chris Lattner1e61e692010-11-15 02:46:57 +00001350 unsigned MOHiFlag, MOLoFlag;
1351 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00001352 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1353 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
Chris Lattner1e61e692010-11-15 02:46:57 +00001354 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1355}
1356
Roman Divackyfd42ed62012-06-04 17:36:38 +00001357SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1358 SelectionDAG &DAG) const {
1359
1360 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001361 SDLoc dl(GA);
Roman Divackyfd42ed62012-06-04 17:36:38 +00001362 const GlobalValue *GV = GA->getGlobal();
1363 EVT PtrVT = getPointerTy();
1364 bool is64bit = PPCSubTarget.isPPC64();
1365
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001366 TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
Roman Divackyfd42ed62012-06-04 17:36:38 +00001367
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001368 if (Model == TLSModel::LocalExec) {
1369 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1370 PPCII::MO_TPREL16_HA);
1371 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1372 PPCII::MO_TPREL16_LO);
1373 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1374 is64bit ? MVT::i64 : MVT::i32);
1375 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1376 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1377 }
Roman Divackyfd42ed62012-06-04 17:36:38 +00001378
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001379 if (!is64bit)
1380 llvm_unreachable("only local-exec is currently supported for ppc32");
1381
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001382 if (Model == TLSModel::InitialExec) {
Bill Schmidtdfebc4c2012-12-13 18:45:54 +00001383 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1384 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
Bill Schmidtb453e162012-12-14 17:02:38 +00001385 SDValue TPOffsetHi = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1386 PtrVT, GOTReg, TGA);
1387 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
1388 PtrVT, TGA, TPOffsetHi);
Bill Schmidtdfebc4c2012-12-13 18:45:54 +00001389 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGA);
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001390 }
Bill Schmidtd7802bf2012-12-04 16:18:08 +00001391
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001392 if (Model == TLSModel::GeneralDynamic) {
1393 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1394 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1395 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1396 GOTReg, TGA);
1397 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl, PtrVT,
1398 GOTEntryHi, TGA);
1399
1400 // We need a chain node, and don't have one handy. The underlying
1401 // call has no side effects, so using the function entry node
1402 // suffices.
1403 SDValue Chain = DAG.getEntryNode();
1404 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1405 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1406 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLS_ADDR, dl,
1407 PtrVT, ParmReg, TGA);
Bill Schmidt349c2782012-12-12 19:29:35 +00001408 // The return value from GET_TLS_ADDR really is in X3 already, but
1409 // some hacks are needed here to tie everything together. The extra
1410 // copies dissolve during subsequent transforms.
Bill Schmidt57ac1f42012-12-11 20:30:11 +00001411 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1412 return DAG.getCopyFromReg(Chain, dl, PPC::X3, PtrVT);
1413 }
1414
Bill Schmidt349c2782012-12-12 19:29:35 +00001415 if (Model == TLSModel::LocalDynamic) {
1416 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1417 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1418 SDValue GOTEntryHi = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1419 GOTReg, TGA);
1420 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT,
1421 GOTEntryHi, TGA);
1422
1423 // We need a chain node, and don't have one handy. The underlying
1424 // call has no side effects, so using the function entry node
1425 // suffices.
1426 SDValue Chain = DAG.getEntryNode();
1427 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, GOTEntry);
1428 SDValue ParmReg = DAG.getRegister(PPC::X3, MVT::i64);
1429 SDValue TLSAddr = DAG.getNode(PPCISD::GET_TLSLD_ADDR, dl,
1430 PtrVT, ParmReg, TGA);
1431 // The return value from GET_TLSLD_ADDR really is in X3 already, but
1432 // some hacks are needed here to tie everything together. The extra
1433 // copies dissolve during subsequent transforms.
1434 Chain = DAG.getCopyToReg(Chain, dl, PPC::X3, TLSAddr);
1435 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, PtrVT,
Bill Schmidt1e18b862012-12-13 20:57:10 +00001436 Chain, ParmReg, TGA);
Bill Schmidt349c2782012-12-12 19:29:35 +00001437 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1438 }
1439
1440 llvm_unreachable("Unknown TLS model!");
Roman Divackyfd42ed62012-06-04 17:36:38 +00001441}
1442
Chris Lattner1e61e692010-11-15 02:46:57 +00001443SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1444 SelectionDAG &DAG) const {
1445 EVT PtrVT = Op.getValueType();
1446 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001447 SDLoc DL(GSDN);
Chris Lattner1e61e692010-11-15 02:46:57 +00001448 const GlobalValue *GV = GSDN->getGlobal();
1449
Chris Lattner1e61e692010-11-15 02:46:57 +00001450 // 64-bit SVR4 ABI code is always position-independent.
1451 // The actual address of the GlobalValue is stored in the TOC.
1452 if (PPCSubTarget.isSVR4ABI() && PPCSubTarget.isPPC64()) {
1453 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1454 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1455 DAG.getRegister(PPC::X2, MVT::i64));
1456 }
1457
Chris Lattner6d2ff122010-11-15 03:13:19 +00001458 unsigned MOHiFlag, MOLoFlag;
1459 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag, GV);
Chris Lattner1e61e692010-11-15 02:46:57 +00001460
Chris Lattner6d2ff122010-11-15 03:13:19 +00001461 SDValue GAHi =
1462 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1463 SDValue GALo =
1464 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001465
Chris Lattner6d2ff122010-11-15 03:13:19 +00001466 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
Bob Wilson3d90dbe2009-11-04 21:31:18 +00001467
Chris Lattner6d2ff122010-11-15 03:13:19 +00001468 // If the global reference is actually to a non-lazy-pointer, we have to do an
1469 // extra load to get the address of the global.
1470 if (MOHiFlag & PPCII::MO_NLP_FLAG)
1471 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001472 false, false, false, 0);
Chris Lattner6d2ff122010-11-15 03:13:19 +00001473 return Ptr;
Chris Lattner1a635d62006-04-14 06:01:58 +00001474}
1475
Dan Gohmand858e902010-04-17 15:26:15 +00001476SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner1a635d62006-04-14 06:01:58 +00001477 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001478 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00001479
Chris Lattner1a635d62006-04-14 06:01:58 +00001480 // If we're comparing for equality to zero, expose the fact that this is
1481 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1482 // fold the new nodes.
1483 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1484 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Andersone50ed302009-08-10 22:56:29 +00001485 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001486 SDValue Zext = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001487 if (VT.bitsLT(MVT::i32)) {
1488 VT = MVT::i32;
Dale Johannesenf5d97892009-02-04 01:48:28 +00001489 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001490 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00001491 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001492 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1493 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson825b72b2009-08-11 20:47:22 +00001494 DAG.getConstant(Log2b, MVT::i32));
1495 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner1a635d62006-04-14 06:01:58 +00001496 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001497 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner1a635d62006-04-14 06:01:58 +00001498 // optimized. FIXME: revisit this when we can custom lower all setcc
1499 // optimizations.
1500 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman475871a2008-07-27 21:46:04 +00001501 return SDValue();
Chris Lattner1a635d62006-04-14 06:01:58 +00001502 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001503
Chris Lattner1a635d62006-04-14 06:01:58 +00001504 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattnerac011bc2006-11-14 05:28:08 +00001505 // by xor'ing the rhs with the lhs, which is faster than setting a
1506 // condition register, reading it back out, and masking the correct bit. The
1507 // normal approach here uses sub to do this instead of xor. Using xor exposes
1508 // the result to other bit-twiddling opportunities.
Owen Andersone50ed302009-08-10 22:56:29 +00001509 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001510 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Andersone50ed302009-08-10 22:56:29 +00001511 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001512 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner1a635d62006-04-14 06:01:58 +00001513 Op.getOperand(1));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001514 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner1a635d62006-04-14 06:01:58 +00001515 }
Dan Gohman475871a2008-07-27 21:46:04 +00001516 return SDValue();
Chris Lattner1a635d62006-04-14 06:01:58 +00001517}
1518
Dan Gohman475871a2008-07-27 21:46:04 +00001519SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001520 const PPCSubtarget &Subtarget) const {
Roman Divackybdb226e2011-06-28 15:30:42 +00001521 SDNode *Node = Op.getNode();
1522 EVT VT = Node->getValueType(0);
1523 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1524 SDValue InChain = Node->getOperand(0);
1525 SDValue VAListPtr = Node->getOperand(1);
1526 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001527 SDLoc dl(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001528
Roman Divackybdb226e2011-06-28 15:30:42 +00001529 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1530
1531 // gpr_index
1532 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1533 VAListPtr, MachinePointerInfo(SV), MVT::i8,
1534 false, false, 0);
1535 InChain = GprIndex.getValue(1);
1536
1537 if (VT == MVT::i64) {
1538 // Check if GprIndex is even
1539 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1540 DAG.getConstant(1, MVT::i32));
1541 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1542 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1543 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1544 DAG.getConstant(1, MVT::i32));
1545 // Align GprIndex to be even if it isn't
1546 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1547 GprIndex);
1548 }
1549
1550 // fpr index is 1 byte after gpr
1551 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1552 DAG.getConstant(1, MVT::i32));
1553
1554 // fpr
1555 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1556 FprPtr, MachinePointerInfo(SV), MVT::i8,
1557 false, false, 0);
1558 InChain = FprIndex.getValue(1);
1559
1560 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1561 DAG.getConstant(8, MVT::i32));
1562
1563 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1564 DAG.getConstant(4, MVT::i32));
1565
1566 // areas
1567 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001568 MachinePointerInfo(), false, false,
1569 false, 0);
Roman Divackybdb226e2011-06-28 15:30:42 +00001570 InChain = OverflowArea.getValue(1);
1571
1572 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001573 MachinePointerInfo(), false, false,
1574 false, 0);
Roman Divackybdb226e2011-06-28 15:30:42 +00001575 InChain = RegSaveArea.getValue(1);
1576
1577 // select overflow_area if index > 8
1578 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1579 DAG.getConstant(8, MVT::i32), ISD::SETLT);
1580
Roman Divackybdb226e2011-06-28 15:30:42 +00001581 // adjustment constant gpr_index * 4/8
1582 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1583 VT.isInteger() ? GprIndex : FprIndex,
1584 DAG.getConstant(VT.isInteger() ? 4 : 8,
1585 MVT::i32));
1586
1587 // OurReg = RegSaveArea + RegConstant
1588 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1589 RegConstant);
1590
1591 // Floating types are 32 bytes into RegSaveArea
1592 if (VT.isFloatingPoint())
1593 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1594 DAG.getConstant(32, MVT::i32));
1595
1596 // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1597 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1598 VT.isInteger() ? GprIndex : FprIndex,
1599 DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1600 MVT::i32));
1601
1602 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1603 VT.isInteger() ? VAListPtr : FprPtr,
1604 MachinePointerInfo(SV),
1605 MVT::i8, false, false, 0);
1606
1607 // determine if we should load from reg_save_area or overflow_area
1608 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1609
1610 // increase overflow_area by 4/8 if gpr/fpr > 8
1611 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1612 DAG.getConstant(VT.isInteger() ? 4 : 8,
1613 MVT::i32));
1614
1615 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1616 OverflowAreaPlusN);
1617
1618 InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
1619 OverflowAreaPtr,
1620 MachinePointerInfo(),
1621 MVT::i32, false, false, 0);
1622
NAKAMURA Takumi25f6b5a2012-08-30 15:52:23 +00001623 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001624 false, false, false, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001625}
1626
Duncan Sands4a544a72011-09-06 13:37:06 +00001627SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
1628 SelectionDAG &DAG) const {
1629 return Op.getOperand(0);
1630}
1631
1632SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
1633 SelectionDAG &DAG) const {
Bill Wendling77959322008-09-17 00:30:57 +00001634 SDValue Chain = Op.getOperand(0);
1635 SDValue Trmp = Op.getOperand(1); // trampoline
1636 SDValue FPtr = Op.getOperand(2); // nested function
1637 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +00001638 SDLoc dl(Op);
Bill Wendling77959322008-09-17 00:30:57 +00001639
Owen Andersone50ed302009-08-10 22:56:29 +00001640 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00001641 bool isPPC64 = (PtrVT == MVT::i64);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001642 Type *IntPtrTy =
Micah Villmow3574eca2012-10-08 16:38:25 +00001643 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
Chandler Carruthece6c6b2012-11-01 08:07:29 +00001644 *DAG.getContext());
Bill Wendling77959322008-09-17 00:30:57 +00001645
Scott Michelfdc40a02009-02-17 22:15:04 +00001646 TargetLowering::ArgListTy Args;
Bill Wendling77959322008-09-17 00:30:57 +00001647 TargetLowering::ArgListEntry Entry;
1648
1649 Entry.Ty = IntPtrTy;
1650 Entry.Node = Trmp; Args.push_back(Entry);
1651
1652 // TrampSize == (isPPC64 ? 48 : 40);
1653 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson825b72b2009-08-11 20:47:22 +00001654 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling77959322008-09-17 00:30:57 +00001655 Args.push_back(Entry);
1656
1657 Entry.Node = FPtr; Args.push_back(Entry);
1658 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelfdc40a02009-02-17 22:15:04 +00001659
Bill Wendling77959322008-09-17 00:30:57 +00001660 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001661 TargetLowering::CallLoweringInfo CLI(Chain,
1662 Type::getVoidTy(*DAG.getContext()),
1663 false, false, false, false, 0,
1664 CallingConv::C,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001665 /*isTailCall=*/false,
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001666 /*doesNotRet=*/false,
1667 /*isReturnValueUsed=*/true,
Bill Wendling77959322008-09-17 00:30:57 +00001668 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
Bill Wendling46ada192010-03-02 01:55:18 +00001669 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001670 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Bill Wendling77959322008-09-17 00:30:57 +00001671
Duncan Sands4a544a72011-09-06 13:37:06 +00001672 return CallResult.second;
Bill Wendling77959322008-09-17 00:30:57 +00001673}
1674
Dan Gohman475871a2008-07-27 21:46:04 +00001675SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001676 const PPCSubtarget &Subtarget) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001677 MachineFunction &MF = DAG.getMachineFunction();
1678 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1679
Andrew Trickac6d9be2013-05-25 02:42:55 +00001680 SDLoc dl(Op);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001681
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001682 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
Nicolas Geoffray01119992007-04-03 13:59:52 +00001683 // vastart just stores the address of the VarArgsFrameIndex slot into the
1684 // memory location argument.
Owen Andersone50ed302009-08-10 22:56:29 +00001685 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman1e93df62010-04-17 14:41:14 +00001686 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001687 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner6229d0a2010-09-21 18:41:36 +00001688 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
1689 MachinePointerInfo(SV),
David Greene534502d12010-02-15 16:56:53 +00001690 false, false, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001691 }
1692
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001693 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray01119992007-04-03 13:59:52 +00001694 // We suppose the given va_list is already allocated.
1695 //
1696 // typedef struct {
1697 // char gpr; /* index into the array of 8 GPRs
1698 // * stored in the register save area
1699 // * gpr=0 corresponds to r3,
1700 // * gpr=1 to r4, etc.
1701 // */
1702 // char fpr; /* index into the array of 8 FPRs
1703 // * stored in the register save area
1704 // * fpr=0 corresponds to f1,
1705 // * fpr=1 to f2, etc.
1706 // */
1707 // char *overflow_arg_area;
1708 // /* location on stack that holds
1709 // * the next overflow argument
1710 // */
1711 // char *reg_save_area;
1712 // /* where r3:r10 and f1:f8 (if saved)
1713 // * are stored
1714 // */
1715 // } va_list[1];
1716
1717
Dan Gohman1e93df62010-04-17 14:41:14 +00001718 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
1719 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00001720
Nicolas Geoffray01119992007-04-03 13:59:52 +00001721
Owen Andersone50ed302009-08-10 22:56:29 +00001722 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00001723
Dan Gohman1e93df62010-04-17 14:41:14 +00001724 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
1725 PtrVT);
1726 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
1727 PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001728
Duncan Sands83ec4b62008-06-06 12:08:01 +00001729 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman475871a2008-07-27 21:46:04 +00001730 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001731
Duncan Sands83ec4b62008-06-06 12:08:01 +00001732 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001733 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001734
1735 uint64_t FPROffset = 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001736 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001737
Dan Gohman69de1932008-02-06 22:27:42 +00001738 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001739
Nicolas Geoffray01119992007-04-03 13:59:52 +00001740 // Store first byte : number of int regs
Tilmann Schellerffd02002009-07-03 06:45:56 +00001741 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001742 Op.getOperand(1),
1743 MachinePointerInfo(SV),
1744 MVT::i8, false, false, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001745 uint64_t nextOffset = FPROffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001746 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray01119992007-04-03 13:59:52 +00001747 ConstFPROffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001748
Nicolas Geoffray01119992007-04-03 13:59:52 +00001749 // Store second byte : number of float regs
Dan Gohman475871a2008-07-27 21:46:04 +00001750 SDValue secondStore =
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001751 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
1752 MachinePointerInfo(SV, nextOffset), MVT::i8,
David Greene534502d12010-02-15 16:56:53 +00001753 false, false, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001754 nextOffset += StackOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001755 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001756
Nicolas Geoffray01119992007-04-03 13:59:52 +00001757 // Store second word : arguments given on stack
Dan Gohman475871a2008-07-27 21:46:04 +00001758 SDValue thirdStore =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001759 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
1760 MachinePointerInfo(SV, nextOffset),
David Greene534502d12010-02-15 16:56:53 +00001761 false, false, 0);
Dan Gohman69de1932008-02-06 22:27:42 +00001762 nextOffset += FrameOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001763 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001764
1765 // Store third word : arguments given in registers
Chris Lattner6229d0a2010-09-21 18:41:36 +00001766 return DAG.getStore(thirdStore, dl, FR, nextPtr,
1767 MachinePointerInfo(SV, nextOffset),
David Greene534502d12010-02-15 16:56:53 +00001768 false, false, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001769
Chris Lattner1a635d62006-04-14 06:01:58 +00001770}
1771
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00001772#include "PPCGenCallingConv.inc"
1773
Bill Schmidt212af6a2013-02-06 17:33:58 +00001774static bool CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
1775 CCValAssign::LocInfo &LocInfo,
1776 ISD::ArgFlagsTy &ArgFlags,
1777 CCState &State) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001778 return true;
1779}
1780
Bill Schmidt212af6a2013-02-06 17:33:58 +00001781static bool CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
1782 MVT &LocVT,
1783 CCValAssign::LocInfo &LocInfo,
1784 ISD::ArgFlagsTy &ArgFlags,
1785 CCState &State) {
Craig Topperc5eaae42012-03-11 07:57:25 +00001786 static const uint16_t ArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001787 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1788 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1789 };
1790 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001791
Tilmann Schellerffd02002009-07-03 06:45:56 +00001792 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1793
1794 // Skip one register if the first unallocated register has an even register
1795 // number and there are still argument registers available which have not been
1796 // allocated yet. RegNum is actually an index into ArgRegs, which means we
1797 // need to skip a register if RegNum is odd.
1798 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
1799 State.AllocateReg(ArgRegs[RegNum]);
1800 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001801
Tilmann Schellerffd02002009-07-03 06:45:56 +00001802 // Always return false here, as this function only makes sure that the first
1803 // unallocated register has an odd register number and does not actually
1804 // allocate a register for the current argument.
1805 return false;
1806}
1807
Bill Schmidt212af6a2013-02-06 17:33:58 +00001808static bool CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
1809 MVT &LocVT,
1810 CCValAssign::LocInfo &LocInfo,
1811 ISD::ArgFlagsTy &ArgFlags,
1812 CCState &State) {
Craig Topperc5eaae42012-03-11 07:57:25 +00001813 static const uint16_t ArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001814 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1815 PPC::F8
1816 };
1817
1818 const unsigned NumArgRegs = array_lengthof(ArgRegs);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001819
Tilmann Schellerffd02002009-07-03 06:45:56 +00001820 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1821
1822 // If there is only one Floating-point register left we need to put both f64
1823 // values of a split ppc_fp128 value on the stack.
1824 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
1825 State.AllocateReg(ArgRegs[RegNum]);
1826 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001827
Tilmann Schellerffd02002009-07-03 06:45:56 +00001828 // Always return false here, as this function only makes sure that the two f64
1829 // values a ppc_fp128 value is split into are both passed in registers or both
1830 // passed on the stack and does not actually allocate a register for the
1831 // current argument.
1832 return false;
1833}
1834
Chris Lattner9f0bc652007-02-25 05:34:32 +00001835/// GetFPR - Get the set of FP registers that should be allocated for arguments,
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001836/// on Darwin.
Craig Topperb78ca422012-03-11 07:16:55 +00001837static const uint16_t *GetFPR() {
1838 static const uint16_t FPR[] = {
Chris Lattner9f0bc652007-02-25 05:34:32 +00001839 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001840 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
Chris Lattner9f0bc652007-02-25 05:34:32 +00001841 };
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001842
Chris Lattner9f0bc652007-02-25 05:34:32 +00001843 return FPR;
1844}
1845
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001846/// CalculateStackSlotSize - Calculates the size reserved for this argument on
1847/// the stack.
Owen Andersone50ed302009-08-10 22:56:29 +00001848static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001849 unsigned PtrByteSize) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001850 unsigned ArgSize = ArgVT.getSizeInBits()/8;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001851 if (Flags.isByVal())
1852 ArgSize = Flags.getByValSize();
1853 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1854
1855 return ArgSize;
1856}
1857
Dan Gohman475871a2008-07-27 21:46:04 +00001858SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001859PPCTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001860 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001861 const SmallVectorImpl<ISD::InputArg>
1862 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001863 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001864 SmallVectorImpl<SDValue> &InVals)
1865 const {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00001866 if (PPCSubTarget.isSVR4ABI()) {
1867 if (PPCSubTarget.isPPC64())
1868 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
1869 dl, DAG, InVals);
1870 else
1871 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
1872 dl, DAG, InVals);
Bill Schmidt419f3762012-09-19 15:42:13 +00001873 } else {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00001874 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
1875 dl, DAG, InVals);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001876 }
1877}
1878
1879SDValue
Bill Schmidt419f3762012-09-19 15:42:13 +00001880PPCTargetLowering::LowerFormalArguments_32SVR4(
Dan Gohman98ca4f22009-08-05 01:29:28 +00001881 SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001882 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001883 const SmallVectorImpl<ISD::InputArg>
1884 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001885 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001886 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001887
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00001888 // 32-bit SVR4 ABI Stack Frame Layout:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001889 // +-----------------------------------+
1890 // +--> | Back chain |
1891 // | +-----------------------------------+
1892 // | | Floating-point register save area |
1893 // | +-----------------------------------+
1894 // | | General register save area |
1895 // | +-----------------------------------+
1896 // | | CR save word |
1897 // | +-----------------------------------+
1898 // | | VRSAVE save word |
1899 // | +-----------------------------------+
1900 // | | Alignment padding |
1901 // | +-----------------------------------+
1902 // | | Vector register save area |
1903 // | +-----------------------------------+
1904 // | | Local variable space |
1905 // | +-----------------------------------+
1906 // | | Parameter list area |
1907 // | +-----------------------------------+
1908 // | | LR save word |
1909 // | +-----------------------------------+
1910 // SP--> +--- | Back chain |
1911 // +-----------------------------------+
1912 //
1913 // Specifications:
1914 // System V Application Binary Interface PowerPC Processor Supplement
1915 // AltiVec Technology Programming Interface Manual
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001916
Tilmann Schellerffd02002009-07-03 06:45:56 +00001917 MachineFunction &MF = DAG.getMachineFunction();
1918 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman1e93df62010-04-17 14:41:14 +00001919 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001920
Owen Andersone50ed302009-08-10 22:56:29 +00001921 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001922 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001923 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
1924 (CallConv == CallingConv::Fast));
Tilmann Schellerffd02002009-07-03 06:45:56 +00001925 unsigned PtrByteSize = 4;
1926
1927 // Assign locations to all of the incoming arguments.
1928 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001929 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00001930 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001931
1932 // Reserve space for the linkage area on the stack.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001933 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001934
Bill Schmidt212af6a2013-02-06 17:33:58 +00001935 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001936
Tilmann Schellerffd02002009-07-03 06:45:56 +00001937 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1938 CCValAssign &VA = ArgLocs[i];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001939
Tilmann Schellerffd02002009-07-03 06:45:56 +00001940 // Arguments stored in registers.
1941 if (VA.isRegLoc()) {
Craig Topper44d23822012-02-22 05:59:10 +00001942 const TargetRegisterClass *RC;
Owen Andersone50ed302009-08-10 22:56:29 +00001943 EVT ValVT = VA.getValVT();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001944
Owen Anderson825b72b2009-08-11 20:47:22 +00001945 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001946 default:
Dan Gohman98ca4f22009-08-05 01:29:28 +00001947 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Owen Anderson825b72b2009-08-11 20:47:22 +00001948 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +00001949 RC = &PPC::GPRCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001950 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001951 case MVT::f32:
Craig Topperc9099502012-04-20 06:31:50 +00001952 RC = &PPC::F4RCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001953 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001954 case MVT::f64:
Craig Topperc9099502012-04-20 06:31:50 +00001955 RC = &PPC::F8RCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001956 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001957 case MVT::v16i8:
1958 case MVT::v8i16:
1959 case MVT::v4i32:
1960 case MVT::v4f32:
Craig Topperc9099502012-04-20 06:31:50 +00001961 RC = &PPC::VRRCRegClass;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001962 break;
1963 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001964
Tilmann Schellerffd02002009-07-03 06:45:56 +00001965 // Transform the arguments stored in physical registers into virtual ones.
Devang Patel68e6bee2011-02-21 23:21:26 +00001966 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001967 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, ValVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001968
Dan Gohman98ca4f22009-08-05 01:29:28 +00001969 InVals.push_back(ArgValue);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001970 } else {
1971 // Argument stored in memory.
1972 assert(VA.isMemLoc());
1973
1974 unsigned ArgSize = VA.getLocVT().getSizeInBits() / 8;
1975 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
Evan Chenged2ae132010-07-03 00:40:23 +00001976 isImmutable);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001977
1978 // Create load nodes to retrieve arguments from the stack.
1979 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00001980 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
1981 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001982 false, false, false, 0));
Tilmann Schellerffd02002009-07-03 06:45:56 +00001983 }
1984 }
1985
1986 // Assign locations to all of the incoming aggregate by value arguments.
1987 // Aggregates passed by value are stored in the local variable space of the
1988 // caller's stack frame, right above the parameter list area.
1989 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001990 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00001991 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001992
1993 // Reserve stack space for the allocations in CCInfo.
1994 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
1995
Bill Schmidt212af6a2013-02-06 17:33:58 +00001996 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001997
1998 // Area that is at least reserved in the caller of this function.
1999 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002000
Tilmann Schellerffd02002009-07-03 06:45:56 +00002001 // Set the size that is at least reserved in caller of this function. Tail
2002 // call optimized function's reserved stack space needs to be aligned so that
2003 // taking the difference between two stack areas will result in an aligned
2004 // stack.
2005 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2006
2007 MinReservedArea =
2008 std::max(MinReservedArea,
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002009 PPCFrameLowering::getMinCallFrameSize(false, false));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002010
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002011 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameLowering()->
Tilmann Schellerffd02002009-07-03 06:45:56 +00002012 getStackAlignment();
2013 unsigned AlignMask = TargetAlign-1;
2014 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002015
Tilmann Schellerffd02002009-07-03 06:45:56 +00002016 FI->setMinReservedArea(MinReservedArea);
2017
2018 SmallVector<SDValue, 8> MemOps;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002019
Tilmann Schellerffd02002009-07-03 06:45:56 +00002020 // If the function takes variable number of arguments, make a frame index for
2021 // the start of the first vararg value... for expansion of llvm.va_start.
2022 if (isVarArg) {
Craig Topperc5eaae42012-03-11 07:57:25 +00002023 static const uint16_t GPArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002024 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2025 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2026 };
2027 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2028
Craig Topperc5eaae42012-03-11 07:57:25 +00002029 static const uint16_t FPArgRegs[] = {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002030 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2031 PPC::F8
2032 };
2033 const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2034
Dan Gohman1e93df62010-04-17 14:41:14 +00002035 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2036 NumGPArgRegs));
2037 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2038 NumFPArgRegs));
Tilmann Schellerffd02002009-07-03 06:45:56 +00002039
2040 // Make room for NumGPArgRegs and NumFPArgRegs.
2041 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Owen Anderson825b72b2009-08-11 20:47:22 +00002042 NumFPArgRegs * EVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002043
Dan Gohman1e93df62010-04-17 14:41:14 +00002044 FuncInfo->setVarArgsStackOffset(
2045 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002046 CCInfo.getNextStackOffset(), true));
Tilmann Schellerffd02002009-07-03 06:45:56 +00002047
Dan Gohman1e93df62010-04-17 14:41:14 +00002048 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2049 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002050
Jakob Stoklund Olesen4f9af2e2010-10-11 20:43:09 +00002051 // The fixed integer arguments of a variadic function are stored to the
2052 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2053 // the result of va_next.
2054 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2055 // Get an existing live-in vreg, or add a new one.
2056 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2057 if (!VReg)
Devang Patel68e6bee2011-02-21 23:21:26 +00002058 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002059
Dan Gohman98ca4f22009-08-05 01:29:28 +00002060 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner6229d0a2010-09-21 18:41:36 +00002061 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2062 MachinePointerInfo(), false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002063 MemOps.push_back(Store);
2064 // Increment the address by four for the next argument to store
2065 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2066 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2067 }
2068
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00002069 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2070 // is set.
Tilmann Schellerffd02002009-07-03 06:45:56 +00002071 // The double arguments are stored to the VarArgsFrameIndex
2072 // on the stack.
Jakob Stoklund Olesen4f9af2e2010-10-11 20:43:09 +00002073 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2074 // Get an existing live-in vreg, or add a new one.
2075 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2076 if (!VReg)
Devang Patel68e6bee2011-02-21 23:21:26 +00002077 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002078
Owen Anderson825b72b2009-08-11 20:47:22 +00002079 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Chris Lattner6229d0a2010-09-21 18:41:36 +00002080 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2081 MachinePointerInfo(), false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002082 MemOps.push_back(Store);
2083 // Increment the address by eight for the next argument to store
Owen Anderson825b72b2009-08-11 20:47:22 +00002084 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerffd02002009-07-03 06:45:56 +00002085 PtrVT);
2086 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2087 }
2088 }
2089
2090 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00002091 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00002092 MVT::Other, &MemOps[0], MemOps.size());
Tilmann Schellerffd02002009-07-03 06:45:56 +00002093
Dan Gohman98ca4f22009-08-05 01:29:28 +00002094 return Chain;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002095}
2096
Bill Schmidt726c2372012-10-23 15:51:16 +00002097// PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2098// value to MVT::i64 and then truncate to the correct register size.
2099SDValue
2100PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2101 SelectionDAG &DAG, SDValue ArgVal,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002102 SDLoc dl) const {
Bill Schmidt726c2372012-10-23 15:51:16 +00002103 if (Flags.isSExt())
2104 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2105 DAG.getValueType(ObjectVT));
2106 else if (Flags.isZExt())
2107 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2108 DAG.getValueType(ObjectVT));
Matt Arsenault225ed702013-05-18 00:21:46 +00002109
Bill Schmidt726c2372012-10-23 15:51:16 +00002110 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2111}
2112
2113// Set the size that is at least reserved in caller of this function. Tail
2114// call optimized functions' reserved stack space needs to be aligned so that
2115// taking the difference between two stack areas will result in an aligned
2116// stack.
2117void
2118PPCTargetLowering::setMinReservedArea(MachineFunction &MF, SelectionDAG &DAG,
2119 unsigned nAltivecParamsAtEnd,
2120 unsigned MinReservedArea,
2121 bool isPPC64) const {
2122 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2123 // Add the Altivec parameters at the end, if needed.
2124 if (nAltivecParamsAtEnd) {
2125 MinReservedArea = ((MinReservedArea+15)/16)*16;
2126 MinReservedArea += 16*nAltivecParamsAtEnd;
2127 }
2128 MinReservedArea =
2129 std::max(MinReservedArea,
2130 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
2131 unsigned TargetAlign
2132 = DAG.getMachineFunction().getTarget().getFrameLowering()->
2133 getStackAlignment();
2134 unsigned AlignMask = TargetAlign-1;
2135 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
2136 FI->setMinReservedArea(MinReservedArea);
2137}
2138
Tilmann Schellerffd02002009-07-03 06:45:56 +00002139SDValue
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002140PPCTargetLowering::LowerFormalArguments_64SVR4(
2141 SDValue Chain,
2142 CallingConv::ID CallConv, bool isVarArg,
2143 const SmallVectorImpl<ISD::InputArg>
2144 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002145 SDLoc dl, SelectionDAG &DAG,
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002146 SmallVectorImpl<SDValue> &InVals) const {
2147 // TODO: add description of PPC stack frame format, or at least some docs.
2148 //
2149 MachineFunction &MF = DAG.getMachineFunction();
2150 MachineFrameInfo *MFI = MF.getFrameInfo();
2151 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2152
2153 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2154 // Potential tail calls could cause overwriting of argument stack slots.
2155 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2156 (CallConv == CallingConv::Fast));
2157 unsigned PtrByteSize = 8;
2158
2159 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
2160 // Area that is at least reserved in caller of this function.
2161 unsigned MinReservedArea = ArgOffset;
2162
2163 static const uint16_t GPR[] = {
2164 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2165 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2166 };
2167
2168 static const uint16_t *FPR = GetFPR();
2169
2170 static const uint16_t VR[] = {
2171 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2172 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2173 };
2174
2175 const unsigned Num_GPR_Regs = array_lengthof(GPR);
2176 const unsigned Num_FPR_Regs = 13;
2177 const unsigned Num_VR_Regs = array_lengthof(VR);
2178
2179 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
2180
2181 // Add DAG nodes to load the arguments or copy them out of registers. On
2182 // entry to a function on PPC, the arguments start after the linkage area,
2183 // although the first ones are often in registers.
2184
2185 SmallVector<SDValue, 8> MemOps;
2186 unsigned nAltivecParamsAtEnd = 0;
2187 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidt49deebb2013-02-20 17:31:41 +00002188 unsigned CurArgIdx = 0;
2189 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002190 SDValue ArgVal;
2191 bool needsLoad = false;
2192 EVT ObjectVT = Ins[ArgNo].VT;
2193 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
2194 unsigned ArgSize = ObjSize;
2195 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidt49deebb2013-02-20 17:31:41 +00002196 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2197 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002198
2199 unsigned CurArgOffset = ArgOffset;
2200
2201 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
2202 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2203 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
2204 if (isVarArg) {
2205 MinReservedArea = ((MinReservedArea+15)/16)*16;
2206 MinReservedArea += CalculateStackSlotSize(ObjectVT,
2207 Flags,
2208 PtrByteSize);
2209 } else
2210 nAltivecParamsAtEnd++;
2211 } else
2212 // Calculate min reserved area.
2213 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
2214 Flags,
2215 PtrByteSize);
2216
2217 // FIXME the codegen can be much improved in some cases.
2218 // We do not have to keep everything in memory.
2219 if (Flags.isByVal()) {
2220 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2221 ObjSize = Flags.getByValSize();
2222 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidt42d43352012-10-31 01:15:05 +00002223 // Empty aggregate parameters do not take up registers. Examples:
2224 // struct { } a;
2225 // union { } b;
2226 // int c[0];
2227 // etc. However, we have to provide a place-holder in InVals, so
2228 // pretend we have an 8-byte item at the current address for that
2229 // purpose.
2230 if (!ObjSize) {
2231 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2232 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2233 InVals.push_back(FIN);
2234 continue;
2235 }
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002236 // All aggregates smaller than 8 bytes must be passed right-justified.
Bill Schmidt7a6cb152012-10-16 13:30:53 +00002237 if (ObjSize < PtrByteSize)
2238 CurArgOffset = CurArgOffset + (PtrByteSize - ObjSize);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002239 // The value of the object is its address.
2240 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
2241 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2242 InVals.push_back(FIN);
Bill Schmidt37900c52012-10-25 13:38:09 +00002243
2244 if (ObjSize < 8) {
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002245 if (GPR_idx != Num_GPR_Regs) {
Bill Schmidt37900c52012-10-25 13:38:09 +00002246 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002247 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt37900c52012-10-25 13:38:09 +00002248 SDValue Store;
2249
2250 if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2251 EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2252 (ObjSize == 2 ? MVT::i16 : MVT::i32));
2253 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
2254 MachinePointerInfo(FuncArg, CurArgOffset),
2255 ObjType, false, false, 0);
2256 } else {
2257 // For sizes that don't fit a truncating store (3, 5, 6, 7),
2258 // store the whole register as-is to the parameter save area
2259 // slot. The address of the parameter was already calculated
2260 // above (InVals.push_back(FIN)) to be the right-justified
2261 // offset within the slot. For this store, we need a new
2262 // frame index that points at the beginning of the slot.
2263 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2264 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2265 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2266 MachinePointerInfo(FuncArg, ArgOffset),
2267 false, false, 0);
2268 }
2269
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002270 MemOps.push_back(Store);
2271 ++GPR_idx;
2272 }
Bill Schmidt37900c52012-10-25 13:38:09 +00002273 // Whether we copied from a register or not, advance the offset
2274 // into the parameter save area by a full doubleword.
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002275 ArgOffset += PtrByteSize;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002276 continue;
2277 }
Bill Schmidt37900c52012-10-25 13:38:09 +00002278
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002279 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2280 // Store whatever pieces of the object are in registers
2281 // to memory. ArgOffset will be the address of the beginning
2282 // of the object.
2283 if (GPR_idx != Num_GPR_Regs) {
2284 unsigned VReg;
2285 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2286 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2287 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2288 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt37900c52012-10-25 13:38:09 +00002289 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002290 MachinePointerInfo(FuncArg, ArgOffset),
2291 false, false, 0);
2292 MemOps.push_back(Store);
2293 ++GPR_idx;
2294 ArgOffset += PtrByteSize;
2295 } else {
Bill Schmidt7a6cb152012-10-16 13:30:53 +00002296 ArgOffset += ArgSize - j;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002297 break;
2298 }
2299 }
2300 continue;
2301 }
2302
2303 switch (ObjectVT.getSimpleVT().SimpleTy) {
2304 default: llvm_unreachable("Unhandled argument type!");
2305 case MVT::i32:
2306 case MVT::i64:
2307 if (GPR_idx != Num_GPR_Regs) {
2308 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2309 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2310
Bill Schmidt726c2372012-10-23 15:51:16 +00002311 if (ObjectVT == MVT::i32)
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002312 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2313 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt726c2372012-10-23 15:51:16 +00002314 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002315
2316 ++GPR_idx;
2317 } else {
2318 needsLoad = true;
2319 ArgSize = PtrByteSize;
2320 }
2321 ArgOffset += 8;
2322 break;
2323
2324 case MVT::f32:
2325 case MVT::f64:
2326 // Every 8 bytes of argument space consumes one of the GPRs available for
2327 // argument passing.
2328 if (GPR_idx != Num_GPR_Regs) {
2329 ++GPR_idx;
2330 }
2331 if (FPR_idx != Num_FPR_Regs) {
2332 unsigned VReg;
2333
2334 if (ObjectVT == MVT::f32)
2335 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2336 else
2337 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
2338
2339 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2340 ++FPR_idx;
2341 } else {
2342 needsLoad = true;
Bill Schmidta867f372012-10-11 15:38:20 +00002343 ArgSize = PtrByteSize;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002344 }
2345
2346 ArgOffset += 8;
2347 break;
2348 case MVT::v4f32:
2349 case MVT::v4i32:
2350 case MVT::v8i16:
2351 case MVT::v16i8:
2352 // Note that vector arguments in registers don't reserve stack space,
2353 // except in varargs functions.
2354 if (VR_idx != Num_VR_Regs) {
2355 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
2356 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2357 if (isVarArg) {
2358 while ((ArgOffset % 16) != 0) {
2359 ArgOffset += PtrByteSize;
2360 if (GPR_idx != Num_GPR_Regs)
2361 GPR_idx++;
2362 }
2363 ArgOffset += 16;
2364 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
2365 }
2366 ++VR_idx;
2367 } else {
2368 // Vectors are aligned.
2369 ArgOffset = ((ArgOffset+15)/16)*16;
2370 CurArgOffset = ArgOffset;
2371 ArgOffset += 16;
2372 needsLoad = true;
2373 }
2374 break;
2375 }
2376
2377 // We need to load the argument to a virtual register if we determined
2378 // above that we ran out of physical registers of the appropriate type.
2379 if (needsLoad) {
2380 int FI = MFI->CreateFixedObject(ObjSize,
2381 CurArgOffset + (ArgSize - ObjSize),
2382 isImmutable);
2383 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2384 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2385 false, false, false, 0);
2386 }
2387
2388 InVals.push_back(ArgVal);
2389 }
2390
2391 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt726c2372012-10-23 15:51:16 +00002392 // call optimized functions' reserved stack space needs to be aligned so that
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002393 // taking the difference between two stack areas will result in an aligned
2394 // stack.
Bill Schmidt726c2372012-10-23 15:51:16 +00002395 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, true);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002396
2397 // If the function takes variable number of arguments, make a frame index for
2398 // the start of the first vararg value... for expansion of llvm.va_start.
2399 if (isVarArg) {
2400 int Depth = ArgOffset;
2401
2402 FuncInfo->setVarArgsFrameIndex(
Bill Schmidt726c2372012-10-23 15:51:16 +00002403 MFI->CreateFixedObject(PtrByteSize, Depth, true));
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002404 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2405
2406 // If this function is vararg, store any remaining integer argument regs
2407 // to their spots on the stack so that they may be loaded by deferencing the
2408 // result of va_next.
2409 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
2410 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2411 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2412 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2413 MachinePointerInfo(), false, false, 0);
2414 MemOps.push_back(Store);
2415 // Increment the address by four for the next argument to store
Bill Schmidt726c2372012-10-23 15:51:16 +00002416 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002417 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2418 }
2419 }
2420
2421 if (!MemOps.empty())
2422 Chain = DAG.getNode(ISD::TokenFactor, dl,
2423 MVT::Other, &MemOps[0], MemOps.size());
2424
2425 return Chain;
2426}
2427
2428SDValue
2429PPCTargetLowering::LowerFormalArguments_Darwin(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002430 SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002431 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002432 const SmallVectorImpl<ISD::InputArg>
2433 &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002434 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002435 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002436 // TODO: add description of PPC stack frame format, or at least some docs.
2437 //
2438 MachineFunction &MF = DAG.getMachineFunction();
2439 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman1e93df62010-04-17 14:41:14 +00002440 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002441
Owen Andersone50ed302009-08-10 22:56:29 +00002442 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00002443 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002444 // Potential tail calls could cause overwriting of argument stack slots.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002445 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2446 (CallConv == CallingConv::Fast));
Jim Laskeye9bd7b22006-11-28 14:53:52 +00002447 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey2f616bf2006-11-16 22:43:37 +00002448
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002449 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002450 // Area that is at least reserved in caller of this function.
2451 unsigned MinReservedArea = ArgOffset;
2452
Craig Topperb78ca422012-03-11 07:16:55 +00002453 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002454 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2455 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2456 };
Craig Topperb78ca422012-03-11 07:16:55 +00002457 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerc91a4752006-06-26 22:48:35 +00002458 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2459 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2460 };
Scott Michelfdc40a02009-02-17 22:15:04 +00002461
Craig Topperb78ca422012-03-11 07:16:55 +00002462 static const uint16_t *FPR = GetFPR();
Scott Michelfdc40a02009-02-17 22:15:04 +00002463
Craig Topperb78ca422012-03-11 07:16:55 +00002464 static const uint16_t VR[] = {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002465 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2466 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2467 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00002468
Owen Anderson718cb662007-09-07 04:06:50 +00002469 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002470 const unsigned Num_FPR_Regs = 13;
Owen Anderson718cb662007-09-07 04:06:50 +00002471 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey2f616bf2006-11-16 22:43:37 +00002472
2473 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002474
Craig Topperb78ca422012-03-11 07:16:55 +00002475 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelfdc40a02009-02-17 22:15:04 +00002476
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002477 // In 32-bit non-varargs functions, the stack space for vectors is after the
2478 // stack space for non-vectors. We do not use this space unless we have
2479 // too many vectors to fit in registers, something that only occurs in
Scott Michelfdc40a02009-02-17 22:15:04 +00002480 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002481 // that out...for the pathological case, compute VecArgOffset as the
2482 // start of the vector parameter area. Computing VecArgOffset is the
2483 // entire point of the following loop.
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002484 unsigned VecArgOffset = ArgOffset;
2485 if (!isVarArg && !isPPC64) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002486 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002487 ++ArgNo) {
Owen Andersone50ed302009-08-10 22:56:29 +00002488 EVT ObjectVT = Ins[ArgNo].VT;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002489 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002490
Duncan Sands276dcbd2008-03-21 09:14:45 +00002491 if (Flags.isByVal()) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002492 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Benjamin Kramer263109d2012-01-20 14:42:32 +00002493 unsigned ObjSize = Flags.getByValSize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002494 unsigned ArgSize =
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002495 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2496 VecArgOffset += ArgSize;
2497 continue;
2498 }
2499
Owen Anderson825b72b2009-08-11 20:47:22 +00002500 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002501 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002502 case MVT::i32:
2503 case MVT::f32:
Bill Schmidt419f3762012-09-19 15:42:13 +00002504 VecArgOffset += 4;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002505 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002506 case MVT::i64: // PPC64
2507 case MVT::f64:
Bill Schmidt419f3762012-09-19 15:42:13 +00002508 // FIXME: We are guaranteed to be !isPPC64 at this point.
2509 // Does MVT::i64 apply?
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002510 VecArgOffset += 8;
2511 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002512 case MVT::v4f32:
2513 case MVT::v4i32:
2514 case MVT::v8i16:
2515 case MVT::v16i8:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002516 // Nothing to do, we're only looking at Nonvector args here.
2517 break;
2518 }
2519 }
2520 }
2521 // We've found where the vector parameter area in memory is. Skip the
2522 // first 12 parameters; these don't use that memory.
2523 VecArgOffset = ((VecArgOffset+15)/16)*16;
2524 VecArgOffset += 12*16;
2525
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002526 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey2f616bf2006-11-16 22:43:37 +00002527 // entry to a function on PPC, the arguments start after the linkage area,
2528 // although the first ones are often in registers.
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00002529
Dan Gohman475871a2008-07-27 21:46:04 +00002530 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002531 unsigned nAltivecParamsAtEnd = 0;
Roman Divacky5236ab32012-09-24 20:47:19 +00002532 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
Bill Schmidta7f2ce82013-05-08 17:22:33 +00002533 unsigned CurArgIdx = 0;
2534 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00002535 SDValue ArgVal;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002536 bool needsLoad = false;
Owen Andersone50ed302009-08-10 22:56:29 +00002537 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002538 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey619965d2006-11-29 13:37:09 +00002539 unsigned ArgSize = ObjSize;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002540 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Bill Schmidta7f2ce82013-05-08 17:22:33 +00002541 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2542 CurArgIdx = Ins[ArgNo].OrigArgIndex;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002543
Chris Lattnerbe4849a2006-05-16 18:51:52 +00002544 unsigned CurArgOffset = ArgOffset;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002545
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002546 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00002547 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
2548 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002549 if (isVarArg || isPPC64) {
2550 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002551 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohman095cc292008-09-13 01:54:27 +00002552 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002553 PtrByteSize);
2554 } else nAltivecParamsAtEnd++;
2555 } else
2556 // Calculate min reserved area.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002557 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohman095cc292008-09-13 01:54:27 +00002558 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002559 PtrByteSize);
2560
Dale Johannesen8419dd62008-03-07 20:27:40 +00002561 // FIXME the codegen can be much improved in some cases.
2562 // We do not have to keep everything in memory.
Duncan Sands276dcbd2008-03-21 09:14:45 +00002563 if (Flags.isByVal()) {
Dale Johannesen8419dd62008-03-07 20:27:40 +00002564 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sands276dcbd2008-03-21 09:14:45 +00002565 ObjSize = Flags.getByValSize();
Dale Johannesen8419dd62008-03-07 20:27:40 +00002566 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002567 // Objects of size 1 and 2 are right justified, everything else is
2568 // left justified. This means the memory address is adjusted forwards.
Dale Johannesen7f96f392008-03-08 01:41:42 +00002569 if (ObjSize==1 || ObjSize==2) {
2570 CurArgOffset = CurArgOffset + (4 - ObjSize);
2571 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002572 // The value of the object is its address.
Evan Chenged2ae132010-07-03 00:40:23 +00002573 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, true);
Dan Gohman475871a2008-07-27 21:46:04 +00002574 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002575 InVals.push_back(FIN);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002576 if (ObjSize==1 || ObjSize==2) {
Dale Johannesen7f96f392008-03-08 01:41:42 +00002577 if (GPR_idx != Num_GPR_Regs) {
Roman Divacky951cd022011-06-17 15:21:10 +00002578 unsigned VReg;
2579 if (isPPC64)
2580 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2581 else
2582 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002583 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidt726c2372012-10-23 15:51:16 +00002584 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
Scott Michelfdc40a02009-02-17 22:15:04 +00002585 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Roman Divacky5236ab32012-09-24 20:47:19 +00002586 MachinePointerInfo(FuncArg,
2587 CurArgOffset),
Bill Schmidt419f3762012-09-19 15:42:13 +00002588 ObjType, false, false, 0);
Dale Johannesen7f96f392008-03-08 01:41:42 +00002589 MemOps.push_back(Store);
2590 ++GPR_idx;
Dale Johannesen7f96f392008-03-08 01:41:42 +00002591 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002592
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002593 ArgOffset += PtrByteSize;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002594
Dale Johannesen7f96f392008-03-08 01:41:42 +00002595 continue;
2596 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002597 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2598 // Store whatever pieces of the object are in registers
Bill Schmidt419f3762012-09-19 15:42:13 +00002599 // to memory. ArgOffset will be the address of the beginning
2600 // of the object.
Dale Johannesen8419dd62008-03-07 20:27:40 +00002601 if (GPR_idx != Num_GPR_Regs) {
Roman Divacky951cd022011-06-17 15:21:10 +00002602 unsigned VReg;
2603 if (isPPC64)
2604 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2605 else
2606 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Evan Chenged2ae132010-07-03 00:40:23 +00002607 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
Dan Gohman475871a2008-07-27 21:46:04 +00002608 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002609 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Bill Schmidtb2544ec2012-10-05 21:27:08 +00002610 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
Roman Divacky5236ab32012-09-24 20:47:19 +00002611 MachinePointerInfo(FuncArg, ArgOffset),
David Greene534502d12010-02-15 16:56:53 +00002612 false, false, 0);
Dale Johannesen8419dd62008-03-07 20:27:40 +00002613 MemOps.push_back(Store);
2614 ++GPR_idx;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002615 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002616 } else {
2617 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
2618 break;
2619 }
2620 }
2621 continue;
2622 }
2623
Owen Anderson825b72b2009-08-11 20:47:22 +00002624 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002625 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002626 case MVT::i32:
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002627 if (!isPPC64) {
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002628 if (GPR_idx != Num_GPR_Regs) {
Devang Patel68e6bee2011-02-21 23:21:26 +00002629 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002630 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002631 ++GPR_idx;
2632 } else {
2633 needsLoad = true;
2634 ArgSize = PtrByteSize;
2635 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002636 // All int arguments reserve stack space in the Darwin ABI.
2637 ArgOffset += PtrByteSize;
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002638 break;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002639 }
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002640 // FALLTHROUGH
Owen Anderson825b72b2009-08-11 20:47:22 +00002641 case MVT::i64: // PPC64
Chris Lattnerc91a4752006-06-26 22:48:35 +00002642 if (GPR_idx != Num_GPR_Regs) {
Devang Patel68e6bee2011-02-21 23:21:26 +00002643 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002644 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002645
Bill Schmidt726c2372012-10-23 15:51:16 +00002646 if (ObjectVT == MVT::i32)
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002647 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson825b72b2009-08-11 20:47:22 +00002648 // value to MVT::i64 and then truncate to the correct register size.
Bill Schmidt726c2372012-10-23 15:51:16 +00002649 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00002650
Chris Lattnerc91a4752006-06-26 22:48:35 +00002651 ++GPR_idx;
2652 } else {
2653 needsLoad = true;
Evan Cheng982a0592008-07-24 08:17:07 +00002654 ArgSize = PtrByteSize;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002655 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002656 // All int arguments reserve stack space in the Darwin ABI.
2657 ArgOffset += 8;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002658 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00002659
Owen Anderson825b72b2009-08-11 20:47:22 +00002660 case MVT::f32:
2661 case MVT::f64:
Chris Lattnerbe4849a2006-05-16 18:51:52 +00002662 // Every 4 bytes of argument space consumes one of the GPRs available for
2663 // argument passing.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002664 if (GPR_idx != Num_GPR_Regs) {
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002665 ++GPR_idx;
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002666 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002667 ++GPR_idx;
Chris Lattnerbe4849a2006-05-16 18:51:52 +00002668 }
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002669 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002670 unsigned VReg;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002671
Owen Anderson825b72b2009-08-11 20:47:22 +00002672 if (ObjectVT == MVT::f32)
Devang Patel68e6bee2011-02-21 23:21:26 +00002673 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002674 else
Devang Patel68e6bee2011-02-21 23:21:26 +00002675 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002676
Dan Gohman98ca4f22009-08-05 01:29:28 +00002677 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002678 ++FPR_idx;
2679 } else {
2680 needsLoad = true;
2681 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002682
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002683 // All FP arguments reserve stack space in the Darwin ABI.
2684 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002685 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002686 case MVT::v4f32:
2687 case MVT::v4i32:
2688 case MVT::v8i16:
2689 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00002690 // Note that vector arguments in registers don't reserve stack space,
2691 // except in varargs functions.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002692 if (VR_idx != Num_VR_Regs) {
Devang Patel68e6bee2011-02-21 23:21:26 +00002693 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002694 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesen75092de2008-03-12 00:22:17 +00002695 if (isVarArg) {
2696 while ((ArgOffset % 16) != 0) {
2697 ArgOffset += PtrByteSize;
2698 if (GPR_idx != Num_GPR_Regs)
2699 GPR_idx++;
2700 }
2701 ArgOffset += 16;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00002702 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
Dale Johannesen75092de2008-03-12 00:22:17 +00002703 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002704 ++VR_idx;
2705 } else {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00002706 if (!isVarArg && !isPPC64) {
2707 // Vectors go after all the nonvectors.
2708 CurArgOffset = VecArgOffset;
2709 VecArgOffset += 16;
2710 } else {
2711 // Vectors are aligned.
2712 ArgOffset = ((ArgOffset+15)/16)*16;
2713 CurArgOffset = ArgOffset;
2714 ArgOffset += 16;
Dale Johannesen404d9902008-03-12 00:49:20 +00002715 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002716 needsLoad = true;
2717 }
2718 break;
2719 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002720
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002721 // We need to load the argument to a virtual register if we determined above
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002722 // that we ran out of physical registers of the appropriate type.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002723 if (needsLoad) {
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002724 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002725 CurArgOffset + (ArgSize - ObjSize),
Evan Chenged2ae132010-07-03 00:40:23 +00002726 isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00002727 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002728 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002729 false, false, false, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002730 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002731
Dan Gohman98ca4f22009-08-05 01:29:28 +00002732 InVals.push_back(ArgVal);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002733 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002734
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002735 // Set the size that is at least reserved in caller of this function. Tail
Bill Schmidt726c2372012-10-23 15:51:16 +00002736 // call optimized functions' reserved stack space needs to be aligned so that
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002737 // taking the difference between two stack areas will result in an aligned
2738 // stack.
Bill Schmidt726c2372012-10-23 15:51:16 +00002739 setMinReservedArea(MF, DAG, nAltivecParamsAtEnd, MinReservedArea, isPPC64);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002740
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002741 // If the function takes variable number of arguments, make a frame index for
2742 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002743 if (isVarArg) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002744 int Depth = ArgOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00002745
Dan Gohman1e93df62010-04-17 14:41:14 +00002746 FuncInfo->setVarArgsFrameIndex(
2747 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002748 Depth, true));
Dan Gohman1e93df62010-04-17 14:41:14 +00002749 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002750
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002751 // If this function is vararg, store any remaining integer argument regs
2752 // to their spots on the stack so that they may be loaded by deferencing the
2753 // result of va_next.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002754 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002755 unsigned VReg;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002756
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002757 if (isPPC64)
Devang Patel68e6bee2011-02-21 23:21:26 +00002758 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002759 else
Devang Patel68e6bee2011-02-21 23:21:26 +00002760 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002761
Dan Gohman98ca4f22009-08-05 01:29:28 +00002762 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Chris Lattner6229d0a2010-09-21 18:41:36 +00002763 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2764 MachinePointerInfo(), false, false, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002765 MemOps.push_back(Store);
2766 // Increment the address by four for the next argument to store
Dan Gohman475871a2008-07-27 21:46:04 +00002767 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00002768 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002769 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002770 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002771
Dale Johannesen8419dd62008-03-07 20:27:40 +00002772 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00002773 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00002774 MVT::Other, &MemOps[0], MemOps.size());
Dale Johannesen8419dd62008-03-07 20:27:40 +00002775
Dan Gohman98ca4f22009-08-05 01:29:28 +00002776 return Chain;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002777}
2778
Bill Schmidt419f3762012-09-19 15:42:13 +00002779/// CalculateParameterAndLinkageAreaSize - Get the size of the parameter plus
2780/// linkage area for the Darwin ABI, or the 64-bit SVR4 ABI.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002781static unsigned
2782CalculateParameterAndLinkageAreaSize(SelectionDAG &DAG,
2783 bool isPPC64,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002784 bool isVarArg,
2785 unsigned CC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002786 const SmallVectorImpl<ISD::OutputArg>
2787 &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002788 const SmallVectorImpl<SDValue> &OutVals,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002789 unsigned &nAltivecParamsAtEnd) {
2790 // Count how many bytes are to be pushed on the stack, including the linkage
2791 // area, and parameter passing area. We start with 24/48 bytes, which is
2792 // prereserved space for [SP][CR][LR][3 x unused].
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002793 unsigned NumBytes = PPCFrameLowering::getLinkageSize(isPPC64, true);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002794 unsigned NumOps = Outs.size();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002795 unsigned PtrByteSize = isPPC64 ? 8 : 4;
2796
2797 // Add up all the space actually used.
2798 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
2799 // they all go in registers, but we must reserve stack space for them for
2800 // possible use by the caller. In varargs or 64-bit calls, parameters are
2801 // assigned stack space in order, with padding so Altivec parameters are
2802 // 16-byte aligned.
2803 nAltivecParamsAtEnd = 0;
2804 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002805 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohmanc9403652010-07-07 15:54:55 +00002806 EVT ArgVT = Outs[i].VT;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002807 // Varargs Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00002808 if (ArgVT==MVT::v4f32 || ArgVT==MVT::v4i32 ||
2809 ArgVT==MVT::v8i16 || ArgVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002810 if (!isVarArg && !isPPC64) {
2811 // Non-varargs Altivec parameters go after all the non-Altivec
2812 // parameters; handle those later so we know how much padding we need.
2813 nAltivecParamsAtEnd++;
2814 continue;
2815 }
2816 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
2817 NumBytes = ((NumBytes+15)/16)*16;
2818 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002819 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002820 }
2821
2822 // Allow for Altivec parameters at the end, if needed.
2823 if (nAltivecParamsAtEnd) {
2824 NumBytes = ((NumBytes+15)/16)*16;
2825 NumBytes += 16*nAltivecParamsAtEnd;
2826 }
2827
2828 // The prolog code of the callee may store up to 8 GPR argument registers to
2829 // the stack, allowing va_start to index over them in memory if its varargs.
2830 // Because we cannot tell if this is needed on the caller side, we have to
2831 // conservatively assume that it is needed. As such, make sure we have at
2832 // least enough stack space for the caller to store the 8 GPRs.
2833 NumBytes = std::max(NumBytes,
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002834 PPCFrameLowering::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002835
2836 // Tail call needs the stack to be aligned.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002837 if (CC == CallingConv::Fast && DAG.getTarget().Options.GuaranteedTailCallOpt){
2838 unsigned TargetAlign = DAG.getMachineFunction().getTarget().
2839 getFrameLowering()->getStackAlignment();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002840 unsigned AlignMask = TargetAlign-1;
2841 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2842 }
2843
2844 return NumBytes;
2845}
2846
2847/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002848/// adjusted to accommodate the arguments for the tailcall.
Dale Johannesenb60d5192009-11-24 01:09:07 +00002849static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002850 unsigned ParamSize) {
2851
Dale Johannesenb60d5192009-11-24 01:09:07 +00002852 if (!isTailCall) return 0;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002853
2854 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
2855 unsigned CallerMinReservedArea = FI->getMinReservedArea();
2856 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
2857 // Remember only if the new adjustement is bigger.
2858 if (SPDiff < FI->getTailCallSPDelta())
2859 FI->setTailCallSPDelta(SPDiff);
2860
2861 return SPDiff;
2862}
2863
Dan Gohman98ca4f22009-08-05 01:29:28 +00002864/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2865/// for tail call optimization. Targets which want to do tail call
2866/// optimization should implement this function.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002867bool
Dan Gohman98ca4f22009-08-05 01:29:28 +00002868PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002869 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002870 bool isVarArg,
2871 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002872 SelectionDAG& DAG) const {
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002873 if (!getTargetMachine().Options.GuaranteedTailCallOpt)
Evan Cheng6c2e8a92010-01-29 23:05:56 +00002874 return false;
2875
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002876 // Variable argument functions are not supported.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002877 if (isVarArg)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002878 return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002879
Dan Gohman98ca4f22009-08-05 01:29:28 +00002880 MachineFunction &MF = DAG.getMachineFunction();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002881 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002882 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
2883 // Functions containing by val parameters are not supported.
2884 for (unsigned i = 0; i != Ins.size(); i++) {
2885 ISD::ArgFlagsTy Flags = Ins[i].Flags;
2886 if (Flags.isByVal()) return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002887 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002888
2889 // Non PIC/GOT tail calls are supported.
2890 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
2891 return true;
2892
2893 // At the moment we can only do local tail calls (in same module, hidden
2894 // or protected) if we are generating PIC.
2895 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2896 return G->getGlobal()->hasHiddenVisibility()
2897 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002898 }
2899
2900 return false;
2901}
2902
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002903/// isCallCompatibleAddress - Return the immediate to use if the specified
2904/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman475871a2008-07-27 21:46:04 +00002905static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002906 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
2907 if (!C) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002908
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002909 int Addr = C->getZExtValue();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002910 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
Richard Smith1144af32012-08-24 23:29:28 +00002911 SignExtend32<26>(Addr) != Addr)
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002912 return 0; // Top 6 bits have to be sext of immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00002913
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002914 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greifba36cb52008-08-28 21:40:38 +00002915 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002916}
2917
Dan Gohman844731a2008-05-13 00:00:25 +00002918namespace {
2919
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002920struct TailCallArgumentInfo {
Dan Gohman475871a2008-07-27 21:46:04 +00002921 SDValue Arg;
2922 SDValue FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002923 int FrameIdx;
2924
2925 TailCallArgumentInfo() : FrameIdx(0) {}
2926};
2927
Dan Gohman844731a2008-05-13 00:00:25 +00002928}
2929
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002930/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
2931static void
2932StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Evan Chengff89dcb2009-10-18 18:16:27 +00002933 SDValue Chain,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002934 const SmallVector<TailCallArgumentInfo, 8> &TailCallArgs,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002935 SmallVector<SDValue, 8> &MemOpChains,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002936 SDLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002937 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002938 SDValue Arg = TailCallArgs[i].Arg;
2939 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002940 int FI = TailCallArgs[i].FrameIdx;
2941 // Store relative to framepointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00002942 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002943 MachinePointerInfo::getFixedStack(FI),
2944 false, false, 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002945 }
2946}
2947
2948/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
2949/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman475871a2008-07-27 21:46:04 +00002950static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002951 MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00002952 SDValue Chain,
2953 SDValue OldRetAddr,
2954 SDValue OldFP,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002955 int SPDiff,
2956 bool isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002957 bool isDarwinABI,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002958 SDLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002959 if (SPDiff) {
2960 // Calculate the new stack slot for the return address.
2961 int SlotSize = isPPC64 ? 8 : 4;
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002962 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002963 isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002964 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002965 NewRetAddrLoc, true);
Owen Anderson825b72b2009-08-11 20:47:22 +00002966 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002967 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002968 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002969 MachinePointerInfo::getFixedStack(NewRetAddr),
David Greene534502d12010-02-15 16:56:53 +00002970 false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002971
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00002972 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
2973 // slot as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002974 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002975 int NewFPLoc =
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002976 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI);
David Greene3f2bf852009-11-12 20:49:22 +00002977 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
Evan Chenged2ae132010-07-03 00:40:23 +00002978 true);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002979 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
2980 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00002981 MachinePointerInfo::getFixedStack(NewFPIdx),
David Greene534502d12010-02-15 16:56:53 +00002982 false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002983 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002984 }
2985 return Chain;
2986}
2987
2988/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
2989/// the position of the argument.
2990static void
2991CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman475871a2008-07-27 21:46:04 +00002992 SDValue Arg, int SPDiff, unsigned ArgOffset,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002993 SmallVector<TailCallArgumentInfo, 8>& TailCallArguments) {
2994 int Offset = ArgOffset + SPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002995 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002996 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Owen Anderson825b72b2009-08-11 20:47:22 +00002997 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002998 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002999 TailCallArgumentInfo Info;
3000 Info.Arg = Arg;
3001 Info.FrameIdxOp = FIN;
3002 Info.FrameIdx = FI;
3003 TailCallArguments.push_back(Info);
3004}
3005
3006/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3007/// stack slot. Returns the chain as result and the loaded frame pointers in
3008/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman475871a2008-07-27 21:46:04 +00003009SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen33c960f2009-02-04 20:06:27 +00003010 int SPDiff,
3011 SDValue Chain,
3012 SDValue &LROpOut,
3013 SDValue &FPOpOut,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003014 bool isDarwinABI,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003015 SDLoc dl) const {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003016 if (SPDiff) {
3017 // Load the LR and FP stack slot for later adjusting.
Owen Anderson825b72b2009-08-11 20:47:22 +00003018 EVT VT = PPCSubTarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003019 LROpOut = getReturnAddrFrameIndex(DAG);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003020 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003021 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00003022 Chain = SDValue(LROpOut.getNode(), 1);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003023
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003024 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3025 // slot as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003026 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00003027 FPOpOut = getFramePointerFrameIndex(DAG);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00003028 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003029 false, false, false, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003030 Chain = SDValue(FPOpOut.getNode(), 1);
3031 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003032 }
3033 return Chain;
3034}
3035
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003036/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelfdc40a02009-02-17 22:15:04 +00003037/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003038/// specified by the specific parameter attribute. The copy will be passed as
3039/// a byval function parameter.
3040/// Sometimes what we are copying is the end of a larger object, the part that
3041/// does not fit in registers.
Scott Michelfdc40a02009-02-17 22:15:04 +00003042static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00003043CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sands276dcbd2008-03-21 09:14:45 +00003044 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003045 SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003046 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen8ad9b432009-02-04 01:17:06 +00003047 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Chris Lattnere72f2022010-09-21 05:40:29 +00003048 false, false, MachinePointerInfo(0),
3049 MachinePointerInfo(0));
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003050}
Chris Lattner9f0bc652007-02-25 05:34:32 +00003051
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003052/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3053/// tail calls.
3054static void
Dan Gohman475871a2008-07-27 21:46:04 +00003055LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3056 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003057 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Dan Gohman475871a2008-07-27 21:46:04 +00003058 bool isVector, SmallVector<SDValue, 8> &MemOpChains,
Chris Lattner6229d0a2010-09-21 18:41:36 +00003059 SmallVector<TailCallArgumentInfo, 8> &TailCallArguments,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003060 SDLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00003061 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003062 if (!isTailCall) {
3063 if (isVector) {
Dan Gohman475871a2008-07-27 21:46:04 +00003064 SDValue StackPtr;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003065 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00003066 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003067 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003068 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003069 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003070 DAG.getConstant(ArgOffset, PtrVT));
3071 }
Chris Lattner6229d0a2010-09-21 18:41:36 +00003072 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3073 MachinePointerInfo(), false, false, 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003074 // Calculate and remember argument location.
3075 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3076 TailCallArguments);
3077}
3078
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003079static
3080void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003081 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003082 SDValue LROp, SDValue FPOp, bool isDarwinABI,
3083 SmallVector<TailCallArgumentInfo, 8> &TailCallArguments) {
3084 MachineFunction &MF = DAG.getMachineFunction();
3085
3086 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3087 // might overwrite each other in case of tail call optimization.
3088 SmallVector<SDValue, 8> MemOpChains2;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003089 // Do not flag preceding copytoreg stuff together with the following stuff.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003090 InFlag = SDValue();
3091 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3092 MemOpChains2, dl);
3093 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00003094 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003095 &MemOpChains2[0], MemOpChains2.size());
3096
3097 // Store the return address to the appropriate stack slot.
3098 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3099 isPPC64, isDarwinABI, dl);
3100
3101 // Emit callseq_end just before tailcall node.
3102 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003103 DAG.getIntPtrConstant(0, true), InFlag, dl);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003104 InFlag = Chain.getValue(1);
3105}
3106
3107static
3108unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003109 SDValue &Chain, SDLoc dl, int SPDiff, bool isTailCall,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003110 SmallVector<std::pair<unsigned, SDValue>, 8> &RegsToPass,
Owen Andersone50ed302009-08-10 22:56:29 +00003111 SmallVector<SDValue, 8> &Ops, std::vector<EVT> &NodeTys,
Chris Lattnerb9082582010-11-14 23:42:06 +00003112 const PPCSubtarget &PPCSubTarget) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003113
Chris Lattnerb9082582010-11-14 23:42:06 +00003114 bool isPPC64 = PPCSubTarget.isPPC64();
3115 bool isSVR4ABI = PPCSubTarget.isSVR4ABI();
3116
Owen Andersone50ed302009-08-10 22:56:29 +00003117 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00003118 NodeTys.push_back(MVT::Other); // Returns a chain
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003119 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003120
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003121 unsigned CallOpc = PPCISD::CALL;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003122
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003123 bool needIndirectCall = true;
3124 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003125 // If this is an absolute destination address, use the munged value.
3126 Callee = SDValue(Dest, 0);
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003127 needIndirectCall = false;
3128 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003129
Chris Lattnerb9082582010-11-14 23:42:06 +00003130 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3131 // XXX Work around for http://llvm.org/bugs/show_bug.cgi?id=5201
3132 // Use indirect calls for ALL functions calls in JIT mode, since the
3133 // far-call stubs may be outside relocation limits for a BL instruction.
3134 if (!DAG.getTarget().getSubtarget<PPCSubtarget>().isJITCodeModel()) {
3135 unsigned OpFlags = 0;
3136 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyd5601cc2011-07-24 08:22:56 +00003137 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00003138 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
Chris Lattnerb9082582010-11-14 23:42:06 +00003139 (G->getGlobal()->isDeclaration() ||
3140 G->getGlobal()->isWeakForLinker())) {
3141 // PC-relative references to external symbols should go through $stub,
3142 // unless we're building with the leopard linker or later, which
3143 // automatically synthesizes these stubs.
3144 OpFlags = PPCII::MO_DARWIN_STUB;
3145 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003146
Chris Lattnerb9082582010-11-14 23:42:06 +00003147 // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3148 // every direct call is) turn it into a TargetGlobalAddress /
3149 // TargetExternalSymbol node so that legalize doesn't hack it.
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003150 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
Chris Lattnerb9082582010-11-14 23:42:06 +00003151 Callee.getValueType(),
3152 0, OpFlags);
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003153 needIndirectCall = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003154 }
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003155 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003156
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003157 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattnerb9082582010-11-14 23:42:06 +00003158 unsigned char OpFlags = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003159
Chris Lattnerb9082582010-11-14 23:42:06 +00003160 if (DAG.getTarget().getRelocationModel() != Reloc::Static &&
Roman Divackyd5601cc2011-07-24 08:22:56 +00003161 (PPCSubTarget.getTargetTriple().isMacOSX() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00003162 PPCSubTarget.getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattnerb9082582010-11-14 23:42:06 +00003163 // PC-relative references to external symbols should go through $stub,
3164 // unless we're building with the leopard linker or later, which
3165 // automatically synthesizes these stubs.
3166 OpFlags = PPCII::MO_DARWIN_STUB;
3167 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003168
Chris Lattnerb9082582010-11-14 23:42:06 +00003169 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3170 OpFlags);
3171 needIndirectCall = false;
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003172 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003173
Torok Edwin0e3a1a82010-08-04 20:47:44 +00003174 if (needIndirectCall) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003175 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
3176 // to do the call, we can't use PPCISD::CALL.
3177 SDValue MTCTROps[] = {Chain, Callee, InFlag};
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003178
3179 if (isSVR4ABI && isPPC64) {
3180 // Function pointers in the 64-bit SVR4 ABI do not point to the function
3181 // entry point, but to the function descriptor (the function entry point
3182 // address is part of the function descriptor though).
3183 // The function descriptor is a three doubleword structure with the
3184 // following fields: function entry point, TOC base address and
3185 // environment pointer.
3186 // Thus for a call through a function pointer, the following actions need
3187 // to be performed:
3188 // 1. Save the TOC of the caller in the TOC save area of its stack
Bill Schmidt726c2372012-10-23 15:51:16 +00003189 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003190 // 2. Load the address of the function entry point from the function
3191 // descriptor.
3192 // 3. Load the TOC of the callee from the function descriptor into r2.
3193 // 4. Load the environment pointer from the function descriptor into
3194 // r11.
3195 // 5. Branch to the function entry point address.
3196 // 6. On return of the callee, the TOC of the caller needs to be
3197 // restored (this is done in FinishCall()).
3198 //
3199 // All those operations are flagged together to ensure that no other
3200 // operations can be scheduled in between. E.g. without flagging the
3201 // operations together, a TOC access in the caller could be scheduled
3202 // between the load of the callee TOC and the branch to the callee, which
3203 // results in the TOC access going through the TOC of the callee instead
3204 // of going through the TOC of the caller, which leads to incorrect code.
3205
3206 // Load the address of the function entry point from the function
3207 // descriptor.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003208 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::Other, MVT::Glue);
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003209 SDValue LoadFuncPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, MTCTROps,
3210 InFlag.getNode() ? 3 : 2);
3211 Chain = LoadFuncPtr.getValue(1);
3212 InFlag = LoadFuncPtr.getValue(2);
3213
3214 // Load environment pointer into r11.
3215 // Offset of the environment pointer within the function descriptor.
3216 SDValue PtrOff = DAG.getIntPtrConstant(16);
3217
3218 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
3219 SDValue LoadEnvPtr = DAG.getNode(PPCISD::LOAD, dl, VTs, Chain, AddPtr,
3220 InFlag);
3221 Chain = LoadEnvPtr.getValue(1);
3222 InFlag = LoadEnvPtr.getValue(2);
3223
3224 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3225 InFlag);
3226 Chain = EnvVal.getValue(0);
3227 InFlag = EnvVal.getValue(1);
3228
3229 // Load TOC of the callee into r2. We are using a target-specific load
3230 // with r2 hard coded, because the result of a target-independent load
3231 // would never go directly into r2, since r2 is a reserved register (which
3232 // prevents the register allocator from allocating it), resulting in an
3233 // additional register being allocated and an unnecessary move instruction
3234 // being generated.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003235 VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003236 SDValue LoadTOCPtr = DAG.getNode(PPCISD::LOAD_TOC, dl, VTs, Chain,
3237 Callee, InFlag);
3238 Chain = LoadTOCPtr.getValue(0);
3239 InFlag = LoadTOCPtr.getValue(1);
3240
3241 MTCTROps[0] = Chain;
3242 MTCTROps[1] = LoadFuncPtr;
3243 MTCTROps[2] = InFlag;
3244 }
3245
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003246 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys, MTCTROps,
3247 2 + (InFlag.getNode() != 0));
3248 InFlag = Chain.getValue(1);
3249
3250 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00003251 NodeTys.push_back(MVT::Other);
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00003252 NodeTys.push_back(MVT::Glue);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003253 Ops.push_back(Chain);
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003254 CallOpc = PPCISD::BCTRL;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003255 Callee.setNode(0);
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003256 // Add use of X11 (holding environment pointer)
3257 if (isSVR4ABI && isPPC64)
3258 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003259 // Add CTR register as callee so a bctr can be emitted later.
3260 if (isTailCall)
Roman Divacky0c9b5592011-06-03 15:47:49 +00003261 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003262 }
3263
3264 // If this is a direct call, pass the chain and the callee.
3265 if (Callee.getNode()) {
3266 Ops.push_back(Chain);
3267 Ops.push_back(Callee);
3268 }
3269 // If this is a tail call add stack pointer delta.
3270 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00003271 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003272
3273 // Add argument registers to the end of the list so that they are known live
3274 // into the call.
3275 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3276 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3277 RegsToPass[i].second.getValueType()));
3278
3279 return CallOpc;
3280}
3281
Roman Divackyeb8b7dc2012-09-18 16:47:58 +00003282static
3283bool isLocalCall(const SDValue &Callee)
3284{
3285 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Roman Divacky6fc3ea22012-09-18 18:27:49 +00003286 return !G->getGlobal()->isDeclaration() &&
3287 !G->getGlobal()->isWeakForLinker();
Roman Divackyeb8b7dc2012-09-18 16:47:58 +00003288 return false;
3289}
3290
Dan Gohman98ca4f22009-08-05 01:29:28 +00003291SDValue
3292PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003293 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003294 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003295 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00003296 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003297
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003298 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003299 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00003300 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00003301 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003302
3303 // Copy all of the result registers out of their specified physreg.
3304 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3305 CCValAssign &VA = RVLocs[i];
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003306 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand86aef0a2012-11-05 19:39:45 +00003307
3308 SDValue Val = DAG.getCopyFromReg(Chain, dl,
3309 VA.getLocReg(), VA.getLocVT(), InFlag);
3310 Chain = Val.getValue(1);
3311 InFlag = Val.getValue(2);
3312
3313 switch (VA.getLocInfo()) {
3314 default: llvm_unreachable("Unknown loc info!");
3315 case CCValAssign::Full: break;
3316 case CCValAssign::AExt:
3317 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3318 break;
3319 case CCValAssign::ZExt:
3320 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3321 DAG.getValueType(VA.getValVT()));
3322 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3323 break;
3324 case CCValAssign::SExt:
3325 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3326 DAG.getValueType(VA.getValVT()));
3327 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3328 break;
3329 }
3330
3331 InVals.push_back(Val);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003332 }
3333
Dan Gohman98ca4f22009-08-05 01:29:28 +00003334 return Chain;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003335}
3336
Dan Gohman98ca4f22009-08-05 01:29:28 +00003337SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00003338PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003339 bool isTailCall, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003340 SelectionDAG &DAG,
3341 SmallVector<std::pair<unsigned, SDValue>, 8>
3342 &RegsToPass,
3343 SDValue InFlag, SDValue Chain,
3344 SDValue &Callee,
3345 int SPDiff, unsigned NumBytes,
3346 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohmand858e902010-04-17 15:26:15 +00003347 SmallVectorImpl<SDValue> &InVals) const {
Owen Andersone50ed302009-08-10 22:56:29 +00003348 std::vector<EVT> NodeTys;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003349 SmallVector<SDValue, 8> Ops;
3350 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, dl, SPDiff,
3351 isTailCall, RegsToPass, Ops, NodeTys,
Chris Lattnerb9082582010-11-14 23:42:06 +00003352 PPCSubTarget);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003353
Hal Finkel82b38212012-08-28 02:10:27 +00003354 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
3355 if (isVarArg && PPCSubTarget.isSVR4ABI() && !PPCSubTarget.isPPC64())
3356 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3357
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003358 // When performing tail call optimization the callee pops its arguments off
3359 // the stack. Account for this here so these bytes can be pushed back on in
Eli Bendersky700ed802013-02-21 20:05:00 +00003360 // PPCFrameLowering::eliminateCallFramePseudoInstr.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003361 int BytesCalleePops =
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003362 (CallConv == CallingConv::Fast &&
3363 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003364
Roman Divackye46137f2012-03-06 16:41:49 +00003365 // Add a register mask operand representing the call-preserved registers.
3366 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
3367 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3368 assert(Mask && "Missing call preserved mask for calling convention");
3369 Ops.push_back(DAG.getRegisterMask(Mask));
3370
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003371 if (InFlag.getNode())
3372 Ops.push_back(InFlag);
3373
3374 // Emit tail call.
3375 if (isTailCall) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003376 assert(((Callee.getOpcode() == ISD::Register &&
3377 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3378 Callee.getOpcode() == ISD::TargetExternalSymbol ||
3379 Callee.getOpcode() == ISD::TargetGlobalAddress ||
3380 isa<ConstantSDNode>(Callee)) &&
3381 "Expecting an global address, external symbol, absolute value or register");
3382
Owen Anderson825b72b2009-08-11 20:47:22 +00003383 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, &Ops[0], Ops.size());
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003384 }
3385
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003386 // Add a NOP immediately after the branch instruction when using the 64-bit
3387 // SVR4 ABI. At link time, if caller and callee are in a different module and
3388 // thus have a different TOC, the call will be replaced with a call to a stub
3389 // function which saves the current TOC, loads the TOC of the callee and
3390 // branches to the callee. The NOP will be replaced with a load instruction
3391 // which restores the TOC of the caller from the TOC save slot of the current
3392 // stack frame. If caller and callee belong to the same module (and have the
3393 // same TOC), the NOP will remain unchanged.
Hal Finkel5b00cea2012-03-31 14:45:15 +00003394
3395 bool needsTOCRestore = false;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003396 if (!isTailCall && PPCSubTarget.isSVR4ABI()&& PPCSubTarget.isPPC64()) {
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003397 if (CallOpc == PPCISD::BCTRL) {
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003398 // This is a call through a function pointer.
3399 // Restore the caller TOC from the save area into R2.
3400 // See PrepareCall() for more information about calls through function
3401 // pointers in the 64-bit SVR4 ABI.
3402 // We are using a target-specific load with r2 hard coded, because the
3403 // result of a target-independent load would never go directly into r2,
3404 // since r2 is a reserved register (which prevents the register allocator
3405 // from allocating it), resulting in an additional register being
3406 // allocated and an unnecessary move instruction being generated.
Hal Finkel5b00cea2012-03-31 14:45:15 +00003407 needsTOCRestore = true;
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003408 } else if ((CallOpc == PPCISD::CALL) && !isLocalCall(Callee)) {
Roman Divackyeb8b7dc2012-09-18 16:47:58 +00003409 // Otherwise insert NOP for non-local calls.
Ulrich Weigand86765fb2013-03-22 15:24:13 +00003410 CallOpc = PPCISD::CALL_NOP;
Tilmann Scheller3a84dae2009-12-18 13:00:15 +00003411 }
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003412 }
3413
Hal Finkel5b00cea2012-03-31 14:45:15 +00003414 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
3415 InFlag = Chain.getValue(1);
3416
3417 if (needsTOCRestore) {
3418 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3419 Chain = DAG.getNode(PPCISD::TOC_RESTORE, dl, VTs, Chain, InFlag);
3420 InFlag = Chain.getValue(1);
3421 }
3422
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003423 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3424 DAG.getIntPtrConstant(BytesCalleePops, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003425 InFlag, dl);
Dan Gohman98ca4f22009-08-05 01:29:28 +00003426 if (!Ins.empty())
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003427 InFlag = Chain.getValue(1);
3428
Dan Gohman98ca4f22009-08-05 01:29:28 +00003429 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3430 Ins, dl, DAG, InVals);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003431}
3432
Dan Gohman98ca4f22009-08-05 01:29:28 +00003433SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003434PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00003435 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003436 SelectionDAG &DAG = CLI.DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00003437 SDLoc &dl = CLI.DL;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003438 SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
3439 SmallVector<SDValue, 32> &OutVals = CLI.OutVals;
3440 SmallVector<ISD::InputArg, 32> &Ins = CLI.Ins;
3441 SDValue Chain = CLI.Chain;
3442 SDValue Callee = CLI.Callee;
3443 bool &isTailCall = CLI.IsTailCall;
3444 CallingConv::ID CallConv = CLI.CallConv;
3445 bool isVarArg = CLI.IsVarArg;
3446
Evan Cheng0c439eb2010-01-27 00:07:07 +00003447 if (isTailCall)
3448 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
3449 Ins, DAG);
3450
Bill Schmidt726c2372012-10-23 15:51:16 +00003451 if (PPCSubTarget.isSVR4ABI()) {
3452 if (PPCSubTarget.isPPC64())
3453 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
3454 isTailCall, Outs, OutVals, Ins,
3455 dl, DAG, InVals);
3456 else
3457 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
3458 isTailCall, Outs, OutVals, Ins,
3459 dl, DAG, InVals);
3460 }
Chris Lattnerb9082582010-11-14 23:42:06 +00003461
Bill Schmidt726c2372012-10-23 15:51:16 +00003462 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
3463 isTailCall, Outs, OutVals, Ins,
3464 dl, DAG, InVals);
Dan Gohman98ca4f22009-08-05 01:29:28 +00003465}
3466
3467SDValue
Bill Schmidt419f3762012-09-19 15:42:13 +00003468PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
3469 CallingConv::ID CallConv, bool isVarArg,
3470 bool isTailCall,
3471 const SmallVectorImpl<ISD::OutputArg> &Outs,
3472 const SmallVectorImpl<SDValue> &OutVals,
3473 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003474 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt419f3762012-09-19 15:42:13 +00003475 SmallVectorImpl<SDValue> &InVals) const {
3476 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
Tilmann Scheller6b16eff2009-08-15 11:54:46 +00003477 // of the 32-bit SVR4 ABI stack frame layout.
Dan Gohman98ca4f22009-08-05 01:29:28 +00003478
Dan Gohman98ca4f22009-08-05 01:29:28 +00003479 assert((CallConv == CallingConv::C ||
3480 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerffd02002009-07-03 06:45:56 +00003481
Tilmann Schellerffd02002009-07-03 06:45:56 +00003482 unsigned PtrByteSize = 4;
3483
3484 MachineFunction &MF = DAG.getMachineFunction();
3485
3486 // Mark this function as potentially containing a function that contains a
3487 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3488 // and restoring the callers stack pointer in this functions epilog. This is
3489 // done because by tail calling the called function might overwrite the value
3490 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003491 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3492 CallConv == CallingConv::Fast)
Tilmann Schellerffd02002009-07-03 06:45:56 +00003493 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003494
Tilmann Schellerffd02002009-07-03 06:45:56 +00003495 // Count how many bytes are to be pushed on the stack, including the linkage
3496 // area, parameter list area and the part of the local variable space which
3497 // contains copies of aggregates which are passed by value.
3498
3499 // Assign locations to all of the outgoing arguments.
3500 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003501 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00003502 getTargetMachine(), ArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00003503
3504 // Reserve space for the linkage area on the stack.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00003505 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false), PtrByteSize);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003506
3507 if (isVarArg) {
3508 // Handle fixed and variable vector arguments differently.
3509 // Fixed vector arguments go into registers as long as registers are
3510 // available. Variable vector arguments always go into memory.
Dan Gohman98ca4f22009-08-05 01:29:28 +00003511 unsigned NumArgs = Outs.size();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003512
Tilmann Schellerffd02002009-07-03 06:45:56 +00003513 for (unsigned i = 0; i != NumArgs; ++i) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00003514 MVT ArgVT = Outs[i].VT;
Dan Gohman98ca4f22009-08-05 01:29:28 +00003515 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerffd02002009-07-03 06:45:56 +00003516 bool Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003517
Dan Gohman98ca4f22009-08-05 01:29:28 +00003518 if (Outs[i].IsFixed) {
Bill Schmidt212af6a2013-02-06 17:33:58 +00003519 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
3520 CCInfo);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003521 } else {
Bill Schmidt212af6a2013-02-06 17:33:58 +00003522 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
3523 ArgFlags, CCInfo);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003524 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003525
Tilmann Schellerffd02002009-07-03 06:45:56 +00003526 if (Result) {
Torok Edwindac237e2009-07-08 20:53:28 +00003527#ifndef NDEBUG
Chris Lattner45cfe542009-08-23 06:03:38 +00003528 errs() << "Call operand #" << i << " has unhandled type "
Duncan Sands1440e8b2010-11-03 11:35:31 +00003529 << EVT(ArgVT).getEVTString() << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +00003530#endif
Torok Edwinc23197a2009-07-14 16:55:14 +00003531 llvm_unreachable(0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003532 }
3533 }
3534 } else {
3535 // All arguments are treated the same.
Bill Schmidt212af6a2013-02-06 17:33:58 +00003536 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003537 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003538
Tilmann Schellerffd02002009-07-03 06:45:56 +00003539 // Assign locations to all of the outgoing aggregate by value arguments.
3540 SmallVector<CCValAssign, 16> ByValArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003541 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00003542 getTargetMachine(), ByValArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00003543
3544 // Reserve stack space for the allocations in CCInfo.
3545 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
3546
Bill Schmidt212af6a2013-02-06 17:33:58 +00003547 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003548
3549 // Size of the linkage area, parameter list area and the part of the local
3550 // space variable where copies of aggregates which are passed by value are
3551 // stored.
3552 unsigned NumBytes = CCByValInfo.getNextStackOffset();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003553
Tilmann Schellerffd02002009-07-03 06:45:56 +00003554 // Calculate by how many bytes the stack has to be adjusted in case of tail
3555 // call optimization.
3556 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3557
3558 // Adjust the stack pointer for the new arguments...
3559 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003560 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3561 dl);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003562 SDValue CallSeqStart = Chain;
3563
3564 // Load the return address and frame pointer so it can be moved somewhere else
3565 // later.
3566 SDValue LROp, FPOp;
3567 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
3568 dl);
3569
3570 // Set up a copy of the stack pointer for use loading and storing any
3571 // arguments that may not fit in the registers available for argument
3572 // passing.
Owen Anderson825b72b2009-08-11 20:47:22 +00003573 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003574
Tilmann Schellerffd02002009-07-03 06:45:56 +00003575 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3576 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3577 SmallVector<SDValue, 8> MemOpChains;
3578
Roman Divacky0aaa9192011-08-30 17:04:16 +00003579 bool seenFloatArg = false;
Tilmann Schellerffd02002009-07-03 06:45:56 +00003580 // Walk the register/memloc assignments, inserting copies/loads.
3581 for (unsigned i = 0, j = 0, e = ArgLocs.size();
3582 i != e;
3583 ++i) {
3584 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003585 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00003586 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003587
Tilmann Schellerffd02002009-07-03 06:45:56 +00003588 if (Flags.isByVal()) {
3589 // Argument is an aggregate which is passed by value, thus we need to
3590 // create a copy of it in the local variable space of the current stack
3591 // frame (which is the stack frame of the caller) and pass the address of
3592 // this copy to the callee.
3593 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
3594 CCValAssign &ByValVA = ByValArgLocs[j++];
3595 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003596
Tilmann Schellerffd02002009-07-03 06:45:56 +00003597 // Memory reserved in the local variable space of the callers stack frame.
3598 unsigned LocMemOffset = ByValVA.getLocMemOffset();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003599
Tilmann Schellerffd02002009-07-03 06:45:56 +00003600 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3601 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003602
Tilmann Schellerffd02002009-07-03 06:45:56 +00003603 // Create a copy of the argument in the local area of the current
3604 // stack frame.
3605 SDValue MemcpyCall =
3606 CreateCopyOfByValArgument(Arg, PtrOff,
3607 CallSeqStart.getNode()->getOperand(0),
3608 Flags, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003609
Tilmann Schellerffd02002009-07-03 06:45:56 +00003610 // This must go outside the CALLSEQ_START..END.
3611 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003612 CallSeqStart.getNode()->getOperand(1),
3613 SDLoc(MemcpyCall));
Tilmann Schellerffd02002009-07-03 06:45:56 +00003614 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3615 NewCallSeqStart.getNode());
3616 Chain = CallSeqStart = NewCallSeqStart;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003617
Tilmann Schellerffd02002009-07-03 06:45:56 +00003618 // Pass the address of the aggregate copy on the stack either in a
3619 // physical register or in the parameter list area of the current stack
3620 // frame to the callee.
3621 Arg = PtrOff;
3622 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003623
Tilmann Schellerffd02002009-07-03 06:45:56 +00003624 if (VA.isRegLoc()) {
Roman Divacky0aaa9192011-08-30 17:04:16 +00003625 seenFloatArg |= VA.getLocVT().isFloatingPoint();
Tilmann Schellerffd02002009-07-03 06:45:56 +00003626 // Put argument in a physical register.
3627 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3628 } else {
3629 // Put argument in the parameter list area of the current stack frame.
3630 assert(VA.isMemLoc());
3631 unsigned LocMemOffset = VA.getLocMemOffset();
3632
3633 if (!isTailCall) {
3634 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
3635 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
3636
3637 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner6229d0a2010-09-21 18:41:36 +00003638 MachinePointerInfo(),
David Greene534502d12010-02-15 16:56:53 +00003639 false, false, 0));
Tilmann Schellerffd02002009-07-03 06:45:56 +00003640 } else {
3641 // Calculate and remember argument location.
3642 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
3643 TailCallArguments);
3644 }
3645 }
3646 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003647
Tilmann Schellerffd02002009-07-03 06:45:56 +00003648 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00003649 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Schellerffd02002009-07-03 06:45:56 +00003650 &MemOpChains[0], MemOpChains.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003651
Tilmann Schellerffd02002009-07-03 06:45:56 +00003652 // Build a sequence of copy-to-reg nodes chained together with token chain
3653 // and flag operands which copy the outgoing args into the appropriate regs.
3654 SDValue InFlag;
3655 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
3656 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
3657 RegsToPass[i].second, InFlag);
3658 InFlag = Chain.getValue(1);
3659 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003660
Hal Finkel82b38212012-08-28 02:10:27 +00003661 // Set CR bit 6 to true if this is a vararg call with floating args passed in
3662 // registers.
3663 if (isVarArg) {
NAKAMURA Takumid2a35f22012-08-30 15:52:29 +00003664 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
3665 SDValue Ops[] = { Chain, InFlag };
3666
Hal Finkel82b38212012-08-28 02:10:27 +00003667 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
NAKAMURA Takumid2a35f22012-08-30 15:52:29 +00003668 dl, VTs, Ops, InFlag.getNode() ? 2 : 1);
3669
Hal Finkel82b38212012-08-28 02:10:27 +00003670 InFlag = Chain.getValue(1);
3671 }
3672
Chris Lattnerb9082582010-11-14 23:42:06 +00003673 if (isTailCall)
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003674 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
3675 false, TailCallArguments);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003676
Dan Gohman98ca4f22009-08-05 01:29:28 +00003677 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
3678 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
3679 Ins, InVals);
Tilmann Schellerffd02002009-07-03 06:45:56 +00003680}
3681
Bill Schmidt726c2372012-10-23 15:51:16 +00003682// Copy an argument into memory, being careful to do this outside the
3683// call sequence for the call to which the argument belongs.
Dan Gohman98ca4f22009-08-05 01:29:28 +00003684SDValue
Bill Schmidt726c2372012-10-23 15:51:16 +00003685PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
3686 SDValue CallSeqStart,
3687 ISD::ArgFlagsTy Flags,
3688 SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003689 SDLoc dl) const {
Bill Schmidt726c2372012-10-23 15:51:16 +00003690 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
3691 CallSeqStart.getNode()->getOperand(0),
3692 Flags, DAG, dl);
3693 // The MEMCPY must go outside the CALLSEQ_START..END.
3694 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003695 CallSeqStart.getNode()->getOperand(1),
3696 SDLoc(MemcpyCall));
Bill Schmidt726c2372012-10-23 15:51:16 +00003697 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
3698 NewCallSeqStart.getNode());
3699 return NewCallSeqStart;
3700}
3701
3702SDValue
3703PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003704 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003705 bool isTailCall,
3706 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003707 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003708 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00003709 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00003710 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003711
Bill Schmidt726c2372012-10-23 15:51:16 +00003712 unsigned NumOps = Outs.size();
Bill Schmidt419f3762012-09-19 15:42:13 +00003713
Bill Schmidt726c2372012-10-23 15:51:16 +00003714 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3715 unsigned PtrByteSize = 8;
3716
3717 MachineFunction &MF = DAG.getMachineFunction();
3718
3719 // Mark this function as potentially containing a function that contains a
3720 // tail call. As a consequence the frame pointer will be used for dynamicalloc
3721 // and restoring the callers stack pointer in this functions epilog. This is
3722 // done because by tail calling the called function might overwrite the value
3723 // in this function's (MF) stack pointer stack slot 0(SP).
3724 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
3725 CallConv == CallingConv::Fast)
3726 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
3727
3728 unsigned nAltivecParamsAtEnd = 0;
3729
3730 // Count how many bytes are to be pushed on the stack, including the linkage
3731 // area, and parameter passing area. We start with at least 48 bytes, which
3732 // is reserved space for [SP][CR][LR][3 x unused].
3733 // NOTE: For PPC64, nAltivecParamsAtEnd always remains zero as a result
3734 // of this call.
3735 unsigned NumBytes =
3736 CalculateParameterAndLinkageAreaSize(DAG, true, isVarArg, CallConv,
3737 Outs, OutVals, nAltivecParamsAtEnd);
3738
3739 // Calculate by how many bytes the stack has to be adjusted in case of tail
3740 // call optimization.
3741 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
3742
3743 // To protect arguments on the stack from being clobbered in a tail call,
3744 // force all the loads to happen before doing any other lowering.
3745 if (isTailCall)
3746 Chain = DAG.getStackArgumentTokenFactor(Chain);
3747
3748 // Adjust the stack pointer for the new arguments...
3749 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trick6e0b2a02013-05-29 22:03:55 +00003750 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
3751 dl);
Bill Schmidt726c2372012-10-23 15:51:16 +00003752 SDValue CallSeqStart = Chain;
3753
3754 // Load the return address and frame pointer so it can be move somewhere else
3755 // later.
3756 SDValue LROp, FPOp;
3757 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
3758 dl);
3759
3760 // Set up a copy of the stack pointer for use loading and storing any
3761 // arguments that may not fit in the registers available for argument
3762 // passing.
3763 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
3764
3765 // Figure out which arguments are going to go in registers, and which in
3766 // memory. Also, if this is a vararg function, floating point operations
3767 // must be stored to our stack, and loaded into integer regs as well, if
3768 // any integer regs are available for argument passing.
3769 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(true, true);
3770 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3771
3772 static const uint16_t GPR[] = {
3773 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3774 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3775 };
3776 static const uint16_t *FPR = GetFPR();
3777
3778 static const uint16_t VR[] = {
3779 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3780 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3781 };
3782 const unsigned NumGPRs = array_lengthof(GPR);
3783 const unsigned NumFPRs = 13;
3784 const unsigned NumVRs = array_lengthof(VR);
3785
3786 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
3787 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
3788
3789 SmallVector<SDValue, 8> MemOpChains;
3790 for (unsigned i = 0; i != NumOps; ++i) {
3791 SDValue Arg = OutVals[i];
3792 ISD::ArgFlagsTy Flags = Outs[i].Flags;
3793
3794 // PtrOff will be used to store the current argument to the stack if a
3795 // register cannot be found for it.
3796 SDValue PtrOff;
3797
3798 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
3799
3800 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
3801
3802 // Promote integers to 64-bit values.
3803 if (Arg.getValueType() == MVT::i32) {
3804 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
3805 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3806 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
3807 }
3808
3809 // FIXME memcpy is used way more than necessary. Correctness first.
3810 // Note: "by value" is code for passing a structure by value, not
3811 // basic types.
3812 if (Flags.isByVal()) {
3813 // Note: Size includes alignment padding, so
3814 // struct x { short a; char b; }
3815 // will have Size = 4. With #pragma pack(1), it will have Size = 3.
3816 // These are the proper values we need for right-justifying the
3817 // aggregate in a parameter register.
3818 unsigned Size = Flags.getByValSize();
Bill Schmidt42d43352012-10-31 01:15:05 +00003819
3820 // An empty aggregate parameter takes up no storage and no
3821 // registers.
3822 if (Size == 0)
3823 continue;
3824
Bill Schmidt726c2372012-10-23 15:51:16 +00003825 // All aggregates smaller than 8 bytes must be passed right-justified.
3826 if (Size==1 || Size==2 || Size==4) {
3827 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
3828 if (GPR_idx != NumGPRs) {
3829 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
3830 MachinePointerInfo(), VT,
3831 false, false, 0);
3832 MemOpChains.push_back(Load.getValue(1));
3833 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3834
3835 ArgOffset += PtrByteSize;
3836 continue;
3837 }
3838 }
3839
3840 if (GPR_idx == NumGPRs && Size < 8) {
3841 SDValue Const = DAG.getConstant(PtrByteSize - Size,
3842 PtrOff.getValueType());
3843 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3844 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3845 CallSeqStart,
3846 Flags, DAG, dl);
3847 ArgOffset += PtrByteSize;
3848 continue;
3849 }
3850 // Copy entire object into memory. There are cases where gcc-generated
3851 // code assumes it is there, even if it could be put entirely into
3852 // registers. (This is not what the doc says.)
3853
3854 // FIXME: The above statement is likely due to a misunderstanding of the
3855 // documents. All arguments must be copied into the parameter area BY
3856 // THE CALLEE in the event that the callee takes the address of any
3857 // formal argument. That has not yet been implemented. However, it is
3858 // reasonable to use the stack area as a staging area for the register
3859 // load.
3860
3861 // Skip this for small aggregates, as we will use the same slot for a
3862 // right-justified copy, below.
3863 if (Size >= 8)
3864 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
3865 CallSeqStart,
3866 Flags, DAG, dl);
3867
3868 // When a register is available, pass a small aggregate right-justified.
3869 if (Size < 8 && GPR_idx != NumGPRs) {
3870 // The easiest way to get this right-justified in a register
3871 // is to copy the structure into the rightmost portion of a
3872 // local variable slot, then load the whole slot into the
3873 // register.
3874 // FIXME: The memcpy seems to produce pretty awful code for
3875 // small aggregates, particularly for packed ones.
Matt Arsenault225ed702013-05-18 00:21:46 +00003876 // FIXME: It would be preferable to use the slot in the
Bill Schmidt726c2372012-10-23 15:51:16 +00003877 // parameter save area instead of a new local variable.
3878 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
3879 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
3880 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
3881 CallSeqStart,
3882 Flags, DAG, dl);
3883
3884 // Load the slot into the register.
3885 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
3886 MachinePointerInfo(),
3887 false, false, false, 0);
3888 MemOpChains.push_back(Load.getValue(1));
3889 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3890
3891 // Done with this argument.
3892 ArgOffset += PtrByteSize;
3893 continue;
3894 }
3895
3896 // For aggregates larger than PtrByteSize, copy the pieces of the
3897 // object that fit into registers from the parameter save area.
3898 for (unsigned j=0; j<Size; j+=PtrByteSize) {
3899 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
3900 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
3901 if (GPR_idx != NumGPRs) {
3902 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
3903 MachinePointerInfo(),
3904 false, false, false, 0);
3905 MemOpChains.push_back(Load.getValue(1));
3906 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3907 ArgOffset += PtrByteSize;
3908 } else {
3909 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
3910 break;
3911 }
3912 }
3913 continue;
3914 }
3915
3916 switch (Arg.getValueType().getSimpleVT().SimpleTy) {
3917 default: llvm_unreachable("Unexpected ValueType for argument!");
3918 case MVT::i32:
3919 case MVT::i64:
3920 if (GPR_idx != NumGPRs) {
3921 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
3922 } else {
3923 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3924 true, isTailCall, false, MemOpChains,
3925 TailCallArguments, dl);
3926 }
3927 ArgOffset += PtrByteSize;
3928 break;
3929 case MVT::f32:
3930 case MVT::f64:
3931 if (FPR_idx != NumFPRs) {
3932 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
3933
3934 if (isVarArg) {
Bill Schmidte6c56432012-10-29 21:18:16 +00003935 // A single float or an aggregate containing only a single float
3936 // must be passed right-justified in the stack doubleword, and
3937 // in the GPR, if one is available.
3938 SDValue StoreOff;
3939 if (Arg.getValueType().getSimpleVT().SimpleTy == MVT::f32) {
3940 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
3941 StoreOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
3942 } else
3943 StoreOff = PtrOff;
3944
3945 SDValue Store = DAG.getStore(Chain, dl, Arg, StoreOff,
Bill Schmidt726c2372012-10-23 15:51:16 +00003946 MachinePointerInfo(), false, false, 0);
3947 MemOpChains.push_back(Store);
3948
3949 // Float varargs are always shadowed in available integer registers
3950 if (GPR_idx != NumGPRs) {
3951 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
3952 MachinePointerInfo(), false, false,
3953 false, 0);
3954 MemOpChains.push_back(Load.getValue(1));
3955 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3956 }
3957 } else if (GPR_idx != NumGPRs)
3958 // If we have any FPRs remaining, we may also have GPRs remaining.
3959 ++GPR_idx;
3960 } else {
3961 // Single-precision floating-point values are mapped to the
3962 // second (rightmost) word of the stack doubleword.
3963 if (Arg.getValueType() == MVT::f32) {
3964 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
3965 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
3966 }
3967
3968 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3969 true, isTailCall, false, MemOpChains,
3970 TailCallArguments, dl);
3971 }
3972 ArgOffset += 8;
3973 break;
3974 case MVT::v4f32:
3975 case MVT::v4i32:
3976 case MVT::v8i16:
3977 case MVT::v16i8:
3978 if (isVarArg) {
3979 // These go aligned on the stack, or in the corresponding R registers
3980 // when within range. The Darwin PPC ABI doc claims they also go in
3981 // V registers; in fact gcc does this only for arguments that are
3982 // prototyped, not for those that match the ... We do it for all
3983 // arguments, seems to work.
3984 while (ArgOffset % 16 !=0) {
3985 ArgOffset += PtrByteSize;
3986 if (GPR_idx != NumGPRs)
3987 GPR_idx++;
3988 }
3989 // We could elide this store in the case where the object fits
3990 // entirely in R registers. Maybe later.
3991 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
3992 DAG.getConstant(ArgOffset, PtrVT));
3993 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
3994 MachinePointerInfo(), false, false, 0);
3995 MemOpChains.push_back(Store);
3996 if (VR_idx != NumVRs) {
3997 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
3998 MachinePointerInfo(),
3999 false, false, false, 0);
4000 MemOpChains.push_back(Load.getValue(1));
4001 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4002 }
4003 ArgOffset += 16;
4004 for (unsigned i=0; i<16; i+=PtrByteSize) {
4005 if (GPR_idx == NumGPRs)
4006 break;
4007 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4008 DAG.getConstant(i, PtrVT));
4009 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4010 false, false, false, 0);
4011 MemOpChains.push_back(Load.getValue(1));
4012 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4013 }
4014 break;
4015 }
4016
4017 // Non-varargs Altivec params generally go in registers, but have
4018 // stack space allocated at the end.
4019 if (VR_idx != NumVRs) {
4020 // Doesn't have GPR space allocated.
4021 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4022 } else {
4023 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4024 true, isTailCall, true, MemOpChains,
4025 TailCallArguments, dl);
4026 ArgOffset += 16;
4027 }
4028 break;
4029 }
4030 }
4031
4032 if (!MemOpChains.empty())
4033 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
4034 &MemOpChains[0], MemOpChains.size());
4035
4036 // Check if this is an indirect call (MTCTR/BCTRL).
4037 // See PrepareCall() for more information about calls through function
4038 // pointers in the 64-bit SVR4 ABI.
4039 if (!isTailCall &&
4040 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4041 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4042 !isBLACompatibleAddress(Callee, DAG)) {
4043 // Load r2 into a virtual register and store it to the TOC save area.
4044 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4045 // TOC save area offset.
4046 SDValue PtrOff = DAG.getIntPtrConstant(40);
4047 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4048 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr, MachinePointerInfo(),
4049 false, false, 0);
4050 // R12 must contain the address of an indirect callee. This does not
4051 // mean the MTCTR instruction must use R12; it's easier to model this
4052 // as an extra parameter, so do that.
4053 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
4054 }
4055
4056 // Build a sequence of copy-to-reg nodes chained together with token chain
4057 // and flag operands which copy the outgoing args into the appropriate regs.
4058 SDValue InFlag;
4059 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4060 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4061 RegsToPass[i].second, InFlag);
4062 InFlag = Chain.getValue(1);
4063 }
4064
4065 if (isTailCall)
4066 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4067 FPOp, true, TailCallArguments);
4068
4069 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4070 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4071 Ins, InVals);
4072}
4073
4074SDValue
4075PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4076 CallingConv::ID CallConv, bool isVarArg,
4077 bool isTailCall,
4078 const SmallVectorImpl<ISD::OutputArg> &Outs,
4079 const SmallVectorImpl<SDValue> &OutVals,
4080 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004081 SDLoc dl, SelectionDAG &DAG,
Bill Schmidt726c2372012-10-23 15:51:16 +00004082 SmallVectorImpl<SDValue> &InVals) const {
4083
4084 unsigned NumOps = Outs.size();
Scott Michelfdc40a02009-02-17 22:15:04 +00004085
Owen Andersone50ed302009-08-10 22:56:29 +00004086 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00004087 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerc91a4752006-06-26 22:48:35 +00004088 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004089
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004090 MachineFunction &MF = DAG.getMachineFunction();
4091
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004092 // Mark this function as potentially containing a function that contains a
4093 // tail call. As a consequence the frame pointer will be used for dynamicalloc
4094 // and restoring the callers stack pointer in this functions epilog. This is
4095 // done because by tail calling the called function might overwrite the value
4096 // in this function's (MF) stack pointer stack slot 0(SP).
Nick Lewycky8a8d4792011-12-02 22:16:29 +00004097 if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4098 CallConv == CallingConv::Fast)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004099 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4100
4101 unsigned nAltivecParamsAtEnd = 0;
4102
Chris Lattnerabde4602006-05-16 22:56:08 +00004103 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerc91a4752006-06-26 22:48:35 +00004104 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004105 // prereserved space for [SP][CR][LR][3 x unused].
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004106 unsigned NumBytes =
Dan Gohman98ca4f22009-08-05 01:29:28 +00004107 CalculateParameterAndLinkageAreaSize(DAG, isPPC64, isVarArg, CallConv,
Dan Gohmanc9403652010-07-07 15:54:55 +00004108 Outs, OutVals,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004109 nAltivecParamsAtEnd);
Dale Johannesen75092de2008-03-12 00:22:17 +00004110
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004111 // Calculate by how many bytes the stack has to be adjusted in case of tail
4112 // call optimization.
4113 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelfdc40a02009-02-17 22:15:04 +00004114
Dan Gohman98ca4f22009-08-05 01:29:28 +00004115 // To protect arguments on the stack from being clobbered in a tail call,
4116 // force all the loads to happen before doing any other lowering.
4117 if (isTailCall)
4118 Chain = DAG.getStackArgumentTokenFactor(Chain);
4119
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004120 // Adjust the stack pointer for the new arguments...
4121 // These operations are automatically eliminated by the prolog/epilog pass
Andrew Trick6e0b2a02013-05-29 22:03:55 +00004122 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4123 dl);
Dan Gohman475871a2008-07-27 21:46:04 +00004124 SDValue CallSeqStart = Chain;
Scott Michelfdc40a02009-02-17 22:15:04 +00004125
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004126 // Load the return address and frame pointer so it can be move somewhere else
4127 // later.
Dan Gohman475871a2008-07-27 21:46:04 +00004128 SDValue LROp, FPOp;
Tilmann Schellerffd02002009-07-03 06:45:56 +00004129 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4130 dl);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004131
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004132 // Set up a copy of the stack pointer for use loading and storing any
4133 // arguments that may not fit in the registers available for argument
4134 // passing.
Dan Gohman475871a2008-07-27 21:46:04 +00004135 SDValue StackPtr;
Chris Lattnerc91a4752006-06-26 22:48:35 +00004136 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00004137 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerc91a4752006-06-26 22:48:35 +00004138 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004139 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00004140
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004141 // Figure out which arguments are going to go in registers, and which in
4142 // memory. Also, if this is a vararg function, floating point operations
4143 // must be stored to our stack, and loaded into integer regs as well, if
4144 // any integer regs are available for argument passing.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00004145 unsigned ArgOffset = PPCFrameLowering::getLinkageSize(isPPC64, true);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004146 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004147
Craig Topperb78ca422012-03-11 07:16:55 +00004148 static const uint16_t GPR_32[] = { // 32-bit registers.
Chris Lattner9a2a4972006-05-17 06:01:33 +00004149 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4150 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4151 };
Craig Topperb78ca422012-03-11 07:16:55 +00004152 static const uint16_t GPR_64[] = { // 64-bit registers.
Chris Lattnerc91a4752006-06-26 22:48:35 +00004153 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4154 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4155 };
Craig Topperb78ca422012-03-11 07:16:55 +00004156 static const uint16_t *FPR = GetFPR();
Scott Michelfdc40a02009-02-17 22:15:04 +00004157
Craig Topperb78ca422012-03-11 07:16:55 +00004158 static const uint16_t VR[] = {
Chris Lattner9a2a4972006-05-17 06:01:33 +00004159 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4160 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4161 };
Owen Anderson718cb662007-09-07 04:06:50 +00004162 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004163 const unsigned NumFPRs = 13;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00004164 const unsigned NumVRs = array_lengthof(VR);
Scott Michelfdc40a02009-02-17 22:15:04 +00004165
Craig Topperb78ca422012-03-11 07:16:55 +00004166 const uint16_t *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattnerc91a4752006-06-26 22:48:35 +00004167
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004168 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004169 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4170
Dan Gohman475871a2008-07-27 21:46:04 +00004171 SmallVector<SDValue, 8> MemOpChains;
Evan Cheng4360bdc2006-05-25 00:57:32 +00004172 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanc9403652010-07-07 15:54:55 +00004173 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00004174 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00004175
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004176 // PtrOff will be used to store the current argument to the stack if a
4177 // register cannot be found for it.
Dan Gohman475871a2008-07-27 21:46:04 +00004178 SDValue PtrOff;
Scott Michelfdc40a02009-02-17 22:15:04 +00004179
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004180 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00004181
Dale Johannesen39355f92009-02-04 02:34:38 +00004182 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerc91a4752006-06-26 22:48:35 +00004183
4184 // On PPC64, promote integers to 64-bit values.
Owen Anderson825b72b2009-08-11 20:47:22 +00004185 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00004186 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4187 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson825b72b2009-08-11 20:47:22 +00004188 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerc91a4752006-06-26 22:48:35 +00004189 }
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004190
Dale Johannesen8419dd62008-03-07 20:27:40 +00004191 // FIXME memcpy is used way more than necessary. Correctness first.
Bill Schmidt419f3762012-09-19 15:42:13 +00004192 // Note: "by value" is code for passing a structure by value, not
4193 // basic types.
Duncan Sands276dcbd2008-03-21 09:14:45 +00004194 if (Flags.isByVal()) {
4195 unsigned Size = Flags.getByValSize();
Bill Schmidt726c2372012-10-23 15:51:16 +00004196 // Very small objects are passed right-justified. Everything else is
4197 // passed left-justified.
4198 if (Size==1 || Size==2) {
4199 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesen8419dd62008-03-07 20:27:40 +00004200 if (GPR_idx != NumGPRs) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004201 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004202 MachinePointerInfo(), VT,
4203 false, false, 0);
Dale Johannesen8419dd62008-03-07 20:27:40 +00004204 MemOpChains.push_back(Load.getValue(1));
4205 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004206
4207 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00004208 } else {
Bill Schmidt7a6cb152012-10-16 13:30:53 +00004209 SDValue Const = DAG.getConstant(PtrByteSize - Size,
4210 PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00004211 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Bill Schmidt726c2372012-10-23 15:51:16 +00004212 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4213 CallSeqStart,
4214 Flags, DAG, dl);
Dale Johannesen8419dd62008-03-07 20:27:40 +00004215 ArgOffset += PtrByteSize;
4216 }
4217 continue;
4218 }
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00004219 // Copy entire object into memory. There are cases where gcc-generated
4220 // code assumes it is there, even if it could be put entirely into
4221 // registers. (This is not what the doc says.)
Bill Schmidt726c2372012-10-23 15:51:16 +00004222 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4223 CallSeqStart,
4224 Flags, DAG, dl);
Bill Schmidt419f3762012-09-19 15:42:13 +00004225
4226 // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
4227 // copy the pieces of the object that fit into registers from the
4228 // parameter save area.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004229 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman475871a2008-07-27 21:46:04 +00004230 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00004231 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004232 if (GPR_idx != NumGPRs) {
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004233 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4234 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004235 false, false, false, 0);
Dale Johannesen1f797a32008-03-05 23:31:27 +00004236 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004237 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004238 ArgOffset += PtrByteSize;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004239 } else {
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00004240 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00004241 break;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004242 }
4243 }
4244 continue;
4245 }
4246
Owen Anderson825b72b2009-08-11 20:47:22 +00004247 switch (Arg.getValueType().getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004248 default: llvm_unreachable("Unexpected ValueType for argument!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004249 case MVT::i32:
4250 case MVT::i64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00004251 if (GPR_idx != NumGPRs) {
4252 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004253 } else {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004254 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4255 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004256 TailCallArguments, dl);
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004257 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004258 ArgOffset += PtrByteSize;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004259 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00004260 case MVT::f32:
4261 case MVT::f64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00004262 if (FPR_idx != NumFPRs) {
4263 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4264
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004265 if (isVarArg) {
Chris Lattner6229d0a2010-09-21 18:41:36 +00004266 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4267 MachinePointerInfo(), false, false, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004268 MemOpChains.push_back(Store);
4269
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004270 // Float varargs are always shadowed in available integer registers
Chris Lattner9a2a4972006-05-17 06:01:33 +00004271 if (GPR_idx != NumGPRs) {
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004272 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
Pete Cooperd752e0f2011-11-08 18:42:53 +00004273 MachinePointerInfo(), false, false,
4274 false, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004275 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004276 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004277 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004278 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman475871a2008-07-27 21:46:04 +00004279 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00004280 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004281 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
4282 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004283 false, false, false, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004284 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004285 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerabde4602006-05-16 22:56:08 +00004286 }
4287 } else {
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004288 // If we have any FPRs remaining, we may also have GPRs remaining.
4289 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
4290 // GPRs.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004291 if (GPR_idx != NumGPRs)
4292 ++GPR_idx;
Owen Anderson825b72b2009-08-11 20:47:22 +00004293 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004294 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
4295 ++GPR_idx;
Chris Lattnerabde4602006-05-16 22:56:08 +00004296 }
Bill Schmidt726c2372012-10-23 15:51:16 +00004297 } else
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004298 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4299 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004300 TailCallArguments, dl);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004301 if (isPPC64)
4302 ArgOffset += 8;
4303 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004304 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004305 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00004306 case MVT::v4f32:
4307 case MVT::v4i32:
4308 case MVT::v8i16:
4309 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00004310 if (isVarArg) {
4311 // These go aligned on the stack, or in the corresponding R registers
Scott Michelfdc40a02009-02-17 22:15:04 +00004312 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesen75092de2008-03-12 00:22:17 +00004313 // V registers; in fact gcc does this only for arguments that are
4314 // prototyped, not for those that match the ... We do it for all
4315 // arguments, seems to work.
4316 while (ArgOffset % 16 !=0) {
4317 ArgOffset += PtrByteSize;
4318 if (GPR_idx != NumGPRs)
4319 GPR_idx++;
4320 }
4321 // We could elide this store in the case where the object fits
4322 // entirely in R registers. Maybe later.
Scott Michelfdc40a02009-02-17 22:15:04 +00004323 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesen75092de2008-03-12 00:22:17 +00004324 DAG.getConstant(ArgOffset, PtrVT));
Chris Lattner6229d0a2010-09-21 18:41:36 +00004325 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4326 MachinePointerInfo(), false, false, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00004327 MemOpChains.push_back(Store);
4328 if (VR_idx != NumVRs) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004329 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004330 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004331 false, false, false, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00004332 MemOpChains.push_back(Load.getValue(1));
4333 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
4334 }
4335 ArgOffset += 16;
4336 for (unsigned i=0; i<16; i+=PtrByteSize) {
4337 if (GPR_idx == NumGPRs)
4338 break;
Dale Johannesen39355f92009-02-04 02:34:38 +00004339 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesen75092de2008-03-12 00:22:17 +00004340 DAG.getConstant(i, PtrVT));
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004341 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004342 false, false, false, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00004343 MemOpChains.push_back(Load.getValue(1));
4344 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4345 }
4346 break;
4347 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004348
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004349 // Non-varargs Altivec params generally go in registers, but have
4350 // stack space allocated at the end.
4351 if (VR_idx != NumVRs) {
4352 // Doesn't have GPR space allocated.
4353 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
4354 } else if (nAltivecParamsAtEnd==0) {
4355 // We are emitting Altivec params in order.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004356 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4357 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004358 TailCallArguments, dl);
Dale Johannesen75092de2008-03-12 00:22:17 +00004359 ArgOffset += 16;
Dale Johannesen75092de2008-03-12 00:22:17 +00004360 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00004361 break;
Chris Lattnerabde4602006-05-16 22:56:08 +00004362 }
Chris Lattnerabde4602006-05-16 22:56:08 +00004363 }
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004364 // If all Altivec parameters fit in registers, as they usually do,
4365 // they get stack space following the non-Altivec parameters. We
4366 // don't track this here because nobody below needs it.
4367 // If there are more Altivec parameters than fit in registers emit
4368 // the stores here.
4369 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
4370 unsigned j = 0;
4371 // Offset is aligned; skip 1st 12 params which go in V registers.
4372 ArgOffset = ((ArgOffset+15)/16)*16;
4373 ArgOffset += 12*16;
4374 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohmanc9403652010-07-07 15:54:55 +00004375 SDValue Arg = OutVals[i];
4376 EVT ArgType = Outs[i].VT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004377 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
4378 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004379 if (++j > NumVRs) {
Dan Gohman475871a2008-07-27 21:46:04 +00004380 SDValue PtrOff;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004381 // We are emitting Altivec params in order.
4382 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4383 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00004384 TailCallArguments, dl);
Dale Johannesen8f5422c2008-03-14 17:41:26 +00004385 ArgOffset += 16;
4386 }
4387 }
4388 }
4389 }
4390
Chris Lattner9a2a4972006-05-17 06:01:33 +00004391 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00004392 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnere2199452006-08-11 17:38:39 +00004393 &MemOpChains[0], MemOpChains.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00004394
Dale Johannesenf7b73042010-03-09 20:15:42 +00004395 // On Darwin, R12 must contain the address of an indirect callee. This does
4396 // not mean the MTCTR instruction must use R12; it's easier to model this as
4397 // an extra parameter, so do that.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004398 if (!isTailCall &&
Dale Johannesenf7b73042010-03-09 20:15:42 +00004399 !dyn_cast<GlobalAddressSDNode>(Callee) &&
4400 !dyn_cast<ExternalSymbolSDNode>(Callee) &&
4401 !isBLACompatibleAddress(Callee, DAG))
4402 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
4403 PPC::R12), Callee));
4404
Chris Lattner9a2a4972006-05-17 06:01:33 +00004405 // Build a sequence of copy-to-reg nodes chained together with token chain
4406 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman475871a2008-07-27 21:46:04 +00004407 SDValue InFlag;
Chris Lattner9a2a4972006-05-17 06:01:33 +00004408 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004409 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen39355f92009-02-04 02:34:38 +00004410 RegsToPass[i].second, InFlag);
Chris Lattner9a2a4972006-05-17 06:01:33 +00004411 InFlag = Chain.getValue(1);
4412 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004413
Chris Lattnerb9082582010-11-14 23:42:06 +00004414 if (isTailCall)
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004415 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
4416 FPOp, true, TailCallArguments);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004417
Dan Gohman98ca4f22009-08-05 01:29:28 +00004418 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
4419 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
4420 Ins, InVals);
Chris Lattnerabde4602006-05-16 22:56:08 +00004421}
4422
Hal Finkeld712f932011-10-14 19:51:36 +00004423bool
4424PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
4425 MachineFunction &MF, bool isVarArg,
4426 const SmallVectorImpl<ISD::OutputArg> &Outs,
4427 LLVMContext &Context) const {
4428 SmallVector<CCValAssign, 16> RVLocs;
4429 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
4430 RVLocs, Context);
4431 return CCInfo.CheckReturn(Outs, RetCC_PPC);
4432}
4433
Dan Gohman98ca4f22009-08-05 01:29:28 +00004434SDValue
4435PPCTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00004436 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00004437 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00004438 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004439 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00004440
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004441 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00004442 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Gabor Greifa4b00b22012-04-19 15:16:31 +00004443 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00004444 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelfdc40a02009-02-17 22:15:04 +00004445
Dan Gohman475871a2008-07-27 21:46:04 +00004446 SDValue Flag;
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004447 SmallVector<SDValue, 4> RetOps(1, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00004448
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004449 // Copy the result values into the output registers.
4450 for (unsigned i = 0; i != RVLocs.size(); ++i) {
4451 CCValAssign &VA = RVLocs[i];
4452 assert(VA.isRegLoc() && "Can only return in registers!");
Ulrich Weigand86aef0a2012-11-05 19:39:45 +00004453
4454 SDValue Arg = OutVals[i];
4455
4456 switch (VA.getLocInfo()) {
4457 default: llvm_unreachable("Unknown loc info!");
4458 case CCValAssign::Full: break;
4459 case CCValAssign::AExt:
4460 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
4461 break;
4462 case CCValAssign::ZExt:
4463 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
4464 break;
4465 case CCValAssign::SExt:
4466 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
4467 break;
4468 }
4469
4470 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004471 Flag = Chain.getValue(1);
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004472 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00004473 }
4474
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004475 RetOps[0] = Chain; // Update chain.
4476
4477 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00004478 if (Flag.getNode())
Jakob Stoklund Olesen6ab50612013-02-05 18:12:00 +00004479 RetOps.push_back(Flag);
4480
4481 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other,
4482 &RetOps[0], RetOps.size());
Chris Lattner1a635d62006-04-14 06:01:58 +00004483}
4484
Dan Gohman475871a2008-07-27 21:46:04 +00004485SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00004486 const PPCSubtarget &Subtarget) const {
Jim Laskeyefc7e522006-12-04 22:04:42 +00004487 // When we pop the dynamic allocation we need to restore the SP link.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004488 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004489
Jim Laskeyefc7e522006-12-04 22:04:42 +00004490 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00004491 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeyefc7e522006-12-04 22:04:42 +00004492
4493 // Construct the stack pointer operand.
Dale Johannesenb60d5192009-11-24 01:09:07 +00004494 bool isPPC64 = Subtarget.isPPC64();
4495 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman475871a2008-07-27 21:46:04 +00004496 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeyefc7e522006-12-04 22:04:42 +00004497
4498 // Get the operands for the STACKRESTORE.
Dan Gohman475871a2008-07-27 21:46:04 +00004499 SDValue Chain = Op.getOperand(0);
4500 SDValue SaveSP = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004501
Jim Laskeyefc7e522006-12-04 22:04:42 +00004502 // Load the old link SP.
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004503 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
4504 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004505 false, false, false, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004506
Jim Laskeyefc7e522006-12-04 22:04:42 +00004507 // Restore the stack pointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004508 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelfdc40a02009-02-17 22:15:04 +00004509
Jim Laskeyefc7e522006-12-04 22:04:42 +00004510 // Store the old link SP.
Chris Lattner6229d0a2010-09-21 18:41:36 +00004511 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
David Greene534502d12010-02-15 16:56:53 +00004512 false, false, 0);
Jim Laskeyefc7e522006-12-04 22:04:42 +00004513}
4514
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004515
4516
Dan Gohman475871a2008-07-27 21:46:04 +00004517SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004518PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey2f616bf2006-11-16 22:43:37 +00004519 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesenb60d5192009-11-24 01:09:07 +00004520 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004521 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00004522 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004523
4524 // Get current frame pointer save index. The users of this index will be
4525 // primarily DYNALLOC instructions.
4526 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4527 int RASI = FI->getReturnAddrSaveIndex();
4528
4529 // If the frame pointer save index hasn't been defined yet.
4530 if (!RASI) {
4531 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00004532 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004533 // Allocate the frame index for frame pointer save area.
Evan Chenged2ae132010-07-03 00:40:23 +00004534 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, true);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004535 // Save the result.
4536 FI->setReturnAddrSaveIndex(RASI);
4537 }
4538 return DAG.getFrameIndex(RASI, PtrVT);
4539}
4540
Dan Gohman475871a2008-07-27 21:46:04 +00004541SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004542PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
4543 MachineFunction &MF = DAG.getMachineFunction();
Dale Johannesenb60d5192009-11-24 01:09:07 +00004544 bool isPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004545 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00004546 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00004547
4548 // Get current frame pointer save index. The users of this index will be
4549 // primarily DYNALLOC instructions.
4550 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
4551 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004552
Jim Laskey2f616bf2006-11-16 22:43:37 +00004553 // If the frame pointer save index hasn't been defined yet.
4554 if (!FPSI) {
4555 // Find out what the fix offset of the frame pointer save area.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00004556 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00004557 isDarwinABI);
Scott Michelfdc40a02009-02-17 22:15:04 +00004558
Jim Laskey2f616bf2006-11-16 22:43:37 +00004559 // Allocate the frame index for frame pointer save area.
Evan Chenged2ae132010-07-03 00:40:23 +00004560 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004561 // Save the result.
Scott Michelfdc40a02009-02-17 22:15:04 +00004562 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004563 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004564 return DAG.getFrameIndex(FPSI, PtrVT);
4565}
Jim Laskey2f616bf2006-11-16 22:43:37 +00004566
Dan Gohman475871a2008-07-27 21:46:04 +00004567SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00004568 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00004569 const PPCSubtarget &Subtarget) const {
Jim Laskey2f616bf2006-11-16 22:43:37 +00004570 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00004571 SDValue Chain = Op.getOperand(0);
4572 SDValue Size = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004573 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004574
Jim Laskey2f616bf2006-11-16 22:43:37 +00004575 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00004576 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00004577 // Negate the size.
Dale Johannesende064702009-02-06 21:50:26 +00004578 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey2f616bf2006-11-16 22:43:37 +00004579 DAG.getConstant(0, PtrVT), Size);
4580 // Construct a node for the frame pointer save index.
Dan Gohman475871a2008-07-27 21:46:04 +00004581 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004582 // Build a DYNALLOC node.
Dan Gohman475871a2008-07-27 21:46:04 +00004583 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson825b72b2009-08-11 20:47:22 +00004584 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Dale Johannesende064702009-02-06 21:50:26 +00004585 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops, 3);
Jim Laskey2f616bf2006-11-16 22:43:37 +00004586}
4587
Hal Finkel7ee74a62013-03-21 21:37:52 +00004588SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
4589 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004590 SDLoc DL(Op);
Hal Finkel7ee74a62013-03-21 21:37:52 +00004591 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
4592 DAG.getVTList(MVT::i32, MVT::Other),
4593 Op.getOperand(0), Op.getOperand(1));
4594}
4595
4596SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
4597 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004598 SDLoc DL(Op);
Hal Finkel7ee74a62013-03-21 21:37:52 +00004599 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
4600 Op.getOperand(0), Op.getOperand(1));
4601}
4602
Chris Lattner1a635d62006-04-14 06:01:58 +00004603/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
4604/// possible.
Dan Gohmand858e902010-04-17 15:26:15 +00004605SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner1a635d62006-04-14 06:01:58 +00004606 // Not FP? Not a fsel.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004607 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
4608 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedmanc06441e2009-05-28 04:31:08 +00004609 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00004610
Hal Finkel59889f72013-04-07 22:11:09 +00004611 // We might be able to do better than this under some circumstances, but in
4612 // general, fsel-based lowering of select is a finite-math-only optimization.
4613 // For more information, see section F.3 of the 2.06 ISA specification.
4614 if (!DAG.getTarget().Options.NoInfsFPMath ||
4615 !DAG.getTarget().Options.NoNaNsFPMath)
4616 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00004617
Hal Finkel59889f72013-04-07 22:11:09 +00004618 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004619
Owen Andersone50ed302009-08-10 22:56:29 +00004620 EVT ResVT = Op.getValueType();
4621 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004622 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
4623 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004624 SDLoc dl(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004625
Chris Lattner1a635d62006-04-14 06:01:58 +00004626 // If the RHS of the comparison is a 0.0, we don't need to do the
4627 // subtraction at all.
Hal Finkel59889f72013-04-07 22:11:09 +00004628 SDValue Sel1;
Chris Lattner1a635d62006-04-14 06:01:58 +00004629 if (isFloatingPointZero(RHS))
4630 switch (CC) {
4631 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel59889f72013-04-07 22:11:09 +00004632 case ISD::SETNE:
4633 std::swap(TV, FV);
4634 case ISD::SETEQ:
4635 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4636 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
4637 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
4638 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4639 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4640 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4641 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004642 case ISD::SETULT:
4643 case ISD::SETLT:
4644 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00004645 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004646 case ISD::SETGE:
Owen Anderson825b72b2009-08-11 20:47:22 +00004647 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4648 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00004649 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004650 case ISD::SETUGT:
4651 case ISD::SETGT:
4652 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00004653 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004654 case ISD::SETLE:
Owen Anderson825b72b2009-08-11 20:47:22 +00004655 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
4656 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00004657 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00004658 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004659 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004660
Dan Gohman475871a2008-07-27 21:46:04 +00004661 SDValue Cmp;
Chris Lattner1a635d62006-04-14 06:01:58 +00004662 switch (CC) {
4663 default: break; // SETUO etc aren't handled by fsel.
Hal Finkel59889f72013-04-07 22:11:09 +00004664 case ISD::SETNE:
4665 std::swap(TV, FV);
4666 case ISD::SETEQ:
4667 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
4668 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4669 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
4670 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
4671 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits
4672 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
4673 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
4674 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004675 case ISD::SETULT:
4676 case ISD::SETLT:
Dale Johannesende064702009-02-06 21:50:26 +00004677 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004678 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4679 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004680 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00004681 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004682 case ISD::SETGE:
Dale Johannesende064702009-02-06 21:50:26 +00004683 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004684 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4685 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004686 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004687 case ISD::SETUGT:
4688 case ISD::SETGT:
Dale Johannesende064702009-02-06 21:50:26 +00004689 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004690 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4691 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004692 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00004693 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00004694 case ISD::SETLE:
Dale Johannesende064702009-02-06 21:50:26 +00004695 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00004696 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
4697 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Hal Finkel59889f72013-04-07 22:11:09 +00004698 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00004699 }
Eli Friedmanc06441e2009-05-28 04:31:08 +00004700 return Op;
Chris Lattner1a635d62006-04-14 06:01:58 +00004701}
4702
Chris Lattner1f873002007-11-28 18:44:47 +00004703// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004704SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004705 SDLoc dl) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004706 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman475871a2008-07-27 21:46:04 +00004707 SDValue Src = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00004708 if (Src.getValueType() == MVT::f32)
4709 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sandsa7360f02008-07-19 16:26:02 +00004710
Dan Gohman475871a2008-07-27 21:46:04 +00004711 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00004712 switch (Op.getValueType().getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004713 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004714 case MVT::i32:
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004715 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ :
Hal Finkel46479192013-04-01 17:52:07 +00004716 (PPCSubTarget.hasFPCVT() ? PPCISD::FCTIWUZ :
4717 PPCISD::FCTIDZ),
Owen Anderson825b72b2009-08-11 20:47:22 +00004718 dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00004719 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00004720 case MVT::i64:
Hal Finkela1646ce2013-04-01 18:42:58 +00004721 assert((Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT()) &&
4722 "i64 FP_TO_UINT is supported only with FPCVT");
Hal Finkel46479192013-04-01 17:52:07 +00004723 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
4724 PPCISD::FCTIDUZ,
4725 dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00004726 break;
4727 }
Duncan Sandsa7360f02008-07-19 16:26:02 +00004728
Chris Lattner1a635d62006-04-14 06:01:58 +00004729 // Convert the FP value to an int value through memory.
Hal Finkel46479192013-04-01 17:52:07 +00004730 bool i32Stack = Op.getValueType() == MVT::i32 && PPCSubTarget.hasSTFIWX() &&
4731 (Op.getOpcode() == ISD::FP_TO_SINT || PPCSubTarget.hasFPCVT());
4732 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
4733 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
4734 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
Duncan Sandsa7360f02008-07-19 16:26:02 +00004735
Chris Lattner1de7c1d2007-10-15 20:14:52 +00004736 // Emit a store to the stack slot.
Hal Finkel46479192013-04-01 17:52:07 +00004737 SDValue Chain;
4738 if (i32Stack) {
4739 MachineFunction &MF = DAG.getMachineFunction();
4740 MachineMemOperand *MMO =
4741 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
4742 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
4743 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
4744 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
4745 MVT::i32, MMO);
4746 } else
4747 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
4748 MPI, false, false, 0);
Chris Lattner1de7c1d2007-10-15 20:14:52 +00004749
4750 // Result is a load from the stack slot. If loading 4 bytes, make sure to
4751 // add in a bias.
Hal Finkel46479192013-04-01 17:52:07 +00004752 if (Op.getValueType() == MVT::i32 && !i32Stack) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00004753 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner1de7c1d2007-10-15 20:14:52 +00004754 DAG.getConstant(4, FIPtr.getValueType()));
Hal Finkel46479192013-04-01 17:52:07 +00004755 MPI = MachinePointerInfo();
4756 }
4757
4758 return DAG.getLoad(Op.getValueType(), dl, Chain, FIPtr, MPI,
Pete Cooperd752e0f2011-11-08 18:42:53 +00004759 false, false, false, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00004760}
4761
Hal Finkel46479192013-04-01 17:52:07 +00004762SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00004763 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004764 SDLoc dl(Op);
Dan Gohman034f60e2008-03-11 01:59:03 +00004765 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson825b72b2009-08-11 20:47:22 +00004766 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman475871a2008-07-27 21:46:04 +00004767 return SDValue();
Dan Gohman034f60e2008-03-11 01:59:03 +00004768
Hal Finkel46479192013-04-01 17:52:07 +00004769 assert((Op.getOpcode() == ISD::SINT_TO_FP || PPCSubTarget.hasFPCVT()) &&
4770 "UINT_TO_FP is supported only with FPCVT");
4771
4772 // If we have FCFIDS, then use it when converting to single-precision.
Hal Finkel2a401952013-04-02 03:29:51 +00004773 // Otherwise, convert to double-precision and then round.
Hal Finkel46479192013-04-01 17:52:07 +00004774 unsigned FCFOp = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4775 (Op.getOpcode() == ISD::UINT_TO_FP ?
4776 PPCISD::FCFIDUS : PPCISD::FCFIDS) :
4777 (Op.getOpcode() == ISD::UINT_TO_FP ?
4778 PPCISD::FCFIDU : PPCISD::FCFID);
4779 MVT FCFTy = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
4780 MVT::f32 : MVT::f64;
4781
Owen Anderson825b72b2009-08-11 20:47:22 +00004782 if (Op.getOperand(0).getValueType() == MVT::i64) {
Ulrich Weigand6c28a7e2012-10-18 13:16:11 +00004783 SDValue SINT = Op.getOperand(0);
4784 // When converting to single-precision, we actually need to convert
4785 // to double-precision first and then round to single-precision.
4786 // To avoid double-rounding effects during that operation, we have
4787 // to prepare the input operand. Bits that might be truncated when
4788 // converting to double-precision are replaced by a bit that won't
4789 // be lost at this stage, but is below the single-precision rounding
4790 // position.
4791 //
4792 // However, if -enable-unsafe-fp-math is in effect, accept double
4793 // rounding to avoid the extra overhead.
4794 if (Op.getValueType() == MVT::f32 &&
Hal Finkel46479192013-04-01 17:52:07 +00004795 !PPCSubTarget.hasFPCVT() &&
Ulrich Weigand6c28a7e2012-10-18 13:16:11 +00004796 !DAG.getTarget().Options.UnsafeFPMath) {
4797
4798 // Twiddle input to make sure the low 11 bits are zero. (If this
4799 // is the case, we are guaranteed the value will fit into the 53 bit
4800 // mantissa of an IEEE double-precision value without rounding.)
4801 // If any of those low 11 bits were not zero originally, make sure
4802 // bit 12 (value 2048) is set instead, so that the final rounding
4803 // to single-precision gets the correct result.
4804 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4805 SINT, DAG.getConstant(2047, MVT::i64));
4806 Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
4807 Round, DAG.getConstant(2047, MVT::i64));
4808 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
4809 Round = DAG.getNode(ISD::AND, dl, MVT::i64,
4810 Round, DAG.getConstant(-2048, MVT::i64));
4811
4812 // However, we cannot use that value unconditionally: if the magnitude
4813 // of the input value is small, the bit-twiddling we did above might
4814 // end up visibly changing the output. Fortunately, in that case, we
4815 // don't need to twiddle bits since the original input will convert
4816 // exactly to double-precision floating-point already. Therefore,
4817 // construct a conditional to use the original value if the top 11
4818 // bits are all sign-bit copies, and use the rounded value computed
4819 // above otherwise.
4820 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
4821 SINT, DAG.getConstant(53, MVT::i32));
4822 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
4823 Cond, DAG.getConstant(1, MVT::i64));
4824 Cond = DAG.getSetCC(dl, MVT::i32,
4825 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
4826
4827 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
4828 }
Hal Finkel46479192013-04-01 17:52:07 +00004829
Ulrich Weigand6c28a7e2012-10-18 13:16:11 +00004830 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
Hal Finkel46479192013-04-01 17:52:07 +00004831 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
4832
4833 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Scott Michelfdc40a02009-02-17 22:15:04 +00004834 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004835 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00004836 return FP;
4837 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004838
Owen Anderson825b72b2009-08-11 20:47:22 +00004839 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Hal Finkel46479192013-04-01 17:52:07 +00004840 "Unhandled INT_TO_FP type in custom expander!");
Chris Lattner1a635d62006-04-14 06:01:58 +00004841 // Since we only generate this in 64-bit mode, we can take advantage of
4842 // 64-bit registers. In particular, sign extend the input value into the
4843 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
4844 // then lfd it and fcfid it.
Dan Gohmanc76909a2009-09-25 20:36:54 +00004845 MachineFunction &MF = DAG.getMachineFunction();
4846 MachineFrameInfo *FrameInfo = MF.getFrameInfo();
Owen Andersone50ed302009-08-10 22:56:29 +00004847 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00004848
Hal Finkel8049ab12013-03-31 10:12:51 +00004849 SDValue Ld;
Hal Finkel46479192013-04-01 17:52:07 +00004850 if (PPCSubTarget.hasLFIWAX() || PPCSubTarget.hasFPCVT()) {
Hal Finkel8049ab12013-03-31 10:12:51 +00004851 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
4852 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004853
Hal Finkel8049ab12013-03-31 10:12:51 +00004854 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
4855 MachinePointerInfo::getFixedStack(FrameIdx),
4856 false, false, 0);
Hal Finkel9ad0f492013-03-31 01:58:02 +00004857
Hal Finkel8049ab12013-03-31 10:12:51 +00004858 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
4859 "Expected an i32 store");
4860 MachineMemOperand *MMO =
4861 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FrameIdx),
4862 MachineMemOperand::MOLoad, 4, 4);
4863 SDValue Ops[] = { Store, FIdx };
Hal Finkel46479192013-04-01 17:52:07 +00004864 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
4865 PPCISD::LFIWZX : PPCISD::LFIWAX,
4866 dl, DAG.getVTList(MVT::f64, MVT::Other),
4867 Ops, 2, MVT::i32, MMO);
Hal Finkel8049ab12013-03-31 10:12:51 +00004868 } else {
Hal Finkel46479192013-04-01 17:52:07 +00004869 assert(PPCSubTarget.isPPC64() &&
4870 "i32->FP without LFIWAX supported only on PPC64");
4871
Hal Finkel8049ab12013-03-31 10:12:51 +00004872 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
4873 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
4874
4875 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
4876 Op.getOperand(0));
4877
4878 // STD the extended value into the stack slot.
4879 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
4880 MachinePointerInfo::getFixedStack(FrameIdx),
4881 false, false, 0);
4882
4883 // Load the value as a double.
4884 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
4885 MachinePointerInfo::getFixedStack(FrameIdx),
4886 false, false, false, 0);
4887 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004888
Chris Lattner1a635d62006-04-14 06:01:58 +00004889 // FCFID it and return it.
Hal Finkel46479192013-04-01 17:52:07 +00004890 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
4891 if (Op.getValueType() == MVT::f32 && !PPCSubTarget.hasFPCVT())
Owen Anderson825b72b2009-08-11 20:47:22 +00004892 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00004893 return FP;
4894}
4895
Dan Gohmand858e902010-04-17 15:26:15 +00004896SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
4897 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00004898 SDLoc dl(Op);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004899 /*
4900 The rounding mode is in bits 30:31 of FPSR, and has the following
4901 settings:
4902 00 Round to nearest
4903 01 Round to 0
4904 10 Round to +inf
4905 11 Round to -inf
4906
4907 FLT_ROUNDS, on the other hand, expects the following:
4908 -1 Undefined
4909 0 Round to 0
4910 1 Round to nearest
4911 2 Round to +inf
4912 3 Round to -inf
4913
4914 To perform the conversion, we do:
4915 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
4916 */
4917
4918 MachineFunction &MF = DAG.getMachineFunction();
Owen Andersone50ed302009-08-10 22:56:29 +00004919 EVT VT = Op.getValueType();
4920 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00004921 SDValue MFFSreg, InFlag;
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004922
4923 // Save FP Control Word to register
Benjamin Kramer3853f742013-03-07 20:33:29 +00004924 EVT NodeTys[] = {
4925 MVT::f64, // return register
4926 MVT::Glue // unused in this context
4927 };
Dale Johannesen33c960f2009-02-04 20:06:27 +00004928 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004929
4930 // Save FP register to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00004931 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman475871a2008-07-27 21:46:04 +00004932 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00004933 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Chris Lattner6229d0a2010-09-21 18:41:36 +00004934 StackSlot, MachinePointerInfo(), false, false,0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004935
4936 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00004937 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00004938 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00004939 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004940 false, false, false, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004941
4942 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00004943 SDValue CWD1 =
Owen Anderson825b72b2009-08-11 20:47:22 +00004944 DAG.getNode(ISD::AND, dl, MVT::i32,
4945 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman475871a2008-07-27 21:46:04 +00004946 SDValue CWD2 =
Owen Anderson825b72b2009-08-11 20:47:22 +00004947 DAG.getNode(ISD::SRL, dl, MVT::i32,
4948 DAG.getNode(ISD::AND, dl, MVT::i32,
4949 DAG.getNode(ISD::XOR, dl, MVT::i32,
4950 CWD, DAG.getConstant(3, MVT::i32)),
4951 DAG.getConstant(3, MVT::i32)),
4952 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004953
Dan Gohman475871a2008-07-27 21:46:04 +00004954 SDValue RetVal =
Owen Anderson825b72b2009-08-11 20:47:22 +00004955 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004956
Duncan Sands83ec4b62008-06-06 12:08:01 +00004957 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen33c960f2009-02-04 20:06:27 +00004958 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00004959}
4960
Dan Gohmand858e902010-04-17 15:26:15 +00004961SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00004962 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004963 unsigned BitWidth = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004964 SDLoc dl(Op);
Dan Gohman9ed06db2008-03-07 20:36:53 +00004965 assert(Op.getNumOperands() == 3 &&
4966 VT == Op.getOperand(1).getValueType() &&
4967 "Unexpected SHL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004968
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00004969 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00004970 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00004971 SDValue Lo = Op.getOperand(0);
4972 SDValue Hi = Op.getOperand(1);
4973 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00004974 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00004975
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00004976 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00004977 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00004978 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
4979 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
4980 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
4981 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00004982 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00004983 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
4984 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
4985 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00004986 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00004987 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00004988}
4989
Dan Gohmand858e902010-04-17 15:26:15 +00004990SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00004991 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004992 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004993 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00004994 assert(Op.getNumOperands() == 3 &&
4995 VT == Op.getOperand(1).getValueType() &&
4996 "Unexpected SRL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004997
Dan Gohman9ed06db2008-03-07 20:36:53 +00004998 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00004999 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00005000 SDValue Lo = Op.getOperand(0);
5001 SDValue Hi = Op.getOperand(1);
5002 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00005003 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005004
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005005 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005006 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005007 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5008 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5009 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5010 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005011 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005012 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
5013 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5014 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00005015 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005016 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00005017}
5018
Dan Gohmand858e902010-04-17 15:26:15 +00005019SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005020 SDLoc dl(Op);
Owen Andersone50ed302009-08-10 22:56:29 +00005021 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005022 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00005023 assert(Op.getNumOperands() == 3 &&
5024 VT == Op.getOperand(1).getValueType() &&
5025 "Unexpected SRA!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005026
Dan Gohman9ed06db2008-03-07 20:36:53 +00005027 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman475871a2008-07-27 21:46:04 +00005028 SDValue Lo = Op.getOperand(0);
5029 SDValue Hi = Op.getOperand(1);
5030 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00005031 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005032
Dale Johannesenf5d97892009-02-04 01:48:28 +00005033 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005034 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf5d97892009-02-04 01:48:28 +00005035 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5036 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5037 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5038 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005039 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00005040 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
5041 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
5042 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands2fbfbd22008-10-30 19:28:32 +00005043 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman475871a2008-07-27 21:46:04 +00005044 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00005045 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00005046}
5047
5048//===----------------------------------------------------------------------===//
5049// Vector related lowering.
5050//
5051
Chris Lattner4a998b92006-04-17 06:00:21 +00005052/// BuildSplatI - Build a canonical splati of Val with an element size of
5053/// SplatSize. Cast the result to VT.
Owen Andersone50ed302009-08-10 22:56:29 +00005054static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005055 SelectionDAG &DAG, SDLoc dl) {
Chris Lattner4a998b92006-04-17 06:00:21 +00005056 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner70fa4932006-12-01 01:45:39 +00005057
Owen Andersone50ed302009-08-10 22:56:29 +00005058 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson825b72b2009-08-11 20:47:22 +00005059 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner4a998b92006-04-17 06:00:21 +00005060 };
Chris Lattner70fa4932006-12-01 01:45:39 +00005061
Owen Anderson825b72b2009-08-11 20:47:22 +00005062 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00005063
Chris Lattner70fa4932006-12-01 01:45:39 +00005064 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
5065 if (Val == -1)
5066 SplatSize = 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00005067
Owen Andersone50ed302009-08-10 22:56:29 +00005068 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00005069
Chris Lattner4a998b92006-04-17 06:00:21 +00005070 // Build a canonical splat for this value.
Owen Anderson825b72b2009-08-11 20:47:22 +00005071 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00005072 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005073 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Evan Chenga87008d2009-02-25 22:49:59 +00005074 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT,
5075 &Ops[0], Ops.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005076 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00005077}
5078
Hal Finkel80d10de2013-05-24 23:00:14 +00005079/// BuildIntrinsicOp - Return a unary operator intrinsic node with the
5080/// specified intrinsic ID.
5081static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005082 SelectionDAG &DAG, SDLoc dl,
Hal Finkel80d10de2013-05-24 23:00:14 +00005083 EVT DestVT = MVT::Other) {
5084 if (DestVT == MVT::Other) DestVT = Op.getValueType();
5085 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
5086 DAG.getConstant(IID, MVT::i32), Op);
5087}
5088
Chris Lattnere7c768e2006-04-18 03:24:30 +00005089/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner6876e662006-04-17 06:58:41 +00005090/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00005091static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005092 SelectionDAG &DAG, SDLoc dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005093 EVT DestVT = MVT::Other) {
5094 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00005095 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00005096 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner6876e662006-04-17 06:58:41 +00005097}
5098
Chris Lattnere7c768e2006-04-18 03:24:30 +00005099/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
5100/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00005101static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesened2eee62009-02-06 01:31:28 +00005102 SDValue Op2, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005103 SDLoc dl, EVT DestVT = MVT::Other) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005104 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00005105 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00005106 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnere7c768e2006-04-18 03:24:30 +00005107}
5108
5109
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005110/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
5111/// amount. The result has the specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005112static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005113 EVT VT, SelectionDAG &DAG, SDLoc dl) {
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005114 // Force LHS/RHS to be the right type.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005115 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
5116 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
Duncan Sandsd038e042008-07-21 10:20:31 +00005117
Nate Begeman9008ca62009-04-27 18:41:29 +00005118 int Ops[16];
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005119 for (unsigned i = 0; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005120 Ops[i] = i + Amt;
Owen Anderson825b72b2009-08-11 20:47:22 +00005121 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005122 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattnerbdd558c2006-04-17 17:55:10 +00005123}
5124
Chris Lattnerf1b47082006-04-14 05:19:18 +00005125// If this is a case we can't handle, return null and let the default
5126// expansion code take care of it. If we CAN select this case, and if it
5127// selects to a single instruction, return Op. Otherwise, if we can codegen
5128// this case more efficiently than a constant pool load, lower it to the
5129// sequence of ops that should be used.
Dan Gohmand858e902010-04-17 15:26:15 +00005130SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
5131 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005132 SDLoc dl(Op);
Bob Wilsona27ea9e2009-03-01 01:13:55 +00005133 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
5134 assert(BVN != 0 && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Micheldf380432009-02-25 03:12:50 +00005135
Bob Wilson24e338e2009-03-02 23:24:16 +00005136 // Check if this is a splat of a constant value.
5137 APInt APSplatBits, APSplatUndef;
5138 unsigned SplatBitSize;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00005139 bool HasAnyUndefs;
Bob Wilsonf2950b02009-03-03 19:26:27 +00005140 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
Dale Johannesen1e608812009-11-13 01:45:18 +00005141 HasAnyUndefs, 0, true) || SplatBitSize > 32)
Bob Wilsonf2950b02009-03-03 19:26:27 +00005142 return SDValue();
Evan Chenga87008d2009-02-25 22:49:59 +00005143
Bob Wilsonf2950b02009-03-03 19:26:27 +00005144 unsigned SplatBits = APSplatBits.getZExtValue();
5145 unsigned SplatUndef = APSplatUndef.getZExtValue();
5146 unsigned SplatSize = SplatBitSize / 8;
Scott Michelfdc40a02009-02-17 22:15:04 +00005147
Bob Wilsonf2950b02009-03-03 19:26:27 +00005148 // First, handle single instruction cases.
5149
5150 // All zeros?
5151 if (SplatBits == 0) {
5152 // Canonicalize all zero vectors to be v4i32.
Owen Anderson825b72b2009-08-11 20:47:22 +00005153 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
5154 SDValue Z = DAG.getConstant(0, MVT::i32);
5155 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005156 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
Chris Lattnerf1b47082006-04-14 05:19:18 +00005157 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00005158 return Op;
5159 }
Chris Lattnerb17f1672006-04-16 01:01:29 +00005160
Bob Wilsonf2950b02009-03-03 19:26:27 +00005161 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
5162 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
5163 (32-SplatBitSize));
5164 if (SextVal >= -16 && SextVal <= 15)
5165 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005166
5167
Bob Wilsonf2950b02009-03-03 19:26:27 +00005168 // Two instruction sequences.
Scott Michelfdc40a02009-02-17 22:15:04 +00005169
Bob Wilsonf2950b02009-03-03 19:26:27 +00005170 // If this value is in the range [-32,30] and is even, use:
Bill Schmidtabc40282013-02-20 20:41:42 +00005171 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
5172 // If this value is in the range [17,31] and is odd, use:
5173 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
5174 // If this value is in the range [-31,-17] and is odd, use:
5175 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
5176 // Note the last two are three-instruction sequences.
5177 if (SextVal >= -32 && SextVal <= 31) {
5178 // To avoid having these optimizations undone by constant folding,
5179 // we convert to a pseudo that will be expanded later into one of
5180 // the above forms.
5181 SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
Bill Schmidtb34c79e2013-02-20 15:50:31 +00005182 EVT VT = Op.getValueType();
5183 int Size = VT == MVT::v16i8 ? 1 : (VT == MVT::v8i16 ? 2 : 4);
5184 SDValue EltSize = DAG.getConstant(Size, MVT::i32);
5185 return DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005186 }
5187
5188 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
5189 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
5190 // for fneg/fabs.
5191 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
5192 // Make -1 and vspltisw -1:
Owen Anderson825b72b2009-08-11 20:47:22 +00005193 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005194
5195 // Make the VSLW intrinsic, computing 0x8000_0000.
5196 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
5197 OnesV, DAG, dl);
5198
5199 // xor by OnesV to invert it.
Owen Anderson825b72b2009-08-11 20:47:22 +00005200 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005201 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005202 }
5203
5204 // Check to see if this is a wide variety of vsplti*, binop self cases.
5205 static const signed char SplatCsts[] = {
5206 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
5207 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
5208 };
5209
5210 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
5211 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
5212 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
5213 int i = SplatCsts[idx];
5214
5215 // Figure out what shift amount will be used by altivec if shifted by i in
5216 // this splat size.
5217 unsigned TypeShiftAmt = i & (SplatBitSize-1);
5218
5219 // vsplti + shl self.
Richard Smith1144af32012-08-24 23:29:28 +00005220 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005221 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005222 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5223 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
5224 Intrinsic::ppc_altivec_vslw
5225 };
5226 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005227 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00005228 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005229
Bob Wilsonf2950b02009-03-03 19:26:27 +00005230 // vsplti + srl self.
5231 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005232 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005233 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5234 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
5235 Intrinsic::ppc_altivec_vsrw
5236 };
5237 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005238 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00005239 }
5240
Bob Wilsonf2950b02009-03-03 19:26:27 +00005241 // vsplti + sra self.
5242 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005243 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005244 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5245 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
5246 Intrinsic::ppc_altivec_vsraw
5247 };
5248 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005249 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00005250 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005251
Bob Wilsonf2950b02009-03-03 19:26:27 +00005252 // vsplti + rol self.
5253 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
5254 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005255 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005256 static const unsigned IIDs[] = { // Intrinsic to use for each size.
5257 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
5258 Intrinsic::ppc_altivec_vrlw
5259 };
5260 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005261 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005262 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005263
Bob Wilsonf2950b02009-03-03 19:26:27 +00005264 // t = vsplti c, result = vsldoi t, t, 1
Richard Smith1144af32012-08-24 23:29:28 +00005265 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005266 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005267 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnerdbce85d2006-04-17 18:09:22 +00005268 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00005269 // t = vsplti c, result = vsldoi t, t, 2
Richard Smith1144af32012-08-24 23:29:28 +00005270 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005271 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005272 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattnerf1b47082006-04-14 05:19:18 +00005273 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00005274 // t = vsplti c, result = vsldoi t, t, 3
Richard Smith1144af32012-08-24 23:29:28 +00005275 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005276 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00005277 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
5278 }
5279 }
5280
Dan Gohman475871a2008-07-27 21:46:04 +00005281 return SDValue();
Chris Lattnerf1b47082006-04-14 05:19:18 +00005282}
5283
Chris Lattner59138102006-04-17 05:28:54 +00005284/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5285/// the specified operations to build the shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00005286static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00005287 SDValue RHS, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005288 SDLoc dl) {
Chris Lattner59138102006-04-17 05:28:54 +00005289 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling77959322008-09-17 00:30:57 +00005290 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner59138102006-04-17 05:28:54 +00005291 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005292
Chris Lattner59138102006-04-17 05:28:54 +00005293 enum {
Chris Lattner00402c72006-05-16 04:20:24 +00005294 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 +00005295 OP_VMRGHW,
5296 OP_VMRGLW,
5297 OP_VSPLTISW0,
5298 OP_VSPLTISW1,
5299 OP_VSPLTISW2,
5300 OP_VSPLTISW3,
5301 OP_VSLDOI4,
5302 OP_VSLDOI8,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00005303 OP_VSLDOI12
Chris Lattner59138102006-04-17 05:28:54 +00005304 };
Scott Michelfdc40a02009-02-17 22:15:04 +00005305
Chris Lattner59138102006-04-17 05:28:54 +00005306 if (OpNum == OP_COPY) {
5307 if (LHSID == (1*9+2)*9+3) return LHS;
5308 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5309 return RHS;
5310 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005311
Dan Gohman475871a2008-07-27 21:46:04 +00005312 SDValue OpLHS, OpRHS;
Dale Johannesened2eee62009-02-06 01:31:28 +00005313 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5314 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005315
Nate Begeman9008ca62009-04-27 18:41:29 +00005316 int ShufIdxs[16];
Chris Lattner59138102006-04-17 05:28:54 +00005317 switch (OpNum) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005318 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner59138102006-04-17 05:28:54 +00005319 case OP_VMRGHW:
5320 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
5321 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
5322 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
5323 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
5324 break;
5325 case OP_VMRGLW:
5326 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
5327 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
5328 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
5329 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
5330 break;
5331 case OP_VSPLTISW0:
5332 for (unsigned i = 0; i != 16; ++i)
5333 ShufIdxs[i] = (i&3)+0;
5334 break;
5335 case OP_VSPLTISW1:
5336 for (unsigned i = 0; i != 16; ++i)
5337 ShufIdxs[i] = (i&3)+4;
5338 break;
5339 case OP_VSPLTISW2:
5340 for (unsigned i = 0; i != 16; ++i)
5341 ShufIdxs[i] = (i&3)+8;
5342 break;
5343 case OP_VSPLTISW3:
5344 for (unsigned i = 0; i != 16; ++i)
5345 ShufIdxs[i] = (i&3)+12;
5346 break;
5347 case OP_VSLDOI4:
Dale Johannesened2eee62009-02-06 01:31:28 +00005348 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005349 case OP_VSLDOI8:
Dale Johannesened2eee62009-02-06 01:31:28 +00005350 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005351 case OP_VSLDOI12:
Dale Johannesened2eee62009-02-06 01:31:28 +00005352 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005353 }
Owen Andersone50ed302009-08-10 22:56:29 +00005354 EVT VT = OpLHS.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005355 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
5356 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00005357 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005358 return DAG.getNode(ISD::BITCAST, dl, VT, T);
Chris Lattner59138102006-04-17 05:28:54 +00005359}
5360
Chris Lattnerf1b47082006-04-14 05:19:18 +00005361/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
5362/// is a shuffle we can handle in a single instruction, return it. Otherwise,
5363/// return the code it can be lowered into. Worst case, it can always be
5364/// lowered into a vperm.
Scott Michelfdc40a02009-02-17 22:15:04 +00005365SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005366 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005367 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005368 SDValue V1 = Op.getOperand(0);
5369 SDValue V2 = Op.getOperand(1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005370 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Andersone50ed302009-08-10 22:56:29 +00005371 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005372
Chris Lattnerf1b47082006-04-14 05:19:18 +00005373 // Cases that are handled by instructions that take permute immediates
5374 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
5375 // selected by the instruction selector.
5376 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005377 if (PPC::isSplatShuffleMask(SVOp, 1) ||
5378 PPC::isSplatShuffleMask(SVOp, 2) ||
5379 PPC::isSplatShuffleMask(SVOp, 4) ||
5380 PPC::isVPKUWUMShuffleMask(SVOp, true) ||
5381 PPC::isVPKUHUMShuffleMask(SVOp, true) ||
5382 PPC::isVSLDOIShuffleMask(SVOp, true) != -1 ||
5383 PPC::isVMRGLShuffleMask(SVOp, 1, true) ||
5384 PPC::isVMRGLShuffleMask(SVOp, 2, true) ||
5385 PPC::isVMRGLShuffleMask(SVOp, 4, true) ||
5386 PPC::isVMRGHShuffleMask(SVOp, 1, true) ||
5387 PPC::isVMRGHShuffleMask(SVOp, 2, true) ||
5388 PPC::isVMRGHShuffleMask(SVOp, 4, true)) {
Chris Lattnerf1b47082006-04-14 05:19:18 +00005389 return Op;
5390 }
5391 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005392
Chris Lattnerf1b47082006-04-14 05:19:18 +00005393 // Altivec has a variety of "shuffle immediates" that take two vector inputs
5394 // and produce a fixed permutation. If any of these match, do not lower to
5395 // VPERM.
Nate Begeman9008ca62009-04-27 18:41:29 +00005396 if (PPC::isVPKUWUMShuffleMask(SVOp, false) ||
5397 PPC::isVPKUHUMShuffleMask(SVOp, false) ||
5398 PPC::isVSLDOIShuffleMask(SVOp, false) != -1 ||
5399 PPC::isVMRGLShuffleMask(SVOp, 1, false) ||
5400 PPC::isVMRGLShuffleMask(SVOp, 2, false) ||
5401 PPC::isVMRGLShuffleMask(SVOp, 4, false) ||
5402 PPC::isVMRGHShuffleMask(SVOp, 1, false) ||
5403 PPC::isVMRGHShuffleMask(SVOp, 2, false) ||
5404 PPC::isVMRGHShuffleMask(SVOp, 4, false))
Chris Lattnerf1b47082006-04-14 05:19:18 +00005405 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00005406
Chris Lattner59138102006-04-17 05:28:54 +00005407 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
5408 // perfect shuffle table to emit an optimal matching sequence.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00005409 ArrayRef<int> PermMask = SVOp->getMask();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005410
Chris Lattner59138102006-04-17 05:28:54 +00005411 unsigned PFIndexes[4];
5412 bool isFourElementShuffle = true;
5413 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
5414 unsigned EltNo = 8; // Start out undef.
5415 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman9008ca62009-04-27 18:41:29 +00005416 if (PermMask[i*4+j] < 0)
Chris Lattner59138102006-04-17 05:28:54 +00005417 continue; // Undef, ignore it.
Scott Michelfdc40a02009-02-17 22:15:04 +00005418
Nate Begeman9008ca62009-04-27 18:41:29 +00005419 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner59138102006-04-17 05:28:54 +00005420 if ((ByteSource & 3) != j) {
5421 isFourElementShuffle = false;
5422 break;
5423 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005424
Chris Lattner59138102006-04-17 05:28:54 +00005425 if (EltNo == 8) {
5426 EltNo = ByteSource/4;
5427 } else if (EltNo != ByteSource/4) {
5428 isFourElementShuffle = false;
5429 break;
5430 }
5431 }
5432 PFIndexes[i] = EltNo;
5433 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005434
5435 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner59138102006-04-17 05:28:54 +00005436 // perfect shuffle vector to determine if it is cost effective to do this as
5437 // discrete instructions, or whether we should use a vperm.
5438 if (isFourElementShuffle) {
5439 // Compute the index in the perfect shuffle table.
Scott Michelfdc40a02009-02-17 22:15:04 +00005440 unsigned PFTableIndex =
Chris Lattner59138102006-04-17 05:28:54 +00005441 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelfdc40a02009-02-17 22:15:04 +00005442
Chris Lattner59138102006-04-17 05:28:54 +00005443 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5444 unsigned Cost = (PFEntry >> 30);
Scott Michelfdc40a02009-02-17 22:15:04 +00005445
Chris Lattner59138102006-04-17 05:28:54 +00005446 // Determining when to avoid vperm is tricky. Many things affect the cost
5447 // of vperm, particularly how many times the perm mask needs to be computed.
5448 // For example, if the perm mask can be hoisted out of a loop or is already
5449 // used (perhaps because there are multiple permutes with the same shuffle
5450 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
5451 // the loop requires an extra register.
5452 //
5453 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelfdc40a02009-02-17 22:15:04 +00005454 // generated in 3 or fewer operations. When we have loop information
Chris Lattner59138102006-04-17 05:28:54 +00005455 // available, if this block is within a loop, we should avoid using vperm
5456 // for 3-operation perms and use a constant pool load instead.
Scott Michelfdc40a02009-02-17 22:15:04 +00005457 if (Cost < 3)
Dale Johannesened2eee62009-02-06 01:31:28 +00005458 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00005459 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005460
Chris Lattnerf1b47082006-04-14 05:19:18 +00005461 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
5462 // vector that will get spilled to the constant pool.
5463 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelfdc40a02009-02-17 22:15:04 +00005464
Chris Lattnerf1b47082006-04-14 05:19:18 +00005465 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
5466 // that it is in input element units, not in bytes. Convert now.
Owen Andersone50ed302009-08-10 22:56:29 +00005467 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005468 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelfdc40a02009-02-17 22:15:04 +00005469
Dan Gohman475871a2008-07-27 21:46:04 +00005470 SmallVector<SDValue, 16> ResultMask;
Nate Begeman9008ca62009-04-27 18:41:29 +00005471 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
5472 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00005473
Chris Lattnerf1b47082006-04-14 05:19:18 +00005474 for (unsigned j = 0; j != BytesPerElement; ++j)
5475 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
Owen Anderson825b72b2009-08-11 20:47:22 +00005476 MVT::i32));
Chris Lattnerf1b47082006-04-14 05:19:18 +00005477 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005478
Owen Anderson825b72b2009-08-11 20:47:22 +00005479 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Evan Chenga87008d2009-02-25 22:49:59 +00005480 &ResultMask[0], ResultMask.size());
Dale Johannesened2eee62009-02-06 01:31:28 +00005481 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), V1, V2, VPermMask);
Chris Lattnerf1b47082006-04-14 05:19:18 +00005482}
5483
Chris Lattner90564f22006-04-18 17:59:36 +00005484/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
5485/// altivec comparison. If it is, return true and fill in Opc/isDot with
5486/// information about the intrinsic.
Dan Gohman475871a2008-07-27 21:46:04 +00005487static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner90564f22006-04-18 17:59:36 +00005488 bool &isDot) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005489 unsigned IntrinsicID =
5490 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00005491 CompareOpc = -1;
5492 isDot = false;
5493 switch (IntrinsicID) {
5494 default: return false;
5495 // Comparison predicates.
Chris Lattner1a635d62006-04-14 06:01:58 +00005496 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
5497 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
5498 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
5499 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
5500 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
5501 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
5502 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
5503 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
5504 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
5505 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
5506 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
5507 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
5508 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005509
Chris Lattner1a635d62006-04-14 06:01:58 +00005510 // Normal Comparisons.
5511 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
5512 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
5513 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
5514 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
5515 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
5516 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
5517 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
5518 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
5519 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
5520 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
5521 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
5522 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
5523 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
5524 }
Chris Lattner90564f22006-04-18 17:59:36 +00005525 return true;
5526}
5527
5528/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
5529/// lower, do it, otherwise return null.
Scott Michelfdc40a02009-02-17 22:15:04 +00005530SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005531 SelectionDAG &DAG) const {
Chris Lattner90564f22006-04-18 17:59:36 +00005532 // If this is a lowered altivec predicate compare, CompareOpc is set to the
5533 // opcode number of the comparison.
Andrew Trickac6d9be2013-05-25 02:42:55 +00005534 SDLoc dl(Op);
Chris Lattner90564f22006-04-18 17:59:36 +00005535 int CompareOpc;
5536 bool isDot;
5537 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman475871a2008-07-27 21:46:04 +00005538 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelfdc40a02009-02-17 22:15:04 +00005539
Chris Lattner90564f22006-04-18 17:59:36 +00005540 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner1a635d62006-04-14 06:01:58 +00005541 if (!isDot) {
Dale Johannesen3484c092009-02-05 22:07:54 +00005542 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner149add02010-03-14 22:44:11 +00005543 Op.getOperand(1), Op.getOperand(2),
5544 DAG.getConstant(CompareOpc, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005545 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
Chris Lattner1a635d62006-04-14 06:01:58 +00005546 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005547
Chris Lattner1a635d62006-04-14 06:01:58 +00005548 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman475871a2008-07-27 21:46:04 +00005549 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00005550 Op.getOperand(2), // LHS
5551 Op.getOperand(3), // RHS
Owen Anderson825b72b2009-08-11 20:47:22 +00005552 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00005553 };
Benjamin Kramer3853f742013-03-07 20:33:29 +00005554 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesen3484c092009-02-05 22:07:54 +00005555 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00005556
Chris Lattner1a635d62006-04-14 06:01:58 +00005557 // Now that we have the comparison, emit a copy from the CR to a GPR.
5558 // This is flagged to the above dot comparison.
Owen Anderson825b72b2009-08-11 20:47:22 +00005559 SDValue Flags = DAG.getNode(PPCISD::MFCR, dl, MVT::i32,
5560 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelfdc40a02009-02-17 22:15:04 +00005561 CompNode.getValue(1));
5562
Chris Lattner1a635d62006-04-14 06:01:58 +00005563 // Unpack the result based on how the target uses it.
5564 unsigned BitNo; // Bit # of CR6.
5565 bool InvertBit; // Invert result?
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005566 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner1a635d62006-04-14 06:01:58 +00005567 default: // Can't happen, don't crash on invalid number though.
5568 case 0: // Return the value of the EQ bit of CR6.
5569 BitNo = 0; InvertBit = false;
5570 break;
5571 case 1: // Return the inverted value of the EQ bit of CR6.
5572 BitNo = 0; InvertBit = true;
5573 break;
5574 case 2: // Return the value of the LT bit of CR6.
5575 BitNo = 2; InvertBit = false;
5576 break;
5577 case 3: // Return the inverted value of the LT bit of CR6.
5578 BitNo = 2; InvertBit = true;
5579 break;
5580 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005581
Chris Lattner1a635d62006-04-14 06:01:58 +00005582 // Shift the bit into the low position.
Owen Anderson825b72b2009-08-11 20:47:22 +00005583 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
5584 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00005585 // Isolate the bit.
Owen Anderson825b72b2009-08-11 20:47:22 +00005586 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
5587 DAG.getConstant(1, MVT::i32));
Scott Michelfdc40a02009-02-17 22:15:04 +00005588
Chris Lattner1a635d62006-04-14 06:01:58 +00005589 // If we are supposed to, toggle the bit.
5590 if (InvertBit)
Owen Anderson825b72b2009-08-11 20:47:22 +00005591 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
5592 DAG.getConstant(1, MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00005593 return Flags;
5594}
5595
Scott Michelfdc40a02009-02-17 22:15:04 +00005596SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005597 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005598 SDLoc dl(Op);
Chris Lattner1a635d62006-04-14 06:01:58 +00005599 // Create a stack slot that is 16-byte aligned.
5600 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
David Greene3f2bf852009-11-12 20:49:22 +00005601 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
Dale Johannesen08673d22010-05-03 22:59:34 +00005602 EVT PtrVT = getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00005603 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005604
Chris Lattner1a635d62006-04-14 06:01:58 +00005605 // Store the input value into Value#0 of the stack slot.
Dale Johannesen33c960f2009-02-04 20:06:27 +00005606 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00005607 Op.getOperand(0), FIdx, MachinePointerInfo(),
David Greene534502d12010-02-15 16:56:53 +00005608 false, false, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00005609 // Load it out.
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00005610 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005611 false, false, false, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00005612}
5613
Dan Gohmand858e902010-04-17 15:26:15 +00005614SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005615 SDLoc dl(Op);
Owen Anderson825b72b2009-08-11 20:47:22 +00005616 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman475871a2008-07-27 21:46:04 +00005617 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005618
Owen Anderson825b72b2009-08-11 20:47:22 +00005619 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
5620 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelfdc40a02009-02-17 22:15:04 +00005621
Dan Gohman475871a2008-07-27 21:46:04 +00005622 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesened2eee62009-02-06 01:31:28 +00005623 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005624
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005625 // Shrinkify inputs to v8i16.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005626 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
5627 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
5628 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
Scott Michelfdc40a02009-02-17 22:15:04 +00005629
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005630 // Low parts multiplied together, generating 32-bit results (we ignore the
5631 // top parts).
Dan Gohman475871a2008-07-27 21:46:04 +00005632 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson825b72b2009-08-11 20:47:22 +00005633 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00005634
Dan Gohman475871a2008-07-27 21:46:04 +00005635 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson825b72b2009-08-11 20:47:22 +00005636 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005637 // Shift the high parts up 16 bits.
Scott Michelfdc40a02009-02-17 22:15:04 +00005638 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesened2eee62009-02-06 01:31:28 +00005639 Neg16, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00005640 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
5641 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005642 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005643
Owen Anderson825b72b2009-08-11 20:47:22 +00005644 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005645
Chris Lattnercea2aa72006-04-18 04:28:57 +00005646 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesened2eee62009-02-06 01:31:28 +00005647 LHS, RHS, Zero, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00005648 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005649 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005650
Chris Lattner19a81522006-04-18 03:57:35 +00005651 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00005652 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson825b72b2009-08-11 20:47:22 +00005653 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005654 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00005655
Chris Lattner19a81522006-04-18 03:57:35 +00005656 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00005657 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson825b72b2009-08-11 20:47:22 +00005658 LHS, RHS, DAG, dl, MVT::v8i16);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005659 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00005660
Chris Lattner19a81522006-04-18 03:57:35 +00005661 // Merge the results together.
Nate Begeman9008ca62009-04-27 18:41:29 +00005662 int Ops[16];
Chris Lattner19a81522006-04-18 03:57:35 +00005663 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005664 Ops[i*2 ] = 2*i+1;
5665 Ops[i*2+1] = 2*i+1+16;
Chris Lattner19a81522006-04-18 03:57:35 +00005666 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005667 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005668 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00005669 llvm_unreachable("Unknown mul to lower!");
Chris Lattner72dd9bd2006-04-18 03:43:48 +00005670 }
Chris Lattnere7c768e2006-04-18 03:24:30 +00005671}
5672
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00005673/// LowerOperation - Provide custom lowering hooks for some operations.
5674///
Dan Gohmand858e902010-04-17 15:26:15 +00005675SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00005676 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005677 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner1a635d62006-04-14 06:01:58 +00005678 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilson3d90dbe2009-11-04 21:31:18 +00005679 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00005680 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Roman Divackyfd42ed62012-06-04 17:36:38 +00005681 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman37efe672006-04-22 18:53:45 +00005682 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00005683 case ISD::SETCC: return LowerSETCC(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +00005684 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
5685 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005686 case ISD::VASTART:
Dan Gohman1e93df62010-04-17 14:41:14 +00005687 return LowerVASTART(Op, DAG, PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00005688
5689 case ISD::VAARG:
Dan Gohman1e93df62010-04-17 14:41:14 +00005690 return LowerVAARG(Op, DAG, PPCSubTarget);
Nicolas Geoffray01119992007-04-03 13:59:52 +00005691
Jim Laskeyefc7e522006-12-04 22:04:42 +00005692 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, PPCSubTarget);
Chris Lattner9f0bc652007-02-25 05:34:32 +00005693 case ISD::DYNAMIC_STACKALLOC:
5694 return LowerDYNAMIC_STACKALLOC(Op, DAG, PPCSubTarget);
Evan Cheng54fc97d2008-04-19 01:30:48 +00005695
Hal Finkel7ee74a62013-03-21 21:37:52 +00005696 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
5697 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
5698
Chris Lattner1a635d62006-04-14 06:01:58 +00005699 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen4c9369d2009-06-04 20:53:52 +00005700 case ISD::FP_TO_UINT:
5701 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005702 SDLoc(Op));
Hal Finkel46479192013-04-01 17:52:07 +00005703 case ISD::UINT_TO_FP:
5704 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00005705 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00005706
Chris Lattner1a635d62006-04-14 06:01:58 +00005707 // Lower 64-bit shifts.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00005708 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
5709 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
5710 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00005711
Chris Lattner1a635d62006-04-14 06:01:58 +00005712 // Vector-related lowering.
5713 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
5714 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
5715 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
5716 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Chris Lattnere7c768e2006-04-18 03:24:30 +00005717 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005718
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00005719 // For counter-based loop handling.
5720 case ISD::INTRINSIC_W_CHAIN: return SDValue();
5721
Chris Lattner3fc027d2007-12-08 06:59:59 +00005722 // Frame & Return address.
5723 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005724 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnerbc11c342005-08-31 20:23:54 +00005725 }
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00005726}
5727
Duncan Sands1607f052008-12-01 11:39:25 +00005728void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
5729 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00005730 SelectionDAG &DAG) const {
Roman Divackybdb226e2011-06-28 15:30:42 +00005731 const TargetMachine &TM = getTargetMachine();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005732 SDLoc dl(N);
Chris Lattner1f873002007-11-28 18:44:47 +00005733 switch (N->getOpcode()) {
Duncan Sands57760d92008-10-28 15:00:32 +00005734 default:
Craig Topperbc219812012-02-07 02:50:20 +00005735 llvm_unreachable("Do not know how to custom type legalize this operation!");
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00005736 case ISD::INTRINSIC_W_CHAIN: {
5737 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
5738 Intrinsic::ppc_is_decremented_ctr_nonzero)
5739 break;
5740
5741 assert(N->getValueType(0) == MVT::i1 &&
5742 "Unexpected result type for CTR decrement intrinsic");
Matt Arsenault225ed702013-05-18 00:21:46 +00005743 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00005744 SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
5745 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
5746 N->getOperand(1));
5747
5748 Results.push_back(NewInt);
5749 Results.push_back(NewInt.getValue(1));
5750 break;
5751 }
Roman Divackybdb226e2011-06-28 15:30:42 +00005752 case ISD::VAARG: {
5753 if (!TM.getSubtarget<PPCSubtarget>().isSVR4ABI()
5754 || TM.getSubtarget<PPCSubtarget>().isPPC64())
5755 return;
5756
5757 EVT VT = N->getValueType(0);
5758
5759 if (VT == MVT::i64) {
5760 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, PPCSubTarget);
5761
5762 Results.push_back(NewNode);
5763 Results.push_back(NewNode.getValue(1));
5764 }
5765 return;
5766 }
Duncan Sands1607f052008-12-01 11:39:25 +00005767 case ISD::FP_ROUND_INREG: {
Owen Anderson825b72b2009-08-11 20:47:22 +00005768 assert(N->getValueType(0) == MVT::ppcf128);
5769 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelfdc40a02009-02-17 22:15:04 +00005770 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005771 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00005772 DAG.getIntPtrConstant(0));
Dale Johannesen3484c092009-02-05 22:07:54 +00005773 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005774 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00005775 DAG.getIntPtrConstant(1));
5776
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00005777 // Add the two halves of the long double in round-to-zero mode.
5778 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
Duncan Sands1607f052008-12-01 11:39:25 +00005779
5780 // We know the low half is about to be thrown away, so just use something
5781 // convenient.
Owen Anderson825b72b2009-08-11 20:47:22 +00005782 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesen3484c092009-02-05 22:07:54 +00005783 FPreg, FPreg));
Duncan Sands1607f052008-12-01 11:39:25 +00005784 return;
Duncan Sandsa7360f02008-07-19 16:26:02 +00005785 }
Duncan Sands1607f052008-12-01 11:39:25 +00005786 case ISD::FP_TO_SINT:
Dale Johannesen4c9369d2009-06-04 20:53:52 +00005787 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands1607f052008-12-01 11:39:25 +00005788 return;
Chris Lattner1f873002007-11-28 18:44:47 +00005789 }
5790}
5791
5792
Chris Lattner1a635d62006-04-14 06:01:58 +00005793//===----------------------------------------------------------------------===//
5794// Other Lowering Code
5795//===----------------------------------------------------------------------===//
5796
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00005797MachineBasicBlock *
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005798PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00005799 bool is64bit, unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00005800 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005801 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5802
5803 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5804 MachineFunction *F = BB->getParent();
5805 MachineFunction::iterator It = BB;
5806 ++It;
5807
5808 unsigned dest = MI->getOperand(0).getReg();
5809 unsigned ptrA = MI->getOperand(1).getReg();
5810 unsigned ptrB = MI->getOperand(2).getReg();
5811 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00005812 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005813
5814 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5815 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5816 F->insert(It, loopMBB);
5817 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00005818 exitMBB->splice(exitMBB->begin(), BB,
5819 llvm::next(MachineBasicBlock::iterator(MI)),
5820 BB->end());
5821 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005822
5823 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesen0e55f062008-08-29 18:29:46 +00005824 unsigned TmpReg = (!BinOpcode) ? incr :
5825 RegInfo.createVirtualRegister(
Dale Johannesena619d012008-09-02 20:30:23 +00005826 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5827 (const TargetRegisterClass *) &PPC::GPRCRegClass);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005828
5829 // thisMBB:
5830 // ...
5831 // fallthrough --> loopMBB
5832 BB->addSuccessor(loopMBB);
5833
5834 // loopMBB:
5835 // l[wd]arx dest, ptr
5836 // add r0, dest, incr
5837 // st[wd]cx. r0, ptr
5838 // bne- loopMBB
5839 // fallthrough --> exitMBB
5840 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00005841 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005842 .addReg(ptrA).addReg(ptrB);
Dale Johannesen0e55f062008-08-29 18:29:46 +00005843 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00005844 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
5845 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005846 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005847 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00005848 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00005849 BB->addSuccessor(loopMBB);
5850 BB->addSuccessor(exitMBB);
5851
5852 // exitMBB:
5853 // ...
5854 BB = exitMBB;
5855 return BB;
5856}
5857
5858MachineBasicBlock *
Scott Michelfdc40a02009-02-17 22:15:04 +00005859PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesen97efa362008-08-28 17:53:09 +00005860 MachineBasicBlock *BB,
5861 bool is8bit, // operation
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00005862 unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00005863 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesen97efa362008-08-28 17:53:09 +00005864 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5865 // In 64 bit mode we have to use 64 bits for addresses, even though the
5866 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
5867 // registers without caring whether they're 32 or 64, but here we're
5868 // doing actual arithmetic on the addresses.
5869 bool is64bit = PPCSubTarget.isPPC64();
Hal Finkel76973702013-03-21 23:45:03 +00005870 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesen97efa362008-08-28 17:53:09 +00005871
5872 const BasicBlock *LLVM_BB = BB->getBasicBlock();
5873 MachineFunction *F = BB->getParent();
5874 MachineFunction::iterator It = BB;
5875 ++It;
5876
5877 unsigned dest = MI->getOperand(0).getReg();
5878 unsigned ptrA = MI->getOperand(1).getReg();
5879 unsigned ptrB = MI->getOperand(2).getReg();
5880 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00005881 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen97efa362008-08-28 17:53:09 +00005882
5883 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
5884 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
5885 F->insert(It, loopMBB);
5886 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00005887 exitMBB->splice(exitMBB->begin(), BB,
5888 llvm::next(MachineBasicBlock::iterator(MI)),
5889 BB->end());
5890 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesen97efa362008-08-28 17:53:09 +00005891
5892 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00005893 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00005894 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
5895 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesen97efa362008-08-28 17:53:09 +00005896 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
5897 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
5898 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
5899 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
5900 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
5901 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
5902 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
5903 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
5904 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
5905 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen0e55f062008-08-29 18:29:46 +00005906 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00005907 unsigned Ptr1Reg;
Dale Johannesen0e55f062008-08-29 18:29:46 +00005908 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00005909
5910 // thisMBB:
5911 // ...
5912 // fallthrough --> loopMBB
5913 BB->addSuccessor(loopMBB);
5914
5915 // The 4-byte load must be aligned, while a char or short may be
5916 // anywhere in the word. Hence all this nasty bookkeeping code.
5917 // add ptr1, ptrA, ptrB [copy if ptrA==0]
5918 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00005919 // xori shift, shift1, 24 [16]
Dale Johannesen97efa362008-08-28 17:53:09 +00005920 // rlwinm ptr, ptr1, 0, 0, 29
5921 // slw incr2, incr, shift
5922 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
5923 // slw mask, mask2, shift
5924 // loopMBB:
Dale Johannesenea9eedb2008-08-30 00:08:53 +00005925 // lwarx tmpDest, ptr
Dale Johannesen0e55f062008-08-29 18:29:46 +00005926 // add tmp, tmpDest, incr2
5927 // andc tmp2, tmpDest, mask
Dale Johannesen97efa362008-08-28 17:53:09 +00005928 // and tmp3, tmp, mask
5929 // or tmp4, tmp3, tmp2
Dale Johannesenea9eedb2008-08-30 00:08:53 +00005930 // stwcx. tmp4, ptr
Dale Johannesen97efa362008-08-28 17:53:09 +00005931 // bne- loopMBB
5932 // fallthrough --> exitMBB
Dale Johannesen0e55f062008-08-29 18:29:46 +00005933 // srw dest, tmpDest, shift
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00005934 if (ptrA != ZeroReg) {
Dale Johannesen97efa362008-08-28 17:53:09 +00005935 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005936 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005937 .addReg(ptrA).addReg(ptrB);
5938 } else {
5939 Ptr1Reg = ptrB;
5940 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00005941 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005942 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005943 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005944 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
5945 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00005946 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005947 .addReg(Ptr1Reg).addImm(0).addImm(61);
5948 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00005949 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005950 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005951 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005952 .addReg(incr).addReg(ShiftReg);
5953 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00005954 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen97efa362008-08-28 17:53:09 +00005955 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00005956 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
5957 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesen97efa362008-08-28 17:53:09 +00005958 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00005959 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005960 .addReg(Mask2Reg).addReg(ShiftReg);
5961
5962 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00005963 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00005964 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen0e55f062008-08-29 18:29:46 +00005965 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00005966 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00005967 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005968 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00005969 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005970 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005971 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005972 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00005973 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Bill Schmidtdebf7d32013-04-02 18:37:08 +00005974 BuildMI(BB, dl, TII->get(PPC::STWCX))
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00005975 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00005976 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00005977 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesen97efa362008-08-28 17:53:09 +00005978 BB->addSuccessor(loopMBB);
5979 BB->addSuccessor(exitMBB);
5980
5981 // exitMBB:
5982 // ...
5983 BB = exitMBB;
Jakob Stoklund Olesen5fcb81d2011-04-04 17:57:29 +00005984 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
5985 .addReg(ShiftReg);
Dale Johannesen97efa362008-08-28 17:53:09 +00005986 return BB;
5987}
5988
Hal Finkel7ee74a62013-03-21 21:37:52 +00005989llvm::MachineBasicBlock*
5990PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
5991 MachineBasicBlock *MBB) const {
5992 DebugLoc DL = MI->getDebugLoc();
5993 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
5994
5995 MachineFunction *MF = MBB->getParent();
5996 MachineRegisterInfo &MRI = MF->getRegInfo();
5997
5998 const BasicBlock *BB = MBB->getBasicBlock();
5999 MachineFunction::iterator I = MBB;
6000 ++I;
6001
6002 // Memory Reference
6003 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6004 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6005
6006 unsigned DstReg = MI->getOperand(0).getReg();
6007 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
6008 assert(RC->hasType(MVT::i32) && "Invalid destination!");
6009 unsigned mainDstReg = MRI.createVirtualRegister(RC);
6010 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
6011
6012 MVT PVT = getPointerTy();
6013 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6014 "Invalid Pointer Size!");
6015 // For v = setjmp(buf), we generate
6016 //
6017 // thisMBB:
6018 // SjLjSetup mainMBB
6019 // bl mainMBB
6020 // v_restore = 1
6021 // b sinkMBB
6022 //
6023 // mainMBB:
6024 // buf[LabelOffset] = LR
6025 // v_main = 0
6026 //
6027 // sinkMBB:
6028 // v = phi(main, restore)
6029 //
6030
6031 MachineBasicBlock *thisMBB = MBB;
6032 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
6033 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
6034 MF->insert(I, mainMBB);
6035 MF->insert(I, sinkMBB);
6036
6037 MachineInstrBuilder MIB;
6038
6039 // Transfer the remainder of BB and its successor edges to sinkMBB.
6040 sinkMBB->splice(sinkMBB->begin(), MBB,
6041 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
6042 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
6043
6044 // Note that the structure of the jmp_buf used here is not compatible
6045 // with that used by libc, and is not designed to be. Specifically, it
6046 // stores only those 'reserved' registers that LLVM does not otherwise
6047 // understand how to spill. Also, by convention, by the time this
6048 // intrinsic is called, Clang has already stored the frame address in the
6049 // first slot of the buffer and stack address in the third. Following the
6050 // X86 target code, we'll store the jump address in the second slot. We also
6051 // need to save the TOC pointer (R2) to handle jumps between shared
6052 // libraries, and that will be stored in the fourth slot. The thread
6053 // identifier (R13) is not affected.
6054
6055 // thisMBB:
6056 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6057 const int64_t TOCOffset = 3 * PVT.getStoreSize();
6058
6059 // Prepare IP either in reg.
6060 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
6061 unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
6062 unsigned BufReg = MI->getOperand(1).getReg();
6063
6064 if (PPCSubTarget.isPPC64() && PPCSubTarget.isSVR4ABI()) {
6065 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
6066 .addReg(PPC::X2)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006067 .addImm(TOCOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006068 .addReg(BufReg);
6069
6070 MIB.setMemRefs(MMOBegin, MMOEnd);
6071 }
6072
6073 // Setup
Hal Finkelcaeeb182013-04-04 22:55:54 +00006074 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
Hal Finkel7ee74a62013-03-21 21:37:52 +00006075 MIB.addRegMask(PPCRegInfo->getNoPreservedMask());
6076
6077 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
6078
6079 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
6080 .addMBB(mainMBB);
6081 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
6082
6083 thisMBB->addSuccessor(mainMBB, /* weight */ 0);
6084 thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
6085
6086 // mainMBB:
6087 // mainDstReg = 0
6088 MIB = BuildMI(mainMBB, DL,
6089 TII->get(PPCSubTarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
6090
6091 // Store IP
6092 if (PPCSubTarget.isPPC64()) {
6093 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
6094 .addReg(LabelReg)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006095 .addImm(LabelOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006096 .addReg(BufReg);
6097 } else {
6098 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
6099 .addReg(LabelReg)
6100 .addImm(LabelOffset)
6101 .addReg(BufReg);
6102 }
6103
6104 MIB.setMemRefs(MMOBegin, MMOEnd);
6105
6106 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
6107 mainMBB->addSuccessor(sinkMBB);
6108
6109 // sinkMBB:
6110 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
6111 TII->get(PPC::PHI), DstReg)
6112 .addReg(mainDstReg).addMBB(mainMBB)
6113 .addReg(restoreDstReg).addMBB(thisMBB);
6114
6115 MI->eraseFromParent();
6116 return sinkMBB;
6117}
6118
6119MachineBasicBlock *
6120PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
6121 MachineBasicBlock *MBB) const {
6122 DebugLoc DL = MI->getDebugLoc();
6123 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6124
6125 MachineFunction *MF = MBB->getParent();
6126 MachineRegisterInfo &MRI = MF->getRegInfo();
6127
6128 // Memory Reference
6129 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
6130 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
6131
6132 MVT PVT = getPointerTy();
6133 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
6134 "Invalid Pointer Size!");
6135
6136 const TargetRegisterClass *RC =
6137 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
6138 unsigned Tmp = MRI.createVirtualRegister(RC);
6139 // Since FP is only updated here but NOT referenced, it's treated as GPR.
6140 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
6141 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
6142
6143 MachineInstrBuilder MIB;
6144
6145 const int64_t LabelOffset = 1 * PVT.getStoreSize();
6146 const int64_t SPOffset = 2 * PVT.getStoreSize();
6147 const int64_t TOCOffset = 3 * PVT.getStoreSize();
6148
6149 unsigned BufReg = MI->getOperand(0).getReg();
6150
6151 // Reload FP (the jumped-to function may not have had a
6152 // frame pointer, and if so, then its r31 will be restored
6153 // as necessary).
6154 if (PVT == MVT::i64) {
6155 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
6156 .addImm(0)
6157 .addReg(BufReg);
6158 } else {
6159 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
6160 .addImm(0)
6161 .addReg(BufReg);
6162 }
6163 MIB.setMemRefs(MMOBegin, MMOEnd);
6164
6165 // Reload IP
6166 if (PVT == MVT::i64) {
6167 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006168 .addImm(LabelOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006169 .addReg(BufReg);
6170 } else {
6171 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
6172 .addImm(LabelOffset)
6173 .addReg(BufReg);
6174 }
6175 MIB.setMemRefs(MMOBegin, MMOEnd);
6176
6177 // Reload SP
6178 if (PVT == MVT::i64) {
6179 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006180 .addImm(SPOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006181 .addReg(BufReg);
6182 } else {
6183 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
6184 .addImm(SPOffset)
6185 .addReg(BufReg);
6186 }
6187 MIB.setMemRefs(MMOBegin, MMOEnd);
6188
6189 // FIXME: When we also support base pointers, that register must also be
6190 // restored here.
6191
6192 // Reload TOC
6193 if (PVT == MVT::i64 && PPCSubTarget.isSVR4ABI()) {
6194 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
Ulrich Weigand347a5072013-05-16 17:58:02 +00006195 .addImm(TOCOffset)
Hal Finkel7ee74a62013-03-21 21:37:52 +00006196 .addReg(BufReg);
6197
6198 MIB.setMemRefs(MMOBegin, MMOEnd);
6199 }
6200
6201 // Jump
6202 BuildMI(*MBB, MI, DL,
6203 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
6204 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
6205
6206 MI->eraseFromParent();
6207 return MBB;
6208}
6209
Dale Johannesen97efa362008-08-28 17:53:09 +00006210MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00006211PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00006212 MachineBasicBlock *BB) const {
Hal Finkel7ee74a62013-03-21 21:37:52 +00006213 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
6214 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
6215 return emitEHSjLjSetJmp(MI, BB);
6216 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
6217 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
6218 return emitEHSjLjLongJmp(MI, BB);
6219 }
6220
Evan Chengc0f64ff2006-11-27 23:37:22 +00006221 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng53301922008-07-12 02:23:19 +00006222
6223 // To "insert" these instructions we actually have to insert their
6224 // control-flow patterns.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006225 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006226 MachineFunction::iterator It = BB;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006227 ++It;
Evan Cheng53301922008-07-12 02:23:19 +00006228
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006229 MachineFunction *F = BB->getParent();
Evan Cheng53301922008-07-12 02:23:19 +00006230
Hal Finkel009f7af2012-06-22 23:10:08 +00006231 if (PPCSubTarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6232 MI->getOpcode() == PPC::SELECT_CC_I8)) {
Hal Finkelff56d1a2013-04-05 23:29:01 +00006233 SmallVector<MachineOperand, 2> Cond;
6234 Cond.push_back(MI->getOperand(4));
6235 Cond.push_back(MI->getOperand(1));
6236
Hal Finkel009f7af2012-06-22 23:10:08 +00006237 DebugLoc dl = MI->getDebugLoc();
Hal Finkelff56d1a2013-04-05 23:29:01 +00006238 PPCII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(), Cond,
6239 MI->getOperand(2).getReg(), MI->getOperand(3).getReg());
Hal Finkel009f7af2012-06-22 23:10:08 +00006240 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
6241 MI->getOpcode() == PPC::SELECT_CC_I8 ||
6242 MI->getOpcode() == PPC::SELECT_CC_F4 ||
6243 MI->getOpcode() == PPC::SELECT_CC_F8 ||
6244 MI->getOpcode() == PPC::SELECT_CC_VRRC) {
6245
Evan Cheng53301922008-07-12 02:23:19 +00006246
6247 // The incoming instruction knows the destination vreg to set, the
6248 // condition code register to branch on, the true/false values to
6249 // select between, and a branch opcode to use.
6250
6251 // thisMBB:
6252 // ...
6253 // TrueVal = ...
6254 // cmpTY ccX, r1, r2
6255 // bCC copy1MBB
6256 // fallthrough --> copy0MBB
6257 MachineBasicBlock *thisMBB = BB;
6258 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
6259 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
6260 unsigned SelectPred = MI->getOperand(4).getImm();
Dale Johannesen536a2f12009-02-13 02:27:39 +00006261 DebugLoc dl = MI->getDebugLoc();
Evan Cheng53301922008-07-12 02:23:19 +00006262 F->insert(It, copy0MBB);
6263 F->insert(It, sinkMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00006264
6265 // Transfer the remainder of BB and its successor edges to sinkMBB.
6266 sinkMBB->splice(sinkMBB->begin(), BB,
6267 llvm::next(MachineBasicBlock::iterator(MI)),
6268 BB->end());
6269 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
6270
Evan Cheng53301922008-07-12 02:23:19 +00006271 // Next, add the true and fallthrough blocks as its successors.
6272 BB->addSuccessor(copy0MBB);
6273 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006274
Dan Gohman14152b42010-07-06 20:24:04 +00006275 BuildMI(BB, dl, TII->get(PPC::BCC))
6276 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
6277
Evan Cheng53301922008-07-12 02:23:19 +00006278 // copy0MBB:
6279 // %FalseValue = ...
6280 // # fallthrough to sinkMBB
6281 BB = copy0MBB;
Scott Michelfdc40a02009-02-17 22:15:04 +00006282
Evan Cheng53301922008-07-12 02:23:19 +00006283 // Update machine-CFG edges
6284 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006285
Evan Cheng53301922008-07-12 02:23:19 +00006286 // sinkMBB:
6287 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
6288 // ...
6289 BB = sinkMBB;
Dan Gohman14152b42010-07-06 20:24:04 +00006290 BuildMI(*BB, BB->begin(), dl,
6291 TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng53301922008-07-12 02:23:19 +00006292 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
6293 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
6294 }
Dale Johannesen97efa362008-08-28 17:53:09 +00006295 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
6296 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
6297 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
6298 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006299 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
6300 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
6301 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
6302 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006303
6304 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
6305 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
6306 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
6307 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006308 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
6309 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
6310 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
6311 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006312
6313 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
6314 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
6315 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
6316 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006317 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
6318 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
6319 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
6320 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006321
6322 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
6323 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
6324 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
6325 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006326 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
6327 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
6328 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
6329 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006330
6331 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Dale Johannesen209a4092008-09-11 02:15:03 +00006332 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ANDC);
Dale Johannesen97efa362008-08-28 17:53:09 +00006333 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Dale Johannesen209a4092008-09-11 02:15:03 +00006334 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006335 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Dale Johannesen209a4092008-09-11 02:15:03 +00006336 BB = EmitAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006337 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Dale Johannesen209a4092008-09-11 02:15:03 +00006338 BB = EmitAtomicBinary(MI, BB, true, PPC::ANDC8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006339
6340 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
6341 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
6342 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
6343 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00006344 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
6345 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
6346 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
6347 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesen97efa362008-08-28 17:53:09 +00006348
Dale Johannesen0e55f062008-08-29 18:29:46 +00006349 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
6350 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
6351 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
6352 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
6353 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
6354 BB = EmitAtomicBinary(MI, BB, false, 0);
6355 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
6356 BB = EmitAtomicBinary(MI, BB, true, 0);
6357
Evan Cheng53301922008-07-12 02:23:19 +00006358 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
6359 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
6360 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
6361
6362 unsigned dest = MI->getOperand(0).getReg();
6363 unsigned ptrA = MI->getOperand(1).getReg();
6364 unsigned ptrB = MI->getOperand(2).getReg();
6365 unsigned oldval = MI->getOperand(3).getReg();
6366 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00006367 DebugLoc dl = MI->getDebugLoc();
Evan Cheng53301922008-07-12 02:23:19 +00006368
Dale Johannesen65e39732008-08-25 18:53:26 +00006369 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6370 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6371 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng53301922008-07-12 02:23:19 +00006372 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen65e39732008-08-25 18:53:26 +00006373 F->insert(It, loop1MBB);
6374 F->insert(It, loop2MBB);
6375 F->insert(It, midMBB);
Evan Cheng53301922008-07-12 02:23:19 +00006376 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00006377 exitMBB->splice(exitMBB->begin(), BB,
6378 llvm::next(MachineBasicBlock::iterator(MI)),
6379 BB->end());
6380 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Evan Cheng53301922008-07-12 02:23:19 +00006381
6382 // thisMBB:
6383 // ...
6384 // fallthrough --> loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00006385 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00006386
Dale Johannesen65e39732008-08-25 18:53:26 +00006387 // loop1MBB:
Evan Cheng53301922008-07-12 02:23:19 +00006388 // l[wd]arx dest, ptr
Dale Johannesen65e39732008-08-25 18:53:26 +00006389 // cmp[wd] dest, oldval
6390 // bne- midMBB
6391 // loop2MBB:
Evan Cheng53301922008-07-12 02:23:19 +00006392 // st[wd]cx. newval, ptr
6393 // bne- loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00006394 // b exitBB
6395 // midMBB:
6396 // st[wd]cx. dest, ptr
6397 // exitBB:
6398 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006399 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng53301922008-07-12 02:23:19 +00006400 .addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006401 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng53301922008-07-12 02:23:19 +00006402 .addReg(oldval).addReg(dest);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006403 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00006404 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6405 BB->addSuccessor(loop2MBB);
6406 BB->addSuccessor(midMBB);
6407
6408 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006409 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng53301922008-07-12 02:23:19 +00006410 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006411 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00006412 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006413 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen65e39732008-08-25 18:53:26 +00006414 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00006415 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006416
Dale Johannesen65e39732008-08-25 18:53:26 +00006417 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006418 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen65e39732008-08-25 18:53:26 +00006419 .addReg(dest).addReg(ptrA).addReg(ptrB);
6420 BB->addSuccessor(exitMBB);
6421
Evan Cheng53301922008-07-12 02:23:19 +00006422 // exitMBB:
6423 // ...
6424 BB = exitMBB;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006425 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
6426 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
6427 // We must use 64-bit registers for addresses when targeting 64-bit,
6428 // since we're actually doing arithmetic on them. Other registers
6429 // can be 32-bit.
6430 bool is64bit = PPCSubTarget.isPPC64();
6431 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
6432
6433 unsigned dest = MI->getOperand(0).getReg();
6434 unsigned ptrA = MI->getOperand(1).getReg();
6435 unsigned ptrB = MI->getOperand(2).getReg();
6436 unsigned oldval = MI->getOperand(3).getReg();
6437 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00006438 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006439
6440 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
6441 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
6442 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
6443 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6444 F->insert(It, loop1MBB);
6445 F->insert(It, loop2MBB);
6446 F->insert(It, midMBB);
6447 F->insert(It, exitMBB);
Dan Gohman14152b42010-07-06 20:24:04 +00006448 exitMBB->splice(exitMBB->begin(), BB,
6449 llvm::next(MachineBasicBlock::iterator(MI)),
6450 BB->end());
6451 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006452
6453 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00006454 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00006455 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
6456 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006457 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
6458 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
6459 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
6460 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
6461 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
6462 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
6463 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
6464 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
6465 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
6466 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
6467 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
6468 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
6469 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
6470 unsigned Ptr1Reg;
6471 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
Hal Finkel76973702013-03-21 23:45:03 +00006472 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006473 // thisMBB:
6474 // ...
6475 // fallthrough --> loopMBB
6476 BB->addSuccessor(loop1MBB);
6477
6478 // The 4-byte load must be aligned, while a char or short may be
6479 // anywhere in the word. Hence all this nasty bookkeeping code.
6480 // add ptr1, ptrA, ptrB [copy if ptrA==0]
6481 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00006482 // xori shift, shift1, 24 [16]
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006483 // rlwinm ptr, ptr1, 0, 0, 29
6484 // slw newval2, newval, shift
6485 // slw oldval2, oldval,shift
6486 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
6487 // slw mask, mask2, shift
6488 // and newval3, newval2, mask
6489 // and oldval3, oldval2, mask
6490 // loop1MBB:
6491 // lwarx tmpDest, ptr
6492 // and tmp, tmpDest, mask
6493 // cmpw tmp, oldval3
6494 // bne- midMBB
6495 // loop2MBB:
6496 // andc tmp2, tmpDest, mask
6497 // or tmp4, tmp2, newval3
6498 // stwcx. tmp4, ptr
6499 // bne- loop1MBB
6500 // b exitBB
6501 // midMBB:
6502 // stwcx. tmpDest, ptr
6503 // exitBB:
6504 // srw dest, tmpDest, shift
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006505 if (ptrA != ZeroReg) {
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006506 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006507 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006508 .addReg(ptrA).addReg(ptrB);
6509 } else {
6510 Ptr1Reg = ptrB;
6511 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00006512 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006513 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006514 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006515 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
6516 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00006517 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006518 .addReg(Ptr1Reg).addImm(0).addImm(61);
6519 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00006520 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006521 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006522 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006523 .addReg(newval).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006524 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006525 .addReg(oldval).addReg(ShiftReg);
6526 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00006527 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006528 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00006529 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
6530 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
6531 .addReg(Mask3Reg).addImm(65535);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006532 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00006533 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006534 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006535 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006536 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006537 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006538 .addReg(OldVal2Reg).addReg(MaskReg);
6539
6540 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006541 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006542 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006543 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
6544 .addReg(TmpDestReg).addReg(MaskReg);
6545 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006546 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006547 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006548 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
6549 BB->addSuccessor(loop2MBB);
6550 BB->addSuccessor(midMBB);
6551
6552 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006553 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
6554 .addReg(TmpDestReg).addReg(MaskReg);
6555 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
6556 .addReg(Tmp2Reg).addReg(NewVal3Reg);
6557 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006558 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006559 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006560 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00006561 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006562 BB->addSuccessor(loop1MBB);
6563 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00006564
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006565 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00006566 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Jakob Stoklund Olesen2684c5d2011-04-04 17:07:06 +00006567 .addReg(ZeroReg).addReg(PtrReg);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006568 BB->addSuccessor(exitMBB);
6569
6570 // exitMBB:
6571 // ...
6572 BB = exitMBB;
Jakob Stoklund Olesen5fcb81d2011-04-04 17:57:29 +00006573 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
6574 .addReg(ShiftReg);
Ulrich Weigand7d35d3f2013-03-26 10:56:22 +00006575 } else if (MI->getOpcode() == PPC::FADDrtz) {
6576 // This pseudo performs an FADD with rounding mode temporarily forced
6577 // to round-to-zero. We emit this via custom inserter since the FPSCR
6578 // is not modeled at the SelectionDAG level.
6579 unsigned Dest = MI->getOperand(0).getReg();
6580 unsigned Src1 = MI->getOperand(1).getReg();
6581 unsigned Src2 = MI->getOperand(2).getReg();
6582 DebugLoc dl = MI->getDebugLoc();
6583
6584 MachineRegisterInfo &RegInfo = F->getRegInfo();
6585 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
6586
6587 // Save FPSCR value.
6588 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
6589
6590 // Set rounding mode to round-to-zero.
6591 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
6592 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
6593
6594 // Perform addition.
6595 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
6596
6597 // Restore FPSCR value.
6598 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSF)).addImm(1).addReg(MFFSReg);
Hal Finkel0882fd62013-03-29 19:41:55 +00006599 } else if (MI->getOpcode() == PPC::FRINDrint ||
6600 MI->getOpcode() == PPC::FRINSrint) {
6601 bool isf32 = MI->getOpcode() == PPC::FRINSrint;
6602 unsigned Dest = MI->getOperand(0).getReg();
6603 unsigned Src = MI->getOperand(1).getReg();
6604 DebugLoc dl = MI->getDebugLoc();
6605
6606 MachineRegisterInfo &RegInfo = F->getRegInfo();
6607 unsigned CRReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
6608
6609 // Perform the rounding.
6610 BuildMI(*BB, MI, dl, TII->get(isf32 ? PPC::FRINS : PPC::FRIND), Dest)
6611 .addReg(Src);
6612
6613 // Compare the results.
6614 BuildMI(*BB, MI, dl, TII->get(isf32 ? PPC::FCMPUS : PPC::FCMPUD), CRReg)
6615 .addReg(Dest).addReg(Src);
6616
6617 // If the results were not equal, then set the FPSCR XX bit.
6618 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
6619 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6620 F->insert(It, midMBB);
6621 F->insert(It, exitMBB);
6622 exitMBB->splice(exitMBB->begin(), BB,
6623 llvm::next(MachineBasicBlock::iterator(MI)),
6624 BB->end());
6625 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6626
6627 BuildMI(*BB, MI, dl, TII->get(PPC::BCC))
6628 .addImm(PPC::PRED_EQ).addReg(CRReg).addMBB(exitMBB);
6629
6630 BB->addSuccessor(midMBB);
6631 BB->addSuccessor(exitMBB);
6632
6633 BB = midMBB;
6634
6635 // Set the FPSCR XX bit (FE_INEXACT). Note that we cannot just set
6636 // the FI bit here because that will not automatically set XX also,
6637 // and XX is what libm interprets as the FE_INEXACT flag.
6638 BuildMI(BB, dl, TII->get(PPC::MTFSB1)).addImm(/* 38 - 32 = */ 6);
6639 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
6640
6641 BB->addSuccessor(exitMBB);
6642
6643 BB = exitMBB;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00006644 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00006645 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng53301922008-07-12 02:23:19 +00006646 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006647
Dan Gohman14152b42010-07-06 20:24:04 +00006648 MI->eraseFromParent(); // The pseudo instruction is gone now.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00006649 return BB;
6650}
6651
Chris Lattner1a635d62006-04-14 06:01:58 +00006652//===----------------------------------------------------------------------===//
6653// Target Optimization Hooks
6654//===----------------------------------------------------------------------===//
6655
Hal Finkel63c32a72013-04-03 17:44:56 +00006656SDValue PPCTargetLowering::DAGCombineFastRecip(SDValue Op,
6657 DAGCombinerInfo &DCI) const {
Hal Finkel827307b2013-04-03 04:01:11 +00006658 if (DCI.isAfterLegalizeVectorOps())
6659 return SDValue();
6660
Hal Finkel63c32a72013-04-03 17:44:56 +00006661 EVT VT = Op.getValueType();
6662
6663 if ((VT == MVT::f32 && PPCSubTarget.hasFRES()) ||
6664 (VT == MVT::f64 && PPCSubTarget.hasFRE()) ||
6665 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel827307b2013-04-03 04:01:11 +00006666
6667 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6668 // For the reciprocal, we need to find the zero of the function:
6669 // F(X) = A X - 1 [which has a zero at X = 1/A]
6670 // =>
6671 // X_{i+1} = X_i (2 - A X_i) = X_i + X_i (1 - A X_i) [this second form
6672 // does not require additional intermediate precision]
6673
6674 // Convergence is quadratic, so we essentially double the number of digits
6675 // correct after every iteration. The minimum architected relative
6676 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6677 // 23 digits and double has 52 digits.
6678 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkel63c32a72013-04-03 17:44:56 +00006679 if (VT.getScalarType() == MVT::f64)
Hal Finkel827307b2013-04-03 04:01:11 +00006680 ++Iterations;
6681
6682 SelectionDAG &DAG = DCI.DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006683 SDLoc dl(Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006684
6685 SDValue FPOne =
Hal Finkel63c32a72013-04-03 17:44:56 +00006686 DAG.getConstantFP(1.0, VT.getScalarType());
6687 if (VT.isVector()) {
6688 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel827307b2013-04-03 04:01:11 +00006689 "Unknown vector type");
Hal Finkel63c32a72013-04-03 17:44:56 +00006690 FPOne = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
Hal Finkel827307b2013-04-03 04:01:11 +00006691 FPOne, FPOne, FPOne, FPOne);
6692 }
6693
Hal Finkel63c32a72013-04-03 17:44:56 +00006694 SDValue Est = DAG.getNode(PPCISD::FRE, dl, VT, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006695 DCI.AddToWorklist(Est.getNode());
6696
6697 // Newton iterations: Est = Est + Est (1 - Arg * Est)
6698 for (int i = 0; i < Iterations; ++i) {
Hal Finkel63c32a72013-04-03 17:44:56 +00006699 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Op, Est);
Hal Finkel827307b2013-04-03 04:01:11 +00006700 DCI.AddToWorklist(NewEst.getNode());
6701
Hal Finkel63c32a72013-04-03 17:44:56 +00006702 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPOne, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006703 DCI.AddToWorklist(NewEst.getNode());
6704
Hal Finkel63c32a72013-04-03 17:44:56 +00006705 NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006706 DCI.AddToWorklist(NewEst.getNode());
6707
Hal Finkel63c32a72013-04-03 17:44:56 +00006708 Est = DAG.getNode(ISD::FADD, dl, VT, Est, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006709 DCI.AddToWorklist(Est.getNode());
6710 }
6711
6712 return Est;
6713 }
6714
6715 return SDValue();
6716}
6717
Hal Finkel63c32a72013-04-03 17:44:56 +00006718SDValue PPCTargetLowering::DAGCombineFastRecipFSQRT(SDValue Op,
Hal Finkel827307b2013-04-03 04:01:11 +00006719 DAGCombinerInfo &DCI) const {
6720 if (DCI.isAfterLegalizeVectorOps())
6721 return SDValue();
6722
Hal Finkel63c32a72013-04-03 17:44:56 +00006723 EVT VT = Op.getValueType();
6724
6725 if ((VT == MVT::f32 && PPCSubTarget.hasFRSQRTES()) ||
6726 (VT == MVT::f64 && PPCSubTarget.hasFRSQRTE()) ||
6727 (VT == MVT::v4f32 && PPCSubTarget.hasAltivec())) {
Hal Finkel827307b2013-04-03 04:01:11 +00006728
6729 // Newton iteration for a function: F(X) is X_{i+1} = X_i - F(X_i)/F'(X_i)
6730 // For the reciprocal sqrt, we need to find the zero of the function:
6731 // F(X) = 1/X^2 - A [which has a zero at X = 1/sqrt(A)]
6732 // =>
6733 // X_{i+1} = X_i (1.5 - A X_i^2 / 2)
6734 // As a result, we precompute A/2 prior to the iteration loop.
6735
6736 // Convergence is quadratic, so we essentially double the number of digits
6737 // correct after every iteration. The minimum architected relative
6738 // accuracy is 2^-5. When hasRecipPrec(), this is 2^-14. IEEE float has
6739 // 23 digits and double has 52 digits.
6740 int Iterations = PPCSubTarget.hasRecipPrec() ? 1 : 3;
Hal Finkel63c32a72013-04-03 17:44:56 +00006741 if (VT.getScalarType() == MVT::f64)
Hal Finkel827307b2013-04-03 04:01:11 +00006742 ++Iterations;
6743
6744 SelectionDAG &DAG = DCI.DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006745 SDLoc dl(Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006746
Hal Finkel63c32a72013-04-03 17:44:56 +00006747 SDValue FPThreeHalves =
6748 DAG.getConstantFP(1.5, VT.getScalarType());
6749 if (VT.isVector()) {
6750 assert(VT.getVectorNumElements() == 4 &&
Hal Finkel827307b2013-04-03 04:01:11 +00006751 "Unknown vector type");
Hal Finkel63c32a72013-04-03 17:44:56 +00006752 FPThreeHalves = DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
6753 FPThreeHalves, FPThreeHalves,
6754 FPThreeHalves, FPThreeHalves);
Hal Finkel827307b2013-04-03 04:01:11 +00006755 }
6756
Hal Finkel63c32a72013-04-03 17:44:56 +00006757 SDValue Est = DAG.getNode(PPCISD::FRSQRTE, dl, VT, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006758 DCI.AddToWorklist(Est.getNode());
6759
6760 // We now need 0.5*Arg which we can write as (1.5*Arg - Arg) so that
6761 // this entire sequence requires only one FP constant.
Hal Finkel63c32a72013-04-03 17:44:56 +00006762 SDValue HalfArg = DAG.getNode(ISD::FMUL, dl, VT, FPThreeHalves, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006763 DCI.AddToWorklist(HalfArg.getNode());
6764
Hal Finkel63c32a72013-04-03 17:44:56 +00006765 HalfArg = DAG.getNode(ISD::FSUB, dl, VT, HalfArg, Op);
Hal Finkel827307b2013-04-03 04:01:11 +00006766 DCI.AddToWorklist(HalfArg.getNode());
6767
6768 // Newton iterations: Est = Est * (1.5 - HalfArg * Est * Est)
6769 for (int i = 0; i < Iterations; ++i) {
Hal Finkel63c32a72013-04-03 17:44:56 +00006770 SDValue NewEst = DAG.getNode(ISD::FMUL, dl, VT, Est, Est);
Hal Finkel827307b2013-04-03 04:01:11 +00006771 DCI.AddToWorklist(NewEst.getNode());
6772
Hal Finkel63c32a72013-04-03 17:44:56 +00006773 NewEst = DAG.getNode(ISD::FMUL, dl, VT, HalfArg, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006774 DCI.AddToWorklist(NewEst.getNode());
6775
Hal Finkel63c32a72013-04-03 17:44:56 +00006776 NewEst = DAG.getNode(ISD::FSUB, dl, VT, FPThreeHalves, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006777 DCI.AddToWorklist(NewEst.getNode());
6778
Hal Finkel63c32a72013-04-03 17:44:56 +00006779 Est = DAG.getNode(ISD::FMUL, dl, VT, Est, NewEst);
Hal Finkel827307b2013-04-03 04:01:11 +00006780 DCI.AddToWorklist(Est.getNode());
6781 }
6782
6783 return Est;
6784 }
6785
6786 return SDValue();
6787}
6788
Hal Finkel119da2e2013-05-27 02:06:39 +00006789// Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
6790// not enforce equality of the chain operands.
6791static bool isConsecutiveLS(LSBaseSDNode *LS, LSBaseSDNode *Base,
6792 unsigned Bytes, int Dist,
6793 SelectionDAG &DAG) {
6794 EVT VT = LS->getMemoryVT();
6795 if (VT.getSizeInBits() / 8 != Bytes)
6796 return false;
6797
6798 SDValue Loc = LS->getBasePtr();
6799 SDValue BaseLoc = Base->getBasePtr();
6800 if (Loc.getOpcode() == ISD::FrameIndex) {
6801 if (BaseLoc.getOpcode() != ISD::FrameIndex)
6802 return false;
6803 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6804 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
6805 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
6806 int FS = MFI->getObjectSize(FI);
6807 int BFS = MFI->getObjectSize(BFI);
6808 if (FS != BFS || FS != (int)Bytes) return false;
6809 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
6810 }
6811
6812 // Handle X+C
6813 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
6814 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
6815 return true;
6816
6817 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6818 const GlobalValue *GV1 = NULL;
6819 const GlobalValue *GV2 = NULL;
6820 int64_t Offset1 = 0;
6821 int64_t Offset2 = 0;
6822 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
6823 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
6824 if (isGA1 && isGA2 && GV1 == GV2)
6825 return Offset1 == (Offset2 + Dist*Bytes);
6826 return false;
6827}
6828
Hal Finkel1907cad2013-05-26 18:08:30 +00006829// Return true is there is a nearyby consecutive load to the one provided
6830// (regardless of alignment). We search up and down the chain, looking though
6831// token factors and other loads (but nothing else). As a result, a true
6832// results indicates that it is safe to create a new consecutive load adjacent
6833// to the load provided.
6834static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
6835 SDValue Chain = LD->getChain();
6836 EVT VT = LD->getMemoryVT();
6837
6838 SmallSet<SDNode *, 16> LoadRoots;
6839 SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
6840 SmallSet<SDNode *, 16> Visited;
6841
6842 // First, search up the chain, branching to follow all token-factor operands.
6843 // If we find a consecutive load, then we're done, otherwise, record all
6844 // nodes just above the top-level loads and token factors.
6845 while (!Queue.empty()) {
6846 SDNode *ChainNext = Queue.pop_back_val();
6847 if (!Visited.insert(ChainNext))
6848 continue;
6849
6850 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(ChainNext)) {
Hal Finkel119da2e2013-05-27 02:06:39 +00006851 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel1907cad2013-05-26 18:08:30 +00006852 return true;
6853
6854 if (!Visited.count(ChainLD->getChain().getNode()))
6855 Queue.push_back(ChainLD->getChain().getNode());
6856 } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
6857 for (SDNode::op_iterator O = ChainNext->op_begin(),
6858 OE = ChainNext->op_end(); O != OE; ++O)
6859 if (!Visited.count(O->getNode()))
6860 Queue.push_back(O->getNode());
6861 } else
6862 LoadRoots.insert(ChainNext);
6863 }
6864
6865 // Second, search down the chain, starting from the top-level nodes recorded
6866 // in the first phase. These top-level nodes are the nodes just above all
6867 // loads and token factors. Starting with their uses, recursively look though
6868 // all loads (just the chain uses) and token factors to find a consecutive
6869 // load.
6870 Visited.clear();
6871 Queue.clear();
6872
6873 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
6874 IE = LoadRoots.end(); I != IE; ++I) {
6875 Queue.push_back(*I);
6876
6877 while (!Queue.empty()) {
6878 SDNode *LoadRoot = Queue.pop_back_val();
6879 if (!Visited.insert(LoadRoot))
6880 continue;
6881
6882 if (LoadSDNode *ChainLD = dyn_cast<LoadSDNode>(LoadRoot))
Hal Finkel119da2e2013-05-27 02:06:39 +00006883 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
Hal Finkel1907cad2013-05-26 18:08:30 +00006884 return true;
6885
6886 for (SDNode::use_iterator UI = LoadRoot->use_begin(),
6887 UE = LoadRoot->use_end(); UI != UE; ++UI)
6888 if (((isa<LoadSDNode>(*UI) &&
6889 cast<LoadSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
6890 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
6891 Queue.push_back(*UI);
6892 }
6893 }
6894
6895 return false;
6896}
6897
Duncan Sands25cf2272008-11-24 14:53:14 +00006898SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
6899 DAGCombinerInfo &DCI) const {
Dan Gohmanf0757b02010-04-21 01:34:56 +00006900 const TargetMachine &TM = getTargetMachine();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00006901 SelectionDAG &DAG = DCI.DAG;
Andrew Trickac6d9be2013-05-25 02:42:55 +00006902 SDLoc dl(N);
Chris Lattner8c13d0a2006-03-01 04:57:39 +00006903 switch (N->getOpcode()) {
6904 default: break;
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006905 case PPCISD::SHL:
6906 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmane368b462010-06-18 14:22:04 +00006907 if (C->isNullValue()) // 0 << V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006908 return N->getOperand(0);
6909 }
6910 break;
6911 case PPCISD::SRL:
6912 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmane368b462010-06-18 14:22:04 +00006913 if (C->isNullValue()) // 0 >>u V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006914 return N->getOperand(0);
6915 }
6916 break;
6917 case PPCISD::SRA:
6918 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmane368b462010-06-18 14:22:04 +00006919 if (C->isNullValue() || // 0 >>s V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00006920 C->isAllOnesValue()) // -1 >>s V -> -1.
6921 return N->getOperand(0);
6922 }
6923 break;
Hal Finkel827307b2013-04-03 04:01:11 +00006924 case ISD::FDIV: {
6925 assert(TM.Options.UnsafeFPMath &&
6926 "Reciprocal estimates require UnsafeFPMath");
Scott Michelfdc40a02009-02-17 22:15:04 +00006927
Hal Finkel827307b2013-04-03 04:01:11 +00006928 if (N->getOperand(1).getOpcode() == ISD::FSQRT) {
Hal Finkel63c32a72013-04-03 17:44:56 +00006929 SDValue RV =
6930 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0), DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00006931 if (RV.getNode() != 0) {
6932 DCI.AddToWorklist(RV.getNode());
6933 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6934 N->getOperand(0), RV);
6935 }
Hal Finkel7530a9f2013-04-04 22:44:12 +00006936 } else if (N->getOperand(1).getOpcode() == ISD::FP_EXTEND &&
6937 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
6938 SDValue RV =
6939 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
6940 DCI);
6941 if (RV.getNode() != 0) {
6942 DCI.AddToWorklist(RV.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006943 RV = DAG.getNode(ISD::FP_EXTEND, SDLoc(N->getOperand(1)),
Hal Finkel7530a9f2013-04-04 22:44:12 +00006944 N->getValueType(0), RV);
6945 DCI.AddToWorklist(RV.getNode());
6946 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6947 N->getOperand(0), RV);
6948 }
6949 } else if (N->getOperand(1).getOpcode() == ISD::FP_ROUND &&
6950 N->getOperand(1).getOperand(0).getOpcode() == ISD::FSQRT) {
6951 SDValue RV =
6952 DAGCombineFastRecipFSQRT(N->getOperand(1).getOperand(0).getOperand(0),
6953 DCI);
6954 if (RV.getNode() != 0) {
6955 DCI.AddToWorklist(RV.getNode());
Andrew Trickac6d9be2013-05-25 02:42:55 +00006956 RV = DAG.getNode(ISD::FP_ROUND, SDLoc(N->getOperand(1)),
Hal Finkel7530a9f2013-04-04 22:44:12 +00006957 N->getValueType(0), RV,
6958 N->getOperand(1).getOperand(1));
6959 DCI.AddToWorklist(RV.getNode());
6960 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6961 N->getOperand(0), RV);
6962 }
Hal Finkel827307b2013-04-03 04:01:11 +00006963 }
6964
Hal Finkel63c32a72013-04-03 17:44:56 +00006965 SDValue RV = DAGCombineFastRecip(N->getOperand(1), DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00006966 if (RV.getNode() != 0) {
6967 DCI.AddToWorklist(RV.getNode());
6968 return DAG.getNode(ISD::FMUL, dl, N->getValueType(0),
6969 N->getOperand(0), RV);
6970 }
6971
6972 }
6973 break;
6974 case ISD::FSQRT: {
6975 assert(TM.Options.UnsafeFPMath &&
6976 "Reciprocal estimates require UnsafeFPMath");
6977
6978 // Compute this as 1/(1/sqrt(X)), which is the reciprocal of the
6979 // reciprocal sqrt.
Hal Finkel63c32a72013-04-03 17:44:56 +00006980 SDValue RV = DAGCombineFastRecipFSQRT(N->getOperand(0), DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00006981 if (RV.getNode() != 0) {
6982 DCI.AddToWorklist(RV.getNode());
Hal Finkel63c32a72013-04-03 17:44:56 +00006983 RV = DAGCombineFastRecip(RV, DCI);
Hal Finkel827307b2013-04-03 04:01:11 +00006984 if (RV.getNode() != 0)
6985 return RV;
6986 }
6987
6988 }
6989 break;
Chris Lattner8c13d0a2006-03-01 04:57:39 +00006990 case ISD::SINT_TO_FP:
Chris Lattnera7a58542006-06-16 17:34:12 +00006991 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00006992 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
6993 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
6994 // We allow the src/dst to be either f32/f64, but the intermediate
6995 // type must be i64.
Owen Anderson825b72b2009-08-11 20:47:22 +00006996 if (N->getOperand(0).getValueType() == MVT::i64 &&
6997 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00006998 SDValue Val = N->getOperand(0).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006999 if (Val.getValueType() == MVT::f32) {
7000 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007001 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00007002 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007003
Owen Anderson825b72b2009-08-11 20:47:22 +00007004 Val = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007005 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00007006 Val = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007007 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00007008 if (N->getValueType(0) == MVT::f32) {
7009 Val = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Val,
Chris Lattner0bd48932008-01-17 07:00:52 +00007010 DAG.getIntPtrConstant(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00007011 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00007012 }
7013 return Val;
Owen Anderson825b72b2009-08-11 20:47:22 +00007014 } else if (N->getOperand(0).getValueType() == MVT::i32) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00007015 // If the intermediate type is i32, we can avoid the load/store here
7016 // too.
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007017 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007018 }
7019 }
7020 break;
Chris Lattner51269842006-03-01 05:50:56 +00007021 case ISD::STORE:
7022 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
7023 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnera7a02fb2008-01-18 16:54:56 +00007024 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner51269842006-03-01 05:50:56 +00007025 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007026 N->getOperand(1).getValueType() == MVT::i32 &&
7027 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007028 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007029 if (Val.getValueType() == MVT::f32) {
7030 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007031 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00007032 }
Owen Anderson825b72b2009-08-11 20:47:22 +00007033 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00007034 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00007035
Hal Finkelf170cc92013-04-01 15:37:53 +00007036 SDValue Ops[] = {
7037 N->getOperand(0), Val, N->getOperand(2),
7038 DAG.getValueType(N->getOperand(1).getValueType())
7039 };
7040
7041 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
7042 DAG.getVTList(MVT::Other), Ops, array_lengthof(Ops),
7043 cast<StoreSDNode>(N)->getMemoryVT(),
7044 cast<StoreSDNode>(N)->getMemOperand());
Gabor Greifba36cb52008-08-28 21:40:38 +00007045 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00007046 return Val;
7047 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007048
Chris Lattnerd9989382006-07-10 20:56:58 +00007049 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
Dan Gohman6acaaa82009-09-25 00:57:30 +00007050 if (cast<StoreSDNode>(N)->isUnindexed() &&
7051 N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007052 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007053 (N->getOperand(1).getValueType() == MVT::i32 ||
Hal Finkelefdd4672013-03-28 19:25:55 +00007054 N->getOperand(1).getValueType() == MVT::i16 ||
7055 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel2544f222013-03-28 20:23:46 +00007056 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkelefdd4672013-03-28 19:25:55 +00007057 N->getOperand(1).getValueType() == MVT::i64))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007058 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnerd9989382006-07-10 20:56:58 +00007059 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson825b72b2009-08-11 20:47:22 +00007060 if (BSwapOp.getValueType() == MVT::i16)
7061 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnerd9989382006-07-10 20:56:58 +00007062
Dan Gohmanc76909a2009-09-25 20:36:54 +00007063 SDValue Ops[] = {
7064 N->getOperand(0), BSwapOp, N->getOperand(2),
7065 DAG.getValueType(N->getOperand(1).getValueType())
7066 };
7067 return
7068 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
7069 Ops, array_lengthof(Ops),
7070 cast<StoreSDNode>(N)->getMemoryVT(),
7071 cast<StoreSDNode>(N)->getMemOperand());
Chris Lattnerd9989382006-07-10 20:56:58 +00007072 }
7073 break;
Hal Finkel80d10de2013-05-24 23:00:14 +00007074 case ISD::LOAD: {
7075 LoadSDNode *LD = cast<LoadSDNode>(N);
7076 EVT VT = LD->getValueType(0);
7077 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
7078 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
7079 if (ISD::isNON_EXTLoad(N) && VT.isVector() &&
7080 TM.getSubtarget<PPCSubtarget>().hasAltivec() &&
7081 DCI.getDAGCombineLevel() == AfterLegalizeTypes &&
7082 LD->getAlignment() < ABIAlignment) {
7083 // This is a type-legal unaligned Altivec load.
7084 SDValue Chain = LD->getChain();
7085 SDValue Ptr = LD->getBasePtr();
7086
7087 // This implements the loading of unaligned vectors as described in
7088 // the venerable Apple Velocity Engine overview. Specifically:
7089 // https://developer.apple.com/hardwaredrivers/ve/alignment.html
7090 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
7091 //
7092 // The general idea is to expand a sequence of one or more unaligned
7093 // loads into a alignment-based permutation-control instruction (lvsl),
7094 // a series of regular vector loads (which always truncate their
7095 // input address to an aligned address), and a series of permutations.
7096 // The results of these permutations are the requested loaded values.
7097 // The trick is that the last "extra" load is not taken from the address
7098 // you might suspect (sizeof(vector) bytes after the last requested
7099 // load), but rather sizeof(vector) - 1 bytes after the last
7100 // requested vector. The point of this is to avoid a page fault if the
7101 // base address happend to be aligned. This works because if the base
7102 // address is aligned, then adding less than a full vector length will
7103 // cause the last vector in the sequence to be (re)loaded. Otherwise,
7104 // the next vector will be fetched as you might suspect was necessary.
7105
Hal Finkel5a0e6042013-05-25 04:05:05 +00007106 // We might be able to reuse the permutation generation from
Hal Finkel80d10de2013-05-24 23:00:14 +00007107 // a different base address offset from this one by an aligned amount.
Hal Finkel5a0e6042013-05-25 04:05:05 +00007108 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
7109 // optimization later.
Hal Finkel80d10de2013-05-24 23:00:14 +00007110 SDValue PermCntl = BuildIntrinsicOp(Intrinsic::ppc_altivec_lvsl, Ptr,
7111 DAG, dl, MVT::v16i8);
7112
7113 // Refine the alignment of the original load (a "new" load created here
7114 // which was identical to the first except for the alignment would be
7115 // merged with the existing node regardless).
7116 MachineFunction &MF = DAG.getMachineFunction();
7117 MachineMemOperand *MMO =
7118 MF.getMachineMemOperand(LD->getPointerInfo(),
7119 LD->getMemOperand()->getFlags(),
7120 LD->getMemoryVT().getStoreSize(),
7121 ABIAlignment);
7122 LD->refineAlignment(MMO);
7123 SDValue BaseLoad = SDValue(LD, 0);
7124
7125 // Note that the value of IncOffset (which is provided to the next
7126 // load's pointer info offset value, and thus used to calculate the
7127 // alignment), and the value of IncValue (which is actually used to
7128 // increment the pointer value) are different! This is because we
7129 // require the next load to appear to be aligned, even though it
7130 // is actually offset from the base pointer by a lesser amount.
7131 int IncOffset = VT.getSizeInBits() / 8;
Hal Finkel1907cad2013-05-26 18:08:30 +00007132 int IncValue = IncOffset;
7133
7134 // Walk (both up and down) the chain looking for another load at the real
7135 // (aligned) offset (the alignment of the other load does not matter in
7136 // this case). If found, then do not use the offset reduction trick, as
7137 // that will prevent the loads from being later combined (as they would
7138 // otherwise be duplicates).
7139 if (!findConsecutiveLoad(LD, DAG))
7140 --IncValue;
7141
Hal Finkel80d10de2013-05-24 23:00:14 +00007142 SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
7143 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
7144
Hal Finkel80d10de2013-05-24 23:00:14 +00007145 SDValue ExtraLoad =
7146 DAG.getLoad(VT, dl, Chain, Ptr,
7147 LD->getPointerInfo().getWithOffset(IncOffset),
7148 LD->isVolatile(), LD->isNonTemporal(),
7149 LD->isInvariant(), ABIAlignment);
7150
7151 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
7152 BaseLoad.getValue(1), ExtraLoad.getValue(1));
7153
7154 if (BaseLoad.getValueType() != MVT::v4i32)
7155 BaseLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, BaseLoad);
7156
7157 if (ExtraLoad.getValueType() != MVT::v4i32)
7158 ExtraLoad = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, ExtraLoad);
7159
7160 SDValue Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
7161 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
7162
7163 if (VT != MVT::v4i32)
7164 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
7165
7166 // Now we need to be really careful about how we update the users of the
7167 // original load. We cannot just call DCI.CombineTo (or
7168 // DAG.ReplaceAllUsesWith for that matter), because the load still has
7169 // uses created here (the permutation for example) that need to stay.
7170 SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
7171 while (UI != UE) {
7172 SDUse &Use = UI.getUse();
7173 SDNode *User = *UI;
7174 // Note: BaseLoad is checked here because it might not be N, but a
7175 // bitcast of N.
7176 if (User == Perm.getNode() || User == BaseLoad.getNode() ||
7177 User == TF.getNode() || Use.getResNo() > 1) {
7178 ++UI;
7179 continue;
7180 }
7181
7182 SDValue To = Use.getResNo() ? TF : Perm;
7183 ++UI;
7184
7185 SmallVector<SDValue, 8> Ops;
7186 for (SDNode::op_iterator O = User->op_begin(),
7187 OE = User->op_end(); O != OE; ++O) {
7188 if (*O == Use)
7189 Ops.push_back(To);
7190 else
7191 Ops.push_back(*O);
7192 }
7193
7194 DAG.UpdateNodeOperands(User, Ops.data(), Ops.size());
7195 }
7196
7197 return SDValue(N, 0);
7198 }
7199 }
7200 break;
Hal Finkel5a0e6042013-05-25 04:05:05 +00007201 case ISD::INTRINSIC_WO_CHAIN:
7202 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() ==
7203 Intrinsic::ppc_altivec_lvsl &&
7204 N->getOperand(1)->getOpcode() == ISD::ADD) {
7205 SDValue Add = N->getOperand(1);
7206
7207 if (DAG.MaskedValueIsZero(Add->getOperand(1),
7208 APInt::getAllOnesValue(4 /* 16 byte alignment */).zext(
7209 Add.getValueType().getScalarType().getSizeInBits()))) {
7210 SDNode *BasePtr = Add->getOperand(0).getNode();
7211 for (SDNode::use_iterator UI = BasePtr->use_begin(),
7212 UE = BasePtr->use_end(); UI != UE; ++UI) {
7213 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7214 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
7215 Intrinsic::ppc_altivec_lvsl) {
7216 // We've found another LVSL, and this address if an aligned
7217 // multiple of that one. The results will be the same, so use the
7218 // one we've just found instead.
7219
7220 return SDValue(*UI, 0);
7221 }
7222 }
7223 }
7224 }
Chris Lattnerd9989382006-07-10 20:56:58 +00007225 case ISD::BSWAP:
7226 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greifba36cb52008-08-28 21:40:38 +00007227 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnerd9989382006-07-10 20:56:58 +00007228 N->getOperand(0).hasOneUse() &&
Hal Finkelefdd4672013-03-28 19:25:55 +00007229 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
7230 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() &&
Hal Finkel2544f222013-03-28 20:23:46 +00007231 TM.getSubtarget<PPCSubtarget>().isPPC64() &&
Hal Finkelefdd4672013-03-28 19:25:55 +00007232 N->getValueType(0) == MVT::i64))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007233 SDValue Load = N->getOperand(0);
Evan Cheng466685d2006-10-09 20:57:25 +00007234 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnerd9989382006-07-10 20:56:58 +00007235 // Create the byte-swapping load.
Dan Gohman475871a2008-07-27 21:46:04 +00007236 SDValue Ops[] = {
Evan Cheng466685d2006-10-09 20:57:25 +00007237 LD->getChain(), // Chain
7238 LD->getBasePtr(), // Ptr
Chris Lattner79e490a2006-08-11 17:18:05 +00007239 DAG.getValueType(N->getValueType(0)) // VT
7240 };
Dan Gohmanc76909a2009-09-25 20:36:54 +00007241 SDValue BSLoad =
7242 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
Hal Finkelefdd4672013-03-28 19:25:55 +00007243 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
7244 MVT::i64 : MVT::i32, MVT::Other),
Hal Finkelb52980b2013-03-28 19:43:12 +00007245 Ops, 3, LD->getMemoryVT(), LD->getMemOperand());
Chris Lattnerd9989382006-07-10 20:56:58 +00007246
Scott Michelfdc40a02009-02-17 22:15:04 +00007247 // If this is an i16 load, insert the truncate.
Dan Gohman475871a2008-07-27 21:46:04 +00007248 SDValue ResVal = BSLoad;
Owen Anderson825b72b2009-08-11 20:47:22 +00007249 if (N->getValueType(0) == MVT::i16)
7250 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelfdc40a02009-02-17 22:15:04 +00007251
Chris Lattnerd9989382006-07-10 20:56:58 +00007252 // First, combine the bswap away. This makes the value produced by the
7253 // load dead.
7254 DCI.CombineTo(N, ResVal);
7255
7256 // Next, combine the load away, we give it a bogus result value but a real
7257 // chain result. The result value is dead because the bswap is dead.
Gabor Greifba36cb52008-08-28 21:40:38 +00007258 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007259
Chris Lattnerd9989382006-07-10 20:56:58 +00007260 // Return N so it doesn't get rechecked!
Dan Gohman475871a2008-07-27 21:46:04 +00007261 return SDValue(N, 0);
Chris Lattnerd9989382006-07-10 20:56:58 +00007262 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007263
Chris Lattner51269842006-03-01 05:50:56 +00007264 break;
Chris Lattner4468c222006-03-31 06:02:07 +00007265 case PPCISD::VCMP: {
7266 // If a VCMPo node already exists with exactly the same operands as this
7267 // node, use its result instead of this node (VCMPo computes both a CR6 and
7268 // a normal output).
7269 //
7270 if (!N->getOperand(0).hasOneUse() &&
7271 !N->getOperand(1).hasOneUse() &&
7272 !N->getOperand(2).hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007273
Chris Lattner4468c222006-03-31 06:02:07 +00007274 // Scan all of the users of the LHS, looking for VCMPo's that match.
7275 SDNode *VCMPoNode = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00007276
Gabor Greifba36cb52008-08-28 21:40:38 +00007277 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattner4468c222006-03-31 06:02:07 +00007278 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
7279 UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00007280 if (UI->getOpcode() == PPCISD::VCMPo &&
7281 UI->getOperand(1) == N->getOperand(1) &&
7282 UI->getOperand(2) == N->getOperand(2) &&
7283 UI->getOperand(0) == N->getOperand(0)) {
7284 VCMPoNode = *UI;
Chris Lattner4468c222006-03-31 06:02:07 +00007285 break;
7286 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007287
Chris Lattner00901202006-04-18 18:28:22 +00007288 // If there is no VCMPo node, or if the flag value has a single use, don't
7289 // transform this.
7290 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
7291 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007292
7293 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner00901202006-04-18 18:28:22 +00007294 // chain, this transformation is more complex. Note that multiple things
7295 // could use the value result, which we should ignore.
7296 SDNode *FlagUser = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00007297 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Chris Lattner00901202006-04-18 18:28:22 +00007298 FlagUser == 0; ++UI) {
7299 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman89684502008-07-27 20:43:25 +00007300 SDNode *User = *UI;
Chris Lattner00901202006-04-18 18:28:22 +00007301 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007302 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner00901202006-04-18 18:28:22 +00007303 FlagUser = User;
7304 break;
7305 }
7306 }
7307 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007308
Chris Lattner00901202006-04-18 18:28:22 +00007309 // If the user is a MFCR instruction, we know this is safe. Otherwise we
7310 // give up for right now.
7311 if (FlagUser->getOpcode() == PPCISD::MFCR)
Dan Gohman475871a2008-07-27 21:46:04 +00007312 return SDValue(VCMPoNode, 0);
Chris Lattner4468c222006-03-31 06:02:07 +00007313 }
7314 break;
7315 }
Chris Lattner90564f22006-04-18 17:59:36 +00007316 case ISD::BR_CC: {
7317 // If this is a branch on an altivec predicate comparison, lower this so
7318 // that we don't have to do a MFCR: instead, branch directly on CR6. This
7319 // lowering is done pre-legalize, because the legalizer lowers the predicate
7320 // compare down to code that is difficult to reassemble.
7321 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman475871a2008-07-27 21:46:04 +00007322 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Hal Finkelb1fd3cd2013-05-15 21:37:41 +00007323
7324 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
7325 // value. If so, pass-through the AND to get to the intrinsic.
7326 if (LHS.getOpcode() == ISD::AND &&
7327 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7328 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
7329 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7330 isa<ConstantSDNode>(LHS.getOperand(1)) &&
7331 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
7332 isZero())
7333 LHS = LHS.getOperand(0);
7334
7335 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
7336 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
7337 Intrinsic::ppc_is_decremented_ctr_nonzero &&
7338 isa<ConstantSDNode>(RHS)) {
7339 assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
7340 "Counter decrement comparison is not EQ or NE");
7341
7342 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
7343 bool isBDNZ = (CC == ISD::SETEQ && Val) ||
7344 (CC == ISD::SETNE && !Val);
7345
7346 // We now need to make the intrinsic dead (it cannot be instruction
7347 // selected).
7348 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
7349 assert(LHS.getNode()->hasOneUse() &&
7350 "Counter decrement has more than one use");
7351
7352 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
7353 N->getOperand(0), N->getOperand(4));
7354 }
7355
Chris Lattner90564f22006-04-18 17:59:36 +00007356 int CompareOpc;
7357 bool isDot;
Scott Michelfdc40a02009-02-17 22:15:04 +00007358
Chris Lattner90564f22006-04-18 17:59:36 +00007359 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
7360 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
7361 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
7362 assert(isDot && "Can't compare against a vector result!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007363
Chris Lattner90564f22006-04-18 17:59:36 +00007364 // If this is a comparison against something other than 0/1, then we know
7365 // that the condition is never/always true.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007366 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00007367 if (Val != 0 && Val != 1) {
7368 if (CC == ISD::SETEQ) // Cond never true, remove branch.
7369 return N->getOperand(0);
7370 // Always !=, turn it into an unconditional branch.
Owen Anderson825b72b2009-08-11 20:47:22 +00007371 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner90564f22006-04-18 17:59:36 +00007372 N->getOperand(0), N->getOperand(4));
7373 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007374
Chris Lattner90564f22006-04-18 17:59:36 +00007375 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00007376
Chris Lattner90564f22006-04-18 17:59:36 +00007377 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman475871a2008-07-27 21:46:04 +00007378 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00007379 LHS.getOperand(2), // LHS of compare
7380 LHS.getOperand(3), // RHS of compare
Owen Anderson825b72b2009-08-11 20:47:22 +00007381 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00007382 };
Benjamin Kramer3853f742013-03-07 20:33:29 +00007383 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
Dale Johannesen3484c092009-02-05 22:07:54 +00007384 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007385
Chris Lattner90564f22006-04-18 17:59:36 +00007386 // Unpack the result based on how the target uses it.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007387 PPC::Predicate CompOpc;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007388 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner90564f22006-04-18 17:59:36 +00007389 default: // Can't happen, don't crash on invalid number though.
7390 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007391 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner90564f22006-04-18 17:59:36 +00007392 break;
7393 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007394 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner90564f22006-04-18 17:59:36 +00007395 break;
7396 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007397 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner90564f22006-04-18 17:59:36 +00007398 break;
7399 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00007400 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner90564f22006-04-18 17:59:36 +00007401 break;
7402 }
7403
Owen Anderson825b72b2009-08-11 20:47:22 +00007404 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
7405 DAG.getConstant(CompOpc, MVT::i32),
7406 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner90564f22006-04-18 17:59:36 +00007407 N->getOperand(4), CompNode.getValue(1));
7408 }
7409 break;
7410 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007411 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007412
Dan Gohman475871a2008-07-27 21:46:04 +00007413 return SDValue();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00007414}
7415
Chris Lattner1a635d62006-04-14 06:01:58 +00007416//===----------------------------------------------------------------------===//
7417// Inline Assembly Support
7418//===----------------------------------------------------------------------===//
7419
Dan Gohman475871a2008-07-27 21:46:04 +00007420void PPCTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Scott Michelfdc40a02009-02-17 22:15:04 +00007421 APInt &KnownZero,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007422 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00007423 const SelectionDAG &DAG,
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007424 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00007425 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007426 switch (Op.getOpcode()) {
7427 default: break;
Chris Lattnerd9989382006-07-10 20:56:58 +00007428 case PPCISD::LBRX: {
7429 // lhbrx is known to have the top bits cleared out.
Dan Gohmanae03af22009-09-27 23:17:47 +00007430 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
Chris Lattnerd9989382006-07-10 20:56:58 +00007431 KnownZero = 0xFFFF0000;
7432 break;
7433 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007434 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007435 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007436 default: break;
7437 case Intrinsic::ppc_altivec_vcmpbfp_p:
7438 case Intrinsic::ppc_altivec_vcmpeqfp_p:
7439 case Intrinsic::ppc_altivec_vcmpequb_p:
7440 case Intrinsic::ppc_altivec_vcmpequh_p:
7441 case Intrinsic::ppc_altivec_vcmpequw_p:
7442 case Intrinsic::ppc_altivec_vcmpgefp_p:
7443 case Intrinsic::ppc_altivec_vcmpgtfp_p:
7444 case Intrinsic::ppc_altivec_vcmpgtsb_p:
7445 case Intrinsic::ppc_altivec_vcmpgtsh_p:
7446 case Intrinsic::ppc_altivec_vcmpgtsw_p:
7447 case Intrinsic::ppc_altivec_vcmpgtub_p:
7448 case Intrinsic::ppc_altivec_vcmpgtuh_p:
7449 case Intrinsic::ppc_altivec_vcmpgtuw_p:
7450 KnownZero = ~1U; // All bits but the low one are known to be zero.
7451 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007452 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00007453 }
7454 }
7455}
7456
7457
Chris Lattner4234f572007-03-25 02:14:49 +00007458/// getConstraintType - Given a constraint, return the type of
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00007459/// constraint it is for this target.
Scott Michelfdc40a02009-02-17 22:15:04 +00007460PPCTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00007461PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
7462 if (Constraint.size() == 1) {
7463 switch (Constraint[0]) {
7464 default: break;
7465 case 'b':
7466 case 'r':
7467 case 'f':
7468 case 'v':
7469 case 'y':
7470 return C_RegisterClass;
Hal Finkel827b7a02012-11-05 18:18:42 +00007471 case 'Z':
7472 // FIXME: While Z does indicate a memory constraint, it specifically
7473 // indicates an r+r address (used in conjunction with the 'y' modifier
7474 // in the replacement string). Currently, we're forcing the base
7475 // register to be r0 in the asm printer (which is interpreted as zero)
7476 // and forming the complete address in the second register. This is
7477 // suboptimal.
7478 return C_Memory;
Chris Lattner4234f572007-03-25 02:14:49 +00007479 }
7480 }
7481 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00007482}
7483
John Thompson44ab89e2010-10-29 17:29:13 +00007484/// Examine constraint type and operand type and determine a weight value.
7485/// This object must already have been set up with the operand type
7486/// and the current alternative constraint selected.
7487TargetLowering::ConstraintWeight
7488PPCTargetLowering::getSingleConstraintMatchWeight(
7489 AsmOperandInfo &info, const char *constraint) const {
7490 ConstraintWeight weight = CW_Invalid;
7491 Value *CallOperandVal = info.CallOperandVal;
7492 // If we don't have a value, we can't do a match,
7493 // but allow it at the lowest weight.
7494 if (CallOperandVal == NULL)
7495 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007496 Type *type = CallOperandVal->getType();
John Thompson44ab89e2010-10-29 17:29:13 +00007497 // Look at the constraint type.
7498 switch (*constraint) {
7499 default:
7500 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
7501 break;
7502 case 'b':
7503 if (type->isIntegerTy())
7504 weight = CW_Register;
7505 break;
7506 case 'f':
7507 if (type->isFloatTy())
7508 weight = CW_Register;
7509 break;
7510 case 'd':
7511 if (type->isDoubleTy())
7512 weight = CW_Register;
7513 break;
7514 case 'v':
7515 if (type->isVectorTy())
7516 weight = CW_Register;
7517 break;
7518 case 'y':
7519 weight = CW_Register;
7520 break;
Hal Finkel827b7a02012-11-05 18:18:42 +00007521 case 'Z':
7522 weight = CW_Memory;
7523 break;
John Thompson44ab89e2010-10-29 17:29:13 +00007524 }
7525 return weight;
7526}
7527
Scott Michelfdc40a02009-02-17 22:15:04 +00007528std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner331d1bc2006-11-02 01:44:04 +00007529PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00007530 EVT VT) const {
Chris Lattnerddc787d2006-01-31 19:20:21 +00007531 if (Constraint.size() == 1) {
Chris Lattner331d1bc2006-11-02 01:44:04 +00007532 // GCC RS6000 Constraint Letters
7533 switch (Constraint[0]) {
7534 case 'b': // R1-R31
Hal Finkela548afc2013-03-19 18:51:05 +00007535 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
7536 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
7537 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007538 case 'r': // R0-R31
Owen Anderson825b72b2009-08-11 20:47:22 +00007539 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
Craig Topperc9099502012-04-20 06:31:50 +00007540 return std::make_pair(0U, &PPC::G8RCRegClass);
7541 return std::make_pair(0U, &PPC::GPRCRegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007542 case 'f':
Ulrich Weigand78dab642012-10-29 17:49:34 +00007543 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00007544 return std::make_pair(0U, &PPC::F4RCRegClass);
Ulrich Weigand78dab642012-10-29 17:49:34 +00007545 if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00007546 return std::make_pair(0U, &PPC::F8RCRegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007547 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007548 case 'v':
Craig Topperc9099502012-04-20 06:31:50 +00007549 return std::make_pair(0U, &PPC::VRRCRegClass);
Chris Lattner331d1bc2006-11-02 01:44:04 +00007550 case 'y': // crrc
Craig Topperc9099502012-04-20 06:31:50 +00007551 return std::make_pair(0U, &PPC::CRRCRegClass);
Chris Lattnerddc787d2006-01-31 19:20:21 +00007552 }
7553 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007554
Chris Lattner331d1bc2006-11-02 01:44:04 +00007555 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattnerddc787d2006-01-31 19:20:21 +00007556}
Chris Lattner763317d2006-02-07 00:47:13 +00007557
Chris Lattner331d1bc2006-11-02 01:44:04 +00007558
Chris Lattner48884cd2007-08-25 00:47:38 +00007559/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Dale Johannesen1784d162010-06-25 21:55:36 +00007560/// vector. If it is invalid, don't add anything to Ops.
Eric Christopher471e4222011-06-08 23:55:35 +00007561void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +00007562 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +00007563 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00007564 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007565 SDValue Result(0,0);
Eric Christopher471e4222011-06-08 23:55:35 +00007566
Eric Christopher100c8332011-06-02 23:16:42 +00007567 // Only support length 1 constraints.
7568 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +00007569
Eric Christopher100c8332011-06-02 23:16:42 +00007570 char Letter = Constraint[0];
Chris Lattner763317d2006-02-07 00:47:13 +00007571 switch (Letter) {
7572 default: break;
7573 case 'I':
7574 case 'J':
7575 case 'K':
7576 case 'L':
7577 case 'M':
7578 case 'N':
7579 case 'O':
7580 case 'P': {
Chris Lattner9f5d5782007-05-15 01:31:05 +00007581 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattner48884cd2007-08-25 00:47:38 +00007582 if (!CST) return; // Must be an immediate to match.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007583 unsigned Value = CST->getZExtValue();
Chris Lattner763317d2006-02-07 00:47:13 +00007584 switch (Letter) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007585 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner763317d2006-02-07 00:47:13 +00007586 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007587 if ((short)Value == (int)Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00007588 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007589 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007590 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
7591 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007592 if ((short)Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00007593 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007594 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007595 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007596 if ((Value >> 16) == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00007597 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007598 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007599 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007600 if (Value > 31)
Chris Lattner48884cd2007-08-25 00:47:38 +00007601 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007602 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007603 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007604 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattner48884cd2007-08-25 00:47:38 +00007605 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007606 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007607 case 'O': // "O" is the constant zero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007608 if (Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00007609 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007610 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007611 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00007612 if ((short)-Value == (int)-Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00007613 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00007614 break;
Chris Lattner763317d2006-02-07 00:47:13 +00007615 }
7616 break;
7617 }
7618 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007619
Gabor Greifba36cb52008-08-28 21:40:38 +00007620 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00007621 Ops.push_back(Result);
7622 return;
7623 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007624
Chris Lattner763317d2006-02-07 00:47:13 +00007625 // Handle standard constraint letters.
Eric Christopher100c8332011-06-02 23:16:42 +00007626 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner763317d2006-02-07 00:47:13 +00007627}
Evan Chengc4c62572006-03-13 23:20:37 +00007628
Chris Lattnerc9addb72007-03-30 23:15:24 +00007629// isLegalAddressingMode - Return true if the addressing mode represented
7630// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00007631bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007632 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +00007633 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelfdc40a02009-02-17 22:15:04 +00007634
Chris Lattnerc9addb72007-03-30 23:15:24 +00007635 // PPC allows a sign-extended 16-bit immediate field.
7636 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
7637 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007638
Chris Lattnerc9addb72007-03-30 23:15:24 +00007639 // No global is ever allowed as a base.
7640 if (AM.BaseGV)
7641 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007642
7643 // PPC only support r+r,
Chris Lattnerc9addb72007-03-30 23:15:24 +00007644 switch (AM.Scale) {
7645 case 0: // "r+i" or just "i", depending on HasBaseReg.
7646 break;
7647 case 1:
7648 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
7649 return false;
7650 // Otherwise we have r+r or r+i.
7651 break;
7652 case 2:
7653 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
7654 return false;
7655 // Allow 2*r as r+r.
7656 break;
Chris Lattner7c7ba9d2007-04-09 22:10:05 +00007657 default:
7658 // No other scales are supported.
7659 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00007660 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007661
Chris Lattnerc9addb72007-03-30 23:15:24 +00007662 return true;
7663}
7664
Dan Gohmand858e902010-04-17 15:26:15 +00007665SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
7666 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007667 MachineFunction &MF = DAG.getMachineFunction();
7668 MachineFrameInfo *MFI = MF.getFrameInfo();
7669 MFI->setReturnAddressIsTaken(true);
7670
Andrew Trickac6d9be2013-05-25 02:42:55 +00007671 SDLoc dl(Op);
Dale Johannesen08673d22010-05-03 22:59:34 +00007672 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Chris Lattner3fc027d2007-12-08 06:59:59 +00007673
Dale Johannesen08673d22010-05-03 22:59:34 +00007674 // Make sure the function does not optimize away the store of the RA to
7675 // the stack.
Chris Lattner3fc027d2007-12-08 06:59:59 +00007676 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Dale Johannesen08673d22010-05-03 22:59:34 +00007677 FuncInfo->setLRStoreRequired();
7678 bool isPPC64 = PPCSubTarget.isPPC64();
7679 bool isDarwinABI = PPCSubTarget.isDarwinABI();
7680
7681 if (Depth > 0) {
7682 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7683 SDValue Offset =
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007684
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00007685 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI),
Dale Johannesen08673d22010-05-03 22:59:34 +00007686 isPPC64? MVT::i64 : MVT::i32);
7687 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
7688 DAG.getNode(ISD::ADD, dl, getPointerTy(),
7689 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007690 MachinePointerInfo(), false, false, false, 0);
Dale Johannesen08673d22010-05-03 22:59:34 +00007691 }
Chris Lattner3fc027d2007-12-08 06:59:59 +00007692
Chris Lattner3fc027d2007-12-08 06:59:59 +00007693 // Just load the return address off the stack.
Dan Gohman475871a2008-07-27 21:46:04 +00007694 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Dale Johannesen08673d22010-05-03 22:59:34 +00007695 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007696 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Chris Lattner3fc027d2007-12-08 06:59:59 +00007697}
7698
Dan Gohmand858e902010-04-17 15:26:15 +00007699SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
7700 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007701 SDLoc dl(Op);
Dale Johannesen08673d22010-05-03 22:59:34 +00007702 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007703
Owen Andersone50ed302009-08-10 22:56:29 +00007704 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00007705 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelfdc40a02009-02-17 22:15:04 +00007706
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00007707 MachineFunction &MF = DAG.getMachineFunction();
7708 MachineFrameInfo *MFI = MF.getFrameInfo();
Dale Johannesen08673d22010-05-03 22:59:34 +00007709 MFI->setFrameAddressIsTaken(true);
Hal Finkele9cc0a02013-03-21 19:03:19 +00007710
7711 // Naked functions never have a frame pointer, and so we use r1. For all
7712 // other functions, this decision must be delayed until during PEI.
7713 unsigned FrameReg;
7714 if (MF.getFunction()->getAttributes().hasAttribute(
7715 AttributeSet::FunctionIndex, Attribute::Naked))
7716 FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
7717 else
7718 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
7719
Dale Johannesen08673d22010-05-03 22:59:34 +00007720 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
7721 PtrVT);
7722 while (Depth--)
7723 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007724 FrameAddr, MachinePointerInfo(), false, false,
7725 false, 0);
Dale Johannesen08673d22010-05-03 22:59:34 +00007726 return FrameAddr;
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00007727}
Dan Gohman54aeea32008-10-21 03:41:46 +00007728
7729bool
7730PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
7731 // The PowerPC target isn't yet aware of offsets.
7732 return false;
7733}
Tilmann Schellerffd02002009-07-03 06:45:56 +00007734
Evan Cheng42642d02010-04-01 20:10:42 +00007735/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengf28f8bc2010-04-02 19:36:14 +00007736/// and store operations as a result of memset, memcpy, and memmove
7737/// lowering. If DstAlign is zero that means it's safe to destination
7738/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
7739/// means there isn't a need to check it against alignment requirement,
Evan Cheng946a3a92012-12-12 02:34:41 +00007740/// probably because the source does not need to be loaded. If 'IsMemset' is
7741/// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
7742/// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
7743/// source is constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00007744/// It returns EVT::Other if the type should be determined using generic
7745/// target-independent logic.
Evan Cheng255f20f2010-04-01 06:04:33 +00007746EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
7747 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng946a3a92012-12-12 02:34:41 +00007748 bool IsMemset, bool ZeroMemset,
Evan Chengc3b0c342010-04-08 07:37:57 +00007749 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00007750 MachineFunction &MF) const {
Tilmann Schellerffd02002009-07-03 06:45:56 +00007751 if (this->PPCSubTarget.isPPC64()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007752 return MVT::i64;
Tilmann Schellerffd02002009-07-03 06:45:56 +00007753 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00007754 return MVT::i32;
Tilmann Schellerffd02002009-07-03 06:45:56 +00007755 }
7756}
Hal Finkel3f31d492012-04-01 19:23:08 +00007757
Hal Finkel2d37f7b2013-03-15 15:27:13 +00007758bool PPCTargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
7759 bool *Fast) const {
7760 if (DisablePPCUnaligned)
7761 return false;
7762
7763 // PowerPC supports unaligned memory access for simple non-vector types.
7764 // Although accessing unaligned addresses is not as efficient as accessing
7765 // aligned addresses, it is generally more efficient than manual expansion,
7766 // and generally only traps for software emulation when crossing page
7767 // boundaries.
7768
7769 if (!VT.isSimple())
7770 return false;
7771
7772 if (VT.getSimpleVT().isVector())
7773 return false;
7774
7775 if (VT == MVT::ppcf128)
7776 return false;
7777
7778 if (Fast)
7779 *Fast = true;
7780
7781 return true;
7782}
7783
Hal Finkel070b8db2012-06-22 00:49:52 +00007784/// isFMAFasterThanMulAndAdd - Return true if an FMA operation is faster than
7785/// a pair of mul and add instructions. fmuladd intrinsics will be expanded to
7786/// FMAs when this method returns true (and FMAs are legal), otherwise fmuladd
7787/// is expanded to mul + add.
7788bool PPCTargetLowering::isFMAFasterThanMulAndAdd(EVT VT) const {
7789 if (!VT.isSimple())
7790 return false;
7791
7792 switch (VT.getSimpleVT().SimpleTy) {
7793 case MVT::f32:
7794 case MVT::f64:
7795 case MVT::v4f32:
7796 return true;
7797 default:
7798 break;
7799 }
7800
7801 return false;
7802}
7803
Hal Finkel3f31d492012-04-01 19:23:08 +00007804Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
Hal Finkel71ffcfe2012-06-10 19:32:29 +00007805 if (DisableILPPref)
7806 return TargetLowering::getSchedulingPreference(N);
Hal Finkel3f31d492012-04-01 19:23:08 +00007807
Hal Finkel71ffcfe2012-06-10 19:32:29 +00007808 return Sched::ILP;
Hal Finkel3f31d492012-04-01 19:23:08 +00007809}
7810