blob: 11c4093634c831a53dacfaca05b73ca5031a6a8a [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"
Jim Laskey2f616bf2006-11-16 22:43:37 +000015#include "PPCMachineFunctionInfo.h"
Chris Lattnerdf4ed632006-11-17 22:10:59 +000016#include "PPCPredicates.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000017#include "PPCTargetMachine.h"
Chris Lattner59138102006-04-17 05:28:54 +000018#include "PPCPerfectShuffle.h"
Owen Anderson718cb662007-09-07 04:06:50 +000019#include "llvm/ADT/STLExtras.h"
Nate Begeman750ac1b2006-02-01 07:19:44 +000020#include "llvm/ADT/VectorExtras.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"
Dan Gohman69de1932008-02-06 22:27:42 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000027#include "llvm/CodeGen/SelectionDAG.h"
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +000028#include "llvm/CallingConv.h"
Chris Lattner0b1e4e52005-08-26 17:36:52 +000029#include "llvm/Constants.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000030#include "llvm/Function.h"
Chris Lattner6d92cad2006-03-26 10:06:40 +000031#include "llvm/Intrinsics.h"
Nate Begeman750ac1b2006-02-01 07:19:44 +000032#include "llvm/Support/MathExtras.h"
Evan Chengd2ee2182006-02-18 00:08:58 +000033#include "llvm/Target/TargetOptions.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000034#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner4eab7142006-11-10 02:08:47 +000035#include "llvm/Support/CommandLine.h"
Torok Edwindac237e2009-07-08 20:53:28 +000036#include "llvm/Support/ErrorHandling.h"
37#include "llvm/Support/raw_ostream.h"
Jay Foad8d730fb2009-05-11 19:38:09 +000038#include "llvm/DerivedTypes.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000039using namespace llvm;
40
Owen Andersone50ed302009-08-10 22:56:29 +000041static bool CC_PPC_SVR4_Custom_Dummy(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +000042 CCValAssign::LocInfo &LocInfo,
43 ISD::ArgFlagsTy &ArgFlags,
44 CCState &State);
Owen Andersone50ed302009-08-10 22:56:29 +000045static bool CC_PPC_SVR4_Custom_AlignArgRegs(unsigned &ValNo, EVT &ValVT,
46 EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +000047 CCValAssign::LocInfo &LocInfo,
48 ISD::ArgFlagsTy &ArgFlags,
49 CCState &State);
Owen Andersone50ed302009-08-10 22:56:29 +000050static bool CC_PPC_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, EVT &ValVT,
51 EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +000052 CCValAssign::LocInfo &LocInfo,
53 ISD::ArgFlagsTy &ArgFlags,
54 CCState &State);
55
Scott Michelfdc40a02009-02-17 22:15:04 +000056static cl::opt<bool> EnablePPCPreinc("enable-ppc-preinc",
Chris Lattner3ee77402007-06-19 05:46:06 +000057cl::desc("enable preincrement load/store generation on PPC (experimental)"),
58 cl::Hidden);
Chris Lattner4eab7142006-11-10 02:08:47 +000059
Chris Lattnerf0144122009-07-28 03:13:23 +000060static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
61 if (TM.getSubtargetImpl()->isDarwin())
Chris Lattnerf26e03b2009-07-31 17:42:42 +000062 return new TargetLoweringObjectFileMachO();
Chris Lattner892e1822009-08-08 22:41:53 +000063 return new TargetLoweringObjectFileELF(true);
Chris Lattnerf0144122009-07-28 03:13:23 +000064}
65
66
Chris Lattner331d1bc2006-11-02 01:44:04 +000067PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +000068 : TargetLowering(TM, CreateTLOF(TM)), PPCSubTarget(*TM.getSubtargetImpl()) {
Scott Michelfdc40a02009-02-17 22:15:04 +000069
Nate Begeman405e3ec2005-10-21 00:02:42 +000070 setPow2DivIsCheap();
Dale Johannesen72324642008-07-31 18:13:12 +000071
Chris Lattnerd145a612005-09-27 22:18:25 +000072 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000073 setUseUnderscoreSetJmp(true);
74 setUseUnderscoreLongJmp(true);
Scott Michelfdc40a02009-02-17 22:15:04 +000075
Chris Lattner7c5a3d32005-08-16 17:14:42 +000076 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +000077 addRegisterClass(MVT::i32, PPC::GPRCRegisterClass);
78 addRegisterClass(MVT::f32, PPC::F4RCRegisterClass);
79 addRegisterClass(MVT::f64, PPC::F8RCRegisterClass);
Scott Michelfdc40a02009-02-17 22:15:04 +000080
Evan Chengc5484282006-10-04 00:56:09 +000081 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Owen Anderson825b72b2009-08-11 20:47:22 +000082 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
83 setLoadExtAction(ISD::SEXTLOAD, MVT::i8, Expand);
Duncan Sandsf9c98e62008-01-23 20:39:46 +000084
Owen Anderson825b72b2009-08-11 20:47:22 +000085 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +000086
Chris Lattner94e509c2006-11-10 23:58:45 +000087 // PowerPC has pre-inc load and store's.
Owen Anderson825b72b2009-08-11 20:47:22 +000088 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
89 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
90 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
91 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
92 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
93 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
94 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
95 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
96 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
97 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
Evan Chengcd633192006-11-09 19:11:50 +000098
Dale Johannesen6eaeff22007-10-10 01:01:31 +000099 // This is used in the ppcf128->int sequence. Note it has different semantics
100 // from FP_ROUND: that rounds to nearest, this rounds to zero.
Owen Anderson825b72b2009-08-11 20:47:22 +0000101 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesen638ccd52007-10-06 01:24:11 +0000102
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000103 // PowerPC has no SREM/UREM instructions
Owen Anderson825b72b2009-08-11 20:47:22 +0000104 setOperationAction(ISD::SREM, MVT::i32, Expand);
105 setOperationAction(ISD::UREM, MVT::i32, Expand);
106 setOperationAction(ISD::SREM, MVT::i64, Expand);
107 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman3ce990d2007-10-08 17:28:24 +0000108
109 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
Owen Anderson825b72b2009-08-11 20:47:22 +0000110 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
111 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
112 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
113 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
114 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
115 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
116 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
117 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000118
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000119 // We don't support sin/cos/sqrt/fmod/pow
Owen Anderson825b72b2009-08-11 20:47:22 +0000120 setOperationAction(ISD::FSIN , MVT::f64, Expand);
121 setOperationAction(ISD::FCOS , MVT::f64, Expand);
122 setOperationAction(ISD::FREM , MVT::f64, Expand);
123 setOperationAction(ISD::FPOW , MVT::f64, Expand);
124 setOperationAction(ISD::FSIN , MVT::f32, Expand);
125 setOperationAction(ISD::FCOS , MVT::f32, Expand);
126 setOperationAction(ISD::FREM , MVT::f32, Expand);
127 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Dale Johannesen5c5eb802008-01-18 19:55:37 +0000128
Owen Anderson825b72b2009-08-11 20:47:22 +0000129 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000130
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000131 // If we're enabling GP optimizations, use hardware square root
Chris Lattner1e9de3e2005-09-02 18:33:05 +0000132 if (!TM.getSubtarget<PPCSubtarget>().hasFSQRT()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000133 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
134 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000135 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000136
Owen Anderson825b72b2009-08-11 20:47:22 +0000137 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
138 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000139
Nate Begemand88fc032006-01-14 03:14:10 +0000140 // PowerPC does not have BSWAP, CTPOP or CTTZ
Owen Anderson825b72b2009-08-11 20:47:22 +0000141 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
142 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
143 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
144 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
145 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
146 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000147
Nate Begeman35ef9132006-01-11 21:21:00 +0000148 // PowerPC does not have ROTR
Owen Anderson825b72b2009-08-11 20:47:22 +0000149 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
150 setOperationAction(ISD::ROTR, MVT::i64 , Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000151
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000152 // PowerPC does not have Select
Owen Anderson825b72b2009-08-11 20:47:22 +0000153 setOperationAction(ISD::SELECT, MVT::i32, Expand);
154 setOperationAction(ISD::SELECT, MVT::i64, Expand);
155 setOperationAction(ISD::SELECT, MVT::f32, Expand);
156 setOperationAction(ISD::SELECT, MVT::f64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000157
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000158 // PowerPC wants to turn select_cc of FP into fsel when possible.
Owen Anderson825b72b2009-08-11 20:47:22 +0000159 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
160 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begeman44775902006-01-31 08:17:29 +0000161
Nate Begeman750ac1b2006-02-01 07:19:44 +0000162 // PowerPC wants to optimize integer setcc a bit
Owen Anderson825b72b2009-08-11 20:47:22 +0000163 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000164
Nate Begeman81e80972006-03-17 01:40:33 +0000165 // PowerPC does not have BRCOND which requires SetCC
Owen Anderson825b72b2009-08-11 20:47:22 +0000166 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Chengc35497f2006-10-30 08:02:39 +0000167
Owen Anderson825b72b2009-08-11 20:47:22 +0000168 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000169
Chris Lattnerf7605322005-08-31 21:09:52 +0000170 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
Owen Anderson825b72b2009-08-11 20:47:22 +0000171 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000172
Jim Laskeyad23c9d2005-08-17 00:40:22 +0000173 // PowerPC does not have [U|S]INT_TO_FP
Owen Anderson825b72b2009-08-11 20:47:22 +0000174 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
175 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
Jim Laskeyad23c9d2005-08-17 00:40:22 +0000176
Owen Anderson825b72b2009-08-11 20:47:22 +0000177 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
178 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
179 setOperationAction(ISD::BIT_CONVERT, MVT::i64, Expand);
180 setOperationAction(ISD::BIT_CONVERT, MVT::f64, Expand);
Chris Lattner53e88452005-12-23 05:13:35 +0000181
Chris Lattner25b8b8c2006-04-28 21:56:10 +0000182 // We cannot sextinreg(i1). Expand to shifts.
Owen Anderson825b72b2009-08-11 20:47:22 +0000183 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000184
Jim Laskeyabf6d172006-01-05 01:25:28 +0000185 // Support label based line numbers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000186 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
187 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000188
Owen Anderson825b72b2009-08-11 20:47:22 +0000189 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
190 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
191 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
192 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000193
194
195 // We want to legalize GlobalAddress and ConstantPool nodes into the
Nate Begeman28a6b022005-12-10 02:36:00 +0000196 // appropriate instructions to materialize the address.
Owen Anderson825b72b2009-08-11 20:47:22 +0000197 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
198 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
199 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
200 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
201 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
202 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
203 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
204 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000205
Nate Begeman1db3c922008-08-11 17:36:31 +0000206 // TRAP is legal.
Owen Anderson825b72b2009-08-11 20:47:22 +0000207 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Bill Wendling77959322008-09-17 00:30:57 +0000208
209 // TRAMPOLINE is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000210 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Bill Wendling77959322008-09-17 00:30:57 +0000211
Nate Begemanacc398c2006-01-25 18:21:52 +0000212 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000213 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000214
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +0000215 // VAARG is custom lowered with the SVR4 ABI
216 if (TM.getSubtarget<PPCSubtarget>().isSVR4ABI())
Owen Anderson825b72b2009-08-11 20:47:22 +0000217 setOperationAction(ISD::VAARG, MVT::Other, Custom);
Nicolas Geoffray01119992007-04-03 13:59:52 +0000218 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000219 setOperationAction(ISD::VAARG, MVT::Other, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000220
Chris Lattnerb22c08b2006-01-15 09:02:48 +0000221 // Use the default implementation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000222 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
223 setOperationAction(ISD::VAEND , MVT::Other, Expand);
224 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
225 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
226 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
227 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Chris Lattner56a752e2006-10-18 01:18:48 +0000228
Chris Lattner6d92cad2006-03-26 10:06:40 +0000229 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000230 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000231
Dale Johannesen53e4e442008-11-07 22:54:33 +0000232 // Comparisons that require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000233 setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
234 setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
235 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
236 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
237 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
238 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
239 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
240 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
241 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
242 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
243 setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
244 setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
Scott Michelfdc40a02009-02-17 22:15:04 +0000245
Chris Lattnera7a58542006-06-16 17:34:12 +0000246 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Nate Begeman1d9d7422005-10-18 00:28:58 +0000247 // They also have instructions for converting between i64 and fp.
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
249 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
250 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
251 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Dale Johannesen4c9369d2009-06-04 20:53:52 +0000252 // This is just the low 32 bits of a (signed) fp->i64 conversion.
253 // We cannot do this with Promote because i64 is not a legal type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000255
Chris Lattner7fbcef72006-03-24 07:53:47 +0000256 // FIXME: disable this lowered code. This generates 64-bit register values,
257 // and we don't model the fact that the top part is clobbered by calls. We
258 // need to flag these together so that the value isn't live across a call.
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 //setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
Nate Begemanae749a92005-10-25 23:48:36 +0000260 } else {
Chris Lattner860e8862005-11-17 07:30:41 +0000261 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000262 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begeman9d2b8172005-10-18 00:56:42 +0000263 }
264
Chris Lattnera7a58542006-06-16 17:34:12 +0000265 if (TM.getSubtarget<PPCSubtarget>().use64BitRegs()) {
Chris Lattner26cb2862007-10-19 04:08:28 +0000266 // 64-bit PowerPC implementations can support i64 types directly
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 addRegisterClass(MVT::i64, PPC::G8RCRegisterClass);
Nate Begeman1d9d7422005-10-18 00:28:58 +0000268 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
Owen Anderson825b72b2009-08-11 20:47:22 +0000269 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman9ed06db2008-03-07 20:36:53 +0000270 // 64-bit PowerPC wants to expand i128 shifts itself.
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
272 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
273 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman1d9d7422005-10-18 00:28:58 +0000274 } else {
Chris Lattner26cb2862007-10-19 04:08:28 +0000275 // 32-bit PowerPC wants to expand i64 shifts itself.
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
277 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
278 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000279 }
Evan Chengd30bf012006-03-01 01:11:20 +0000280
Nate Begeman425a9692005-11-29 08:17:20 +0000281 if (TM.getSubtarget<PPCSubtarget>().hasAltivec()) {
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000282 // First set operation action for all vector types to expand. Then we
283 // will selectively turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000284 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
285 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
286 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000287
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000288 // add/sub are legal for all supported vector VT's.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000289 setOperationAction(ISD::ADD , VT, Legal);
290 setOperationAction(ISD::SUB , VT, Legal);
Scott Michelfdc40a02009-02-17 22:15:04 +0000291
Chris Lattner7ff7e672006-04-04 17:25:31 +0000292 // We promote all shuffles to v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000293 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000294 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000295
296 // We promote all non-typed operations to v4i32.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000297 setOperationAction(ISD::AND , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000298 AddPromotedToType (ISD::AND , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000299 setOperationAction(ISD::OR , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000300 AddPromotedToType (ISD::OR , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000301 setOperationAction(ISD::XOR , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000302 AddPromotedToType (ISD::XOR , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000303 setOperationAction(ISD::LOAD , VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000304 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000305 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000306 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000307 setOperationAction(ISD::STORE, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000308 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
Scott Michelfdc40a02009-02-17 22:15:04 +0000309
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000310 // No other operations are legal.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000311 setOperationAction(ISD::MUL , VT, Expand);
312 setOperationAction(ISD::SDIV, VT, Expand);
313 setOperationAction(ISD::SREM, VT, Expand);
314 setOperationAction(ISD::UDIV, VT, Expand);
315 setOperationAction(ISD::UREM, VT, Expand);
316 setOperationAction(ISD::FDIV, VT, Expand);
317 setOperationAction(ISD::FNEG, VT, Expand);
318 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
319 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
320 setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
321 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
322 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
323 setOperationAction(ISD::UDIVREM, VT, Expand);
324 setOperationAction(ISD::SDIVREM, VT, Expand);
325 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
326 setOperationAction(ISD::FPOW, VT, Expand);
327 setOperationAction(ISD::CTPOP, VT, Expand);
328 setOperationAction(ISD::CTLZ, VT, Expand);
329 setOperationAction(ISD::CTTZ, VT, Expand);
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000330 }
331
Chris Lattner7ff7e672006-04-04 17:25:31 +0000332 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
333 // with merges, splats, etc.
Owen Anderson825b72b2009-08-11 20:47:22 +0000334 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
Chris Lattner7ff7e672006-04-04 17:25:31 +0000335
Owen Anderson825b72b2009-08-11 20:47:22 +0000336 setOperationAction(ISD::AND , MVT::v4i32, Legal);
337 setOperationAction(ISD::OR , MVT::v4i32, Legal);
338 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
339 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
340 setOperationAction(ISD::SELECT, MVT::v4i32, Expand);
341 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
Scott Michelfdc40a02009-02-17 22:15:04 +0000342
Owen Anderson825b72b2009-08-11 20:47:22 +0000343 addRegisterClass(MVT::v4f32, PPC::VRRCRegisterClass);
344 addRegisterClass(MVT::v4i32, PPC::VRRCRegisterClass);
345 addRegisterClass(MVT::v8i16, PPC::VRRCRegisterClass);
346 addRegisterClass(MVT::v16i8, PPC::VRRCRegisterClass);
Scott Michelfdc40a02009-02-17 22:15:04 +0000347
Owen Anderson825b72b2009-08-11 20:47:22 +0000348 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
349 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
350 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
351 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnerf1d0b2b2006-03-20 01:53:53 +0000352
Owen Anderson825b72b2009-08-11 20:47:22 +0000353 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
354 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000355
Owen Anderson825b72b2009-08-11 20:47:22 +0000356 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
357 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
358 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
359 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Nate Begeman425a9692005-11-29 08:17:20 +0000360 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000361
Owen Anderson825b72b2009-08-11 20:47:22 +0000362 setShiftAmountType(MVT::i32);
Duncan Sands03228082008-11-23 15:47:28 +0000363 setBooleanContents(ZeroOrOneBooleanContent);
Scott Michelfdc40a02009-02-17 22:15:04 +0000364
Jim Laskey2ad9f172007-02-22 14:56:36 +0000365 if (TM.getSubtarget<PPCSubtarget>().isPPC64()) {
Chris Lattner10da9572006-10-18 01:20:43 +0000366 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000367 setExceptionPointerRegister(PPC::X3);
368 setExceptionSelectorRegister(PPC::X4);
369 } else {
Chris Lattner10da9572006-10-18 01:20:43 +0000370 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000371 setExceptionPointerRegister(PPC::R3);
372 setExceptionSelectorRegister(PPC::R4);
373 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000374
Chris Lattner8c13d0a2006-03-01 04:57:39 +0000375 // We have target-specific dag combine patterns for the following nodes:
376 setTargetDAGCombine(ISD::SINT_TO_FP);
Chris Lattner51269842006-03-01 05:50:56 +0000377 setTargetDAGCombine(ISD::STORE);
Chris Lattner90564f22006-04-18 17:59:36 +0000378 setTargetDAGCombine(ISD::BR_CC);
Chris Lattnerd9989382006-07-10 20:56:58 +0000379 setTargetDAGCombine(ISD::BSWAP);
Scott Michelfdc40a02009-02-17 22:15:04 +0000380
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000381 // Darwin long double math library functions have $LDBL128 appended.
382 if (TM.getSubtarget<PPCSubtarget>().isDarwin()) {
Duncan Sands007f9842008-01-10 10:28:30 +0000383 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000384 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
385 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands007f9842008-01-10 10:28:30 +0000386 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
387 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000388 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
389 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
390 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
391 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
392 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000393 }
394
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000395 computeRegisterProperties();
396}
397
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000398/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
399/// function arguments in the caller parameter area.
400unsigned PPCTargetLowering::getByValTypeAlignment(const Type *Ty) const {
401 TargetMachine &TM = getTargetMachine();
402 // Darwin passes everything on 4 byte boundary.
403 if (TM.getSubtarget<PPCSubtarget>().isDarwin())
404 return 4;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +0000405 // FIXME SVR4 TBD
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000406 return 4;
407}
408
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000409const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
410 switch (Opcode) {
411 default: return 0;
Evan Cheng53301922008-07-12 02:23:19 +0000412 case PPCISD::FSEL: return "PPCISD::FSEL";
413 case PPCISD::FCFID: return "PPCISD::FCFID";
414 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
415 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
416 case PPCISD::STFIWX: return "PPCISD::STFIWX";
417 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
418 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
419 case PPCISD::VPERM: return "PPCISD::VPERM";
420 case PPCISD::Hi: return "PPCISD::Hi";
421 case PPCISD::Lo: return "PPCISD::Lo";
422 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
423 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
424 case PPCISD::SRL: return "PPCISD::SRL";
425 case PPCISD::SRA: return "PPCISD::SRA";
426 case PPCISD::SHL: return "PPCISD::SHL";
427 case PPCISD::EXTSW_32: return "PPCISD::EXTSW_32";
428 case PPCISD::STD_32: return "PPCISD::STD_32";
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +0000429 case PPCISD::CALL_SVR4: return "PPCISD::CALL_SVR4";
430 case PPCISD::CALL_Darwin: return "PPCISD::CALL_Darwin";
Evan Cheng53301922008-07-12 02:23:19 +0000431 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +0000432 case PPCISD::BCTRL_Darwin: return "PPCISD::BCTRL_Darwin";
433 case PPCISD::BCTRL_SVR4: return "PPCISD::BCTRL_SVR4";
Evan Cheng53301922008-07-12 02:23:19 +0000434 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
435 case PPCISD::MFCR: return "PPCISD::MFCR";
436 case PPCISD::VCMP: return "PPCISD::VCMP";
437 case PPCISD::VCMPo: return "PPCISD::VCMPo";
438 case PPCISD::LBRX: return "PPCISD::LBRX";
439 case PPCISD::STBRX: return "PPCISD::STBRX";
Evan Cheng53301922008-07-12 02:23:19 +0000440 case PPCISD::LARX: return "PPCISD::LARX";
441 case PPCISD::STCX: return "PPCISD::STCX";
442 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
443 case PPCISD::MFFS: return "PPCISD::MFFS";
444 case PPCISD::MTFSB0: return "PPCISD::MTFSB0";
445 case PPCISD::MTFSB1: return "PPCISD::MTFSB1";
446 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
447 case PPCISD::MTFSF: return "PPCISD::MTFSF";
Evan Cheng53301922008-07-12 02:23:19 +0000448 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000449 }
450}
451
Owen Anderson825b72b2009-08-11 20:47:22 +0000452MVT::SimpleValueType PPCTargetLowering::getSetCCResultType(EVT VT) const {
453 return MVT::i32;
Scott Michel5b8f82e2008-03-10 15:42:14 +0000454}
455
Bill Wendlingb4202b82009-07-01 18:50:55 +0000456/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +0000457unsigned PPCTargetLowering::getFunctionAlignment(const Function *F) const {
458 if (getTargetMachine().getSubtarget<PPCSubtarget>().isDarwin())
459 return F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4;
460 else
461 return 2;
462}
Scott Michel5b8f82e2008-03-10 15:42:14 +0000463
Chris Lattner1a635d62006-04-14 06:01:58 +0000464//===----------------------------------------------------------------------===//
465// Node matching predicates, for use by the tblgen matching code.
466//===----------------------------------------------------------------------===//
467
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000468/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
Dan Gohman475871a2008-07-27 21:46:04 +0000469static bool isFloatingPointZero(SDValue Op) {
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000470 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000471 return CFP->getValueAPF().isZero();
Gabor Greifba36cb52008-08-28 21:40:38 +0000472 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000473 // Maybe this has already been legalized into the constant pool?
474 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Evan Chengc356a572006-09-12 21:04:05 +0000475 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000476 return CFP->getValueAPF().isZero();
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000477 }
478 return false;
479}
480
Chris Lattnerddb739e2006-04-06 17:23:16 +0000481/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
482/// true if Op is undef or if it matches the specified value.
Nate Begeman9008ca62009-04-27 18:41:29 +0000483static bool isConstantOrUndef(int Op, int Val) {
484 return Op < 0 || Op == Val;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000485}
486
487/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
488/// VPKUHUM instruction.
Nate Begeman9008ca62009-04-27 18:41:29 +0000489bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnerf24380e2006-04-06 22:28:36 +0000490 if (!isUnary) {
491 for (unsigned i = 0; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000492 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000493 return false;
494 } else {
495 for (unsigned i = 0; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000496 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1) ||
497 !isConstantOrUndef(N->getMaskElt(i+8), i*2+1))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000498 return false;
499 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000500 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000501}
502
503/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
504/// VPKUWUM instruction.
Nate Begeman9008ca62009-04-27 18:41:29 +0000505bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, bool isUnary) {
Chris Lattnerf24380e2006-04-06 22:28:36 +0000506 if (!isUnary) {
507 for (unsigned i = 0; i != 16; i += 2)
Nate Begeman9008ca62009-04-27 18:41:29 +0000508 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
509 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000510 return false;
511 } else {
512 for (unsigned i = 0; i != 8; i += 2)
Nate Begeman9008ca62009-04-27 18:41:29 +0000513 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) ||
514 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3) ||
515 !isConstantOrUndef(N->getMaskElt(i+8), i*2+2) ||
516 !isConstantOrUndef(N->getMaskElt(i+9), i*2+3))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000517 return false;
518 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000519 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000520}
521
Chris Lattnercaad1632006-04-06 22:02:42 +0000522/// isVMerge - Common function, used to match vmrg* shuffles.
523///
Nate Begeman9008ca62009-04-27 18:41:29 +0000524static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
Chris Lattnercaad1632006-04-06 22:02:42 +0000525 unsigned LHSStart, unsigned RHSStart) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman9008ca62009-04-27 18:41:29 +0000527 "PPC only supports shuffles by bytes!");
Chris Lattner116cc482006-04-06 21:11:54 +0000528 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
529 "Unsupported merge size!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000530
Chris Lattner116cc482006-04-06 21:11:54 +0000531 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
532 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
Nate Begeman9008ca62009-04-27 18:41:29 +0000533 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000534 LHSStart+j+i*UnitSize) ||
Nate Begeman9008ca62009-04-27 18:41:29 +0000535 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000536 RHSStart+j+i*UnitSize))
Chris Lattner116cc482006-04-06 21:11:54 +0000537 return false;
538 }
Nate Begeman9008ca62009-04-27 18:41:29 +0000539 return true;
Chris Lattnercaad1632006-04-06 22:02:42 +0000540}
541
542/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
543/// a VRGL* instruction with the specified unit size (1,2 or 4 bytes).
Nate Begeman9008ca62009-04-27 18:41:29 +0000544bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
545 bool isUnary) {
Chris Lattnercaad1632006-04-06 22:02:42 +0000546 if (!isUnary)
547 return isVMerge(N, UnitSize, 8, 24);
548 return isVMerge(N, UnitSize, 8, 8);
Chris Lattner116cc482006-04-06 21:11:54 +0000549}
550
551/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
552/// a VRGH* instruction with the specified unit size (1,2 or 4 bytes).
Nate Begeman9008ca62009-04-27 18:41:29 +0000553bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
554 bool isUnary) {
Chris Lattnercaad1632006-04-06 22:02:42 +0000555 if (!isUnary)
556 return isVMerge(N, UnitSize, 0, 16);
557 return isVMerge(N, UnitSize, 0, 0);
Chris Lattner116cc482006-04-06 21:11:54 +0000558}
559
560
Chris Lattnerd0608e12006-04-06 18:26:28 +0000561/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
562/// amount, otherwise return -1.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000563int PPC::isVSLDOIShuffleMask(SDNode *N, bool isUnary) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 assert(N->getValueType(0) == MVT::v16i8 &&
Nate Begeman9008ca62009-04-27 18:41:29 +0000565 "PPC only supports shuffles by bytes!");
566
567 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
568
Chris Lattnerd0608e12006-04-06 18:26:28 +0000569 // Find the first non-undef value in the shuffle mask.
570 unsigned i;
Nate Begeman9008ca62009-04-27 18:41:29 +0000571 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
Chris Lattnerd0608e12006-04-06 18:26:28 +0000572 /*search*/;
Scott Michelfdc40a02009-02-17 22:15:04 +0000573
Chris Lattnerd0608e12006-04-06 18:26:28 +0000574 if (i == 16) return -1; // all undef.
Scott Michelfdc40a02009-02-17 22:15:04 +0000575
Nate Begeman9008ca62009-04-27 18:41:29 +0000576 // Otherwise, check to see if the rest of the elements are consecutively
Chris Lattnerd0608e12006-04-06 18:26:28 +0000577 // numbered from this value.
Nate Begeman9008ca62009-04-27 18:41:29 +0000578 unsigned ShiftAmt = SVOp->getMaskElt(i);
Chris Lattnerd0608e12006-04-06 18:26:28 +0000579 if (ShiftAmt < i) return -1;
580 ShiftAmt -= i;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000581
Chris Lattnerf24380e2006-04-06 22:28:36 +0000582 if (!isUnary) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000583 // Check the rest of the elements to see if they are consecutive.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000584 for (++i; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000585 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000586 return -1;
587 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +0000588 // Check the rest of the elements to see if they are consecutive.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000589 for (++i; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +0000590 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
Chris Lattnerf24380e2006-04-06 22:28:36 +0000591 return -1;
592 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000593 return ShiftAmt;
594}
Chris Lattneref819f82006-03-20 06:33:01 +0000595
596/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
597/// specifies a splat of a single element that is suitable for input to
598/// VSPLTB/VSPLTH/VSPLTW.
Nate Begeman9008ca62009-04-27 18:41:29 +0000599bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 assert(N->getValueType(0) == MVT::v16i8 &&
Chris Lattner7ff7e672006-04-04 17:25:31 +0000601 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Scott Michelfdc40a02009-02-17 22:15:04 +0000602
Chris Lattner88a99ef2006-03-20 06:37:44 +0000603 // This is a splat operation if each element of the permute is the same, and
604 // if the value doesn't reference the second vector.
Nate Begeman9008ca62009-04-27 18:41:29 +0000605 unsigned ElementBase = N->getMaskElt(0);
606
607 // FIXME: Handle UNDEF elements too!
608 if (ElementBase >= 16)
Chris Lattner7ff7e672006-04-04 17:25:31 +0000609 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000610
Nate Begeman9008ca62009-04-27 18:41:29 +0000611 // Check that the indices are consecutive, in the case of a multi-byte element
612 // splatted with a v16i8 mask.
613 for (unsigned i = 1; i != EltSize; ++i)
614 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
Chris Lattner7ff7e672006-04-04 17:25:31 +0000615 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000616
Chris Lattner7ff7e672006-04-04 17:25:31 +0000617 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000618 if (N->getMaskElt(i) < 0) continue;
Chris Lattner7ff7e672006-04-04 17:25:31 +0000619 for (unsigned j = 0; j != EltSize; ++j)
Nate Begeman9008ca62009-04-27 18:41:29 +0000620 if (N->getMaskElt(i+j) != N->getMaskElt(j))
Chris Lattner7ff7e672006-04-04 17:25:31 +0000621 return false;
Chris Lattner88a99ef2006-03-20 06:37:44 +0000622 }
Chris Lattner7ff7e672006-04-04 17:25:31 +0000623 return true;
Chris Lattneref819f82006-03-20 06:33:01 +0000624}
625
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000626/// isAllNegativeZeroVector - Returns true if all elements of build_vector
627/// are -0.0.
628bool PPC::isAllNegativeZeroVector(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000629 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
630
631 APInt APVal, APUndef;
632 unsigned BitSize;
633 bool HasAnyUndefs;
634
635 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32))
636 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000637 return CFP->getValueAPF().isNegZero();
Nate Begeman9008ca62009-04-27 18:41:29 +0000638
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000639 return false;
640}
641
Chris Lattneref819f82006-03-20 06:33:01 +0000642/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
643/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Chris Lattner7ff7e672006-04-04 17:25:31 +0000644unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000645 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
646 assert(isSplatShuffleMask(SVOp, EltSize));
647 return SVOp->getMaskElt(0) / EltSize;
Chris Lattneref819f82006-03-20 06:33:01 +0000648}
649
Chris Lattnere87192a2006-04-12 17:37:20 +0000650/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattner140a58f2006-04-08 06:46:53 +0000651/// by using a vspltis[bhw] instruction of the specified element size, return
652/// the constant being splatted. The ByteSize field indicates the number of
653/// bytes of each element [124] -> [bhw].
Dan Gohman475871a2008-07-27 21:46:04 +0000654SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
655 SDValue OpVal(0, 0);
Chris Lattner79d9a882006-04-08 07:14:26 +0000656
657 // If ByteSize of the splat is bigger than the element size of the
658 // build_vector, then we have a case where we are checking for a splat where
659 // multiple elements of the buildvector are folded together into a single
660 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
661 unsigned EltSize = 16/N->getNumOperands();
662 if (EltSize < ByteSize) {
663 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
Dan Gohman475871a2008-07-27 21:46:04 +0000664 SDValue UniquedVals[4];
Chris Lattner79d9a882006-04-08 07:14:26 +0000665 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
Scott Michelfdc40a02009-02-17 22:15:04 +0000666
Chris Lattner79d9a882006-04-08 07:14:26 +0000667 // See if all of the elements in the buildvector agree across.
668 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
669 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
670 // If the element isn't a constant, bail fully out.
Dan Gohman475871a2008-07-27 21:46:04 +0000671 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000672
Scott Michelfdc40a02009-02-17 22:15:04 +0000673
Gabor Greifba36cb52008-08-28 21:40:38 +0000674 if (UniquedVals[i&(Multiple-1)].getNode() == 0)
Chris Lattner79d9a882006-04-08 07:14:26 +0000675 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
676 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
Dan Gohman475871a2008-07-27 21:46:04 +0000677 return SDValue(); // no match.
Chris Lattner79d9a882006-04-08 07:14:26 +0000678 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000679
Chris Lattner79d9a882006-04-08 07:14:26 +0000680 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
681 // either constant or undef values that are identical for each chunk. See
682 // if these chunks can form into a larger vspltis*.
Scott Michelfdc40a02009-02-17 22:15:04 +0000683
Chris Lattner79d9a882006-04-08 07:14:26 +0000684 // Check to see if all of the leading entries are either 0 or -1. If
685 // neither, then this won't fit into the immediate field.
686 bool LeadingZero = true;
687 bool LeadingOnes = true;
688 for (unsigned i = 0; i != Multiple-1; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000689 if (UniquedVals[i].getNode() == 0) continue; // Must have been undefs.
Scott Michelfdc40a02009-02-17 22:15:04 +0000690
Chris Lattner79d9a882006-04-08 07:14:26 +0000691 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
692 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
693 }
694 // Finally, check the least significant entry.
695 if (LeadingZero) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000696 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +0000697 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000698 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000699 if (Val < 16)
Owen Anderson825b72b2009-08-11 20:47:22 +0000700 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
Chris Lattner79d9a882006-04-08 07:14:26 +0000701 }
702 if (LeadingOnes) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000703 if (UniquedVals[Multiple-1].getNode() == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +0000704 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
Dan Gohman7810bfe2008-09-26 21:54:37 +0000705 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000706 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
Owen Anderson825b72b2009-08-11 20:47:22 +0000707 return DAG.getTargetConstant(Val, MVT::i32);
Chris Lattner79d9a882006-04-08 07:14:26 +0000708 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000709
Dan Gohman475871a2008-07-27 21:46:04 +0000710 return SDValue();
Chris Lattner79d9a882006-04-08 07:14:26 +0000711 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000712
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000713 // Check to see if this buildvec has a single non-undef value in its elements.
714 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
715 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Gabor Greifba36cb52008-08-28 21:40:38 +0000716 if (OpVal.getNode() == 0)
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000717 OpVal = N->getOperand(i);
718 else if (OpVal != N->getOperand(i))
Dan Gohman475871a2008-07-27 21:46:04 +0000719 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000720 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000721
Gabor Greifba36cb52008-08-28 21:40:38 +0000722 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
Scott Michelfdc40a02009-02-17 22:15:04 +0000723
Eli Friedman1a8229b2009-05-24 02:03:36 +0000724 unsigned ValSizeInBytes = EltSize;
Nate Begeman98e70cc2006-03-28 04:15:58 +0000725 uint64_t Value = 0;
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000726 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000727 Value = CN->getZExtValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000728 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000729 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johanneseneaf08942007-08-31 04:03:46 +0000730 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000731 }
732
733 // If the splat value is larger than the element value, then we can never do
734 // this splat. The only case that we could fit the replicated bits into our
735 // immediate field for would be zero, and we prefer to use vxor for it.
Dan Gohman475871a2008-07-27 21:46:04 +0000736 if (ValSizeInBytes < ByteSize) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +0000737
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000738 // If the element value is larger than the splat value, cut it in half and
739 // check to see if the two halves are equal. Continue doing this until we
740 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
741 while (ValSizeInBytes > ByteSize) {
742 ValSizeInBytes >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000743
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000744 // If the top half equals the bottom half, we're still ok.
Chris Lattner9b42bdd2006-04-05 17:39:25 +0000745 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
746 (Value & ((1 << (8*ValSizeInBytes))-1)))
Dan Gohman475871a2008-07-27 21:46:04 +0000747 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000748 }
749
750 // Properly sign extend the value.
751 int ShAmt = (4-ByteSize)*8;
752 int MaskVal = ((int)Value << ShAmt) >> ShAmt;
Scott Michelfdc40a02009-02-17 22:15:04 +0000753
Evan Cheng5b6a01b2006-03-26 09:52:32 +0000754 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Dan Gohman475871a2008-07-27 21:46:04 +0000755 if (MaskVal == 0) return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000756
Chris Lattner140a58f2006-04-08 06:46:53 +0000757 // Finally, if this value fits in a 5 bit sext field, return it
758 if (((MaskVal << (32-5)) >> (32-5)) == MaskVal)
Owen Anderson825b72b2009-08-11 20:47:22 +0000759 return DAG.getTargetConstant(MaskVal, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000760 return SDValue();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000761}
762
Chris Lattner1a635d62006-04-14 06:01:58 +0000763//===----------------------------------------------------------------------===//
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000764// Addressing Mode Selection
765//===----------------------------------------------------------------------===//
766
767/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
768/// or 64-bit immediate, and if the value can be accurately represented as a
769/// sign extension from a 16-bit value. If so, this returns true and the
770/// immediate.
771static bool isIntS16Immediate(SDNode *N, short &Imm) {
772 if (N->getOpcode() != ISD::Constant)
773 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000774
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000775 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +0000776 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000777 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000778 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000779 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000780}
Dan Gohman475871a2008-07-27 21:46:04 +0000781static bool isIntS16Immediate(SDValue Op, short &Imm) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000782 return isIntS16Immediate(Op.getNode(), Imm);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000783}
784
785
786/// SelectAddressRegReg - Given the specified addressed, check to see if it
787/// can be represented as an indexed [r+r] operation. Returns false if it
788/// can be more efficiently represented with [r+imm].
Dan Gohman475871a2008-07-27 21:46:04 +0000789bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
790 SDValue &Index,
Dan Gohman73e09142009-01-15 16:29:45 +0000791 SelectionDAG &DAG) const {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000792 short imm = 0;
793 if (N.getOpcode() == ISD::ADD) {
794 if (isIntS16Immediate(N.getOperand(1), imm))
795 return false; // r+i
796 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
797 return false; // r+i
Scott Michelfdc40a02009-02-17 22:15:04 +0000798
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000799 Base = N.getOperand(0);
800 Index = N.getOperand(1);
801 return true;
802 } else if (N.getOpcode() == ISD::OR) {
803 if (isIntS16Immediate(N.getOperand(1), imm))
804 return false; // r+i can fold it if we can.
Scott Michelfdc40a02009-02-17 22:15:04 +0000805
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000806 // If this is an or of disjoint bitfields, we can codegen this as an add
807 // (for better address arithmetic) if the LHS and RHS of the OR are provably
808 // disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000809 APInt LHSKnownZero, LHSKnownOne;
810 APInt RHSKnownZero, RHSKnownOne;
811 DAG.ComputeMaskedBits(N.getOperand(0),
Dan Gohmanec59b952008-02-27 21:12:32 +0000812 APInt::getAllOnesValue(N.getOperand(0)
813 .getValueSizeInBits()),
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000814 LHSKnownZero, LHSKnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +0000815
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000816 if (LHSKnownZero.getBoolValue()) {
817 DAG.ComputeMaskedBits(N.getOperand(1),
Dan Gohmanec59b952008-02-27 21:12:32 +0000818 APInt::getAllOnesValue(N.getOperand(1)
819 .getValueSizeInBits()),
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000820 RHSKnownZero, RHSKnownOne);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000821 // If all of the bits are known zero on the LHS or RHS, the add won't
822 // carry.
Dan Gohmanec59b952008-02-27 21:12:32 +0000823 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000824 Base = N.getOperand(0);
825 Index = N.getOperand(1);
826 return true;
827 }
828 }
829 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000830
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000831 return false;
832}
833
834/// Returns true if the address N can be represented by a base register plus
835/// a signed 16-bit displacement [r+imm], and if it is not better
836/// represented as reg+reg.
Dan Gohman475871a2008-07-27 21:46:04 +0000837bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
Dan Gohman73e09142009-01-15 16:29:45 +0000838 SDValue &Base,
839 SelectionDAG &DAG) const {
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000840 // FIXME dl should come from parent load or store, not from address
841 DebugLoc dl = N.getDebugLoc();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000842 // If this can be more profitably realized as r+r, fail.
843 if (SelectAddressRegReg(N, Disp, Base, DAG))
844 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000845
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000846 if (N.getOpcode() == ISD::ADD) {
847 short imm = 0;
848 if (isIntS16Immediate(N.getOperand(1), imm)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000849 Disp = DAG.getTargetConstant((int)imm & 0xFFFF, MVT::i32);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000850 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
851 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
852 } else {
853 Base = N.getOperand(0);
854 }
855 return true; // [r+i]
856 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
857 // Match LOAD (ADD (X, Lo(G))).
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000858 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000859 && "Cannot handle constant offsets yet!");
860 Disp = N.getOperand(1).getOperand(0); // The global address.
861 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
862 Disp.getOpcode() == ISD::TargetConstantPool ||
863 Disp.getOpcode() == ISD::TargetJumpTable);
864 Base = N.getOperand(0);
865 return true; // [&g+r]
866 }
867 } else if (N.getOpcode() == ISD::OR) {
868 short imm = 0;
869 if (isIntS16Immediate(N.getOperand(1), imm)) {
870 // If this is an or of disjoint bitfields, we can codegen this as an add
871 // (for better address arithmetic) if the LHS and RHS of the OR are
872 // provably disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000873 APInt LHSKnownZero, LHSKnownOne;
874 DAG.ComputeMaskedBits(N.getOperand(0),
Bill Wendling3e98c302008-03-24 23:16:37 +0000875 APInt::getAllOnesValue(N.getOperand(0)
876 .getValueSizeInBits()),
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000877 LHSKnownZero, LHSKnownOne);
Bill Wendling3e98c302008-03-24 23:16:37 +0000878
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000879 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000880 // If all of the bits are known zero on the LHS or RHS, the add won't
881 // carry.
882 Base = N.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000883 Disp = DAG.getTargetConstant((int)imm & 0xFFFF, MVT::i32);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000884 return true;
885 }
886 }
887 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
888 // Loading from a constant address.
Scott Michelfdc40a02009-02-17 22:15:04 +0000889
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000890 // If this address fits entirely in a 16-bit sext immediate field, codegen
891 // this as "d, 0"
892 short Imm;
893 if (isIntS16Immediate(CN, Imm)) {
894 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
895 Base = DAG.getRegister(PPC::R0, CN->getValueType(0));
896 return true;
897 }
Chris Lattnerbc681d62007-02-17 06:44:03 +0000898
899 // Handle 32-bit sext immediates with LIS + addr mode.
Owen Anderson825b72b2009-08-11 20:47:22 +0000900 if (CN->getValueType(0) == MVT::i32 ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000901 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) {
902 int Addr = (int)CN->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +0000903
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000904 // Otherwise, break this down into an LIS + disp.
Owen Anderson825b72b2009-08-11 20:47:22 +0000905 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +0000906
Owen Anderson825b72b2009-08-11 20:47:22 +0000907 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
908 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000909 Base = SDValue(DAG.getTargetNode(Opc, dl, CN->getValueType(0), Base), 0);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000910 return true;
911 }
912 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000913
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000914 Disp = DAG.getTargetConstant(0, getPointerTy());
915 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N))
916 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
917 else
918 Base = N;
919 return true; // [r+0]
920}
921
922/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
923/// represented as an indexed [r+r] operation.
Dan Gohman475871a2008-07-27 21:46:04 +0000924bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
925 SDValue &Index,
Dan Gohman73e09142009-01-15 16:29:45 +0000926 SelectionDAG &DAG) const {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000927 // Check to see if we can easily represent this as an [r+r] address. This
928 // will fail if it thinks that the address is more profitably represented as
929 // reg+imm, e.g. where imm = 0.
930 if (SelectAddressRegReg(N, Base, Index, DAG))
931 return true;
Scott Michelfdc40a02009-02-17 22:15:04 +0000932
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000933 // If the operand is an addition, always emit this as [r+r], since this is
934 // better (for code size, and execution, as the memop does the add for free)
935 // than emitting an explicit add.
936 if (N.getOpcode() == ISD::ADD) {
937 Base = N.getOperand(0);
938 Index = N.getOperand(1);
939 return true;
940 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000941
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000942 // Otherwise, do it the hard way, using R0 as the base register.
943 Base = DAG.getRegister(PPC::R0, N.getValueType());
944 Index = N;
945 return true;
946}
947
948/// SelectAddressRegImmShift - Returns true if the address N can be
949/// represented by a base register plus a signed 14-bit displacement
950/// [r+imm*4]. Suitable for use by STD and friends.
Dan Gohman475871a2008-07-27 21:46:04 +0000951bool PPCTargetLowering::SelectAddressRegImmShift(SDValue N, SDValue &Disp,
952 SDValue &Base,
Dan Gohman73e09142009-01-15 16:29:45 +0000953 SelectionDAG &DAG) const {
Dale Johannesenf5f5dce2009-02-06 19:16:40 +0000954 // FIXME dl should come from the parent load or store, not the address
955 DebugLoc dl = N.getDebugLoc();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000956 // If this can be more profitably realized as r+r, fail.
957 if (SelectAddressRegReg(N, Disp, Base, DAG))
958 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000959
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000960 if (N.getOpcode() == ISD::ADD) {
961 short imm = 0;
962 if (isIntS16Immediate(N.getOperand(1), imm) && (imm & 3) == 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000963 Disp = DAG.getTargetConstant(((int)imm & 0xFFFF) >> 2, MVT::i32);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000964 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
965 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
966 } else {
967 Base = N.getOperand(0);
968 }
969 return true; // [r+i]
970 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
971 // Match LOAD (ADD (X, Lo(G))).
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000972 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000973 && "Cannot handle constant offsets yet!");
974 Disp = N.getOperand(1).getOperand(0); // The global address.
975 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
976 Disp.getOpcode() == ISD::TargetConstantPool ||
977 Disp.getOpcode() == ISD::TargetJumpTable);
978 Base = N.getOperand(0);
979 return true; // [&g+r]
980 }
981 } else if (N.getOpcode() == ISD::OR) {
982 short imm = 0;
983 if (isIntS16Immediate(N.getOperand(1), imm) && (imm & 3) == 0) {
984 // If this is an or of disjoint bitfields, we can codegen this as an add
985 // (for better address arithmetic) if the LHS and RHS of the OR are
986 // provably disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000987 APInt LHSKnownZero, LHSKnownOne;
988 DAG.ComputeMaskedBits(N.getOperand(0),
Bill Wendling3e98c302008-03-24 23:16:37 +0000989 APInt::getAllOnesValue(N.getOperand(0)
990 .getValueSizeInBits()),
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000991 LHSKnownZero, LHSKnownOne);
992 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000993 // If all of the bits are known zero on the LHS or RHS, the add won't
994 // carry.
995 Base = N.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +0000996 Disp = DAG.getTargetConstant(((int)imm & 0xFFFF) >> 2, MVT::i32);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000997 return true;
998 }
999 }
1000 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
Chris Lattnerdee5a5a2007-02-17 06:57:26 +00001001 // Loading from a constant address. Verify low two bits are clear.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001002 if ((CN->getZExtValue() & 3) == 0) {
Chris Lattnerdee5a5a2007-02-17 06:57:26 +00001003 // If this address fits entirely in a 14-bit sext immediate field, codegen
1004 // this as "d, 0"
1005 short Imm;
1006 if (isIntS16Immediate(CN, Imm)) {
1007 Disp = DAG.getTargetConstant((unsigned short)Imm >> 2, getPointerTy());
1008 Base = DAG.getRegister(PPC::R0, CN->getValueType(0));
1009 return true;
1010 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001011
Chris Lattnerdee5a5a2007-02-17 06:57:26 +00001012 // Fold the low-part of 32-bit absolute addresses into addr mode.
Owen Anderson825b72b2009-08-11 20:47:22 +00001013 if (CN->getValueType(0) == MVT::i32 ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001014 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) {
1015 int Addr = (int)CN->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001016
Chris Lattnerdee5a5a2007-02-17 06:57:26 +00001017 // Otherwise, break this down into an LIS + disp.
Owen Anderson825b72b2009-08-11 20:47:22 +00001018 Disp = DAG.getTargetConstant((short)Addr >> 2, MVT::i32);
1019 Base = DAG.getTargetConstant((Addr-(signed short)Addr) >> 16, MVT::i32);
1020 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
Dale Johannesenf5f5dce2009-02-06 19:16:40 +00001021 Base = SDValue(DAG.getTargetNode(Opc, dl, CN->getValueType(0), Base),0);
Chris Lattnerdee5a5a2007-02-17 06:57:26 +00001022 return true;
1023 }
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001024 }
1025 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001026
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001027 Disp = DAG.getTargetConstant(0, getPointerTy());
1028 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N))
1029 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1030 else
1031 Base = N;
1032 return true; // [r+0]
1033}
1034
1035
1036/// getPreIndexedAddressParts - returns true by value, base pointer and
1037/// offset pointer and addressing mode by reference if the node's address
1038/// can be legally represented as pre-indexed load / store address.
Dan Gohman475871a2008-07-27 21:46:04 +00001039bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1040 SDValue &Offset,
Evan Cheng144d8f02006-11-09 17:55:04 +00001041 ISD::MemIndexedMode &AM,
Dan Gohman73e09142009-01-15 16:29:45 +00001042 SelectionDAG &DAG) const {
Chris Lattner4eab7142006-11-10 02:08:47 +00001043 // Disabled by default for now.
1044 if (!EnablePPCPreinc) return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001045
Dan Gohman475871a2008-07-27 21:46:04 +00001046 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00001047 EVT VT;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001048 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1049 Ptr = LD->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001050 VT = LD->getMemoryVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001051
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001052 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner4eab7142006-11-10 02:08:47 +00001053 ST = ST;
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001054 Ptr = ST->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001055 VT = ST->getMemoryVT();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001056 } else
1057 return false;
1058
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001059 // PowerPC doesn't have preinc load/store instructions for vectors.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001060 if (VT.isVector())
Chris Lattner2fe4bf42006-11-14 01:38:31 +00001061 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001062
Chris Lattner0851b4f2006-11-15 19:55:13 +00001063 // TODO: Check reg+reg first.
Scott Michelfdc40a02009-02-17 22:15:04 +00001064
Chris Lattner0851b4f2006-11-15 19:55:13 +00001065 // LDU/STU use reg+imm*4, others use reg+imm.
Owen Anderson825b72b2009-08-11 20:47:22 +00001066 if (VT != MVT::i64) {
Chris Lattner0851b4f2006-11-15 19:55:13 +00001067 // reg + imm
1068 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG))
1069 return false;
1070 } else {
1071 // reg + imm * 4.
1072 if (!SelectAddressRegImmShift(Ptr, Offset, Base, DAG))
1073 return false;
1074 }
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001075
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001076 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner0851b4f2006-11-15 19:55:13 +00001077 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1078 // sext i32 to i64 when addr mode is r+i.
Owen Anderson825b72b2009-08-11 20:47:22 +00001079 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001080 LD->getExtensionType() == ISD::SEXTLOAD &&
1081 isa<ConstantSDNode>(Offset))
1082 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001083 }
1084
Chris Lattner4eab7142006-11-10 02:08:47 +00001085 AM = ISD::PRE_INC;
1086 return true;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001087}
1088
1089//===----------------------------------------------------------------------===//
Chris Lattner1a635d62006-04-14 06:01:58 +00001090// LowerOperation implementation
1091//===----------------------------------------------------------------------===//
1092
Scott Michelfdc40a02009-02-17 22:15:04 +00001093SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001094 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001095 EVT PtrVT = Op.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00001096 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Evan Chengc356a572006-09-12 21:04:05 +00001097 Constant *C = CP->getConstVal();
Dan Gohman475871a2008-07-27 21:46:04 +00001098 SDValue CPI = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment());
1099 SDValue Zero = DAG.getConstant(0, PtrVT);
Dale Johannesende064702009-02-06 21:50:26 +00001100 // FIXME there isn't really any debug info here
1101 DebugLoc dl = Op.getDebugLoc();
Chris Lattner1a635d62006-04-14 06:01:58 +00001102
1103 const TargetMachine &TM = DAG.getTarget();
Scott Michelfdc40a02009-02-17 22:15:04 +00001104
Dale Johannesende064702009-02-06 21:50:26 +00001105 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, CPI, Zero);
1106 SDValue Lo = DAG.getNode(PPCISD::Lo, dl, PtrVT, CPI, Zero);
Chris Lattner059ca0f2006-06-16 21:01:35 +00001107
Chris Lattner1a635d62006-04-14 06:01:58 +00001108 // If this is a non-darwin platform, we don't support non-static relo models
1109 // yet.
1110 if (TM.getRelocationModel() == Reloc::Static ||
1111 !TM.getSubtarget<PPCSubtarget>().isDarwin()) {
1112 // Generate non-pic code that has direct accesses to the constant pool.
1113 // The address of the global is just (hi(&g)+lo(&g)).
Dale Johannesende064702009-02-06 21:50:26 +00001114 return DAG.getNode(ISD::ADD, dl, PtrVT, Hi, Lo);
Chris Lattner1a635d62006-04-14 06:01:58 +00001115 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001116
Chris Lattner35d86fe2006-07-26 21:12:04 +00001117 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner1a635d62006-04-14 06:01:58 +00001118 // With PIC, the first instruction is actually "GR+hi(&G)".
Dale Johannesende064702009-02-06 21:50:26 +00001119 Hi = DAG.getNode(ISD::ADD, dl, PtrVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00001120 DAG.getNode(PPCISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001121 DebugLoc::getUnknownLoc(), PtrVT), Hi);
Chris Lattner1a635d62006-04-14 06:01:58 +00001122 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001123
Dale Johannesende064702009-02-06 21:50:26 +00001124 Lo = DAG.getNode(ISD::ADD, dl, PtrVT, Hi, Lo);
Chris Lattner1a635d62006-04-14 06:01:58 +00001125 return Lo;
1126}
1127
Dan Gohman475871a2008-07-27 21:46:04 +00001128SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001129 EVT PtrVT = Op.getValueType();
Nate Begeman37efe672006-04-22 18:53:45 +00001130 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00001131 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
1132 SDValue Zero = DAG.getConstant(0, PtrVT);
Dale Johannesende064702009-02-06 21:50:26 +00001133 // FIXME there isn't really any debug loc here
1134 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00001135
Nate Begeman37efe672006-04-22 18:53:45 +00001136 const TargetMachine &TM = DAG.getTarget();
Chris Lattner059ca0f2006-06-16 21:01:35 +00001137
Dale Johannesende064702009-02-06 21:50:26 +00001138 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, JTI, Zero);
1139 SDValue Lo = DAG.getNode(PPCISD::Lo, dl, PtrVT, JTI, Zero);
Chris Lattner059ca0f2006-06-16 21:01:35 +00001140
Nate Begeman37efe672006-04-22 18:53:45 +00001141 // If this is a non-darwin platform, we don't support non-static relo models
1142 // yet.
1143 if (TM.getRelocationModel() == Reloc::Static ||
1144 !TM.getSubtarget<PPCSubtarget>().isDarwin()) {
1145 // Generate non-pic code that has direct accesses to the constant pool.
1146 // The address of the global is just (hi(&g)+lo(&g)).
Dale Johannesende064702009-02-06 21:50:26 +00001147 return DAG.getNode(ISD::ADD, dl, PtrVT, Hi, Lo);
Nate Begeman37efe672006-04-22 18:53:45 +00001148 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001149
Chris Lattner35d86fe2006-07-26 21:12:04 +00001150 if (TM.getRelocationModel() == Reloc::PIC_) {
Nate Begeman37efe672006-04-22 18:53:45 +00001151 // With PIC, the first instruction is actually "GR+hi(&G)".
Dale Johannesende064702009-02-06 21:50:26 +00001152 Hi = DAG.getNode(ISD::ADD, dl, PtrVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00001153 DAG.getNode(PPCISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001154 DebugLoc::getUnknownLoc(), PtrVT), Hi);
Nate Begeman37efe672006-04-22 18:53:45 +00001155 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001156
Dale Johannesende064702009-02-06 21:50:26 +00001157 Lo = DAG.getNode(ISD::ADD, dl, PtrVT, Hi, Lo);
Nate Begeman37efe672006-04-22 18:53:45 +00001158 return Lo;
1159}
1160
Scott Michelfdc40a02009-02-17 22:15:04 +00001161SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001162 SelectionDAG &DAG) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001163 llvm_unreachable("TLS not implemented for PPC.");
Dan Gohman475871a2008-07-27 21:46:04 +00001164 return SDValue(); // Not reached
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +00001165}
1166
Scott Michelfdc40a02009-02-17 22:15:04 +00001167SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
Evan Chengee5c2b82009-01-16 22:57:32 +00001168 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001169 EVT PtrVT = Op.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00001170 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
1171 GlobalValue *GV = GSDN->getGlobal();
Dan Gohman475871a2008-07-27 21:46:04 +00001172 SDValue GA = DAG.getTargetGlobalAddress(GV, PtrVT, GSDN->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00001173 SDValue Zero = DAG.getConstant(0, PtrVT);
Dale Johannesende064702009-02-06 21:50:26 +00001174 // FIXME there isn't really any debug info here
Dale Johannesen33c960f2009-02-04 20:06:27 +00001175 DebugLoc dl = GSDN->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00001176
Chris Lattner1a635d62006-04-14 06:01:58 +00001177 const TargetMachine &TM = DAG.getTarget();
1178
Dale Johannesen33c960f2009-02-04 20:06:27 +00001179 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, GA, Zero);
1180 SDValue Lo = DAG.getNode(PPCISD::Lo, dl, PtrVT, GA, Zero);
Chris Lattner059ca0f2006-06-16 21:01:35 +00001181
Chris Lattner1a635d62006-04-14 06:01:58 +00001182 // If this is a non-darwin platform, we don't support non-static relo models
1183 // yet.
1184 if (TM.getRelocationModel() == Reloc::Static ||
1185 !TM.getSubtarget<PPCSubtarget>().isDarwin()) {
1186 // Generate non-pic code that has direct accesses to globals.
1187 // The address of the global is just (hi(&g)+lo(&g)).
Dale Johannesen33c960f2009-02-04 20:06:27 +00001188 return DAG.getNode(ISD::ADD, dl, PtrVT, Hi, Lo);
Chris Lattner1a635d62006-04-14 06:01:58 +00001189 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001190
Chris Lattner35d86fe2006-07-26 21:12:04 +00001191 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner1a635d62006-04-14 06:01:58 +00001192 // With PIC, the first instruction is actually "GR+hi(&G)".
Dale Johannesen33c960f2009-02-04 20:06:27 +00001193 Hi = DAG.getNode(ISD::ADD, dl, PtrVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00001194 DAG.getNode(PPCISD::GlobalBaseReg,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001195 DebugLoc::getUnknownLoc(), PtrVT), Hi);
Chris Lattner1a635d62006-04-14 06:01:58 +00001196 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001197
Dale Johannesen33c960f2009-02-04 20:06:27 +00001198 Lo = DAG.getNode(ISD::ADD, dl, PtrVT, Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00001199
Daniel Dunbar3be03402009-08-02 22:11:08 +00001200 if (!TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV, TM))
Chris Lattner1a635d62006-04-14 06:01:58 +00001201 return Lo;
Scott Michelfdc40a02009-02-17 22:15:04 +00001202
Chris Lattner1a635d62006-04-14 06:01:58 +00001203 // If the global is weak or external, we have to go through the lazy
1204 // resolution stub.
Dale Johannesen33c960f2009-02-04 20:06:27 +00001205 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Lo, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00001206}
1207
Dan Gohman475871a2008-07-27 21:46:04 +00001208SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00001209 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001210 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00001211
Chris Lattner1a635d62006-04-14 06:01:58 +00001212 // If we're comparing for equality to zero, expose the fact that this is
1213 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1214 // fold the new nodes.
1215 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1216 if (C->isNullValue() && CC == ISD::SETEQ) {
Owen Andersone50ed302009-08-10 22:56:29 +00001217 EVT VT = Op.getOperand(0).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001218 SDValue Zext = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001219 if (VT.bitsLT(MVT::i32)) {
1220 VT = MVT::i32;
Dale Johannesenf5d97892009-02-04 01:48:28 +00001221 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001222 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00001223 unsigned Log2b = Log2_32(VT.getSizeInBits());
Dale Johannesenf5d97892009-02-04 01:48:28 +00001224 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1225 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
Owen Anderson825b72b2009-08-11 20:47:22 +00001226 DAG.getConstant(Log2b, MVT::i32));
1227 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
Chris Lattner1a635d62006-04-14 06:01:58 +00001228 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001229 // Leave comparisons against 0 and -1 alone for now, since they're usually
Chris Lattner1a635d62006-04-14 06:01:58 +00001230 // optimized. FIXME: revisit this when we can custom lower all setcc
1231 // optimizations.
1232 if (C->isAllOnesValue() || C->isNullValue())
Dan Gohman475871a2008-07-27 21:46:04 +00001233 return SDValue();
Chris Lattner1a635d62006-04-14 06:01:58 +00001234 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001235
Chris Lattner1a635d62006-04-14 06:01:58 +00001236 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattnerac011bc2006-11-14 05:28:08 +00001237 // by xor'ing the rhs with the lhs, which is faster than setting a
1238 // condition register, reading it back out, and masking the correct bit. The
1239 // normal approach here uses sub to do this instead of xor. Using xor exposes
1240 // the result to other bit-twiddling opportunities.
Owen Andersone50ed302009-08-10 22:56:29 +00001241 EVT LHSVT = Op.getOperand(0).getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001242 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Owen Andersone50ed302009-08-10 22:56:29 +00001243 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001244 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
Chris Lattner1a635d62006-04-14 06:01:58 +00001245 Op.getOperand(1));
Dale Johannesenf5d97892009-02-04 01:48:28 +00001246 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
Chris Lattner1a635d62006-04-14 06:01:58 +00001247 }
Dan Gohman475871a2008-07-27 21:46:04 +00001248 return SDValue();
Chris Lattner1a635d62006-04-14 06:01:58 +00001249}
1250
Dan Gohman475871a2008-07-27 21:46:04 +00001251SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
Nicolas Geoffray01119992007-04-03 13:59:52 +00001252 int VarArgsFrameIndex,
1253 int VarArgsStackOffset,
1254 unsigned VarArgsNumGPR,
1255 unsigned VarArgsNumFPR,
1256 const PPCSubtarget &Subtarget) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001257
Torok Edwinc23197a2009-07-14 16:55:14 +00001258 llvm_unreachable("VAARG not yet implemented for the SVR4 ABI!");
Dan Gohman475871a2008-07-27 21:46:04 +00001259 return SDValue(); // Not reached
Nicolas Geoffray01119992007-04-03 13:59:52 +00001260}
1261
Bill Wendling77959322008-09-17 00:30:57 +00001262SDValue PPCTargetLowering::LowerTRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
1263 SDValue Chain = Op.getOperand(0);
1264 SDValue Trmp = Op.getOperand(1); // trampoline
1265 SDValue FPtr = Op.getOperand(2); // nested function
1266 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001267 DebugLoc dl = Op.getDebugLoc();
Bill Wendling77959322008-09-17 00:30:57 +00001268
Owen Andersone50ed302009-08-10 22:56:29 +00001269 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00001270 bool isPPC64 = (PtrVT == MVT::i64);
Bill Wendling77959322008-09-17 00:30:57 +00001271 const Type *IntPtrTy =
1272 DAG.getTargetLoweringInfo().getTargetData()->getIntPtrType();
1273
Scott Michelfdc40a02009-02-17 22:15:04 +00001274 TargetLowering::ArgListTy Args;
Bill Wendling77959322008-09-17 00:30:57 +00001275 TargetLowering::ArgListEntry Entry;
1276
1277 Entry.Ty = IntPtrTy;
1278 Entry.Node = Trmp; Args.push_back(Entry);
1279
1280 // TrampSize == (isPPC64 ? 48 : 40);
1281 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson825b72b2009-08-11 20:47:22 +00001282 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling77959322008-09-17 00:30:57 +00001283 Args.push_back(Entry);
1284
1285 Entry.Node = FPtr; Args.push_back(Entry);
1286 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelfdc40a02009-02-17 22:15:04 +00001287
Bill Wendling77959322008-09-17 00:30:57 +00001288 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
1289 std::pair<SDValue, SDValue> CallResult =
Owen Anderson23b9b192009-08-12 00:36:31 +00001290 LowerCallTo(Chain, Op.getValueType().getTypeForEVT(*DAG.getContext()),
Owen Andersond1474d02009-07-09 17:57:24 +00001291 false, false, false, false, 0, CallingConv::C, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001292 /*isReturnValueUsed=*/true,
Bill Wendling77959322008-09-17 00:30:57 +00001293 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00001294 Args, DAG, dl);
Bill Wendling77959322008-09-17 00:30:57 +00001295
1296 SDValue Ops[] =
1297 { CallResult.first, CallResult.second };
1298
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00001299 return DAG.getMergeValues(Ops, 2, dl);
Bill Wendling77959322008-09-17 00:30:57 +00001300}
1301
Dan Gohman475871a2008-07-27 21:46:04 +00001302SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Bill Wendling77959322008-09-17 00:30:57 +00001303 int VarArgsFrameIndex,
1304 int VarArgsStackOffset,
1305 unsigned VarArgsNumGPR,
1306 unsigned VarArgsNumFPR,
1307 const PPCSubtarget &Subtarget) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001308 DebugLoc dl = Op.getDebugLoc();
Nicolas Geoffray01119992007-04-03 13:59:52 +00001309
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001310 if (Subtarget.isDarwinABI()) {
Nicolas Geoffray01119992007-04-03 13:59:52 +00001311 // vastart just stores the address of the VarArgsFrameIndex slot into the
1312 // memory location argument.
Owen Andersone50ed302009-08-10 22:56:29 +00001313 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001314 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001315 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen33c960f2009-02-04 20:06:27 +00001316 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001317 }
1318
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001319 // For the SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray01119992007-04-03 13:59:52 +00001320 // We suppose the given va_list is already allocated.
1321 //
1322 // typedef struct {
1323 // char gpr; /* index into the array of 8 GPRs
1324 // * stored in the register save area
1325 // * gpr=0 corresponds to r3,
1326 // * gpr=1 to r4, etc.
1327 // */
1328 // char fpr; /* index into the array of 8 FPRs
1329 // * stored in the register save area
1330 // * fpr=0 corresponds to f1,
1331 // * fpr=1 to f2, etc.
1332 // */
1333 // char *overflow_arg_area;
1334 // /* location on stack that holds
1335 // * the next overflow argument
1336 // */
1337 // char *reg_save_area;
1338 // /* where r3:r10 and f1:f8 (if saved)
1339 // * are stored
1340 // */
1341 // } va_list[1];
1342
1343
Owen Anderson825b72b2009-08-11 20:47:22 +00001344 SDValue ArgGPR = DAG.getConstant(VarArgsNumGPR, MVT::i32);
1345 SDValue ArgFPR = DAG.getConstant(VarArgsNumFPR, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00001346
Nicolas Geoffray01119992007-04-03 13:59:52 +00001347
Owen Andersone50ed302009-08-10 22:56:29 +00001348 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00001349
Dan Gohman475871a2008-07-27 21:46:04 +00001350 SDValue StackOffsetFI = DAG.getFrameIndex(VarArgsStackOffset, PtrVT);
1351 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001352
Duncan Sands83ec4b62008-06-06 12:08:01 +00001353 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman475871a2008-07-27 21:46:04 +00001354 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001355
Duncan Sands83ec4b62008-06-06 12:08:01 +00001356 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001357 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001358
1359 uint64_t FPROffset = 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001360 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001361
Dan Gohman69de1932008-02-06 22:27:42 +00001362 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001363
Nicolas Geoffray01119992007-04-03 13:59:52 +00001364 // Store first byte : number of int regs
Tilmann Schellerffd02002009-07-03 06:45:56 +00001365 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Owen Anderson825b72b2009-08-11 20:47:22 +00001366 Op.getOperand(1), SV, 0, MVT::i8);
Dan Gohman69de1932008-02-06 22:27:42 +00001367 uint64_t nextOffset = FPROffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001368 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray01119992007-04-03 13:59:52 +00001369 ConstFPROffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001370
Nicolas Geoffray01119992007-04-03 13:59:52 +00001371 // Store second byte : number of float regs
Dan Gohman475871a2008-07-27 21:46:04 +00001372 SDValue secondStore =
Owen Anderson825b72b2009-08-11 20:47:22 +00001373 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr, SV, nextOffset, MVT::i8);
Dan Gohman69de1932008-02-06 22:27:42 +00001374 nextOffset += StackOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001375 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001376
Nicolas Geoffray01119992007-04-03 13:59:52 +00001377 // Store second word : arguments given on stack
Dan Gohman475871a2008-07-27 21:46:04 +00001378 SDValue thirdStore =
Dale Johannesen33c960f2009-02-04 20:06:27 +00001379 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr, SV, nextOffset);
Dan Gohman69de1932008-02-06 22:27:42 +00001380 nextOffset += FrameOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001381 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001382
1383 // Store third word : arguments given in registers
Dale Johannesen33c960f2009-02-04 20:06:27 +00001384 return DAG.getStore(thirdStore, dl, FR, nextPtr, SV, nextOffset);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001385
Chris Lattner1a635d62006-04-14 06:01:58 +00001386}
1387
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00001388#include "PPCGenCallingConv.inc"
1389
Owen Andersone50ed302009-08-10 22:56:29 +00001390static bool CC_PPC_SVR4_Custom_Dummy(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001391 CCValAssign::LocInfo &LocInfo,
1392 ISD::ArgFlagsTy &ArgFlags,
1393 CCState &State) {
1394 return true;
1395}
1396
Owen Andersone50ed302009-08-10 22:56:29 +00001397static bool CC_PPC_SVR4_Custom_AlignArgRegs(unsigned &ValNo, EVT &ValVT,
1398 EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001399 CCValAssign::LocInfo &LocInfo,
1400 ISD::ArgFlagsTy &ArgFlags,
1401 CCState &State) {
1402 static const unsigned ArgRegs[] = {
1403 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1404 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1405 };
1406 const unsigned NumArgRegs = array_lengthof(ArgRegs);
1407
1408 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1409
1410 // Skip one register if the first unallocated register has an even register
1411 // number and there are still argument registers available which have not been
1412 // allocated yet. RegNum is actually an index into ArgRegs, which means we
1413 // need to skip a register if RegNum is odd.
1414 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
1415 State.AllocateReg(ArgRegs[RegNum]);
1416 }
1417
1418 // Always return false here, as this function only makes sure that the first
1419 // unallocated register has an odd register number and does not actually
1420 // allocate a register for the current argument.
1421 return false;
1422}
1423
Owen Andersone50ed302009-08-10 22:56:29 +00001424static bool CC_PPC_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, EVT &ValVT,
1425 EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001426 CCValAssign::LocInfo &LocInfo,
1427 ISD::ArgFlagsTy &ArgFlags,
1428 CCState &State) {
1429 static const unsigned ArgRegs[] = {
1430 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1431 PPC::F8
1432 };
1433
1434 const unsigned NumArgRegs = array_lengthof(ArgRegs);
1435
1436 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1437
1438 // If there is only one Floating-point register left we need to put both f64
1439 // values of a split ppc_fp128 value on the stack.
1440 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
1441 State.AllocateReg(ArgRegs[RegNum]);
1442 }
1443
1444 // Always return false here, as this function only makes sure that the two f64
1445 // values a ppc_fp128 value is split into are both passed in registers or both
1446 // passed on the stack and does not actually allocate a register for the
1447 // current argument.
1448 return false;
1449}
1450
Chris Lattner9f0bc652007-02-25 05:34:32 +00001451/// GetFPR - Get the set of FP registers that should be allocated for arguments,
1452/// depending on which subtarget is selected.
1453static const unsigned *GetFPR(const PPCSubtarget &Subtarget) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001454 if (Subtarget.isDarwinABI()) {
Chris Lattner9f0bc652007-02-25 05:34:32 +00001455 static const unsigned FPR[] = {
1456 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1457 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
1458 };
1459 return FPR;
1460 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001461
1462
Chris Lattner9f0bc652007-02-25 05:34:32 +00001463 static const unsigned FPR[] = {
1464 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Nicolas Geoffrayef3c0302007-04-03 10:27:07 +00001465 PPC::F8
Chris Lattner9f0bc652007-02-25 05:34:32 +00001466 };
1467 return FPR;
1468}
1469
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001470/// CalculateStackSlotSize - Calculates the size reserved for this argument on
1471/// the stack.
Owen Andersone50ed302009-08-10 22:56:29 +00001472static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001473 unsigned PtrByteSize) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001474 unsigned ArgSize = ArgVT.getSizeInBits()/8;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001475 if (Flags.isByVal())
1476 ArgSize = Flags.getByValSize();
1477 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1478
1479 return ArgSize;
1480}
1481
Dan Gohman475871a2008-07-27 21:46:04 +00001482SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001483PPCTargetLowering::LowerFormalArguments(SDValue Chain,
1484 unsigned CallConv, bool isVarArg,
1485 const SmallVectorImpl<ISD::InputArg>
1486 &Ins,
1487 DebugLoc dl, SelectionDAG &DAG,
1488 SmallVectorImpl<SDValue> &InVals) {
1489 if (PPCSubTarget.isSVR4ABI()) {
1490 return LowerFormalArguments_SVR4(Chain, CallConv, isVarArg, Ins,
1491 dl, DAG, InVals);
1492 } else {
1493 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
1494 dl, DAG, InVals);
1495 }
1496}
1497
1498SDValue
1499PPCTargetLowering::LowerFormalArguments_SVR4(
1500 SDValue Chain,
1501 unsigned CallConv, bool isVarArg,
1502 const SmallVectorImpl<ISD::InputArg>
1503 &Ins,
1504 DebugLoc dl, SelectionDAG &DAG,
1505 SmallVectorImpl<SDValue> &InVals) {
1506
Tilmann Schellerffd02002009-07-03 06:45:56 +00001507 // SVR4 ABI Stack Frame Layout:
1508 // +-----------------------------------+
1509 // +--> | Back chain |
1510 // | +-----------------------------------+
1511 // | | Floating-point register save area |
1512 // | +-----------------------------------+
1513 // | | General register save area |
1514 // | +-----------------------------------+
1515 // | | CR save word |
1516 // | +-----------------------------------+
1517 // | | VRSAVE save word |
1518 // | +-----------------------------------+
1519 // | | Alignment padding |
1520 // | +-----------------------------------+
1521 // | | Vector register save area |
1522 // | +-----------------------------------+
1523 // | | Local variable space |
1524 // | +-----------------------------------+
1525 // | | Parameter list area |
1526 // | +-----------------------------------+
1527 // | | LR save word |
1528 // | +-----------------------------------+
1529 // SP--> +--- | Back chain |
1530 // +-----------------------------------+
1531 //
1532 // Specifications:
1533 // System V Application Binary Interface PowerPC Processor Supplement
1534 // AltiVec Technology Programming Interface Manual
1535
1536 MachineFunction &MF = DAG.getMachineFunction();
1537 MachineFrameInfo *MFI = MF.getFrameInfo();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001538
Owen Andersone50ed302009-08-10 22:56:29 +00001539 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001540 // Potential tail calls could cause overwriting of argument stack slots.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001541 bool isImmutable = !(PerformTailCallOpt && (CallConv==CallingConv::Fast));
Tilmann Schellerffd02002009-07-03 06:45:56 +00001542 unsigned PtrByteSize = 4;
1543
1544 // Assign locations to all of the incoming arguments.
1545 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001546 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), ArgLocs,
1547 *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001548
1549 // Reserve space for the linkage area on the stack.
1550 CCInfo.AllocateStack(PPCFrameInfo::getLinkageSize(false, false), PtrByteSize);
1551
Dan Gohman98ca4f22009-08-05 01:29:28 +00001552 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC_SVR4);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001553
1554 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1555 CCValAssign &VA = ArgLocs[i];
1556
1557 // Arguments stored in registers.
1558 if (VA.isRegLoc()) {
1559 TargetRegisterClass *RC;
Owen Andersone50ed302009-08-10 22:56:29 +00001560 EVT ValVT = VA.getValVT();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001561
Owen Anderson825b72b2009-08-11 20:47:22 +00001562 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001563 default:
Dan Gohman98ca4f22009-08-05 01:29:28 +00001564 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Owen Anderson825b72b2009-08-11 20:47:22 +00001565 case MVT::i32:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001566 RC = PPC::GPRCRegisterClass;
1567 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001568 case MVT::f32:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001569 RC = PPC::F4RCRegisterClass;
1570 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001571 case MVT::f64:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001572 RC = PPC::F8RCRegisterClass;
1573 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001574 case MVT::v16i8:
1575 case MVT::v8i16:
1576 case MVT::v4i32:
1577 case MVT::v4f32:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001578 RC = PPC::VRRCRegisterClass;
1579 break;
1580 }
1581
1582 // Transform the arguments stored in physical registers into virtual ones.
1583 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001584 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, ValVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001585
Dan Gohman98ca4f22009-08-05 01:29:28 +00001586 InVals.push_back(ArgValue);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001587 } else {
1588 // Argument stored in memory.
1589 assert(VA.isMemLoc());
1590
1591 unsigned ArgSize = VA.getLocVT().getSizeInBits() / 8;
1592 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
1593 isImmutable);
1594
1595 // Create load nodes to retrieve arguments from the stack.
1596 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001597 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN, NULL, 0));
Tilmann Schellerffd02002009-07-03 06:45:56 +00001598 }
1599 }
1600
1601 // Assign locations to all of the incoming aggregate by value arguments.
1602 // Aggregates passed by value are stored in the local variable space of the
1603 // caller's stack frame, right above the parameter list area.
1604 SmallVector<CCValAssign, 16> ByValArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001605 CCState CCByValInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001606 ByValArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001607
1608 // Reserve stack space for the allocations in CCInfo.
1609 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
1610
Dan Gohman98ca4f22009-08-05 01:29:28 +00001611 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001612
1613 // Area that is at least reserved in the caller of this function.
1614 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
1615
1616 // Set the size that is at least reserved in caller of this function. Tail
1617 // call optimized function's reserved stack space needs to be aligned so that
1618 // taking the difference between two stack areas will result in an aligned
1619 // stack.
1620 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
1621
1622 MinReservedArea =
1623 std::max(MinReservedArea,
1624 PPCFrameInfo::getMinCallFrameSize(false, false));
1625
1626 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameInfo()->
1627 getStackAlignment();
1628 unsigned AlignMask = TargetAlign-1;
1629 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
1630
1631 FI->setMinReservedArea(MinReservedArea);
1632
1633 SmallVector<SDValue, 8> MemOps;
1634
1635 // If the function takes variable number of arguments, make a frame index for
1636 // the start of the first vararg value... for expansion of llvm.va_start.
1637 if (isVarArg) {
1638 static const unsigned GPArgRegs[] = {
1639 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1640 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1641 };
1642 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
1643
1644 static const unsigned FPArgRegs[] = {
1645 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1646 PPC::F8
1647 };
1648 const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
1649
1650 VarArgsNumGPR = CCInfo.getFirstUnallocated(GPArgRegs, NumGPArgRegs);
1651 VarArgsNumFPR = CCInfo.getFirstUnallocated(FPArgRegs, NumFPArgRegs);
1652
1653 // Make room for NumGPArgRegs and NumFPArgRegs.
1654 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Owen Anderson825b72b2009-08-11 20:47:22 +00001655 NumFPArgRegs * EVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001656
1657 VarArgsStackOffset = MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
1658 CCInfo.getNextStackOffset());
1659
1660 VarArgsFrameIndex = MFI->CreateStackObject(Depth, 8);
1661 SDValue FIN = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
1662
1663 // The fixed integer arguments of a variadic function are
1664 // stored to the VarArgsFrameIndex on the stack.
1665 unsigned GPRIndex = 0;
1666 for (; GPRIndex != VarArgsNumGPR; ++GPRIndex) {
1667 SDValue Val = DAG.getRegister(GPArgRegs[GPRIndex], PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001668 SDValue Store = DAG.getStore(Chain, dl, Val, FIN, NULL, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001669 MemOps.push_back(Store);
1670 // Increment the address by four for the next argument to store
1671 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
1672 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1673 }
1674
1675 // If this function is vararg, store any remaining integer argument regs
1676 // to their spots on the stack so that they may be loaded by deferencing the
1677 // result of va_next.
1678 for (; GPRIndex != NumGPArgRegs; ++GPRIndex) {
1679 unsigned VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
1680
Dan Gohman98ca4f22009-08-05 01:29:28 +00001681 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001682 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
1683 MemOps.push_back(Store);
1684 // Increment the address by four for the next argument to store
1685 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
1686 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1687 }
1688
1689 // FIXME SVR4: We only need to save FP argument registers if CR bit 6 is
1690 // set.
1691
1692 // The double arguments are stored to the VarArgsFrameIndex
1693 // on the stack.
1694 unsigned FPRIndex = 0;
1695 for (FPRIndex = 0; FPRIndex != VarArgsNumFPR; ++FPRIndex) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001696 SDValue Val = DAG.getRegister(FPArgRegs[FPRIndex], MVT::f64);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001697 SDValue Store = DAG.getStore(Chain, dl, Val, FIN, NULL, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001698 MemOps.push_back(Store);
1699 // Increment the address by eight for the next argument to store
Owen Anderson825b72b2009-08-11 20:47:22 +00001700 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001701 PtrVT);
1702 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1703 }
1704
1705 for (; FPRIndex != NumFPArgRegs; ++FPRIndex) {
1706 unsigned VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
1707
Owen Anderson825b72b2009-08-11 20:47:22 +00001708 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001709 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
1710 MemOps.push_back(Store);
1711 // Increment the address by eight for the next argument to store
Owen Anderson825b72b2009-08-11 20:47:22 +00001712 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001713 PtrVT);
1714 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1715 }
1716 }
1717
1718 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00001719 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001720 MVT::Other, &MemOps[0], MemOps.size());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001721
Dan Gohman98ca4f22009-08-05 01:29:28 +00001722 return Chain;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001723}
1724
1725SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001726PPCTargetLowering::LowerFormalArguments_Darwin(
1727 SDValue Chain,
1728 unsigned CallConv, bool isVarArg,
1729 const SmallVectorImpl<ISD::InputArg>
1730 &Ins,
1731 DebugLoc dl, SelectionDAG &DAG,
1732 SmallVectorImpl<SDValue> &InVals) {
1733
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001734 // TODO: add description of PPC stack frame format, or at least some docs.
1735 //
1736 MachineFunction &MF = DAG.getMachineFunction();
1737 MachineFrameInfo *MFI = MF.getFrameInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001738
Owen Andersone50ed302009-08-10 22:56:29 +00001739 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00001740 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001741 // Potential tail calls could cause overwriting of argument stack slots.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001742 bool isImmutable = !(PerformTailCallOpt && (CallConv==CallingConv::Fast));
Jim Laskeye9bd7b22006-11-28 14:53:52 +00001743 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey2f616bf2006-11-16 22:43:37 +00001744
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001745 unsigned ArgOffset = PPCFrameInfo::getLinkageSize(isPPC64, true);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001746 // Area that is at least reserved in caller of this function.
1747 unsigned MinReservedArea = ArgOffset;
1748
Chris Lattnerc91a4752006-06-26 22:48:35 +00001749 static const unsigned GPR_32[] = { // 32-bit registers.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001750 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1751 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1752 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00001753 static const unsigned GPR_64[] = { // 64-bit registers.
1754 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
1755 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
1756 };
Scott Michelfdc40a02009-02-17 22:15:04 +00001757
Dan Gohman98ca4f22009-08-05 01:29:28 +00001758 static const unsigned *FPR = GetFPR(PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00001759
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001760 static const unsigned VR[] = {
1761 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
1762 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
1763 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00001764
Owen Anderson718cb662007-09-07 04:06:50 +00001765 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001766 const unsigned Num_FPR_Regs = 13;
Owen Anderson718cb662007-09-07 04:06:50 +00001767 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey2f616bf2006-11-16 22:43:37 +00001768
1769 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00001770
Chris Lattnerc91a4752006-06-26 22:48:35 +00001771 const unsigned *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelfdc40a02009-02-17 22:15:04 +00001772
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001773 // In 32-bit non-varargs functions, the stack space for vectors is after the
1774 // stack space for non-vectors. We do not use this space unless we have
1775 // too many vectors to fit in registers, something that only occurs in
Scott Michelfdc40a02009-02-17 22:15:04 +00001776 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001777 // that out...for the pathological case, compute VecArgOffset as the
1778 // start of the vector parameter area. Computing VecArgOffset is the
1779 // entire point of the following loop.
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001780 unsigned VecArgOffset = ArgOffset;
1781 if (!isVarArg && !isPPC64) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001782 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001783 ++ArgNo) {
Owen Andersone50ed302009-08-10 22:56:29 +00001784 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001785 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001786 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001787
Duncan Sands276dcbd2008-03-21 09:14:45 +00001788 if (Flags.isByVal()) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001789 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001790 ObjSize = Flags.getByValSize();
Scott Michelfdc40a02009-02-17 22:15:04 +00001791 unsigned ArgSize =
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001792 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1793 VecArgOffset += ArgSize;
1794 continue;
1795 }
1796
Owen Anderson825b72b2009-08-11 20:47:22 +00001797 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001798 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001799 case MVT::i32:
1800 case MVT::f32:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001801 VecArgOffset += isPPC64 ? 8 : 4;
1802 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001803 case MVT::i64: // PPC64
1804 case MVT::f64:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001805 VecArgOffset += 8;
1806 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001807 case MVT::v4f32:
1808 case MVT::v4i32:
1809 case MVT::v8i16:
1810 case MVT::v16i8:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001811 // Nothing to do, we're only looking at Nonvector args here.
1812 break;
1813 }
1814 }
1815 }
1816 // We've found where the vector parameter area in memory is. Skip the
1817 // first 12 parameters; these don't use that memory.
1818 VecArgOffset = ((VecArgOffset+15)/16)*16;
1819 VecArgOffset += 12*16;
1820
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001821 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey2f616bf2006-11-16 22:43:37 +00001822 // entry to a function on PPC, the arguments start after the linkage area,
1823 // although the first ones are often in registers.
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001824
Dan Gohman475871a2008-07-27 21:46:04 +00001825 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001826 unsigned nAltivecParamsAtEnd = 0;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001827 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00001828 SDValue ArgVal;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001829 bool needsLoad = false;
Owen Andersone50ed302009-08-10 22:56:29 +00001830 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001831 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey619965d2006-11-29 13:37:09 +00001832 unsigned ArgSize = ObjSize;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001833 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001834
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001835 unsigned CurArgOffset = ArgOffset;
Dale Johannesen8419dd62008-03-07 20:27:40 +00001836
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001837 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00001838 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
1839 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001840 if (isVarArg || isPPC64) {
1841 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001842 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohman095cc292008-09-13 01:54:27 +00001843 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001844 PtrByteSize);
1845 } else nAltivecParamsAtEnd++;
1846 } else
1847 // Calculate min reserved area.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001848 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohman095cc292008-09-13 01:54:27 +00001849 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001850 PtrByteSize);
1851
Dale Johannesen8419dd62008-03-07 20:27:40 +00001852 // FIXME the codegen can be much improved in some cases.
1853 // We do not have to keep everything in memory.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001854 if (Flags.isByVal()) {
Dale Johannesen8419dd62008-03-07 20:27:40 +00001855 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001856 ObjSize = Flags.getByValSize();
Dale Johannesen8419dd62008-03-07 20:27:40 +00001857 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Dale Johannesen7f96f392008-03-08 01:41:42 +00001858 // Objects of size 1 and 2 are right justified, everything else is
1859 // left justified. This means the memory address is adjusted forwards.
1860 if (ObjSize==1 || ObjSize==2) {
1861 CurArgOffset = CurArgOffset + (4 - ObjSize);
1862 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00001863 // The value of the object is its address.
1864 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00001865 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001866 InVals.push_back(FIN);
Dale Johannesen7f96f392008-03-08 01:41:42 +00001867 if (ObjSize==1 || ObjSize==2) {
1868 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001869 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001870 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001871 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Owen Anderson825b72b2009-08-11 20:47:22 +00001872 NULL, 0, ObjSize==1 ? MVT::i8 : MVT::i16 );
Dale Johannesen7f96f392008-03-08 01:41:42 +00001873 MemOps.push_back(Store);
1874 ++GPR_idx;
Dale Johannesen7f96f392008-03-08 01:41:42 +00001875 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001876
1877 ArgOffset += PtrByteSize;
1878
Dale Johannesen7f96f392008-03-08 01:41:42 +00001879 continue;
1880 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00001881 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
1882 // Store whatever pieces of the object are in registers
1883 // to memory. ArgVal will be address of the beginning of
1884 // the object.
1885 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001886 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dale Johannesen8419dd62008-03-07 20:27:40 +00001887 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00001888 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001889 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00001890 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
Dale Johannesen8419dd62008-03-07 20:27:40 +00001891 MemOps.push_back(Store);
1892 ++GPR_idx;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001893 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00001894 } else {
1895 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
1896 break;
1897 }
1898 }
1899 continue;
1900 }
1901
Owen Anderson825b72b2009-08-11 20:47:22 +00001902 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001903 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001904 case MVT::i32:
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001905 if (!isPPC64) {
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001906 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001907 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001908 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001909 ++GPR_idx;
1910 } else {
1911 needsLoad = true;
1912 ArgSize = PtrByteSize;
1913 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001914 // All int arguments reserve stack space in the Darwin ABI.
1915 ArgOffset += PtrByteSize;
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001916 break;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001917 }
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001918 // FALLTHROUGH
Owen Anderson825b72b2009-08-11 20:47:22 +00001919 case MVT::i64: // PPC64
Chris Lattnerc91a4752006-06-26 22:48:35 +00001920 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001921 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001922 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001923
Owen Anderson825b72b2009-08-11 20:47:22 +00001924 if (ObjectVT == MVT::i32) {
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001925 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson825b72b2009-08-11 20:47:22 +00001926 // value to MVT::i64 and then truncate to the correct register size.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001927 if (Flags.isSExt())
Owen Anderson825b72b2009-08-11 20:47:22 +00001928 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001929 DAG.getValueType(ObjectVT));
Duncan Sands276dcbd2008-03-21 09:14:45 +00001930 else if (Flags.isZExt())
Owen Anderson825b72b2009-08-11 20:47:22 +00001931 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001932 DAG.getValueType(ObjectVT));
1933
Owen Anderson825b72b2009-08-11 20:47:22 +00001934 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001935 }
1936
Chris Lattnerc91a4752006-06-26 22:48:35 +00001937 ++GPR_idx;
1938 } else {
1939 needsLoad = true;
Evan Cheng982a0592008-07-24 08:17:07 +00001940 ArgSize = PtrByteSize;
Chris Lattnerc91a4752006-06-26 22:48:35 +00001941 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001942 // All int arguments reserve stack space in the Darwin ABI.
1943 ArgOffset += 8;
Chris Lattnerc91a4752006-06-26 22:48:35 +00001944 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001945
Owen Anderson825b72b2009-08-11 20:47:22 +00001946 case MVT::f32:
1947 case MVT::f64:
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001948 // Every 4 bytes of argument space consumes one of the GPRs available for
1949 // argument passing.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001950 if (GPR_idx != Num_GPR_Regs) {
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001951 ++GPR_idx;
Chris Lattnerb1eb9872006-11-18 01:57:19 +00001952 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001953 ++GPR_idx;
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001954 }
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001955 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001956 unsigned VReg;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001957
Owen Anderson825b72b2009-08-11 20:47:22 +00001958 if (ObjectVT == MVT::f32)
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001959 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001960 else
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001961 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
1962
Dan Gohman98ca4f22009-08-05 01:29:28 +00001963 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001964 ++FPR_idx;
1965 } else {
1966 needsLoad = true;
1967 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001968
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001969 // All FP arguments reserve stack space in the Darwin ABI.
1970 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001971 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001972 case MVT::v4f32:
1973 case MVT::v4i32:
1974 case MVT::v8i16:
1975 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00001976 // Note that vector arguments in registers don't reserve stack space,
1977 // except in varargs functions.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001978 if (VR_idx != Num_VR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001979 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001980 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesen75092de2008-03-12 00:22:17 +00001981 if (isVarArg) {
1982 while ((ArgOffset % 16) != 0) {
1983 ArgOffset += PtrByteSize;
1984 if (GPR_idx != Num_GPR_Regs)
1985 GPR_idx++;
1986 }
1987 ArgOffset += 16;
1988 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs);
1989 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001990 ++VR_idx;
1991 } else {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001992 if (!isVarArg && !isPPC64) {
1993 // Vectors go after all the nonvectors.
1994 CurArgOffset = VecArgOffset;
1995 VecArgOffset += 16;
1996 } else {
1997 // Vectors are aligned.
1998 ArgOffset = ((ArgOffset+15)/16)*16;
1999 CurArgOffset = ArgOffset;
2000 ArgOffset += 16;
Dale Johannesen404d9902008-03-12 00:49:20 +00002001 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002002 needsLoad = true;
2003 }
2004 break;
2005 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002006
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002007 // We need to load the argument to a virtual register if we determined above
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002008 // that we ran out of physical registers of the appropriate type.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002009 if (needsLoad) {
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002010 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002011 CurArgOffset + (ArgSize - ObjSize),
2012 isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00002013 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002014 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, NULL, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002015 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002016
Dan Gohman98ca4f22009-08-05 01:29:28 +00002017 InVals.push_back(ArgVal);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002018 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002019
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002020 // Set the size that is at least reserved in caller of this function. Tail
2021 // call optimized function's reserved stack space needs to be aligned so that
2022 // taking the difference between two stack areas will result in an aligned
2023 // stack.
2024 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2025 // Add the Altivec parameters at the end, if needed.
2026 if (nAltivecParamsAtEnd) {
2027 MinReservedArea = ((MinReservedArea+15)/16)*16;
2028 MinReservedArea += 16*nAltivecParamsAtEnd;
2029 }
2030 MinReservedArea =
2031 std::max(MinReservedArea,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002032 PPCFrameInfo::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002033 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameInfo()->
2034 getStackAlignment();
2035 unsigned AlignMask = TargetAlign-1;
2036 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
2037 FI->setMinReservedArea(MinReservedArea);
2038
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002039 // If the function takes variable number of arguments, make a frame index for
2040 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002041 if (isVarArg) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002042 int Depth = ArgOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00002043
Duncan Sands83ec4b62008-06-06 12:08:01 +00002044 VarArgsFrameIndex = MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002045 Depth);
Dan Gohman475871a2008-07-27 21:46:04 +00002046 SDValue FIN = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002047
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002048 // If this function is vararg, store any remaining integer argument regs
2049 // to their spots on the stack so that they may be loaded by deferencing the
2050 // result of va_next.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002051 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002052 unsigned VReg;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002053
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002054 if (isPPC64)
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002055 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002056 else
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002057 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002058
Dan Gohman98ca4f22009-08-05 01:29:28 +00002059 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00002060 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002061 MemOps.push_back(Store);
2062 // Increment the address by four for the next argument to store
Dan Gohman475871a2008-07-27 21:46:04 +00002063 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00002064 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002065 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002066 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002067
Dale Johannesen8419dd62008-03-07 20:27:40 +00002068 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00002069 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00002070 MVT::Other, &MemOps[0], MemOps.size());
Dale Johannesen8419dd62008-03-07 20:27:40 +00002071
Dan Gohman98ca4f22009-08-05 01:29:28 +00002072 return Chain;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002073}
2074
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002075/// CalculateParameterAndLinkageAreaSize - Get the size of the paramter plus
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002076/// linkage area for the Darwin ABI.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002077static unsigned
2078CalculateParameterAndLinkageAreaSize(SelectionDAG &DAG,
2079 bool isPPC64,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002080 bool isVarArg,
2081 unsigned CC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002082 const SmallVectorImpl<ISD::OutputArg>
2083 &Outs,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002084 unsigned &nAltivecParamsAtEnd) {
2085 // Count how many bytes are to be pushed on the stack, including the linkage
2086 // area, and parameter passing area. We start with 24/48 bytes, which is
2087 // prereserved space for [SP][CR][LR][3 x unused].
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002088 unsigned NumBytes = PPCFrameInfo::getLinkageSize(isPPC64, true);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002089 unsigned NumOps = Outs.size();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002090 unsigned PtrByteSize = isPPC64 ? 8 : 4;
2091
2092 // Add up all the space actually used.
2093 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
2094 // they all go in registers, but we must reserve stack space for them for
2095 // possible use by the caller. In varargs or 64-bit calls, parameters are
2096 // assigned stack space in order, with padding so Altivec parameters are
2097 // 16-byte aligned.
2098 nAltivecParamsAtEnd = 0;
2099 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002100 SDValue Arg = Outs[i].Val;
2101 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Owen Andersone50ed302009-08-10 22:56:29 +00002102 EVT ArgVT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002103 // Varargs Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00002104 if (ArgVT==MVT::v4f32 || ArgVT==MVT::v4i32 ||
2105 ArgVT==MVT::v8i16 || ArgVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002106 if (!isVarArg && !isPPC64) {
2107 // Non-varargs Altivec parameters go after all the non-Altivec
2108 // parameters; handle those later so we know how much padding we need.
2109 nAltivecParamsAtEnd++;
2110 continue;
2111 }
2112 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
2113 NumBytes = ((NumBytes+15)/16)*16;
2114 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002115 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002116 }
2117
2118 // Allow for Altivec parameters at the end, if needed.
2119 if (nAltivecParamsAtEnd) {
2120 NumBytes = ((NumBytes+15)/16)*16;
2121 NumBytes += 16*nAltivecParamsAtEnd;
2122 }
2123
2124 // The prolog code of the callee may store up to 8 GPR argument registers to
2125 // the stack, allowing va_start to index over them in memory if its varargs.
2126 // Because we cannot tell if this is needed on the caller side, we have to
2127 // conservatively assume that it is needed. As such, make sure we have at
2128 // least enough stack space for the caller to store the 8 GPRs.
2129 NumBytes = std::max(NumBytes,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002130 PPCFrameInfo::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002131
2132 // Tail call needs the stack to be aligned.
2133 if (CC==CallingConv::Fast && PerformTailCallOpt) {
2134 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameInfo()->
2135 getStackAlignment();
2136 unsigned AlignMask = TargetAlign-1;
2137 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2138 }
2139
2140 return NumBytes;
2141}
2142
2143/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
2144/// adjusted to accomodate the arguments for the tailcall.
2145static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool IsTailCall,
2146 unsigned ParamSize) {
2147
2148 if (!IsTailCall) return 0;
2149
2150 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
2151 unsigned CallerMinReservedArea = FI->getMinReservedArea();
2152 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
2153 // Remember only if the new adjustement is bigger.
2154 if (SPDiff < FI->getTailCallSPDelta())
2155 FI->setTailCallSPDelta(SPDiff);
2156
2157 return SPDiff;
2158}
2159
Dan Gohman98ca4f22009-08-05 01:29:28 +00002160/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2161/// for tail call optimization. Targets which want to do tail call
2162/// optimization should implement this function.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002163bool
Dan Gohman98ca4f22009-08-05 01:29:28 +00002164PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2165 unsigned CalleeCC,
2166 bool isVarArg,
2167 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002168 SelectionDAG& DAG) const {
2169 // Variable argument functions are not supported.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002170 if (isVarArg)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002171 return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002172
Dan Gohman98ca4f22009-08-05 01:29:28 +00002173 MachineFunction &MF = DAG.getMachineFunction();
2174 unsigned CallerCC = MF.getFunction()->getCallingConv();
2175 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
2176 // Functions containing by val parameters are not supported.
2177 for (unsigned i = 0; i != Ins.size(); i++) {
2178 ISD::ArgFlagsTy Flags = Ins[i].Flags;
2179 if (Flags.isByVal()) return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002180 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002181
2182 // Non PIC/GOT tail calls are supported.
2183 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
2184 return true;
2185
2186 // At the moment we can only do local tail calls (in same module, hidden
2187 // or protected) if we are generating PIC.
2188 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2189 return G->getGlobal()->hasHiddenVisibility()
2190 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002191 }
2192
2193 return false;
2194}
2195
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002196/// isCallCompatibleAddress - Return the immediate to use if the specified
2197/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman475871a2008-07-27 21:46:04 +00002198static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002199 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
2200 if (!C) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002201
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002202 int Addr = C->getZExtValue();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002203 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
2204 (Addr << 6 >> 6) != Addr)
2205 return 0; // Top 6 bits have to be sext of immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00002206
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002207 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greifba36cb52008-08-28 21:40:38 +00002208 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002209}
2210
Dan Gohman844731a2008-05-13 00:00:25 +00002211namespace {
2212
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002213struct TailCallArgumentInfo {
Dan Gohman475871a2008-07-27 21:46:04 +00002214 SDValue Arg;
2215 SDValue FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002216 int FrameIdx;
2217
2218 TailCallArgumentInfo() : FrameIdx(0) {}
2219};
2220
Dan Gohman844731a2008-05-13 00:00:25 +00002221}
2222
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002223/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
2224static void
2225StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00002226 SDValue Chain,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002227 const SmallVector<TailCallArgumentInfo, 8> &TailCallArgs,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002228 SmallVector<SDValue, 8> &MemOpChains,
2229 DebugLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002230 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002231 SDValue Arg = TailCallArgs[i].Arg;
2232 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002233 int FI = TailCallArgs[i].FrameIdx;
2234 // Store relative to framepointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00002235 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00002236 PseudoSourceValue::getFixedStack(FI),
2237 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002238 }
2239}
2240
2241/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
2242/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman475871a2008-07-27 21:46:04 +00002243static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002244 MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00002245 SDValue Chain,
2246 SDValue OldRetAddr,
2247 SDValue OldFP,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002248 int SPDiff,
2249 bool isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002250 bool isDarwinABI,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002251 DebugLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002252 if (SPDiff) {
2253 // Calculate the new stack slot for the return address.
2254 int SlotSize = isPPC64 ? 8 : 4;
2255 int NewRetAddrLoc = SPDiff + PPCFrameInfo::getReturnSaveOffset(isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002256 isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002257 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
2258 NewRetAddrLoc);
Owen Anderson825b72b2009-08-11 20:47:22 +00002259 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002260 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002261 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Dan Gohmana54cf172008-07-11 22:44:52 +00002262 PseudoSourceValue::getFixedStack(NewRetAddr), 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002263
2264 // When using the SVR4 ABI there is no need to move the FP stack slot
2265 // as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002266 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002267 int NewFPLoc =
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002268 SPDiff + PPCFrameInfo::getFramePointerSaveOffset(isPPC64, isDarwinABI);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002269 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc);
2270 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
2271 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
2272 PseudoSourceValue::getFixedStack(NewFPIdx), 0);
2273 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002274 }
2275 return Chain;
2276}
2277
2278/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
2279/// the position of the argument.
2280static void
2281CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman475871a2008-07-27 21:46:04 +00002282 SDValue Arg, int SPDiff, unsigned ArgOffset,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002283 SmallVector<TailCallArgumentInfo, 8>& TailCallArguments) {
2284 int Offset = ArgOffset + SPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002285 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002286 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Owen Anderson825b72b2009-08-11 20:47:22 +00002287 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002288 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002289 TailCallArgumentInfo Info;
2290 Info.Arg = Arg;
2291 Info.FrameIdxOp = FIN;
2292 Info.FrameIdx = FI;
2293 TailCallArguments.push_back(Info);
2294}
2295
2296/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
2297/// stack slot. Returns the chain as result and the loaded frame pointers in
2298/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman475871a2008-07-27 21:46:04 +00002299SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002300 int SPDiff,
2301 SDValue Chain,
2302 SDValue &LROpOut,
2303 SDValue &FPOpOut,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002304 bool isDarwinABI,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002305 DebugLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002306 if (SPDiff) {
2307 // Load the LR and FP stack slot for later adjusting.
Owen Anderson825b72b2009-08-11 20:47:22 +00002308 EVT VT = PPCSubTarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002309 LROpOut = getReturnAddrFrameIndex(DAG);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002310 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, NULL, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002311 Chain = SDValue(LROpOut.getNode(), 1);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002312
2313 // When using the SVR4 ABI there is no need to load the FP stack slot
2314 // as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002315 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002316 FPOpOut = getFramePointerFrameIndex(DAG);
2317 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, NULL, 0);
2318 Chain = SDValue(FPOpOut.getNode(), 1);
2319 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002320 }
2321 return Chain;
2322}
2323
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002324/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelfdc40a02009-02-17 22:15:04 +00002325/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002326/// specified by the specific parameter attribute. The copy will be passed as
2327/// a byval function parameter.
2328/// Sometimes what we are copying is the end of a larger object, the part that
2329/// does not fit in registers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002330static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002331CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sands276dcbd2008-03-21 09:14:45 +00002332 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002333 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002334 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen8ad9b432009-02-04 01:17:06 +00002335 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2336 false, NULL, 0, NULL, 0);
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002337}
Chris Lattner9f0bc652007-02-25 05:34:32 +00002338
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002339/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
2340/// tail calls.
2341static void
Dan Gohman475871a2008-07-27 21:46:04 +00002342LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
2343 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002344 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Dan Gohman475871a2008-07-27 21:46:04 +00002345 bool isVector, SmallVector<SDValue, 8> &MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002346 SmallVector<TailCallArgumentInfo, 8>& TailCallArguments,
2347 DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002348 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002349 if (!isTailCall) {
2350 if (isVector) {
Dan Gohman475871a2008-07-27 21:46:04 +00002351 SDValue StackPtr;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002352 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002353 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002354 else
Owen Anderson825b72b2009-08-11 20:47:22 +00002355 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002356 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002357 DAG.getConstant(ArgOffset, PtrVT));
2358 }
Dale Johannesen33c960f2009-02-04 20:06:27 +00002359 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002360 // Calculate and remember argument location.
2361 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
2362 TailCallArguments);
2363}
2364
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002365static
2366void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
2367 DebugLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
2368 SDValue LROp, SDValue FPOp, bool isDarwinABI,
2369 SmallVector<TailCallArgumentInfo, 8> &TailCallArguments) {
2370 MachineFunction &MF = DAG.getMachineFunction();
2371
2372 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
2373 // might overwrite each other in case of tail call optimization.
2374 SmallVector<SDValue, 8> MemOpChains2;
2375 // Do not flag preceeding copytoreg stuff together with the following stuff.
2376 InFlag = SDValue();
2377 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
2378 MemOpChains2, dl);
2379 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002380 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002381 &MemOpChains2[0], MemOpChains2.size());
2382
2383 // Store the return address to the appropriate stack slot.
2384 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
2385 isPPC64, isDarwinABI, dl);
2386
2387 // Emit callseq_end just before tailcall node.
2388 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2389 DAG.getIntPtrConstant(0, true), InFlag);
2390 InFlag = Chain.getValue(1);
2391}
2392
2393static
2394unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
2395 SDValue &Chain, DebugLoc dl, int SPDiff, bool isTailCall,
2396 SmallVector<std::pair<unsigned, SDValue>, 8> &RegsToPass,
Owen Andersone50ed302009-08-10 22:56:29 +00002397 SmallVector<SDValue, 8> &Ops, std::vector<EVT> &NodeTys,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002398 bool isSVR4ABI) {
Owen Andersone50ed302009-08-10 22:56:29 +00002399 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00002400 NodeTys.push_back(MVT::Other); // Returns a chain
2401 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002402
2403 unsigned CallOpc = isSVR4ABI ? PPCISD::CALL_SVR4 : PPCISD::CALL_Darwin;
2404
2405 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
2406 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
2407 // node so that legalize doesn't hack it.
2408 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2409 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), Callee.getValueType());
2410 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
2411 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType());
2412 else if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG))
2413 // If this is an absolute destination address, use the munged value.
2414 Callee = SDValue(Dest, 0);
2415 else {
2416 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
2417 // to do the call, we can't use PPCISD::CALL.
2418 SDValue MTCTROps[] = {Chain, Callee, InFlag};
2419 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys, MTCTROps,
2420 2 + (InFlag.getNode() != 0));
2421 InFlag = Chain.getValue(1);
2422
2423 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00002424 NodeTys.push_back(MVT::Other);
2425 NodeTys.push_back(MVT::Flag);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002426 Ops.push_back(Chain);
2427 CallOpc = isSVR4ABI ? PPCISD::BCTRL_SVR4 : PPCISD::BCTRL_Darwin;
2428 Callee.setNode(0);
2429 // Add CTR register as callee so a bctr can be emitted later.
2430 if (isTailCall)
2431 Ops.push_back(DAG.getRegister(PPC::CTR, PtrVT));
2432 }
2433
2434 // If this is a direct call, pass the chain and the callee.
2435 if (Callee.getNode()) {
2436 Ops.push_back(Chain);
2437 Ops.push_back(Callee);
2438 }
2439 // If this is a tail call add stack pointer delta.
2440 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002441 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002442
2443 // Add argument registers to the end of the list so that they are known live
2444 // into the call.
2445 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2446 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2447 RegsToPass[i].second.getValueType()));
2448
2449 return CallOpc;
2450}
2451
Dan Gohman98ca4f22009-08-05 01:29:28 +00002452SDValue
2453PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2454 unsigned CallConv, bool isVarArg,
2455 const SmallVectorImpl<ISD::InputArg> &Ins,
2456 DebugLoc dl, SelectionDAG &DAG,
2457 SmallVectorImpl<SDValue> &InVals) {
2458
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002459 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002460 CCState CCRetInfo(CallConv, isVarArg, getTargetMachine(),
2461 RVLocs, *DAG.getContext());
2462 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002463
2464 // Copy all of the result registers out of their specified physreg.
2465 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2466 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002467 EVT VT = VA.getValVT();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002468 assert(VA.isRegLoc() && "Can only return in registers!");
2469 Chain = DAG.getCopyFromReg(Chain, dl,
2470 VA.getLocReg(), VT, InFlag).getValue(1);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002471 InVals.push_back(Chain.getValue(0));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002472 InFlag = Chain.getValue(2);
2473 }
2474
Dan Gohman98ca4f22009-08-05 01:29:28 +00002475 return Chain;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002476}
2477
Dan Gohman98ca4f22009-08-05 01:29:28 +00002478SDValue
2479PPCTargetLowering::FinishCall(unsigned CallConv, DebugLoc dl, bool isTailCall,
2480 bool isVarArg,
2481 SelectionDAG &DAG,
2482 SmallVector<std::pair<unsigned, SDValue>, 8>
2483 &RegsToPass,
2484 SDValue InFlag, SDValue Chain,
2485 SDValue &Callee,
2486 int SPDiff, unsigned NumBytes,
2487 const SmallVectorImpl<ISD::InputArg> &Ins,
2488 SmallVectorImpl<SDValue> &InVals) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002489
Owen Andersone50ed302009-08-10 22:56:29 +00002490 std::vector<EVT> NodeTys;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002491 SmallVector<SDValue, 8> Ops;
2492 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, dl, SPDiff,
2493 isTailCall, RegsToPass, Ops, NodeTys,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002494 PPCSubTarget.isSVR4ABI());
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002495
2496 // When performing tail call optimization the callee pops its arguments off
2497 // the stack. Account for this here so these bytes can be pushed back on in
2498 // PPCRegisterInfo::eliminateCallFramePseudoInstr.
2499 int BytesCalleePops =
Dan Gohman98ca4f22009-08-05 01:29:28 +00002500 (CallConv==CallingConv::Fast && PerformTailCallOpt) ? NumBytes : 0;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002501
2502 if (InFlag.getNode())
2503 Ops.push_back(InFlag);
2504
2505 // Emit tail call.
2506 if (isTailCall) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002507 // If this is the first return lowered for this function, add the regs
2508 // to the liveout set for the function.
2509 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
2510 SmallVector<CCValAssign, 16> RVLocs;
2511 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), RVLocs,
2512 *DAG.getContext());
2513 CCInfo.AnalyzeCallResult(Ins, RetCC_PPC);
2514 for (unsigned i = 0; i != RVLocs.size(); ++i)
2515 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
2516 }
2517
2518 assert(((Callee.getOpcode() == ISD::Register &&
2519 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
2520 Callee.getOpcode() == ISD::TargetExternalSymbol ||
2521 Callee.getOpcode() == ISD::TargetGlobalAddress ||
2522 isa<ConstantSDNode>(Callee)) &&
2523 "Expecting an global address, external symbol, absolute value or register");
2524
Owen Anderson825b72b2009-08-11 20:47:22 +00002525 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, &Ops[0], Ops.size());
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002526 }
2527
2528 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
2529 InFlag = Chain.getValue(1);
2530
2531 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2532 DAG.getIntPtrConstant(BytesCalleePops, true),
2533 InFlag);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002534 if (!Ins.empty())
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002535 InFlag = Chain.getValue(1);
2536
Dan Gohman98ca4f22009-08-05 01:29:28 +00002537 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2538 Ins, dl, DAG, InVals);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002539}
2540
Dan Gohman98ca4f22009-08-05 01:29:28 +00002541SDValue
2542PPCTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
2543 unsigned CallConv, bool isVarArg,
2544 bool isTailCall,
2545 const SmallVectorImpl<ISD::OutputArg> &Outs,
2546 const SmallVectorImpl<ISD::InputArg> &Ins,
2547 DebugLoc dl, SelectionDAG &DAG,
2548 SmallVectorImpl<SDValue> &InVals) {
2549 if (PPCSubTarget.isSVR4ABI()) {
2550 return LowerCall_SVR4(Chain, Callee, CallConv, isVarArg,
2551 isTailCall, Outs, Ins,
2552 dl, DAG, InVals);
2553 } else {
2554 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
2555 isTailCall, Outs, Ins,
2556 dl, DAG, InVals);
2557 }
2558}
2559
2560SDValue
2561PPCTargetLowering::LowerCall_SVR4(SDValue Chain, SDValue Callee,
2562 unsigned CallConv, bool isVarArg,
2563 bool isTailCall,
2564 const SmallVectorImpl<ISD::OutputArg> &Outs,
2565 const SmallVectorImpl<ISD::InputArg> &Ins,
2566 DebugLoc dl, SelectionDAG &DAG,
2567 SmallVectorImpl<SDValue> &InVals) {
2568 // See PPCTargetLowering::LowerFormalArguments_SVR4() for a description
Tilmann Schellerffd02002009-07-03 06:45:56 +00002569 // of the SVR4 ABI stack frame layout.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002570
2571 assert((!isTailCall ||
2572 (CallConv == CallingConv::Fast && PerformTailCallOpt)) &&
2573 "IsEligibleForTailCallOptimization missed a case!");
2574
2575 assert((CallConv == CallingConv::C ||
2576 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerffd02002009-07-03 06:45:56 +00002577
Owen Andersone50ed302009-08-10 22:56:29 +00002578 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerffd02002009-07-03 06:45:56 +00002579 unsigned PtrByteSize = 4;
2580
2581 MachineFunction &MF = DAG.getMachineFunction();
2582
2583 // Mark this function as potentially containing a function that contains a
2584 // tail call. As a consequence the frame pointer will be used for dynamicalloc
2585 // and restoring the callers stack pointer in this functions epilog. This is
2586 // done because by tail calling the called function might overwrite the value
2587 // in this function's (MF) stack pointer stack slot 0(SP).
Dan Gohman98ca4f22009-08-05 01:29:28 +00002588 if (PerformTailCallOpt && CallConv==CallingConv::Fast)
Tilmann Schellerffd02002009-07-03 06:45:56 +00002589 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
2590
2591 // Count how many bytes are to be pushed on the stack, including the linkage
2592 // area, parameter list area and the part of the local variable space which
2593 // contains copies of aggregates which are passed by value.
2594
2595 // Assign locations to all of the outgoing arguments.
2596 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002597 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
2598 ArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00002599
2600 // Reserve space for the linkage area on the stack.
2601 CCInfo.AllocateStack(PPCFrameInfo::getLinkageSize(false, false), PtrByteSize);
2602
2603 if (isVarArg) {
2604 // Handle fixed and variable vector arguments differently.
2605 // Fixed vector arguments go into registers as long as registers are
2606 // available. Variable vector arguments always go into memory.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002607 unsigned NumArgs = Outs.size();
Tilmann Schellerffd02002009-07-03 06:45:56 +00002608
2609 for (unsigned i = 0; i != NumArgs; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00002610 EVT ArgVT = Outs[i].Val.getValueType();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002611 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002612 bool Result;
2613
Dan Gohman98ca4f22009-08-05 01:29:28 +00002614 if (Outs[i].IsFixed) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002615 Result = CC_PPC_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
2616 CCInfo);
2617 } else {
2618 Result = CC_PPC_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
2619 ArgFlags, CCInfo);
2620 }
2621
2622 if (Result) {
Torok Edwindac237e2009-07-08 20:53:28 +00002623#ifndef NDEBUG
Tilmann Schellerffd02002009-07-03 06:45:56 +00002624 cerr << "Call operand #" << i << " has unhandled type "
Owen Andersone50ed302009-08-10 22:56:29 +00002625 << ArgVT.getEVTString() << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +00002626#endif
Torok Edwinc23197a2009-07-14 16:55:14 +00002627 llvm_unreachable(0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002628 }
2629 }
2630 } else {
2631 // All arguments are treated the same.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002632 CCInfo.AnalyzeCallOperands(Outs, CC_PPC_SVR4);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002633 }
2634
2635 // Assign locations to all of the outgoing aggregate by value arguments.
2636 SmallVector<CCValAssign, 16> ByValArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002637 CCState CCByValInfo(CallConv, isVarArg, getTargetMachine(), ByValArgLocs,
Owen Andersone922c022009-07-22 00:24:57 +00002638 *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00002639
2640 // Reserve stack space for the allocations in CCInfo.
2641 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2642
Dan Gohman98ca4f22009-08-05 01:29:28 +00002643 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002644
2645 // Size of the linkage area, parameter list area and the part of the local
2646 // space variable where copies of aggregates which are passed by value are
2647 // stored.
2648 unsigned NumBytes = CCByValInfo.getNextStackOffset();
2649
2650 // Calculate by how many bytes the stack has to be adjusted in case of tail
2651 // call optimization.
2652 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
2653
2654 // Adjust the stack pointer for the new arguments...
2655 // These operations are automatically eliminated by the prolog/epilog pass
2656 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
2657 SDValue CallSeqStart = Chain;
2658
2659 // Load the return address and frame pointer so it can be moved somewhere else
2660 // later.
2661 SDValue LROp, FPOp;
2662 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
2663 dl);
2664
2665 // Set up a copy of the stack pointer for use loading and storing any
2666 // arguments that may not fit in the registers available for argument
2667 // passing.
Owen Anderson825b72b2009-08-11 20:47:22 +00002668 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002669
2670 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2671 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
2672 SmallVector<SDValue, 8> MemOpChains;
2673
2674 // Walk the register/memloc assignments, inserting copies/loads.
2675 for (unsigned i = 0, j = 0, e = ArgLocs.size();
2676 i != e;
2677 ++i) {
2678 CCValAssign &VA = ArgLocs[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002679 SDValue Arg = Outs[i].Val;
2680 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002681
2682 if (Flags.isByVal()) {
2683 // Argument is an aggregate which is passed by value, thus we need to
2684 // create a copy of it in the local variable space of the current stack
2685 // frame (which is the stack frame of the caller) and pass the address of
2686 // this copy to the callee.
2687 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
2688 CCValAssign &ByValVA = ByValArgLocs[j++];
2689 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
2690
2691 // Memory reserved in the local variable space of the callers stack frame.
2692 unsigned LocMemOffset = ByValVA.getLocMemOffset();
2693
2694 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2695 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2696
2697 // Create a copy of the argument in the local area of the current
2698 // stack frame.
2699 SDValue MemcpyCall =
2700 CreateCopyOfByValArgument(Arg, PtrOff,
2701 CallSeqStart.getNode()->getOperand(0),
2702 Flags, DAG, dl);
2703
2704 // This must go outside the CALLSEQ_START..END.
2705 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
2706 CallSeqStart.getNode()->getOperand(1));
2707 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
2708 NewCallSeqStart.getNode());
2709 Chain = CallSeqStart = NewCallSeqStart;
2710
2711 // Pass the address of the aggregate copy on the stack either in a
2712 // physical register or in the parameter list area of the current stack
2713 // frame to the callee.
2714 Arg = PtrOff;
2715 }
2716
2717 if (VA.isRegLoc()) {
2718 // Put argument in a physical register.
2719 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2720 } else {
2721 // Put argument in the parameter list area of the current stack frame.
2722 assert(VA.isMemLoc());
2723 unsigned LocMemOffset = VA.getLocMemOffset();
2724
2725 if (!isTailCall) {
2726 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2727 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2728
2729 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
2730 PseudoSourceValue::getStack(), LocMemOffset));
2731 } else {
2732 // Calculate and remember argument location.
2733 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
2734 TailCallArguments);
2735 }
2736 }
2737 }
2738
2739 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002740 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Schellerffd02002009-07-03 06:45:56 +00002741 &MemOpChains[0], MemOpChains.size());
2742
2743 // Build a sequence of copy-to-reg nodes chained together with token chain
2744 // and flag operands which copy the outgoing args into the appropriate regs.
2745 SDValue InFlag;
2746 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2747 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2748 RegsToPass[i].second, InFlag);
2749 InFlag = Chain.getValue(1);
2750 }
2751
2752 // Set CR6 to true if this is a vararg call.
2753 if (isVarArg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002754 SDValue SetCR(DAG.getTargetNode(PPC::CRSET, dl, MVT::i32), 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002755 Chain = DAG.getCopyToReg(Chain, dl, PPC::CR1EQ, SetCR, InFlag);
2756 InFlag = Chain.getValue(1);
2757 }
2758
Tilmann Schellerffd02002009-07-03 06:45:56 +00002759 if (isTailCall) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002760 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
2761 false, TailCallArguments);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002762 }
2763
Dan Gohman98ca4f22009-08-05 01:29:28 +00002764 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
2765 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
2766 Ins, InVals);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002767}
2768
Dan Gohman98ca4f22009-08-05 01:29:28 +00002769SDValue
2770PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
2771 unsigned CallConv, bool isVarArg,
2772 bool isTailCall,
2773 const SmallVectorImpl<ISD::OutputArg> &Outs,
2774 const SmallVectorImpl<ISD::InputArg> &Ins,
2775 DebugLoc dl, SelectionDAG &DAG,
2776 SmallVectorImpl<SDValue> &InVals) {
2777
2778 unsigned NumOps = Outs.size();
Scott Michelfdc40a02009-02-17 22:15:04 +00002779
Owen Andersone50ed302009-08-10 22:56:29 +00002780 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00002781 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002782 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00002783
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002784 MachineFunction &MF = DAG.getMachineFunction();
2785
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002786 // Mark this function as potentially containing a function that contains a
2787 // tail call. As a consequence the frame pointer will be used for dynamicalloc
2788 // and restoring the callers stack pointer in this functions epilog. This is
2789 // done because by tail calling the called function might overwrite the value
2790 // in this function's (MF) stack pointer stack slot 0(SP).
Dan Gohman98ca4f22009-08-05 01:29:28 +00002791 if (PerformTailCallOpt && CallConv==CallingConv::Fast)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002792 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
2793
2794 unsigned nAltivecParamsAtEnd = 0;
2795
Chris Lattnerabde4602006-05-16 22:56:08 +00002796 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerc91a4752006-06-26 22:48:35 +00002797 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002798 // prereserved space for [SP][CR][LR][3 x unused].
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002799 unsigned NumBytes =
Dan Gohman98ca4f22009-08-05 01:29:28 +00002800 CalculateParameterAndLinkageAreaSize(DAG, isPPC64, isVarArg, CallConv,
2801 Outs,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002802 nAltivecParamsAtEnd);
Dale Johannesen75092de2008-03-12 00:22:17 +00002803
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002804 // Calculate by how many bytes the stack has to be adjusted in case of tail
2805 // call optimization.
2806 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelfdc40a02009-02-17 22:15:04 +00002807
Dan Gohman98ca4f22009-08-05 01:29:28 +00002808 // To protect arguments on the stack from being clobbered in a tail call,
2809 // force all the loads to happen before doing any other lowering.
2810 if (isTailCall)
2811 Chain = DAG.getStackArgumentTokenFactor(Chain);
2812
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002813 // Adjust the stack pointer for the new arguments...
2814 // These operations are automatically eliminated by the prolog/epilog pass
Chris Lattnere563bbc2008-10-11 22:08:30 +00002815 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohman475871a2008-07-27 21:46:04 +00002816 SDValue CallSeqStart = Chain;
Scott Michelfdc40a02009-02-17 22:15:04 +00002817
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002818 // Load the return address and frame pointer so it can be move somewhere else
2819 // later.
Dan Gohman475871a2008-07-27 21:46:04 +00002820 SDValue LROp, FPOp;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002821 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
2822 dl);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002823
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002824 // Set up a copy of the stack pointer for use loading and storing any
2825 // arguments that may not fit in the registers available for argument
2826 // passing.
Dan Gohman475871a2008-07-27 21:46:04 +00002827 SDValue StackPtr;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002828 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002829 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerc91a4752006-06-26 22:48:35 +00002830 else
Owen Anderson825b72b2009-08-11 20:47:22 +00002831 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00002832
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002833 // Figure out which arguments are going to go in registers, and which in
2834 // memory. Also, if this is a vararg function, floating point operations
2835 // must be stored to our stack, and loaded into integer regs as well, if
2836 // any integer regs are available for argument passing.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002837 unsigned ArgOffset = PPCFrameInfo::getLinkageSize(isPPC64, true);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002838 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002839
Chris Lattnerc91a4752006-06-26 22:48:35 +00002840 static const unsigned GPR_32[] = { // 32-bit registers.
Chris Lattner9a2a4972006-05-17 06:01:33 +00002841 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2842 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2843 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00002844 static const unsigned GPR_64[] = { // 64-bit registers.
2845 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2846 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2847 };
Dan Gohman98ca4f22009-08-05 01:29:28 +00002848 static const unsigned *FPR = GetFPR(PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00002849
Chris Lattner9a2a4972006-05-17 06:01:33 +00002850 static const unsigned VR[] = {
2851 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2852 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2853 };
Owen Anderson718cb662007-09-07 04:06:50 +00002854 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002855 const unsigned NumFPRs = 13;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002856 const unsigned NumVRs = array_lengthof(VR);
Scott Michelfdc40a02009-02-17 22:15:04 +00002857
Chris Lattnerc91a4752006-06-26 22:48:35 +00002858 const unsigned *GPR = isPPC64 ? GPR_64 : GPR_32;
2859
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002860 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002861 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
2862
Dan Gohman475871a2008-07-27 21:46:04 +00002863 SmallVector<SDValue, 8> MemOpChains;
Evan Cheng4360bdc2006-05-25 00:57:32 +00002864 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattner9f0bc652007-02-25 05:34:32 +00002865 bool inMem = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002866 SDValue Arg = Outs[i].Val;
2867 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00002868
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002869 // PtrOff will be used to store the current argument to the stack if a
2870 // register cannot be found for it.
Dan Gohman475871a2008-07-27 21:46:04 +00002871 SDValue PtrOff;
Scott Michelfdc40a02009-02-17 22:15:04 +00002872
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002873 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00002874
Dale Johannesen39355f92009-02-04 02:34:38 +00002875 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerc91a4752006-06-26 22:48:35 +00002876
2877 // On PPC64, promote integers to 64-bit values.
Owen Anderson825b72b2009-08-11 20:47:22 +00002878 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00002879 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
2880 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson825b72b2009-08-11 20:47:22 +00002881 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerc91a4752006-06-26 22:48:35 +00002882 }
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002883
Dale Johannesen8419dd62008-03-07 20:27:40 +00002884 // FIXME memcpy is used way more than necessary. Correctness first.
Duncan Sands276dcbd2008-03-21 09:14:45 +00002885 if (Flags.isByVal()) {
2886 unsigned Size = Flags.getByValSize();
Dale Johannesen8419dd62008-03-07 20:27:40 +00002887 if (Size==1 || Size==2) {
2888 // Very small objects are passed right-justified.
2889 // Everything else is passed left-justified.
Owen Anderson825b72b2009-08-11 20:47:22 +00002890 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002891 if (GPR_idx != NumGPRs) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002892 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Dale Johannesen8419dd62008-03-07 20:27:40 +00002893 NULL, 0, VT);
2894 MemOpChains.push_back(Load.getValue(1));
2895 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002896
2897 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002898 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00002899 SDValue Const = DAG.getConstant(4 - Size, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00002900 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Dan Gohman475871a2008-07-27 21:46:04 +00002901 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, AddPtr,
Scott Michelfdc40a02009-02-17 22:15:04 +00002902 CallSeqStart.getNode()->getOperand(0),
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002903 Flags, DAG, dl);
Dale Johannesen8419dd62008-03-07 20:27:40 +00002904 // This must go outside the CALLSEQ_START..END.
Dan Gohman475871a2008-07-27 21:46:04 +00002905 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Gabor Greifba36cb52008-08-28 21:40:38 +00002906 CallSeqStart.getNode()->getOperand(1));
Gabor Greif93c53e52008-08-31 15:37:04 +00002907 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
2908 NewCallSeqStart.getNode());
Dale Johannesen8419dd62008-03-07 20:27:40 +00002909 Chain = CallSeqStart = NewCallSeqStart;
2910 ArgOffset += PtrByteSize;
2911 }
2912 continue;
2913 }
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002914 // Copy entire object into memory. There are cases where gcc-generated
2915 // code assumes it is there, even if it could be put entirely into
2916 // registers. (This is not what the doc says.)
Dan Gohman475871a2008-07-27 21:46:04 +00002917 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
Scott Michelfdc40a02009-02-17 22:15:04 +00002918 CallSeqStart.getNode()->getOperand(0),
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002919 Flags, DAG, dl);
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002920 // This must go outside the CALLSEQ_START..END.
Dan Gohman475871a2008-07-27 21:46:04 +00002921 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Gabor Greifba36cb52008-08-28 21:40:38 +00002922 CallSeqStart.getNode()->getOperand(1));
2923 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(), NewCallSeqStart.getNode());
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002924 Chain = CallSeqStart = NewCallSeqStart;
2925 // And copy the pieces of it that fit into registers.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002926 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman475871a2008-07-27 21:46:04 +00002927 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00002928 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002929 if (GPR_idx != NumGPRs) {
Dale Johannesen39355f92009-02-04 02:34:38 +00002930 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg, NULL, 0);
Dale Johannesen1f797a32008-03-05 23:31:27 +00002931 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002932 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002933 ArgOffset += PtrByteSize;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002934 } else {
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002935 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002936 break;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002937 }
2938 }
2939 continue;
2940 }
2941
Owen Anderson825b72b2009-08-11 20:47:22 +00002942 switch (Arg.getValueType().getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002943 default: llvm_unreachable("Unexpected ValueType for argument!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002944 case MVT::i32:
2945 case MVT::i64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00002946 if (GPR_idx != NumGPRs) {
2947 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002948 } else {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002949 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
2950 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002951 TailCallArguments, dl);
Chris Lattner9f0bc652007-02-25 05:34:32 +00002952 inMem = true;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002953 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002954 ArgOffset += PtrByteSize;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002955 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002956 case MVT::f32:
2957 case MVT::f64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00002958 if (FPR_idx != NumFPRs) {
2959 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
2960
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002961 if (isVarArg) {
Dale Johannesen39355f92009-02-04 02:34:38 +00002962 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002963 MemOpChains.push_back(Store);
2964
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002965 // Float varargs are always shadowed in available integer registers
Chris Lattner9a2a4972006-05-17 06:01:33 +00002966 if (GPR_idx != NumGPRs) {
Dale Johannesen39355f92009-02-04 02:34:38 +00002967 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002968 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002969 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002970 }
Owen Anderson825b72b2009-08-11 20:47:22 +00002971 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman475871a2008-07-27 21:46:04 +00002972 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00002973 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
2974 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002975 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002976 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerabde4602006-05-16 22:56:08 +00002977 }
2978 } else {
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002979 // If we have any FPRs remaining, we may also have GPRs remaining.
2980 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
2981 // GPRs.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002982 if (GPR_idx != NumGPRs)
2983 ++GPR_idx;
Owen Anderson825b72b2009-08-11 20:47:22 +00002984 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002985 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
2986 ++GPR_idx;
Chris Lattnerabde4602006-05-16 22:56:08 +00002987 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002988 } else {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002989 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
2990 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002991 TailCallArguments, dl);
Chris Lattner9f0bc652007-02-25 05:34:32 +00002992 inMem = true;
Chris Lattnerabde4602006-05-16 22:56:08 +00002993 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002994 if (isPPC64)
2995 ArgOffset += 8;
2996 else
Owen Anderson825b72b2009-08-11 20:47:22 +00002997 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002998 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002999 case MVT::v4f32:
3000 case MVT::v4i32:
3001 case MVT::v8i16:
3002 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00003003 if (isVarArg) {
3004 // These go aligned on the stack, or in the corresponding R registers
Scott Michelfdc40a02009-02-17 22:15:04 +00003005 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesen75092de2008-03-12 00:22:17 +00003006 // V registers; in fact gcc does this only for arguments that are
3007 // prototyped, not for those that match the ... We do it for all
3008 // arguments, seems to work.
3009 while (ArgOffset % 16 !=0) {
3010 ArgOffset += PtrByteSize;
3011 if (GPR_idx != NumGPRs)
3012 GPR_idx++;
3013 }
3014 // We could elide this store in the case where the object fits
3015 // entirely in R registers. Maybe later.
Scott Michelfdc40a02009-02-17 22:15:04 +00003016 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesen75092de2008-03-12 00:22:17 +00003017 DAG.getConstant(ArgOffset, PtrVT));
Dale Johannesen39355f92009-02-04 02:34:38 +00003018 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00003019 MemOpChains.push_back(Store);
3020 if (VR_idx != NumVRs) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003021 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff, NULL, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00003022 MemOpChains.push_back(Load.getValue(1));
3023 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
3024 }
3025 ArgOffset += 16;
3026 for (unsigned i=0; i<16; i+=PtrByteSize) {
3027 if (GPR_idx == NumGPRs)
3028 break;
Dale Johannesen39355f92009-02-04 02:34:38 +00003029 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesen75092de2008-03-12 00:22:17 +00003030 DAG.getConstant(i, PtrVT));
Dale Johannesen39355f92009-02-04 02:34:38 +00003031 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, NULL, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00003032 MemOpChains.push_back(Load.getValue(1));
3033 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3034 }
3035 break;
3036 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003037
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003038 // Non-varargs Altivec params generally go in registers, but have
3039 // stack space allocated at the end.
3040 if (VR_idx != NumVRs) {
3041 // Doesn't have GPR space allocated.
3042 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
3043 } else if (nAltivecParamsAtEnd==0) {
3044 // We are emitting Altivec params in order.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003045 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3046 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00003047 TailCallArguments, dl);
Dale Johannesen75092de2008-03-12 00:22:17 +00003048 ArgOffset += 16;
Dale Johannesen75092de2008-03-12 00:22:17 +00003049 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00003050 break;
Chris Lattnerabde4602006-05-16 22:56:08 +00003051 }
Chris Lattnerabde4602006-05-16 22:56:08 +00003052 }
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003053 // If all Altivec parameters fit in registers, as they usually do,
3054 // they get stack space following the non-Altivec parameters. We
3055 // don't track this here because nobody below needs it.
3056 // If there are more Altivec parameters than fit in registers emit
3057 // the stores here.
3058 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
3059 unsigned j = 0;
3060 // Offset is aligned; skip 1st 12 params which go in V registers.
3061 ArgOffset = ((ArgOffset+15)/16)*16;
3062 ArgOffset += 12*16;
3063 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003064 SDValue Arg = Outs[i].Val;
Owen Andersone50ed302009-08-10 22:56:29 +00003065 EVT ArgType = Arg.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00003066 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
3067 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003068 if (++j > NumVRs) {
Dan Gohman475871a2008-07-27 21:46:04 +00003069 SDValue PtrOff;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003070 // We are emitting Altivec params in order.
3071 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3072 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00003073 TailCallArguments, dl);
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003074 ArgOffset += 16;
3075 }
3076 }
3077 }
3078 }
3079
Chris Lattner9a2a4972006-05-17 06:01:33 +00003080 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00003081 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnere2199452006-08-11 17:38:39 +00003082 &MemOpChains[0], MemOpChains.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00003083
Chris Lattner9a2a4972006-05-17 06:01:33 +00003084 // Build a sequence of copy-to-reg nodes chained together with token chain
3085 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman475871a2008-07-27 21:46:04 +00003086 SDValue InFlag;
Chris Lattner9a2a4972006-05-17 06:01:33 +00003087 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003088 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen39355f92009-02-04 02:34:38 +00003089 RegsToPass[i].second, InFlag);
Chris Lattner9a2a4972006-05-17 06:01:33 +00003090 InFlag = Chain.getValue(1);
3091 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003092
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003093 if (isTailCall) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003094 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
3095 FPOp, true, TailCallArguments);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003096 }
3097
Dan Gohman98ca4f22009-08-05 01:29:28 +00003098 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
3099 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
3100 Ins, InVals);
Chris Lattnerabde4602006-05-16 22:56:08 +00003101}
3102
Dan Gohman98ca4f22009-08-05 01:29:28 +00003103SDValue
3104PPCTargetLowering::LowerReturn(SDValue Chain,
3105 unsigned CallConv, bool isVarArg,
3106 const SmallVectorImpl<ISD::OutputArg> &Outs,
3107 DebugLoc dl, SelectionDAG &DAG) {
3108
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003109 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00003110 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
3111 RVLocs, *DAG.getContext());
3112 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelfdc40a02009-02-17 22:15:04 +00003113
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003114 // If this is the first return lowered for this function, add the regs to the
3115 // liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +00003116 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003117 for (unsigned i = 0; i != RVLocs.size(); ++i)
Chris Lattner84bc5422007-12-31 04:13:23 +00003118 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003119 }
3120
Dan Gohman475871a2008-07-27 21:46:04 +00003121 SDValue Flag;
Scott Michelfdc40a02009-02-17 22:15:04 +00003122
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003123 // Copy the result values into the output registers.
3124 for (unsigned i = 0; i != RVLocs.size(); ++i) {
3125 CCValAssign &VA = RVLocs[i];
3126 assert(VA.isRegLoc() && "Can only return in registers!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003127 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00003128 Outs[i].Val, Flag);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003129 Flag = Chain.getValue(1);
3130 }
3131
Gabor Greifba36cb52008-08-28 21:40:38 +00003132 if (Flag.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003133 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003134 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003135 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, Chain);
Chris Lattner1a635d62006-04-14 06:01:58 +00003136}
3137
Dan Gohman475871a2008-07-27 21:46:04 +00003138SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Jim Laskeyefc7e522006-12-04 22:04:42 +00003139 const PPCSubtarget &Subtarget) {
3140 // When we pop the dynamic allocation we need to restore the SP link.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003141 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00003142
Jim Laskeyefc7e522006-12-04 22:04:42 +00003143 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00003144 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeyefc7e522006-12-04 22:04:42 +00003145
3146 // Construct the stack pointer operand.
3147 bool IsPPC64 = Subtarget.isPPC64();
3148 unsigned SP = IsPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman475871a2008-07-27 21:46:04 +00003149 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeyefc7e522006-12-04 22:04:42 +00003150
3151 // Get the operands for the STACKRESTORE.
Dan Gohman475871a2008-07-27 21:46:04 +00003152 SDValue Chain = Op.getOperand(0);
3153 SDValue SaveSP = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003154
Jim Laskeyefc7e522006-12-04 22:04:42 +00003155 // Load the old link SP.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003156 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr, NULL, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003157
Jim Laskeyefc7e522006-12-04 22:04:42 +00003158 // Restore the stack pointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003159 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelfdc40a02009-02-17 22:15:04 +00003160
Jim Laskeyefc7e522006-12-04 22:04:42 +00003161 // Store the old link SP.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003162 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, NULL, 0);
Jim Laskeyefc7e522006-12-04 22:04:42 +00003163}
3164
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003165
3166
Dan Gohman475871a2008-07-27 21:46:04 +00003167SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003168PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey2f616bf2006-11-16 22:43:37 +00003169 MachineFunction &MF = DAG.getMachineFunction();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003170 bool IsPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003171 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00003172 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003173
3174 // Get current frame pointer save index. The users of this index will be
3175 // primarily DYNALLOC instructions.
3176 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
3177 int RASI = FI->getReturnAddrSaveIndex();
3178
3179 // If the frame pointer save index hasn't been defined yet.
3180 if (!RASI) {
3181 // Find out what the fix offset of the frame pointer save area.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003182 int LROffset = PPCFrameInfo::getReturnSaveOffset(IsPPC64, isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003183 // Allocate the frame index for frame pointer save area.
3184 RASI = MF.getFrameInfo()->CreateFixedObject(IsPPC64? 8 : 4, LROffset);
3185 // Save the result.
3186 FI->setReturnAddrSaveIndex(RASI);
3187 }
3188 return DAG.getFrameIndex(RASI, PtrVT);
3189}
3190
Dan Gohman475871a2008-07-27 21:46:04 +00003191SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003192PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
3193 MachineFunction &MF = DAG.getMachineFunction();
3194 bool IsPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003195 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00003196 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00003197
3198 // Get current frame pointer save index. The users of this index will be
3199 // primarily DYNALLOC instructions.
3200 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
3201 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003202
Jim Laskey2f616bf2006-11-16 22:43:37 +00003203 // If the frame pointer save index hasn't been defined yet.
3204 if (!FPSI) {
3205 // Find out what the fix offset of the frame pointer save area.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003206 int FPOffset = PPCFrameInfo::getFramePointerSaveOffset(IsPPC64,
3207 isDarwinABI);
Scott Michelfdc40a02009-02-17 22:15:04 +00003208
Jim Laskey2f616bf2006-11-16 22:43:37 +00003209 // Allocate the frame index for frame pointer save area.
Scott Michelfdc40a02009-02-17 22:15:04 +00003210 FPSI = MF.getFrameInfo()->CreateFixedObject(IsPPC64? 8 : 4, FPOffset);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003211 // Save the result.
Scott Michelfdc40a02009-02-17 22:15:04 +00003212 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003213 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003214 return DAG.getFrameIndex(FPSI, PtrVT);
3215}
Jim Laskey2f616bf2006-11-16 22:43:37 +00003216
Dan Gohman475871a2008-07-27 21:46:04 +00003217SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003218 SelectionDAG &DAG,
3219 const PPCSubtarget &Subtarget) {
Jim Laskey2f616bf2006-11-16 22:43:37 +00003220 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00003221 SDValue Chain = Op.getOperand(0);
3222 SDValue Size = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003223 DebugLoc dl = Op.getDebugLoc();
3224
Jim Laskey2f616bf2006-11-16 22:43:37 +00003225 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00003226 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00003227 // Negate the size.
Dale Johannesende064702009-02-06 21:50:26 +00003228 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey2f616bf2006-11-16 22:43:37 +00003229 DAG.getConstant(0, PtrVT), Size);
3230 // Construct a node for the frame pointer save index.
Dan Gohman475871a2008-07-27 21:46:04 +00003231 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003232 // Build a DYNALLOC node.
Dan Gohman475871a2008-07-27 21:46:04 +00003233 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson825b72b2009-08-11 20:47:22 +00003234 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Dale Johannesende064702009-02-06 21:50:26 +00003235 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops, 3);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003236}
3237
Chris Lattner1a635d62006-04-14 06:01:58 +00003238/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
3239/// possible.
Dan Gohman475871a2008-07-27 21:46:04 +00003240SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00003241 // Not FP? Not a fsel.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003242 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
3243 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedmanc06441e2009-05-28 04:31:08 +00003244 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00003245
Chris Lattner1a635d62006-04-14 06:01:58 +00003246 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003247
Chris Lattner1a635d62006-04-14 06:01:58 +00003248 // Cannot handle SETEQ/SETNE.
Eli Friedmanc06441e2009-05-28 04:31:08 +00003249 if (CC == ISD::SETEQ || CC == ISD::SETNE) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00003250
Owen Andersone50ed302009-08-10 22:56:29 +00003251 EVT ResVT = Op.getValueType();
3252 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003253 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
3254 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Dale Johannesende064702009-02-06 21:50:26 +00003255 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00003256
Chris Lattner1a635d62006-04-14 06:01:58 +00003257 // If the RHS of the comparison is a 0.0, we don't need to do the
3258 // subtraction at all.
3259 if (isFloatingPointZero(RHS))
3260 switch (CC) {
3261 default: break; // SETUO etc aren't handled by fsel.
3262 case ISD::SETULT:
3263 case ISD::SETLT:
3264 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00003265 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003266 case ISD::SETGE:
Owen Anderson825b72b2009-08-11 20:47:22 +00003267 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
3268 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00003269 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003270 case ISD::SETUGT:
3271 case ISD::SETGT:
3272 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00003273 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003274 case ISD::SETLE:
Owen Anderson825b72b2009-08-11 20:47:22 +00003275 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
3276 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00003277 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00003278 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003279 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003280
Dan Gohman475871a2008-07-27 21:46:04 +00003281 SDValue Cmp;
Chris Lattner1a635d62006-04-14 06:01:58 +00003282 switch (CC) {
3283 default: break; // SETUO etc aren't handled by fsel.
3284 case ISD::SETULT:
3285 case ISD::SETLT:
Dale Johannesende064702009-02-06 21:50:26 +00003286 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003287 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3288 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003289 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00003290 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003291 case ISD::SETGE:
Dale Johannesende064702009-02-06 21:50:26 +00003292 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003293 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3294 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003295 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003296 case ISD::SETUGT:
3297 case ISD::SETGT:
Dale Johannesende064702009-02-06 21:50:26 +00003298 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003299 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3300 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003301 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00003302 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003303 case ISD::SETLE:
Dale Johannesende064702009-02-06 21:50:26 +00003304 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003305 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3306 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003307 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003308 }
Eli Friedmanc06441e2009-05-28 04:31:08 +00003309 return Op;
Chris Lattner1a635d62006-04-14 06:01:58 +00003310}
3311
Chris Lattner1f873002007-11-28 18:44:47 +00003312// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen4c9369d2009-06-04 20:53:52 +00003313SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
Dale Johannesen3484c092009-02-05 22:07:54 +00003314 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003315 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman475871a2008-07-27 21:46:04 +00003316 SDValue Src = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00003317 if (Src.getValueType() == MVT::f32)
3318 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sandsa7360f02008-07-19 16:26:02 +00003319
Dan Gohman475871a2008-07-27 21:46:04 +00003320 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00003321 switch (Op.getValueType().getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003322 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson825b72b2009-08-11 20:47:22 +00003323 case MVT::i32:
Dale Johannesen4c9369d2009-06-04 20:53:52 +00003324 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ :
3325 PPCISD::FCTIDZ,
Owen Anderson825b72b2009-08-11 20:47:22 +00003326 dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00003327 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00003328 case MVT::i64:
3329 Tmp = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00003330 break;
3331 }
Duncan Sandsa7360f02008-07-19 16:26:02 +00003332
Chris Lattner1a635d62006-04-14 06:01:58 +00003333 // Convert the FP value to an int value through memory.
Owen Anderson825b72b2009-08-11 20:47:22 +00003334 SDValue FIPtr = DAG.CreateStackTemporary(MVT::f64);
Duncan Sandsa7360f02008-07-19 16:26:02 +00003335
Chris Lattner1de7c1d2007-10-15 20:14:52 +00003336 // Emit a store to the stack slot.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003337 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr, NULL, 0);
Chris Lattner1de7c1d2007-10-15 20:14:52 +00003338
3339 // Result is a load from the stack slot. If loading 4 bytes, make sure to
3340 // add in a bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00003341 if (Op.getValueType() == MVT::i32)
Dale Johannesen33c960f2009-02-04 20:06:27 +00003342 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner1de7c1d2007-10-15 20:14:52 +00003343 DAG.getConstant(4, FIPtr.getValueType()));
Dale Johannesen33c960f2009-02-04 20:06:27 +00003344 return DAG.getLoad(Op.getValueType(), dl, Chain, FIPtr, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00003345}
3346
Dan Gohman475871a2008-07-27 21:46:04 +00003347SDValue PPCTargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003348 DebugLoc dl = Op.getDebugLoc();
Dan Gohman034f60e2008-03-11 01:59:03 +00003349 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson825b72b2009-08-11 20:47:22 +00003350 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman475871a2008-07-27 21:46:04 +00003351 return SDValue();
Dan Gohman034f60e2008-03-11 01:59:03 +00003352
Owen Anderson825b72b2009-08-11 20:47:22 +00003353 if (Op.getOperand(0).getValueType() == MVT::i64) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003354 SDValue Bits = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003355 MVT::f64, Op.getOperand(0));
3356 SDValue FP = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Bits);
3357 if (Op.getValueType() == MVT::f32)
Scott Michelfdc40a02009-02-17 22:15:04 +00003358 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003359 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00003360 return FP;
3361 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003362
Owen Anderson825b72b2009-08-11 20:47:22 +00003363 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Chris Lattner1a635d62006-04-14 06:01:58 +00003364 "Unhandled SINT_TO_FP type in custom expander!");
3365 // Since we only generate this in 64-bit mode, we can take advantage of
3366 // 64-bit registers. In particular, sign extend the input value into the
3367 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
3368 // then lfd it and fcfid it.
3369 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3370 int FrameIdx = FrameInfo->CreateStackObject(8, 8);
Owen Andersone50ed302009-08-10 22:56:29 +00003371 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00003372 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003373
Owen Anderson825b72b2009-08-11 20:47:22 +00003374 SDValue Ext64 = DAG.getNode(PPCISD::EXTSW_32, dl, MVT::i32,
Chris Lattner1a635d62006-04-14 06:01:58 +00003375 Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00003376
Chris Lattner1a635d62006-04-14 06:01:58 +00003377 // STD the extended value into the stack slot.
Dan Gohmana54cf172008-07-11 22:44:52 +00003378 MachineMemOperand MO(PseudoSourceValue::getFixedStack(FrameIdx),
3379 MachineMemOperand::MOStore, 0, 8, 8);
Owen Anderson825b72b2009-08-11 20:47:22 +00003380 SDValue Store = DAG.getNode(PPCISD::STD_32, dl, MVT::Other,
Chris Lattner1a635d62006-04-14 06:01:58 +00003381 DAG.getEntryNode(), Ext64, FIdx,
Dan Gohman69de1932008-02-06 22:27:42 +00003382 DAG.getMemOperand(MO));
Chris Lattner1a635d62006-04-14 06:01:58 +00003383 // Load the value as a double.
Owen Anderson825b72b2009-08-11 20:47:22 +00003384 SDValue Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx, NULL, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003385
Chris Lattner1a635d62006-04-14 06:01:58 +00003386 // FCFID it and return it.
Owen Anderson825b72b2009-08-11 20:47:22 +00003387 SDValue FP = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Ld);
3388 if (Op.getValueType() == MVT::f32)
3389 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00003390 return FP;
3391}
3392
Dan Gohman475871a2008-07-27 21:46:04 +00003393SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003394 DebugLoc dl = Op.getDebugLoc();
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003395 /*
3396 The rounding mode is in bits 30:31 of FPSR, and has the following
3397 settings:
3398 00 Round to nearest
3399 01 Round to 0
3400 10 Round to +inf
3401 11 Round to -inf
3402
3403 FLT_ROUNDS, on the other hand, expects the following:
3404 -1 Undefined
3405 0 Round to 0
3406 1 Round to nearest
3407 2 Round to +inf
3408 3 Round to -inf
3409
3410 To perform the conversion, we do:
3411 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
3412 */
3413
3414 MachineFunction &MF = DAG.getMachineFunction();
Owen Andersone50ed302009-08-10 22:56:29 +00003415 EVT VT = Op.getValueType();
3416 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3417 std::vector<EVT> NodeTys;
Dan Gohman475871a2008-07-27 21:46:04 +00003418 SDValue MFFSreg, InFlag;
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003419
3420 // Save FP Control Word to register
Owen Anderson825b72b2009-08-11 20:47:22 +00003421 NodeTys.push_back(MVT::f64); // return register
3422 NodeTys.push_back(MVT::Flag); // unused in this context
Dale Johannesen33c960f2009-02-04 20:06:27 +00003423 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003424
3425 // Save FP register to stack slot
3426 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman475871a2008-07-27 21:46:04 +00003427 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003428 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003429 StackSlot, NULL, 0);
3430
3431 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00003432 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003433 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Owen Anderson825b72b2009-08-11 20:47:22 +00003434 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, NULL, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003435
3436 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00003437 SDValue CWD1 =
Owen Anderson825b72b2009-08-11 20:47:22 +00003438 DAG.getNode(ISD::AND, dl, MVT::i32,
3439 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman475871a2008-07-27 21:46:04 +00003440 SDValue CWD2 =
Owen Anderson825b72b2009-08-11 20:47:22 +00003441 DAG.getNode(ISD::SRL, dl, MVT::i32,
3442 DAG.getNode(ISD::AND, dl, MVT::i32,
3443 DAG.getNode(ISD::XOR, dl, MVT::i32,
3444 CWD, DAG.getConstant(3, MVT::i32)),
3445 DAG.getConstant(3, MVT::i32)),
3446 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003447
Dan Gohman475871a2008-07-27 21:46:04 +00003448 SDValue RetVal =
Owen Anderson825b72b2009-08-11 20:47:22 +00003449 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003450
Duncan Sands83ec4b62008-06-06 12:08:01 +00003451 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen33c960f2009-02-04 20:06:27 +00003452 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003453}
3454
Dan Gohman475871a2008-07-27 21:46:04 +00003455SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003456 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003457 unsigned BitWidth = VT.getSizeInBits();
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003458 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9ed06db2008-03-07 20:36:53 +00003459 assert(Op.getNumOperands() == 3 &&
3460 VT == Op.getOperand(1).getValueType() &&
3461 "Unexpected SHL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003462
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00003463 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00003464 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00003465 SDValue Lo = Op.getOperand(0);
3466 SDValue Hi = Op.getOperand(1);
3467 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00003468 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003469
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003470 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003471 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003472 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
3473 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
3474 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
3475 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003476 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003477 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
3478 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
3479 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00003480 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003481 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00003482}
3483
Dan Gohman475871a2008-07-27 21:46:04 +00003484SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003485 EVT VT = Op.getValueType();
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003486 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003487 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00003488 assert(Op.getNumOperands() == 3 &&
3489 VT == Op.getOperand(1).getValueType() &&
3490 "Unexpected SRL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003491
Dan Gohman9ed06db2008-03-07 20:36:53 +00003492 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00003493 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00003494 SDValue Lo = Op.getOperand(0);
3495 SDValue Hi = Op.getOperand(1);
3496 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00003497 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003498
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003499 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003500 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003501 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
3502 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
3503 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
3504 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003505 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003506 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
3507 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
3508 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00003509 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003510 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00003511}
3512
Dan Gohman475871a2008-07-27 21:46:04 +00003513SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003514 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00003515 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003516 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00003517 assert(Op.getNumOperands() == 3 &&
3518 VT == Op.getOperand(1).getValueType() &&
3519 "Unexpected SRA!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003520
Dan Gohman9ed06db2008-03-07 20:36:53 +00003521 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman475871a2008-07-27 21:46:04 +00003522 SDValue Lo = Op.getOperand(0);
3523 SDValue Hi = Op.getOperand(1);
3524 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00003525 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003526
Dale Johannesenf5d97892009-02-04 01:48:28 +00003527 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003528 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf5d97892009-02-04 01:48:28 +00003529 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
3530 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
3531 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
3532 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003533 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00003534 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
3535 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
3536 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003537 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman475871a2008-07-27 21:46:04 +00003538 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003539 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00003540}
3541
3542//===----------------------------------------------------------------------===//
3543// Vector related lowering.
3544//
3545
Chris Lattner4a998b92006-04-17 06:00:21 +00003546/// BuildSplatI - Build a canonical splati of Val with an element size of
3547/// SplatSize. Cast the result to VT.
Owen Andersone50ed302009-08-10 22:56:29 +00003548static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Dale Johannesened2eee62009-02-06 01:31:28 +00003549 SelectionDAG &DAG, DebugLoc dl) {
Chris Lattner4a998b92006-04-17 06:00:21 +00003550 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner70fa4932006-12-01 01:45:39 +00003551
Owen Andersone50ed302009-08-10 22:56:29 +00003552 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson825b72b2009-08-11 20:47:22 +00003553 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner4a998b92006-04-17 06:00:21 +00003554 };
Chris Lattner70fa4932006-12-01 01:45:39 +00003555
Owen Anderson825b72b2009-08-11 20:47:22 +00003556 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00003557
Chris Lattner70fa4932006-12-01 01:45:39 +00003558 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
3559 if (Val == -1)
3560 SplatSize = 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00003561
Owen Andersone50ed302009-08-10 22:56:29 +00003562 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00003563
Chris Lattner4a998b92006-04-17 06:00:21 +00003564 // Build a canonical splat for this value.
Owen Anderson825b72b2009-08-11 20:47:22 +00003565 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003566 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003567 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Evan Chenga87008d2009-02-25 22:49:59 +00003568 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT,
3569 &Ops[0], Ops.size());
Dale Johannesened2eee62009-02-06 01:31:28 +00003570 return DAG.getNode(ISD::BIT_CONVERT, dl, ReqVT, Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00003571}
3572
Chris Lattnere7c768e2006-04-18 03:24:30 +00003573/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner6876e662006-04-17 06:58:41 +00003574/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00003575static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Dale Johannesened2eee62009-02-06 01:31:28 +00003576 SelectionDAG &DAG, DebugLoc dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003577 EVT DestVT = MVT::Other) {
3578 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00003579 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00003580 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner6876e662006-04-17 06:58:41 +00003581}
3582
Chris Lattnere7c768e2006-04-18 03:24:30 +00003583/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
3584/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00003585static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesened2eee62009-02-06 01:31:28 +00003586 SDValue Op2, SelectionDAG &DAG,
Owen Anderson825b72b2009-08-11 20:47:22 +00003587 DebugLoc dl, EVT DestVT = MVT::Other) {
3588 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00003589 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00003590 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnere7c768e2006-04-18 03:24:30 +00003591}
3592
3593
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003594/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
3595/// amount. The result has the specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00003596static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Owen Andersone50ed302009-08-10 22:56:29 +00003597 EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003598 // Force LHS/RHS to be the right type.
Owen Anderson825b72b2009-08-11 20:47:22 +00003599 LHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, LHS);
3600 RHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, RHS);
Duncan Sandsd038e042008-07-21 10:20:31 +00003601
Nate Begeman9008ca62009-04-27 18:41:29 +00003602 int Ops[16];
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003603 for (unsigned i = 0; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003604 Ops[i] = i + Amt;
Owen Anderson825b72b2009-08-11 20:47:22 +00003605 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Dale Johannesened2eee62009-02-06 01:31:28 +00003606 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, T);
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003607}
3608
Chris Lattnerf1b47082006-04-14 05:19:18 +00003609// If this is a case we can't handle, return null and let the default
3610// expansion code take care of it. If we CAN select this case, and if it
3611// selects to a single instruction, return Op. Otherwise, if we can codegen
3612// this case more efficiently than a constant pool load, lower it to the
3613// sequence of ops that should be used.
Bob Wilsona27ea9e2009-03-01 01:13:55 +00003614SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesened2eee62009-02-06 01:31:28 +00003615 DebugLoc dl = Op.getDebugLoc();
Bob Wilsona27ea9e2009-03-01 01:13:55 +00003616 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
3617 assert(BVN != 0 && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Micheldf380432009-02-25 03:12:50 +00003618
Bob Wilson24e338e2009-03-02 23:24:16 +00003619 // Check if this is a splat of a constant value.
3620 APInt APSplatBits, APSplatUndef;
3621 unsigned SplatBitSize;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00003622 bool HasAnyUndefs;
Bob Wilsonf2950b02009-03-03 19:26:27 +00003623 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
3624 HasAnyUndefs) || SplatBitSize > 32)
3625 return SDValue();
Evan Chenga87008d2009-02-25 22:49:59 +00003626
Bob Wilsonf2950b02009-03-03 19:26:27 +00003627 unsigned SplatBits = APSplatBits.getZExtValue();
3628 unsigned SplatUndef = APSplatUndef.getZExtValue();
3629 unsigned SplatSize = SplatBitSize / 8;
Scott Michelfdc40a02009-02-17 22:15:04 +00003630
Bob Wilsonf2950b02009-03-03 19:26:27 +00003631 // First, handle single instruction cases.
3632
3633 // All zeros?
3634 if (SplatBits == 0) {
3635 // Canonicalize all zero vectors to be v4i32.
Owen Anderson825b72b2009-08-11 20:47:22 +00003636 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
3637 SDValue Z = DAG.getConstant(0, MVT::i32);
3638 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003639 Op = DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Z);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003640 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00003641 return Op;
3642 }
Chris Lattnerb17f1672006-04-16 01:01:29 +00003643
Bob Wilsonf2950b02009-03-03 19:26:27 +00003644 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
3645 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
3646 (32-SplatBitSize));
3647 if (SextVal >= -16 && SextVal <= 15)
3648 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003649
3650
Bob Wilsonf2950b02009-03-03 19:26:27 +00003651 // Two instruction sequences.
Scott Michelfdc40a02009-02-17 22:15:04 +00003652
Bob Wilsonf2950b02009-03-03 19:26:27 +00003653 // If this value is in the range [-32,30] and is even, use:
3654 // tmp = VSPLTI[bhw], result = add tmp, tmp
3655 if (SextVal >= -32 && SextVal <= 30 && (SextVal & 1) == 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003656 SDValue Res = BuildSplatI(SextVal >> 1, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003657 Res = DAG.getNode(ISD::ADD, dl, Res.getValueType(), Res, Res);
3658 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
3659 }
3660
3661 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
3662 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
3663 // for fneg/fabs.
3664 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
3665 // Make -1 and vspltisw -1:
Owen Anderson825b72b2009-08-11 20:47:22 +00003666 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003667
3668 // Make the VSLW intrinsic, computing 0x8000_0000.
3669 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
3670 OnesV, DAG, dl);
3671
3672 // xor by OnesV to invert it.
Owen Anderson825b72b2009-08-11 20:47:22 +00003673 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003674 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
3675 }
3676
3677 // Check to see if this is a wide variety of vsplti*, binop self cases.
3678 static const signed char SplatCsts[] = {
3679 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
3680 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
3681 };
3682
3683 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
3684 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
3685 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
3686 int i = SplatCsts[idx];
3687
3688 // Figure out what shift amount will be used by altivec if shifted by i in
3689 // this splat size.
3690 unsigned TypeShiftAmt = i & (SplatBitSize-1);
3691
3692 // vsplti + shl self.
3693 if (SextVal == (i << (int)TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003694 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003695 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3696 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
3697 Intrinsic::ppc_altivec_vslw
3698 };
3699 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Dale Johannesened2eee62009-02-06 01:31:28 +00003700 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00003701 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003702
Bob Wilsonf2950b02009-03-03 19:26:27 +00003703 // vsplti + srl self.
3704 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003705 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003706 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3707 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
3708 Intrinsic::ppc_altivec_vsrw
3709 };
3710 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Dale Johannesened2eee62009-02-06 01:31:28 +00003711 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00003712 }
3713
Bob Wilsonf2950b02009-03-03 19:26:27 +00003714 // vsplti + sra self.
3715 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003716 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003717 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3718 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
3719 Intrinsic::ppc_altivec_vsraw
3720 };
3721 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
3722 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00003723 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003724
Bob Wilsonf2950b02009-03-03 19:26:27 +00003725 // vsplti + rol self.
3726 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
3727 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003728 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003729 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3730 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
3731 Intrinsic::ppc_altivec_vrlw
3732 };
3733 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
3734 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
3735 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003736
Bob Wilsonf2950b02009-03-03 19:26:27 +00003737 // t = vsplti c, result = vsldoi t, t, 1
3738 if (SextVal == ((i << 8) | (i >> (TypeShiftAmt-8)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003739 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003740 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnerdbce85d2006-04-17 18:09:22 +00003741 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00003742 // t = vsplti c, result = vsldoi t, t, 2
3743 if (SextVal == ((i << 16) | (i >> (TypeShiftAmt-16)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003744 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003745 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003746 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00003747 // t = vsplti c, result = vsldoi t, t, 3
3748 if (SextVal == ((i << 24) | (i >> (TypeShiftAmt-24)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003749 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003750 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
3751 }
3752 }
3753
3754 // Three instruction sequences.
3755
3756 // Odd, in range [17,31]: (vsplti C)-(vsplti -16).
3757 if (SextVal >= 0 && SextVal <= 31) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003758 SDValue LHS = BuildSplatI(SextVal-16, SplatSize, MVT::Other, DAG, dl);
3759 SDValue RHS = BuildSplatI(-16, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003760 LHS = DAG.getNode(ISD::SUB, dl, LHS.getValueType(), LHS, RHS);
3761 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), LHS);
3762 }
3763 // Odd, in range [-31,-17]: (vsplti C)+(vsplti -16).
3764 if (SextVal >= -31 && SextVal <= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003765 SDValue LHS = BuildSplatI(SextVal+16, SplatSize, MVT::Other, DAG, dl);
3766 SDValue RHS = BuildSplatI(-16, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003767 LHS = DAG.getNode(ISD::ADD, dl, LHS.getValueType(), LHS, RHS);
3768 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), LHS);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003769 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003770
Dan Gohman475871a2008-07-27 21:46:04 +00003771 return SDValue();
Chris Lattnerf1b47082006-04-14 05:19:18 +00003772}
3773
Chris Lattner59138102006-04-17 05:28:54 +00003774/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
3775/// the specified operations to build the shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00003776static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00003777 SDValue RHS, SelectionDAG &DAG,
Dale Johannesened2eee62009-02-06 01:31:28 +00003778 DebugLoc dl) {
Chris Lattner59138102006-04-17 05:28:54 +00003779 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling77959322008-09-17 00:30:57 +00003780 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner59138102006-04-17 05:28:54 +00003781 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003782
Chris Lattner59138102006-04-17 05:28:54 +00003783 enum {
Chris Lattner00402c72006-05-16 04:20:24 +00003784 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 +00003785 OP_VMRGHW,
3786 OP_VMRGLW,
3787 OP_VSPLTISW0,
3788 OP_VSPLTISW1,
3789 OP_VSPLTISW2,
3790 OP_VSPLTISW3,
3791 OP_VSLDOI4,
3792 OP_VSLDOI8,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00003793 OP_VSLDOI12
Chris Lattner59138102006-04-17 05:28:54 +00003794 };
Scott Michelfdc40a02009-02-17 22:15:04 +00003795
Chris Lattner59138102006-04-17 05:28:54 +00003796 if (OpNum == OP_COPY) {
3797 if (LHSID == (1*9+2)*9+3) return LHS;
3798 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
3799 return RHS;
3800 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003801
Dan Gohman475871a2008-07-27 21:46:04 +00003802 SDValue OpLHS, OpRHS;
Dale Johannesened2eee62009-02-06 01:31:28 +00003803 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
3804 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003805
Nate Begeman9008ca62009-04-27 18:41:29 +00003806 int ShufIdxs[16];
Chris Lattner59138102006-04-17 05:28:54 +00003807 switch (OpNum) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003808 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner59138102006-04-17 05:28:54 +00003809 case OP_VMRGHW:
3810 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
3811 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
3812 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
3813 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
3814 break;
3815 case OP_VMRGLW:
3816 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
3817 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
3818 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
3819 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
3820 break;
3821 case OP_VSPLTISW0:
3822 for (unsigned i = 0; i != 16; ++i)
3823 ShufIdxs[i] = (i&3)+0;
3824 break;
3825 case OP_VSPLTISW1:
3826 for (unsigned i = 0; i != 16; ++i)
3827 ShufIdxs[i] = (i&3)+4;
3828 break;
3829 case OP_VSPLTISW2:
3830 for (unsigned i = 0; i != 16; ++i)
3831 ShufIdxs[i] = (i&3)+8;
3832 break;
3833 case OP_VSPLTISW3:
3834 for (unsigned i = 0; i != 16; ++i)
3835 ShufIdxs[i] = (i&3)+12;
3836 break;
3837 case OP_VSLDOI4:
Dale Johannesened2eee62009-02-06 01:31:28 +00003838 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003839 case OP_VSLDOI8:
Dale Johannesened2eee62009-02-06 01:31:28 +00003840 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003841 case OP_VSLDOI12:
Dale Johannesened2eee62009-02-06 01:31:28 +00003842 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003843 }
Owen Andersone50ed302009-08-10 22:56:29 +00003844 EVT VT = OpLHS.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00003845 OpLHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, OpLHS);
3846 OpRHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, OpRHS);
3847 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Nate Begeman9008ca62009-04-27 18:41:29 +00003848 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, T);
Chris Lattner59138102006-04-17 05:28:54 +00003849}
3850
Chris Lattnerf1b47082006-04-14 05:19:18 +00003851/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
3852/// is a shuffle we can handle in a single instruction, return it. Otherwise,
3853/// return the code it can be lowered into. Worst case, it can always be
3854/// lowered into a vperm.
Scott Michelfdc40a02009-02-17 22:15:04 +00003855SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Nate Begeman9008ca62009-04-27 18:41:29 +00003856 SelectionDAG &DAG) {
Dale Johannesened2eee62009-02-06 01:31:28 +00003857 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003858 SDValue V1 = Op.getOperand(0);
3859 SDValue V2 = Op.getOperand(1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003860 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Andersone50ed302009-08-10 22:56:29 +00003861 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003862
Chris Lattnerf1b47082006-04-14 05:19:18 +00003863 // Cases that are handled by instructions that take permute immediates
3864 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
3865 // selected by the instruction selector.
3866 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003867 if (PPC::isSplatShuffleMask(SVOp, 1) ||
3868 PPC::isSplatShuffleMask(SVOp, 2) ||
3869 PPC::isSplatShuffleMask(SVOp, 4) ||
3870 PPC::isVPKUWUMShuffleMask(SVOp, true) ||
3871 PPC::isVPKUHUMShuffleMask(SVOp, true) ||
3872 PPC::isVSLDOIShuffleMask(SVOp, true) != -1 ||
3873 PPC::isVMRGLShuffleMask(SVOp, 1, true) ||
3874 PPC::isVMRGLShuffleMask(SVOp, 2, true) ||
3875 PPC::isVMRGLShuffleMask(SVOp, 4, true) ||
3876 PPC::isVMRGHShuffleMask(SVOp, 1, true) ||
3877 PPC::isVMRGHShuffleMask(SVOp, 2, true) ||
3878 PPC::isVMRGHShuffleMask(SVOp, 4, true)) {
Chris Lattnerf1b47082006-04-14 05:19:18 +00003879 return Op;
3880 }
3881 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003882
Chris Lattnerf1b47082006-04-14 05:19:18 +00003883 // Altivec has a variety of "shuffle immediates" that take two vector inputs
3884 // and produce a fixed permutation. If any of these match, do not lower to
3885 // VPERM.
Nate Begeman9008ca62009-04-27 18:41:29 +00003886 if (PPC::isVPKUWUMShuffleMask(SVOp, false) ||
3887 PPC::isVPKUHUMShuffleMask(SVOp, false) ||
3888 PPC::isVSLDOIShuffleMask(SVOp, false) != -1 ||
3889 PPC::isVMRGLShuffleMask(SVOp, 1, false) ||
3890 PPC::isVMRGLShuffleMask(SVOp, 2, false) ||
3891 PPC::isVMRGLShuffleMask(SVOp, 4, false) ||
3892 PPC::isVMRGHShuffleMask(SVOp, 1, false) ||
3893 PPC::isVMRGHShuffleMask(SVOp, 2, false) ||
3894 PPC::isVMRGHShuffleMask(SVOp, 4, false))
Chris Lattnerf1b47082006-04-14 05:19:18 +00003895 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00003896
Chris Lattner59138102006-04-17 05:28:54 +00003897 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
3898 // perfect shuffle table to emit an optimal matching sequence.
Nate Begeman9008ca62009-04-27 18:41:29 +00003899 SmallVector<int, 16> PermMask;
3900 SVOp->getMask(PermMask);
3901
Chris Lattner59138102006-04-17 05:28:54 +00003902 unsigned PFIndexes[4];
3903 bool isFourElementShuffle = true;
3904 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
3905 unsigned EltNo = 8; // Start out undef.
3906 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman9008ca62009-04-27 18:41:29 +00003907 if (PermMask[i*4+j] < 0)
Chris Lattner59138102006-04-17 05:28:54 +00003908 continue; // Undef, ignore it.
Scott Michelfdc40a02009-02-17 22:15:04 +00003909
Nate Begeman9008ca62009-04-27 18:41:29 +00003910 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner59138102006-04-17 05:28:54 +00003911 if ((ByteSource & 3) != j) {
3912 isFourElementShuffle = false;
3913 break;
3914 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003915
Chris Lattner59138102006-04-17 05:28:54 +00003916 if (EltNo == 8) {
3917 EltNo = ByteSource/4;
3918 } else if (EltNo != ByteSource/4) {
3919 isFourElementShuffle = false;
3920 break;
3921 }
3922 }
3923 PFIndexes[i] = EltNo;
3924 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003925
3926 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner59138102006-04-17 05:28:54 +00003927 // perfect shuffle vector to determine if it is cost effective to do this as
3928 // discrete instructions, or whether we should use a vperm.
3929 if (isFourElementShuffle) {
3930 // Compute the index in the perfect shuffle table.
Scott Michelfdc40a02009-02-17 22:15:04 +00003931 unsigned PFTableIndex =
Chris Lattner59138102006-04-17 05:28:54 +00003932 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelfdc40a02009-02-17 22:15:04 +00003933
Chris Lattner59138102006-04-17 05:28:54 +00003934 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
3935 unsigned Cost = (PFEntry >> 30);
Scott Michelfdc40a02009-02-17 22:15:04 +00003936
Chris Lattner59138102006-04-17 05:28:54 +00003937 // Determining when to avoid vperm is tricky. Many things affect the cost
3938 // of vperm, particularly how many times the perm mask needs to be computed.
3939 // For example, if the perm mask can be hoisted out of a loop or is already
3940 // used (perhaps because there are multiple permutes with the same shuffle
3941 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
3942 // the loop requires an extra register.
3943 //
3944 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelfdc40a02009-02-17 22:15:04 +00003945 // generated in 3 or fewer operations. When we have loop information
Chris Lattner59138102006-04-17 05:28:54 +00003946 // available, if this block is within a loop, we should avoid using vperm
3947 // for 3-operation perms and use a constant pool load instead.
Scott Michelfdc40a02009-02-17 22:15:04 +00003948 if (Cost < 3)
Dale Johannesened2eee62009-02-06 01:31:28 +00003949 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003950 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003951
Chris Lattnerf1b47082006-04-14 05:19:18 +00003952 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
3953 // vector that will get spilled to the constant pool.
3954 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelfdc40a02009-02-17 22:15:04 +00003955
Chris Lattnerf1b47082006-04-14 05:19:18 +00003956 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
3957 // that it is in input element units, not in bytes. Convert now.
Owen Andersone50ed302009-08-10 22:56:29 +00003958 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003959 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelfdc40a02009-02-17 22:15:04 +00003960
Dan Gohman475871a2008-07-27 21:46:04 +00003961 SmallVector<SDValue, 16> ResultMask;
Nate Begeman9008ca62009-04-27 18:41:29 +00003962 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
3963 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00003964
Chris Lattnerf1b47082006-04-14 05:19:18 +00003965 for (unsigned j = 0; j != BytesPerElement; ++j)
3966 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
Owen Anderson825b72b2009-08-11 20:47:22 +00003967 MVT::i32));
Chris Lattnerf1b47082006-04-14 05:19:18 +00003968 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003969
Owen Anderson825b72b2009-08-11 20:47:22 +00003970 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Evan Chenga87008d2009-02-25 22:49:59 +00003971 &ResultMask[0], ResultMask.size());
Dale Johannesened2eee62009-02-06 01:31:28 +00003972 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), V1, V2, VPermMask);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003973}
3974
Chris Lattner90564f22006-04-18 17:59:36 +00003975/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
3976/// altivec comparison. If it is, return true and fill in Opc/isDot with
3977/// information about the intrinsic.
Dan Gohman475871a2008-07-27 21:46:04 +00003978static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner90564f22006-04-18 17:59:36 +00003979 bool &isDot) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003980 unsigned IntrinsicID =
3981 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00003982 CompareOpc = -1;
3983 isDot = false;
3984 switch (IntrinsicID) {
3985 default: return false;
3986 // Comparison predicates.
Chris Lattner1a635d62006-04-14 06:01:58 +00003987 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
3988 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
3989 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
3990 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
3991 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
3992 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
3993 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
3994 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
3995 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
3996 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
3997 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
3998 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
3999 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004000
Chris Lattner1a635d62006-04-14 06:01:58 +00004001 // Normal Comparisons.
4002 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
4003 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
4004 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
4005 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
4006 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
4007 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
4008 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
4009 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
4010 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
4011 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
4012 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
4013 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
4014 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
4015 }
Chris Lattner90564f22006-04-18 17:59:36 +00004016 return true;
4017}
4018
4019/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
4020/// lower, do it, otherwise return null.
Scott Michelfdc40a02009-02-17 22:15:04 +00004021SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004022 SelectionDAG &DAG) {
Chris Lattner90564f22006-04-18 17:59:36 +00004023 // If this is a lowered altivec predicate compare, CompareOpc is set to the
4024 // opcode number of the comparison.
Dale Johannesen3484c092009-02-05 22:07:54 +00004025 DebugLoc dl = Op.getDebugLoc();
Chris Lattner90564f22006-04-18 17:59:36 +00004026 int CompareOpc;
4027 bool isDot;
4028 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman475871a2008-07-27 21:46:04 +00004029 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelfdc40a02009-02-17 22:15:04 +00004030
Chris Lattner90564f22006-04-18 17:59:36 +00004031 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner1a635d62006-04-14 06:01:58 +00004032 if (!isDot) {
Dale Johannesen3484c092009-02-05 22:07:54 +00004033 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner1a635d62006-04-14 06:01:58 +00004034 Op.getOperand(1), Op.getOperand(2),
Owen Anderson825b72b2009-08-11 20:47:22 +00004035 DAG.getConstant(CompareOpc, MVT::i32));
Dale Johannesen3484c092009-02-05 22:07:54 +00004036 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Tmp);
Chris Lattner1a635d62006-04-14 06:01:58 +00004037 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004038
Chris Lattner1a635d62006-04-14 06:01:58 +00004039 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman475871a2008-07-27 21:46:04 +00004040 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00004041 Op.getOperand(2), // LHS
4042 Op.getOperand(3), // RHS
Owen Anderson825b72b2009-08-11 20:47:22 +00004043 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00004044 };
Owen Andersone50ed302009-08-10 22:56:29 +00004045 std::vector<EVT> VTs;
Chris Lattner1a635d62006-04-14 06:01:58 +00004046 VTs.push_back(Op.getOperand(2).getValueType());
Owen Anderson825b72b2009-08-11 20:47:22 +00004047 VTs.push_back(MVT::Flag);
Dale Johannesen3484c092009-02-05 22:07:54 +00004048 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00004049
Chris Lattner1a635d62006-04-14 06:01:58 +00004050 // Now that we have the comparison, emit a copy from the CR to a GPR.
4051 // This is flagged to the above dot comparison.
Owen Anderson825b72b2009-08-11 20:47:22 +00004052 SDValue Flags = DAG.getNode(PPCISD::MFCR, dl, MVT::i32,
4053 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelfdc40a02009-02-17 22:15:04 +00004054 CompNode.getValue(1));
4055
Chris Lattner1a635d62006-04-14 06:01:58 +00004056 // Unpack the result based on how the target uses it.
4057 unsigned BitNo; // Bit # of CR6.
4058 bool InvertBit; // Invert result?
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004059 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner1a635d62006-04-14 06:01:58 +00004060 default: // Can't happen, don't crash on invalid number though.
4061 case 0: // Return the value of the EQ bit of CR6.
4062 BitNo = 0; InvertBit = false;
4063 break;
4064 case 1: // Return the inverted value of the EQ bit of CR6.
4065 BitNo = 0; InvertBit = true;
4066 break;
4067 case 2: // Return the value of the LT bit of CR6.
4068 BitNo = 2; InvertBit = false;
4069 break;
4070 case 3: // Return the inverted value of the LT bit of CR6.
4071 BitNo = 2; InvertBit = true;
4072 break;
4073 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004074
Chris Lattner1a635d62006-04-14 06:01:58 +00004075 // Shift the bit into the low position.
Owen Anderson825b72b2009-08-11 20:47:22 +00004076 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
4077 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00004078 // Isolate the bit.
Owen Anderson825b72b2009-08-11 20:47:22 +00004079 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
4080 DAG.getConstant(1, MVT::i32));
Scott Michelfdc40a02009-02-17 22:15:04 +00004081
Chris Lattner1a635d62006-04-14 06:01:58 +00004082 // If we are supposed to, toggle the bit.
4083 if (InvertBit)
Owen Anderson825b72b2009-08-11 20:47:22 +00004084 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
4085 DAG.getConstant(1, MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00004086 return Flags;
4087}
4088
Scott Michelfdc40a02009-02-17 22:15:04 +00004089SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004090 SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004091 DebugLoc dl = Op.getDebugLoc();
Chris Lattner1a635d62006-04-14 06:01:58 +00004092 // Create a stack slot that is 16-byte aligned.
4093 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
4094 int FrameIdx = FrameInfo->CreateStackObject(16, 16);
Owen Andersone50ed302009-08-10 22:56:29 +00004095 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00004096 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004097
Chris Lattner1a635d62006-04-14 06:01:58 +00004098 // Store the input value into Value#0 of the stack slot.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004099 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004100 Op.getOperand(0), FIdx, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00004101 // Load it out.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004102 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00004103}
4104
Dan Gohman475871a2008-07-27 21:46:04 +00004105SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) {
Dale Johannesened2eee62009-02-06 01:31:28 +00004106 DebugLoc dl = Op.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00004107 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman475871a2008-07-27 21:46:04 +00004108 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004109
Owen Anderson825b72b2009-08-11 20:47:22 +00004110 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
4111 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelfdc40a02009-02-17 22:15:04 +00004112
Dan Gohman475871a2008-07-27 21:46:04 +00004113 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesened2eee62009-02-06 01:31:28 +00004114 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00004115
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004116 // Shrinkify inputs to v8i16.
Owen Anderson825b72b2009-08-11 20:47:22 +00004117 LHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, LHS);
4118 RHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, RHS);
4119 RHSSwap = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, RHSSwap);
Scott Michelfdc40a02009-02-17 22:15:04 +00004120
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004121 // Low parts multiplied together, generating 32-bit results (we ignore the
4122 // top parts).
Dan Gohman475871a2008-07-27 21:46:04 +00004123 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson825b72b2009-08-11 20:47:22 +00004124 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00004125
Dan Gohman475871a2008-07-27 21:46:04 +00004126 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson825b72b2009-08-11 20:47:22 +00004127 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004128 // Shift the high parts up 16 bits.
Scott Michelfdc40a02009-02-17 22:15:04 +00004129 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesened2eee62009-02-06 01:31:28 +00004130 Neg16, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00004131 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
4132 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004133 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004134
Owen Anderson825b72b2009-08-11 20:47:22 +00004135 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004136
Chris Lattnercea2aa72006-04-18 04:28:57 +00004137 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesened2eee62009-02-06 01:31:28 +00004138 LHS, RHS, Zero, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00004139 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004140 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004141
Chris Lattner19a81522006-04-18 03:57:35 +00004142 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00004143 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson825b72b2009-08-11 20:47:22 +00004144 LHS, RHS, DAG, dl, MVT::v8i16);
4145 EvenParts = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, EvenParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00004146
Chris Lattner19a81522006-04-18 03:57:35 +00004147 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00004148 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson825b72b2009-08-11 20:47:22 +00004149 LHS, RHS, DAG, dl, MVT::v8i16);
4150 OddParts = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, OddParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00004151
Chris Lattner19a81522006-04-18 03:57:35 +00004152 // Merge the results together.
Nate Begeman9008ca62009-04-27 18:41:29 +00004153 int Ops[16];
Chris Lattner19a81522006-04-18 03:57:35 +00004154 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004155 Ops[i*2 ] = 2*i+1;
4156 Ops[i*2+1] = 2*i+1+16;
Chris Lattner19a81522006-04-18 03:57:35 +00004157 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004158 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004159 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00004160 llvm_unreachable("Unknown mul to lower!");
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004161 }
Chris Lattnere7c768e2006-04-18 03:24:30 +00004162}
4163
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00004164/// LowerOperation - Provide custom lowering hooks for some operations.
4165///
Dan Gohman475871a2008-07-27 21:46:04 +00004166SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00004167 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004168 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner1a635d62006-04-14 06:01:58 +00004169 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
4170 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +00004171 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman37efe672006-04-22 18:53:45 +00004172 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00004173 case ISD::SETCC: return LowerSETCC(Op, DAG);
Bill Wendling77959322008-09-17 00:30:57 +00004174 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004175 case ISD::VASTART:
Nicolas Geoffray01119992007-04-03 13:59:52 +00004176 return LowerVASTART(Op, DAG, VarArgsFrameIndex, VarArgsStackOffset,
4177 VarArgsNumGPR, VarArgsNumFPR, PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00004178
4179 case ISD::VAARG:
Nicolas Geoffray01119992007-04-03 13:59:52 +00004180 return LowerVAARG(Op, DAG, VarArgsFrameIndex, VarArgsStackOffset,
4181 VarArgsNumGPR, VarArgsNumFPR, PPCSubTarget);
4182
Jim Laskeyefc7e522006-12-04 22:04:42 +00004183 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, PPCSubTarget);
Chris Lattner9f0bc652007-02-25 05:34:32 +00004184 case ISD::DYNAMIC_STACKALLOC:
4185 return LowerDYNAMIC_STACKALLOC(Op, DAG, PPCSubTarget);
Evan Cheng54fc97d2008-04-19 01:30:48 +00004186
Chris Lattner1a635d62006-04-14 06:01:58 +00004187 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004188 case ISD::FP_TO_UINT:
4189 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Dale Johannesen3484c092009-02-05 22:07:54 +00004190 Op.getDebugLoc());
Chris Lattner1a635d62006-04-14 06:01:58 +00004191 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00004192 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004193
Chris Lattner1a635d62006-04-14 06:01:58 +00004194 // Lower 64-bit shifts.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00004195 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
4196 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
4197 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004198
Chris Lattner1a635d62006-04-14 06:01:58 +00004199 // Vector-related lowering.
4200 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
4201 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
4202 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
4203 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Chris Lattnere7c768e2006-04-18 03:24:30 +00004204 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004205
Chris Lattner3fc027d2007-12-08 06:59:59 +00004206 // Frame & Return address.
4207 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00004208 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnerbc11c342005-08-31 20:23:54 +00004209 }
Dan Gohman475871a2008-07-27 21:46:04 +00004210 return SDValue();
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00004211}
4212
Duncan Sands1607f052008-12-01 11:39:25 +00004213void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
4214 SmallVectorImpl<SDValue>&Results,
4215 SelectionDAG &DAG) {
Dale Johannesen3484c092009-02-05 22:07:54 +00004216 DebugLoc dl = N->getDebugLoc();
Chris Lattner1f873002007-11-28 18:44:47 +00004217 switch (N->getOpcode()) {
Duncan Sands57760d92008-10-28 15:00:32 +00004218 default:
Duncan Sands1607f052008-12-01 11:39:25 +00004219 assert(false && "Do not know how to custom type legalize this operation!");
4220 return;
4221 case ISD::FP_ROUND_INREG: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004222 assert(N->getValueType(0) == MVT::ppcf128);
4223 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelfdc40a02009-02-17 22:15:04 +00004224 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004225 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00004226 DAG.getIntPtrConstant(0));
Dale Johannesen3484c092009-02-05 22:07:54 +00004227 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004228 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00004229 DAG.getIntPtrConstant(1));
4230
4231 // This sequence changes FPSCR to do round-to-zero, adds the two halves
4232 // of the long double, and puts FPSCR back the way it was. We do not
4233 // actually model FPSCR.
Owen Andersone50ed302009-08-10 22:56:29 +00004234 std::vector<EVT> NodeTys;
Duncan Sands1607f052008-12-01 11:39:25 +00004235 SDValue Ops[4], Result, MFFSreg, InFlag, FPreg;
4236
Owen Anderson825b72b2009-08-11 20:47:22 +00004237 NodeTys.push_back(MVT::f64); // Return register
4238 NodeTys.push_back(MVT::Flag); // Returns a flag for later insns
Dale Johannesen3484c092009-02-05 22:07:54 +00004239 Result = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Duncan Sands1607f052008-12-01 11:39:25 +00004240 MFFSreg = Result.getValue(0);
4241 InFlag = Result.getValue(1);
4242
4243 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004244 NodeTys.push_back(MVT::Flag); // Returns a flag
4245 Ops[0] = DAG.getConstant(31, MVT::i32);
Duncan Sands1607f052008-12-01 11:39:25 +00004246 Ops[1] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004247 Result = DAG.getNode(PPCISD::MTFSB1, dl, NodeTys, Ops, 2);
Duncan Sands1607f052008-12-01 11:39:25 +00004248 InFlag = Result.getValue(0);
4249
4250 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004251 NodeTys.push_back(MVT::Flag); // Returns a flag
4252 Ops[0] = DAG.getConstant(30, MVT::i32);
Duncan Sands1607f052008-12-01 11:39:25 +00004253 Ops[1] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004254 Result = DAG.getNode(PPCISD::MTFSB0, dl, NodeTys, Ops, 2);
Duncan Sands1607f052008-12-01 11:39:25 +00004255 InFlag = Result.getValue(0);
4256
4257 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004258 NodeTys.push_back(MVT::f64); // result of add
4259 NodeTys.push_back(MVT::Flag); // Returns a flag
Duncan Sands1607f052008-12-01 11:39:25 +00004260 Ops[0] = Lo;
4261 Ops[1] = Hi;
4262 Ops[2] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004263 Result = DAG.getNode(PPCISD::FADDRTZ, dl, NodeTys, Ops, 3);
Duncan Sands1607f052008-12-01 11:39:25 +00004264 FPreg = Result.getValue(0);
4265 InFlag = Result.getValue(1);
4266
4267 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004268 NodeTys.push_back(MVT::f64);
4269 Ops[0] = DAG.getConstant(1, MVT::i32);
Duncan Sands1607f052008-12-01 11:39:25 +00004270 Ops[1] = MFFSreg;
4271 Ops[2] = FPreg;
4272 Ops[3] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004273 Result = DAG.getNode(PPCISD::MTFSF, dl, NodeTys, Ops, 4);
Duncan Sands1607f052008-12-01 11:39:25 +00004274 FPreg = Result.getValue(0);
4275
4276 // We know the low half is about to be thrown away, so just use something
4277 // convenient.
Owen Anderson825b72b2009-08-11 20:47:22 +00004278 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesen3484c092009-02-05 22:07:54 +00004279 FPreg, FPreg));
Duncan Sands1607f052008-12-01 11:39:25 +00004280 return;
Duncan Sandsa7360f02008-07-19 16:26:02 +00004281 }
Duncan Sands1607f052008-12-01 11:39:25 +00004282 case ISD::FP_TO_SINT:
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004283 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands1607f052008-12-01 11:39:25 +00004284 return;
Chris Lattner1f873002007-11-28 18:44:47 +00004285 }
4286}
4287
4288
Chris Lattner1a635d62006-04-14 06:01:58 +00004289//===----------------------------------------------------------------------===//
4290// Other Lowering Code
4291//===----------------------------------------------------------------------===//
4292
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004293MachineBasicBlock *
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004294PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00004295 bool is64bit, unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00004296 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004297 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
4298
4299 const BasicBlock *LLVM_BB = BB->getBasicBlock();
4300 MachineFunction *F = BB->getParent();
4301 MachineFunction::iterator It = BB;
4302 ++It;
4303
4304 unsigned dest = MI->getOperand(0).getReg();
4305 unsigned ptrA = MI->getOperand(1).getReg();
4306 unsigned ptrB = MI->getOperand(2).getReg();
4307 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004308 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004309
4310 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
4311 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
4312 F->insert(It, loopMBB);
4313 F->insert(It, exitMBB);
4314 exitMBB->transferSuccessors(BB);
4315
4316 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesen0e55f062008-08-29 18:29:46 +00004317 unsigned TmpReg = (!BinOpcode) ? incr :
4318 RegInfo.createVirtualRegister(
Dale Johannesena619d012008-09-02 20:30:23 +00004319 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
4320 (const TargetRegisterClass *) &PPC::GPRCRegClass);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004321
4322 // thisMBB:
4323 // ...
4324 // fallthrough --> loopMBB
4325 BB->addSuccessor(loopMBB);
4326
4327 // loopMBB:
4328 // l[wd]arx dest, ptr
4329 // add r0, dest, incr
4330 // st[wd]cx. r0, ptr
4331 // bne- loopMBB
4332 // fallthrough --> exitMBB
4333 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004334 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004335 .addReg(ptrA).addReg(ptrB);
Dale Johannesen0e55f062008-08-29 18:29:46 +00004336 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004337 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
4338 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004339 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004340 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00004341 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004342 BB->addSuccessor(loopMBB);
4343 BB->addSuccessor(exitMBB);
4344
4345 // exitMBB:
4346 // ...
4347 BB = exitMBB;
4348 return BB;
4349}
4350
4351MachineBasicBlock *
Scott Michelfdc40a02009-02-17 22:15:04 +00004352PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesen97efa362008-08-28 17:53:09 +00004353 MachineBasicBlock *BB,
4354 bool is8bit, // operation
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00004355 unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00004356 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesen97efa362008-08-28 17:53:09 +00004357 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
4358 // In 64 bit mode we have to use 64 bits for addresses, even though the
4359 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
4360 // registers without caring whether they're 32 or 64, but here we're
4361 // doing actual arithmetic on the addresses.
4362 bool is64bit = PPCSubTarget.isPPC64();
4363
4364 const BasicBlock *LLVM_BB = BB->getBasicBlock();
4365 MachineFunction *F = BB->getParent();
4366 MachineFunction::iterator It = BB;
4367 ++It;
4368
4369 unsigned dest = MI->getOperand(0).getReg();
4370 unsigned ptrA = MI->getOperand(1).getReg();
4371 unsigned ptrB = MI->getOperand(2).getReg();
4372 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004373 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen97efa362008-08-28 17:53:09 +00004374
4375 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
4376 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
4377 F->insert(It, loopMBB);
4378 F->insert(It, exitMBB);
4379 exitMBB->transferSuccessors(BB);
4380
4381 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00004382 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00004383 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
4384 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesen97efa362008-08-28 17:53:09 +00004385 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
4386 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
4387 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
4388 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
4389 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
4390 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
4391 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
4392 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
4393 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
4394 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen0e55f062008-08-29 18:29:46 +00004395 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00004396 unsigned Ptr1Reg;
Dale Johannesen0e55f062008-08-29 18:29:46 +00004397 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00004398
4399 // thisMBB:
4400 // ...
4401 // fallthrough --> loopMBB
4402 BB->addSuccessor(loopMBB);
4403
4404 // The 4-byte load must be aligned, while a char or short may be
4405 // anywhere in the word. Hence all this nasty bookkeeping code.
4406 // add ptr1, ptrA, ptrB [copy if ptrA==0]
4407 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00004408 // xori shift, shift1, 24 [16]
Dale Johannesen97efa362008-08-28 17:53:09 +00004409 // rlwinm ptr, ptr1, 0, 0, 29
4410 // slw incr2, incr, shift
4411 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
4412 // slw mask, mask2, shift
4413 // loopMBB:
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004414 // lwarx tmpDest, ptr
Dale Johannesen0e55f062008-08-29 18:29:46 +00004415 // add tmp, tmpDest, incr2
4416 // andc tmp2, tmpDest, mask
Dale Johannesen97efa362008-08-28 17:53:09 +00004417 // and tmp3, tmp, mask
4418 // or tmp4, tmp3, tmp2
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004419 // stwcx. tmp4, ptr
Dale Johannesen97efa362008-08-28 17:53:09 +00004420 // bne- loopMBB
4421 // fallthrough --> exitMBB
Dale Johannesen0e55f062008-08-29 18:29:46 +00004422 // srw dest, tmpDest, shift
Dale Johannesen97efa362008-08-28 17:53:09 +00004423
4424 if (ptrA!=PPC::R0) {
4425 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004426 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004427 .addReg(ptrA).addReg(ptrB);
4428 } else {
4429 Ptr1Reg = ptrB;
4430 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004431 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004432 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004433 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004434 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
4435 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004436 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004437 .addReg(Ptr1Reg).addImm(0).addImm(61);
4438 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00004439 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004440 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004441 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004442 .addReg(incr).addReg(ShiftReg);
4443 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004444 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen97efa362008-08-28 17:53:09 +00004445 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00004446 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
4447 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesen97efa362008-08-28 17:53:09 +00004448 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004449 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004450 .addReg(Mask2Reg).addReg(ShiftReg);
4451
4452 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004453 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004454 .addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen0e55f062008-08-29 18:29:46 +00004455 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004456 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00004457 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004458 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00004459 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004460 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004461 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004462 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004463 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004464 BuildMI(BB, dl, TII->get(PPC::STWCX))
Dale Johannesen97efa362008-08-28 17:53:09 +00004465 .addReg(Tmp4Reg).addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004466 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00004467 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesen97efa362008-08-28 17:53:09 +00004468 BB->addSuccessor(loopMBB);
4469 BB->addSuccessor(exitMBB);
4470
4471 // exitMBB:
4472 // ...
4473 BB = exitMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004474 BuildMI(BB, dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg).addReg(ShiftReg);
Dale Johannesen97efa362008-08-28 17:53:09 +00004475 return BB;
4476}
4477
4478MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00004479PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00004480 MachineBasicBlock *BB) const {
Evan Chengc0f64ff2006-11-27 23:37:22 +00004481 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng53301922008-07-12 02:23:19 +00004482
4483 // To "insert" these instructions we actually have to insert their
4484 // control-flow patterns.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004485 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004486 MachineFunction::iterator It = BB;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004487 ++It;
Evan Cheng53301922008-07-12 02:23:19 +00004488
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004489 MachineFunction *F = BB->getParent();
Evan Cheng53301922008-07-12 02:23:19 +00004490
4491 if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
4492 MI->getOpcode() == PPC::SELECT_CC_I8 ||
4493 MI->getOpcode() == PPC::SELECT_CC_F4 ||
4494 MI->getOpcode() == PPC::SELECT_CC_F8 ||
4495 MI->getOpcode() == PPC::SELECT_CC_VRRC) {
4496
4497 // The incoming instruction knows the destination vreg to set, the
4498 // condition code register to branch on, the true/false values to
4499 // select between, and a branch opcode to use.
4500
4501 // thisMBB:
4502 // ...
4503 // TrueVal = ...
4504 // cmpTY ccX, r1, r2
4505 // bCC copy1MBB
4506 // fallthrough --> copy0MBB
4507 MachineBasicBlock *thisMBB = BB;
4508 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
4509 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
4510 unsigned SelectPred = MI->getOperand(4).getImm();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004511 DebugLoc dl = MI->getDebugLoc();
4512 BuildMI(BB, dl, TII->get(PPC::BCC))
Evan Cheng53301922008-07-12 02:23:19 +00004513 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
4514 F->insert(It, copy0MBB);
4515 F->insert(It, sinkMBB);
4516 // Update machine-CFG edges by transferring all successors of the current
4517 // block to the new block which will contain the Phi node for the select.
4518 sinkMBB->transferSuccessors(BB);
4519 // Next, add the true and fallthrough blocks as its successors.
4520 BB->addSuccessor(copy0MBB);
4521 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004522
Evan Cheng53301922008-07-12 02:23:19 +00004523 // copy0MBB:
4524 // %FalseValue = ...
4525 // # fallthrough to sinkMBB
4526 BB = copy0MBB;
Scott Michelfdc40a02009-02-17 22:15:04 +00004527
Evan Cheng53301922008-07-12 02:23:19 +00004528 // Update machine-CFG edges
4529 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004530
Evan Cheng53301922008-07-12 02:23:19 +00004531 // sinkMBB:
4532 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
4533 // ...
4534 BB = sinkMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004535 BuildMI(BB, dl, TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng53301922008-07-12 02:23:19 +00004536 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
4537 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
4538 }
Dale Johannesen97efa362008-08-28 17:53:09 +00004539 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
4540 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
4541 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
4542 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004543 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
4544 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
4545 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
4546 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004547
4548 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
4549 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
4550 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
4551 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004552 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
4553 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
4554 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
4555 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004556
4557 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
4558 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
4559 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
4560 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004561 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
4562 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
4563 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
4564 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004565
4566 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
4567 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
4568 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
4569 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004570 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
4571 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
4572 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
4573 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004574
4575 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Dale Johannesen209a4092008-09-11 02:15:03 +00004576 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ANDC);
Dale Johannesen97efa362008-08-28 17:53:09 +00004577 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Dale Johannesen209a4092008-09-11 02:15:03 +00004578 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004579 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Dale Johannesen209a4092008-09-11 02:15:03 +00004580 BB = EmitAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004581 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Dale Johannesen209a4092008-09-11 02:15:03 +00004582 BB = EmitAtomicBinary(MI, BB, true, PPC::ANDC8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004583
4584 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
4585 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
4586 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
4587 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004588 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
4589 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
4590 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
4591 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004592
Dale Johannesen0e55f062008-08-29 18:29:46 +00004593 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
4594 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
4595 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
4596 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
4597 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
4598 BB = EmitAtomicBinary(MI, BB, false, 0);
4599 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
4600 BB = EmitAtomicBinary(MI, BB, true, 0);
4601
Evan Cheng53301922008-07-12 02:23:19 +00004602 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
4603 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
4604 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
4605
4606 unsigned dest = MI->getOperand(0).getReg();
4607 unsigned ptrA = MI->getOperand(1).getReg();
4608 unsigned ptrB = MI->getOperand(2).getReg();
4609 unsigned oldval = MI->getOperand(3).getReg();
4610 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004611 DebugLoc dl = MI->getDebugLoc();
Evan Cheng53301922008-07-12 02:23:19 +00004612
Dale Johannesen65e39732008-08-25 18:53:26 +00004613 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
4614 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
4615 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng53301922008-07-12 02:23:19 +00004616 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen65e39732008-08-25 18:53:26 +00004617 F->insert(It, loop1MBB);
4618 F->insert(It, loop2MBB);
4619 F->insert(It, midMBB);
Evan Cheng53301922008-07-12 02:23:19 +00004620 F->insert(It, exitMBB);
4621 exitMBB->transferSuccessors(BB);
4622
4623 // thisMBB:
4624 // ...
4625 // fallthrough --> loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00004626 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00004627
Dale Johannesen65e39732008-08-25 18:53:26 +00004628 // loop1MBB:
Evan Cheng53301922008-07-12 02:23:19 +00004629 // l[wd]arx dest, ptr
Dale Johannesen65e39732008-08-25 18:53:26 +00004630 // cmp[wd] dest, oldval
4631 // bne- midMBB
4632 // loop2MBB:
Evan Cheng53301922008-07-12 02:23:19 +00004633 // st[wd]cx. newval, ptr
4634 // bne- loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00004635 // b exitBB
4636 // midMBB:
4637 // st[wd]cx. dest, ptr
4638 // exitBB:
4639 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004640 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng53301922008-07-12 02:23:19 +00004641 .addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004642 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng53301922008-07-12 02:23:19 +00004643 .addReg(oldval).addReg(dest);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004644 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00004645 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
4646 BB->addSuccessor(loop2MBB);
4647 BB->addSuccessor(midMBB);
4648
4649 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004650 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng53301922008-07-12 02:23:19 +00004651 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004652 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00004653 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004654 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen65e39732008-08-25 18:53:26 +00004655 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00004656 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004657
Dale Johannesen65e39732008-08-25 18:53:26 +00004658 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004659 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen65e39732008-08-25 18:53:26 +00004660 .addReg(dest).addReg(ptrA).addReg(ptrB);
4661 BB->addSuccessor(exitMBB);
4662
Evan Cheng53301922008-07-12 02:23:19 +00004663 // exitMBB:
4664 // ...
4665 BB = exitMBB;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004666 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
4667 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
4668 // We must use 64-bit registers for addresses when targeting 64-bit,
4669 // since we're actually doing arithmetic on them. Other registers
4670 // can be 32-bit.
4671 bool is64bit = PPCSubTarget.isPPC64();
4672 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
4673
4674 unsigned dest = MI->getOperand(0).getReg();
4675 unsigned ptrA = MI->getOperand(1).getReg();
4676 unsigned ptrB = MI->getOperand(2).getReg();
4677 unsigned oldval = MI->getOperand(3).getReg();
4678 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004679 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004680
4681 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
4682 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
4683 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
4684 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
4685 F->insert(It, loop1MBB);
4686 F->insert(It, loop2MBB);
4687 F->insert(It, midMBB);
4688 F->insert(It, exitMBB);
4689 exitMBB->transferSuccessors(BB);
4690
4691 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00004692 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00004693 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
4694 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004695 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
4696 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
4697 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
4698 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
4699 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
4700 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
4701 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
4702 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
4703 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
4704 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
4705 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
4706 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
4707 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
4708 unsigned Ptr1Reg;
4709 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
4710 // thisMBB:
4711 // ...
4712 // fallthrough --> loopMBB
4713 BB->addSuccessor(loop1MBB);
4714
4715 // The 4-byte load must be aligned, while a char or short may be
4716 // anywhere in the word. Hence all this nasty bookkeeping code.
4717 // add ptr1, ptrA, ptrB [copy if ptrA==0]
4718 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00004719 // xori shift, shift1, 24 [16]
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004720 // rlwinm ptr, ptr1, 0, 0, 29
4721 // slw newval2, newval, shift
4722 // slw oldval2, oldval,shift
4723 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
4724 // slw mask, mask2, shift
4725 // and newval3, newval2, mask
4726 // and oldval3, oldval2, mask
4727 // loop1MBB:
4728 // lwarx tmpDest, ptr
4729 // and tmp, tmpDest, mask
4730 // cmpw tmp, oldval3
4731 // bne- midMBB
4732 // loop2MBB:
4733 // andc tmp2, tmpDest, mask
4734 // or tmp4, tmp2, newval3
4735 // stwcx. tmp4, ptr
4736 // bne- loop1MBB
4737 // b exitBB
4738 // midMBB:
4739 // stwcx. tmpDest, ptr
4740 // exitBB:
4741 // srw dest, tmpDest, shift
4742 if (ptrA!=PPC::R0) {
4743 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004744 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004745 .addReg(ptrA).addReg(ptrB);
4746 } else {
4747 Ptr1Reg = ptrB;
4748 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004749 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004750 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004751 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004752 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
4753 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004754 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004755 .addReg(Ptr1Reg).addImm(0).addImm(61);
4756 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00004757 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004758 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004759 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004760 .addReg(newval).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004761 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004762 .addReg(oldval).addReg(ShiftReg);
4763 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004764 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004765 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00004766 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
4767 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
4768 .addReg(Mask3Reg).addImm(65535);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004769 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004770 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004771 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004772 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004773 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004774 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004775 .addReg(OldVal2Reg).addReg(MaskReg);
4776
4777 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004778 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004779 .addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004780 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
4781 .addReg(TmpDestReg).addReg(MaskReg);
4782 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004783 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004784 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004785 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
4786 BB->addSuccessor(loop2MBB);
4787 BB->addSuccessor(midMBB);
4788
4789 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004790 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
4791 .addReg(TmpDestReg).addReg(MaskReg);
4792 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
4793 .addReg(Tmp2Reg).addReg(NewVal3Reg);
4794 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004795 .addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004796 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004797 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004798 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004799 BB->addSuccessor(loop1MBB);
4800 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004801
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004802 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004803 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004804 .addReg(PPC::R0).addReg(PtrReg);
4805 BB->addSuccessor(exitMBB);
4806
4807 // exitMBB:
4808 // ...
4809 BB = exitMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004810 BuildMI(BB, dl, TII->get(PPC::SRW),dest).addReg(TmpReg).addReg(ShiftReg);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004811 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00004812 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng53301922008-07-12 02:23:19 +00004813 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004814
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004815 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004816 return BB;
4817}
4818
Chris Lattner1a635d62006-04-14 06:01:58 +00004819//===----------------------------------------------------------------------===//
4820// Target Optimization Hooks
4821//===----------------------------------------------------------------------===//
4822
Duncan Sands25cf2272008-11-24 14:53:14 +00004823SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
4824 DAGCombinerInfo &DCI) const {
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004825 TargetMachine &TM = getTargetMachine();
4826 SelectionDAG &DAG = DCI.DAG;
Dale Johannesen3484c092009-02-05 22:07:54 +00004827 DebugLoc dl = N->getDebugLoc();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004828 switch (N->getOpcode()) {
4829 default: break;
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004830 case PPCISD::SHL:
4831 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004832 if (C->getZExtValue() == 0) // 0 << V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004833 return N->getOperand(0);
4834 }
4835 break;
4836 case PPCISD::SRL:
4837 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004838 if (C->getZExtValue() == 0) // 0 >>u V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004839 return N->getOperand(0);
4840 }
4841 break;
4842 case PPCISD::SRA:
4843 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004844 if (C->getZExtValue() == 0 || // 0 >>s V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004845 C->isAllOnesValue()) // -1 >>s V -> -1.
4846 return N->getOperand(0);
4847 }
4848 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004849
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004850 case ISD::SINT_TO_FP:
Chris Lattnera7a58542006-06-16 17:34:12 +00004851 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004852 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
4853 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
4854 // We allow the src/dst to be either f32/f64, but the intermediate
4855 // type must be i64.
Owen Anderson825b72b2009-08-11 20:47:22 +00004856 if (N->getOperand(0).getValueType() == MVT::i64 &&
4857 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004858 SDValue Val = N->getOperand(0).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00004859 if (Val.getValueType() == MVT::f32) {
4860 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004861 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004862 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004863
Owen Anderson825b72b2009-08-11 20:47:22 +00004864 Val = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004865 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00004866 Val = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004867 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00004868 if (N->getValueType(0) == MVT::f32) {
4869 Val = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Val,
Chris Lattner0bd48932008-01-17 07:00:52 +00004870 DAG.getIntPtrConstant(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004871 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004872 }
4873 return Val;
Owen Anderson825b72b2009-08-11 20:47:22 +00004874 } else if (N->getOperand(0).getValueType() == MVT::i32) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004875 // If the intermediate type is i32, we can avoid the load/store here
4876 // too.
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004877 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004878 }
4879 }
4880 break;
Chris Lattner51269842006-03-01 05:50:56 +00004881 case ISD::STORE:
4882 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
4883 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnera7a02fb2008-01-18 16:54:56 +00004884 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner51269842006-03-01 05:50:56 +00004885 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004886 N->getOperand(1).getValueType() == MVT::i32 &&
4887 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004888 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00004889 if (Val.getValueType() == MVT::f32) {
4890 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004891 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00004892 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004893 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004894 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00004895
Owen Anderson825b72b2009-08-11 20:47:22 +00004896 Val = DAG.getNode(PPCISD::STFIWX, dl, MVT::Other, N->getOperand(0), Val,
Chris Lattner51269842006-03-01 05:50:56 +00004897 N->getOperand(2), N->getOperand(3));
Gabor Greifba36cb52008-08-28 21:40:38 +00004898 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00004899 return Val;
4900 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004901
Chris Lattnerd9989382006-07-10 20:56:58 +00004902 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
4903 if (N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004904 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004905 (N->getOperand(1).getValueType() == MVT::i32 ||
4906 N->getOperand(1).getValueType() == MVT::i16)) {
Dan Gohman475871a2008-07-27 21:46:04 +00004907 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnerd9989382006-07-10 20:56:58 +00004908 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson825b72b2009-08-11 20:47:22 +00004909 if (BSwapOp.getValueType() == MVT::i16)
4910 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnerd9989382006-07-10 20:56:58 +00004911
Owen Anderson825b72b2009-08-11 20:47:22 +00004912 return DAG.getNode(PPCISD::STBRX, dl, MVT::Other, N->getOperand(0),
Dale Johannesen3484c092009-02-05 22:07:54 +00004913 BSwapOp, N->getOperand(2), N->getOperand(3),
Chris Lattnerd9989382006-07-10 20:56:58 +00004914 DAG.getValueType(N->getOperand(1).getValueType()));
4915 }
4916 break;
4917 case ISD::BSWAP:
4918 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greifba36cb52008-08-28 21:40:38 +00004919 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnerd9989382006-07-10 20:56:58 +00004920 N->getOperand(0).hasOneUse() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004921 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16)) {
Dan Gohman475871a2008-07-27 21:46:04 +00004922 SDValue Load = N->getOperand(0);
Evan Cheng466685d2006-10-09 20:57:25 +00004923 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnerd9989382006-07-10 20:56:58 +00004924 // Create the byte-swapping load.
Owen Andersone50ed302009-08-10 22:56:29 +00004925 std::vector<EVT> VTs;
Owen Anderson825b72b2009-08-11 20:47:22 +00004926 VTs.push_back(MVT::i32);
4927 VTs.push_back(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004928 SDValue MO = DAG.getMemOperand(LD->getMemOperand());
4929 SDValue Ops[] = {
Evan Cheng466685d2006-10-09 20:57:25 +00004930 LD->getChain(), // Chain
4931 LD->getBasePtr(), // Ptr
Dan Gohman69de1932008-02-06 22:27:42 +00004932 MO, // MemOperand
Chris Lattner79e490a2006-08-11 17:18:05 +00004933 DAG.getValueType(N->getValueType(0)) // VT
4934 };
Dale Johannesen3484c092009-02-05 22:07:54 +00004935 SDValue BSLoad = DAG.getNode(PPCISD::LBRX, dl, VTs, Ops, 4);
Chris Lattnerd9989382006-07-10 20:56:58 +00004936
Scott Michelfdc40a02009-02-17 22:15:04 +00004937 // If this is an i16 load, insert the truncate.
Dan Gohman475871a2008-07-27 21:46:04 +00004938 SDValue ResVal = BSLoad;
Owen Anderson825b72b2009-08-11 20:47:22 +00004939 if (N->getValueType(0) == MVT::i16)
4940 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelfdc40a02009-02-17 22:15:04 +00004941
Chris Lattnerd9989382006-07-10 20:56:58 +00004942 // First, combine the bswap away. This makes the value produced by the
4943 // load dead.
4944 DCI.CombineTo(N, ResVal);
4945
4946 // Next, combine the load away, we give it a bogus result value but a real
4947 // chain result. The result value is dead because the bswap is dead.
Gabor Greifba36cb52008-08-28 21:40:38 +00004948 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004949
Chris Lattnerd9989382006-07-10 20:56:58 +00004950 // Return N so it doesn't get rechecked!
Dan Gohman475871a2008-07-27 21:46:04 +00004951 return SDValue(N, 0);
Chris Lattnerd9989382006-07-10 20:56:58 +00004952 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004953
Chris Lattner51269842006-03-01 05:50:56 +00004954 break;
Chris Lattner4468c222006-03-31 06:02:07 +00004955 case PPCISD::VCMP: {
4956 // If a VCMPo node already exists with exactly the same operands as this
4957 // node, use its result instead of this node (VCMPo computes both a CR6 and
4958 // a normal output).
4959 //
4960 if (!N->getOperand(0).hasOneUse() &&
4961 !N->getOperand(1).hasOneUse() &&
4962 !N->getOperand(2).hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004963
Chris Lattner4468c222006-03-31 06:02:07 +00004964 // Scan all of the users of the LHS, looking for VCMPo's that match.
4965 SDNode *VCMPoNode = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004966
Gabor Greifba36cb52008-08-28 21:40:38 +00004967 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattner4468c222006-03-31 06:02:07 +00004968 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
4969 UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004970 if (UI->getOpcode() == PPCISD::VCMPo &&
4971 UI->getOperand(1) == N->getOperand(1) &&
4972 UI->getOperand(2) == N->getOperand(2) &&
4973 UI->getOperand(0) == N->getOperand(0)) {
4974 VCMPoNode = *UI;
Chris Lattner4468c222006-03-31 06:02:07 +00004975 break;
4976 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004977
Chris Lattner00901202006-04-18 18:28:22 +00004978 // If there is no VCMPo node, or if the flag value has a single use, don't
4979 // transform this.
4980 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
4981 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004982
4983 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner00901202006-04-18 18:28:22 +00004984 // chain, this transformation is more complex. Note that multiple things
4985 // could use the value result, which we should ignore.
4986 SDNode *FlagUser = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004987 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Chris Lattner00901202006-04-18 18:28:22 +00004988 FlagUser == 0; ++UI) {
4989 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman89684502008-07-27 20:43:25 +00004990 SDNode *User = *UI;
Chris Lattner00901202006-04-18 18:28:22 +00004991 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004992 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner00901202006-04-18 18:28:22 +00004993 FlagUser = User;
4994 break;
4995 }
4996 }
4997 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004998
Chris Lattner00901202006-04-18 18:28:22 +00004999 // If the user is a MFCR instruction, we know this is safe. Otherwise we
5000 // give up for right now.
5001 if (FlagUser->getOpcode() == PPCISD::MFCR)
Dan Gohman475871a2008-07-27 21:46:04 +00005002 return SDValue(VCMPoNode, 0);
Chris Lattner4468c222006-03-31 06:02:07 +00005003 }
5004 break;
5005 }
Chris Lattner90564f22006-04-18 17:59:36 +00005006 case ISD::BR_CC: {
5007 // If this is a branch on an altivec predicate comparison, lower this so
5008 // that we don't have to do a MFCR: instead, branch directly on CR6. This
5009 // lowering is done pre-legalize, because the legalizer lowers the predicate
5010 // compare down to code that is difficult to reassemble.
5011 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman475871a2008-07-27 21:46:04 +00005012 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Chris Lattner90564f22006-04-18 17:59:36 +00005013 int CompareOpc;
5014 bool isDot;
Scott Michelfdc40a02009-02-17 22:15:04 +00005015
Chris Lattner90564f22006-04-18 17:59:36 +00005016 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
5017 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
5018 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
5019 assert(isDot && "Can't compare against a vector result!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005020
Chris Lattner90564f22006-04-18 17:59:36 +00005021 // If this is a comparison against something other than 0/1, then we know
5022 // that the condition is never/always true.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005023 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00005024 if (Val != 0 && Val != 1) {
5025 if (CC == ISD::SETEQ) // Cond never true, remove branch.
5026 return N->getOperand(0);
5027 // Always !=, turn it into an unconditional branch.
Owen Anderson825b72b2009-08-11 20:47:22 +00005028 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner90564f22006-04-18 17:59:36 +00005029 N->getOperand(0), N->getOperand(4));
5030 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005031
Chris Lattner90564f22006-04-18 17:59:36 +00005032 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005033
Chris Lattner90564f22006-04-18 17:59:36 +00005034 // Create the PPCISD altivec 'dot' comparison node.
Owen Andersone50ed302009-08-10 22:56:29 +00005035 std::vector<EVT> VTs;
Dan Gohman475871a2008-07-27 21:46:04 +00005036 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00005037 LHS.getOperand(2), // LHS of compare
5038 LHS.getOperand(3), // RHS of compare
Owen Anderson825b72b2009-08-11 20:47:22 +00005039 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00005040 };
Chris Lattner90564f22006-04-18 17:59:36 +00005041 VTs.push_back(LHS.getOperand(2).getValueType());
Owen Anderson825b72b2009-08-11 20:47:22 +00005042 VTs.push_back(MVT::Flag);
Dale Johannesen3484c092009-02-05 22:07:54 +00005043 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00005044
Chris Lattner90564f22006-04-18 17:59:36 +00005045 // Unpack the result based on how the target uses it.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005046 PPC::Predicate CompOpc;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005047 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner90564f22006-04-18 17:59:36 +00005048 default: // Can't happen, don't crash on invalid number though.
5049 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005050 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner90564f22006-04-18 17:59:36 +00005051 break;
5052 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005053 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner90564f22006-04-18 17:59:36 +00005054 break;
5055 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005056 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner90564f22006-04-18 17:59:36 +00005057 break;
5058 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005059 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner90564f22006-04-18 17:59:36 +00005060 break;
5061 }
5062
Owen Anderson825b72b2009-08-11 20:47:22 +00005063 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
5064 DAG.getConstant(CompOpc, MVT::i32),
5065 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner90564f22006-04-18 17:59:36 +00005066 N->getOperand(4), CompNode.getValue(1));
5067 }
5068 break;
5069 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00005070 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005071
Dan Gohman475871a2008-07-27 21:46:04 +00005072 return SDValue();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00005073}
5074
Chris Lattner1a635d62006-04-14 06:01:58 +00005075//===----------------------------------------------------------------------===//
5076// Inline Assembly Support
5077//===----------------------------------------------------------------------===//
5078
Dan Gohman475871a2008-07-27 21:46:04 +00005079void PPCTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00005080 const APInt &Mask,
Scott Michelfdc40a02009-02-17 22:15:04 +00005081 APInt &KnownZero,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00005082 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00005083 const SelectionDAG &DAG,
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005084 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00005085 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005086 switch (Op.getOpcode()) {
5087 default: break;
Chris Lattnerd9989382006-07-10 20:56:58 +00005088 case PPCISD::LBRX: {
5089 // lhbrx is known to have the top bits cleared out.
Owen Anderson825b72b2009-08-11 20:47:22 +00005090 if (cast<VTSDNode>(Op.getOperand(3))->getVT() == MVT::i16)
Chris Lattnerd9989382006-07-10 20:56:58 +00005091 KnownZero = 0xFFFF0000;
5092 break;
5093 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005094 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005095 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005096 default: break;
5097 case Intrinsic::ppc_altivec_vcmpbfp_p:
5098 case Intrinsic::ppc_altivec_vcmpeqfp_p:
5099 case Intrinsic::ppc_altivec_vcmpequb_p:
5100 case Intrinsic::ppc_altivec_vcmpequh_p:
5101 case Intrinsic::ppc_altivec_vcmpequw_p:
5102 case Intrinsic::ppc_altivec_vcmpgefp_p:
5103 case Intrinsic::ppc_altivec_vcmpgtfp_p:
5104 case Intrinsic::ppc_altivec_vcmpgtsb_p:
5105 case Intrinsic::ppc_altivec_vcmpgtsh_p:
5106 case Intrinsic::ppc_altivec_vcmpgtsw_p:
5107 case Intrinsic::ppc_altivec_vcmpgtub_p:
5108 case Intrinsic::ppc_altivec_vcmpgtuh_p:
5109 case Intrinsic::ppc_altivec_vcmpgtuw_p:
5110 KnownZero = ~1U; // All bits but the low one are known to be zero.
5111 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005112 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005113 }
5114 }
5115}
5116
5117
Chris Lattner4234f572007-03-25 02:14:49 +00005118/// getConstraintType - Given a constraint, return the type of
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00005119/// constraint it is for this target.
Scott Michelfdc40a02009-02-17 22:15:04 +00005120PPCTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00005121PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
5122 if (Constraint.size() == 1) {
5123 switch (Constraint[0]) {
5124 default: break;
5125 case 'b':
5126 case 'r':
5127 case 'f':
5128 case 'v':
5129 case 'y':
5130 return C_RegisterClass;
5131 }
5132 }
5133 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00005134}
5135
Scott Michelfdc40a02009-02-17 22:15:04 +00005136std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner331d1bc2006-11-02 01:44:04 +00005137PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00005138 EVT VT) const {
Chris Lattnerddc787d2006-01-31 19:20:21 +00005139 if (Constraint.size() == 1) {
Chris Lattner331d1bc2006-11-02 01:44:04 +00005140 // GCC RS6000 Constraint Letters
5141 switch (Constraint[0]) {
5142 case 'b': // R1-R31
5143 case 'r': // R0-R31
Owen Anderson825b72b2009-08-11 20:47:22 +00005144 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
Chris Lattner331d1bc2006-11-02 01:44:04 +00005145 return std::make_pair(0U, PPC::G8RCRegisterClass);
5146 return std::make_pair(0U, PPC::GPRCRegisterClass);
5147 case 'f':
Owen Anderson825b72b2009-08-11 20:47:22 +00005148 if (VT == MVT::f32)
Chris Lattner331d1bc2006-11-02 01:44:04 +00005149 return std::make_pair(0U, PPC::F4RCRegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00005150 else if (VT == MVT::f64)
Chris Lattner331d1bc2006-11-02 01:44:04 +00005151 return std::make_pair(0U, PPC::F8RCRegisterClass);
5152 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005153 case 'v':
Chris Lattner331d1bc2006-11-02 01:44:04 +00005154 return std::make_pair(0U, PPC::VRRCRegisterClass);
5155 case 'y': // crrc
5156 return std::make_pair(0U, PPC::CRRCRegisterClass);
Chris Lattnerddc787d2006-01-31 19:20:21 +00005157 }
5158 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005159
Chris Lattner331d1bc2006-11-02 01:44:04 +00005160 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattnerddc787d2006-01-31 19:20:21 +00005161}
Chris Lattner763317d2006-02-07 00:47:13 +00005162
Chris Lattner331d1bc2006-11-02 01:44:04 +00005163
Chris Lattner48884cd2007-08-25 00:47:38 +00005164/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Evan Chengda43bcf2008-09-24 00:05:32 +00005165/// vector. If it is invalid, don't add anything to Ops. If hasMemory is true
5166/// it means one of the asm constraint of the inline asm instruction being
5167/// processed is 'm'.
Dan Gohman475871a2008-07-27 21:46:04 +00005168void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op, char Letter,
Evan Chengda43bcf2008-09-24 00:05:32 +00005169 bool hasMemory,
Dan Gohman475871a2008-07-27 21:46:04 +00005170 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00005171 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00005172 SDValue Result(0,0);
Chris Lattner763317d2006-02-07 00:47:13 +00005173 switch (Letter) {
5174 default: break;
5175 case 'I':
5176 case 'J':
5177 case 'K':
5178 case 'L':
5179 case 'M':
5180 case 'N':
5181 case 'O':
5182 case 'P': {
Chris Lattner9f5d5782007-05-15 01:31:05 +00005183 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattner48884cd2007-08-25 00:47:38 +00005184 if (!CST) return; // Must be an immediate to match.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005185 unsigned Value = CST->getZExtValue();
Chris Lattner763317d2006-02-07 00:47:13 +00005186 switch (Letter) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005187 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner763317d2006-02-07 00:47:13 +00005188 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005189 if ((short)Value == (int)Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00005190 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005191 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005192 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
5193 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005194 if ((short)Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00005195 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005196 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005197 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005198 if ((Value >> 16) == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00005199 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005200 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005201 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005202 if (Value > 31)
Chris Lattner48884cd2007-08-25 00:47:38 +00005203 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005204 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005205 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005206 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattner48884cd2007-08-25 00:47:38 +00005207 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005208 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005209 case 'O': // "O" is the constant zero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005210 if (Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00005211 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005212 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005213 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005214 if ((short)-Value == (int)-Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00005215 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005216 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005217 }
5218 break;
5219 }
5220 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005221
Gabor Greifba36cb52008-08-28 21:40:38 +00005222 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00005223 Ops.push_back(Result);
5224 return;
5225 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005226
Chris Lattner763317d2006-02-07 00:47:13 +00005227 // Handle standard constraint letters.
Evan Chengda43bcf2008-09-24 00:05:32 +00005228 TargetLowering::LowerAsmOperandForConstraint(Op, Letter, hasMemory, Ops, DAG);
Chris Lattner763317d2006-02-07 00:47:13 +00005229}
Evan Chengc4c62572006-03-13 23:20:37 +00005230
Chris Lattnerc9addb72007-03-30 23:15:24 +00005231// isLegalAddressingMode - Return true if the addressing mode represented
5232// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00005233bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00005234 const Type *Ty) const {
5235 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelfdc40a02009-02-17 22:15:04 +00005236
Chris Lattnerc9addb72007-03-30 23:15:24 +00005237 // PPC allows a sign-extended 16-bit immediate field.
5238 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
5239 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005240
Chris Lattnerc9addb72007-03-30 23:15:24 +00005241 // No global is ever allowed as a base.
5242 if (AM.BaseGV)
5243 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005244
5245 // PPC only support r+r,
Chris Lattnerc9addb72007-03-30 23:15:24 +00005246 switch (AM.Scale) {
5247 case 0: // "r+i" or just "i", depending on HasBaseReg.
5248 break;
5249 case 1:
5250 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
5251 return false;
5252 // Otherwise we have r+r or r+i.
5253 break;
5254 case 2:
5255 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
5256 return false;
5257 // Allow 2*r as r+r.
5258 break;
Chris Lattner7c7ba9d2007-04-09 22:10:05 +00005259 default:
5260 // No other scales are supported.
5261 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00005262 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005263
Chris Lattnerc9addb72007-03-30 23:15:24 +00005264 return true;
5265}
5266
Evan Chengc4c62572006-03-13 23:20:37 +00005267/// isLegalAddressImmediate - Return true if the integer value can be used
Evan Cheng86193912007-03-12 23:29:01 +00005268/// as the offset of the target addressing mode for load / store of the
5269/// given type.
5270bool PPCTargetLowering::isLegalAddressImmediate(int64_t V,const Type *Ty) const{
Evan Chengc4c62572006-03-13 23:20:37 +00005271 // PPC allows a sign-extended 16-bit immediate field.
5272 return (V > -(1 << 16) && V < (1 << 16)-1);
5273}
Reid Spencer3a9ec242006-08-28 01:02:49 +00005274
5275bool PPCTargetLowering::isLegalAddressImmediate(llvm::GlobalValue* GV) const {
Scott Michelfdc40a02009-02-17 22:15:04 +00005276 return false;
Reid Spencer3a9ec242006-08-28 01:02:49 +00005277}
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005278
Dan Gohman475871a2008-07-27 21:46:04 +00005279SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005280 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005281 // Depths > 0 not supported yet!
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005282 if (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue() > 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005283 return SDValue();
Chris Lattner3fc027d2007-12-08 06:59:59 +00005284
5285 MachineFunction &MF = DAG.getMachineFunction();
5286 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Chris Lattner3fc027d2007-12-08 06:59:59 +00005287
Chris Lattner3fc027d2007-12-08 06:59:59 +00005288 // Just load the return address off the stack.
Dan Gohman475871a2008-07-27 21:46:04 +00005289 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005290
5291 // Make sure the function really does not optimize away the store of the RA
5292 // to the stack.
5293 FuncInfo->setLRStoreRequired();
Scott Michelfdc40a02009-02-17 22:15:04 +00005294 return DAG.getLoad(getPointerTy(), dl,
Dale Johannesen33c960f2009-02-04 20:06:27 +00005295 DAG.getEntryNode(), RetAddrFI, NULL, 0);
Chris Lattner3fc027d2007-12-08 06:59:59 +00005296}
5297
Dan Gohman475871a2008-07-27 21:46:04 +00005298SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesena05dca42009-02-04 23:02:30 +00005299 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005300 // Depths > 0 not supported yet!
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005301 if (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue() > 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005302 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00005303
Owen Andersone50ed302009-08-10 22:56:29 +00005304 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00005305 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelfdc40a02009-02-17 22:15:04 +00005306
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005307 MachineFunction &MF = DAG.getMachineFunction();
5308 MachineFrameInfo *MFI = MF.getFrameInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00005309 bool is31 = (NoFramePointerElim || MFI->hasVarSizedObjects())
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005310 && MFI->getStackSize();
5311
5312 if (isPPC64)
Dale Johannesena05dca42009-02-04 23:02:30 +00005313 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, is31 ? PPC::X31 : PPC::X1,
Owen Anderson825b72b2009-08-11 20:47:22 +00005314 MVT::i64);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005315 else
Dale Johannesena05dca42009-02-04 23:02:30 +00005316 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, is31 ? PPC::R31 : PPC::R1,
Owen Anderson825b72b2009-08-11 20:47:22 +00005317 MVT::i32);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005318}
Dan Gohman54aeea32008-10-21 03:41:46 +00005319
5320bool
5321PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
5322 // The PowerPC target isn't yet aware of offsets.
5323 return false;
5324}
Tilmann Schellerffd02002009-07-03 06:45:56 +00005325
Owen Andersone50ed302009-08-10 22:56:29 +00005326EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
Tilmann Schellerffd02002009-07-03 06:45:56 +00005327 bool isSrcConst, bool isSrcStr,
5328 SelectionDAG &DAG) const {
5329 if (this->PPCSubTarget.isPPC64()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005330 return MVT::i64;
Tilmann Schellerffd02002009-07-03 06:45:56 +00005331 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00005332 return MVT::i32;
Tilmann Schellerffd02002009-07-03 06:45:56 +00005333 }
5334}