blob: 7ad81f8936b7b3cbb27788b5add03f0a603f353c [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();
Bruno Cardoso Lopesfdf229e2009-08-13 23:30:21 +000063 return new TargetLoweringObjectFileELF();
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 =
Owen Anderson1d0be152009-08-13 21:58:54 +00001272 DAG.getTargetLoweringInfo().getTargetData()->getIntPtrType(
1273 *DAG.getContext());
Bill Wendling77959322008-09-17 00:30:57 +00001274
Scott Michelfdc40a02009-02-17 22:15:04 +00001275 TargetLowering::ArgListTy Args;
Bill Wendling77959322008-09-17 00:30:57 +00001276 TargetLowering::ArgListEntry Entry;
1277
1278 Entry.Ty = IntPtrTy;
1279 Entry.Node = Trmp; Args.push_back(Entry);
1280
1281 // TrampSize == (isPPC64 ? 48 : 40);
1282 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
Owen Anderson825b72b2009-08-11 20:47:22 +00001283 isPPC64 ? MVT::i64 : MVT::i32);
Bill Wendling77959322008-09-17 00:30:57 +00001284 Args.push_back(Entry);
1285
1286 Entry.Node = FPtr; Args.push_back(Entry);
1287 Entry.Node = Nest; Args.push_back(Entry);
Scott Michelfdc40a02009-02-17 22:15:04 +00001288
Bill Wendling77959322008-09-17 00:30:57 +00001289 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
1290 std::pair<SDValue, SDValue> CallResult =
Owen Anderson23b9b192009-08-12 00:36:31 +00001291 LowerCallTo(Chain, Op.getValueType().getTypeForEVT(*DAG.getContext()),
Owen Andersond1474d02009-07-09 17:57:24 +00001292 false, false, false, false, 0, CallingConv::C, false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001293 /*isReturnValueUsed=*/true,
Bill Wendling77959322008-09-17 00:30:57 +00001294 DAG.getExternalSymbol("__trampoline_setup", PtrVT),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00001295 Args, DAG, dl);
Bill Wendling77959322008-09-17 00:30:57 +00001296
1297 SDValue Ops[] =
1298 { CallResult.first, CallResult.second };
1299
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00001300 return DAG.getMergeValues(Ops, 2, dl);
Bill Wendling77959322008-09-17 00:30:57 +00001301}
1302
Dan Gohman475871a2008-07-27 21:46:04 +00001303SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
Bill Wendling77959322008-09-17 00:30:57 +00001304 int VarArgsFrameIndex,
1305 int VarArgsStackOffset,
1306 unsigned VarArgsNumGPR,
1307 unsigned VarArgsNumFPR,
1308 const PPCSubtarget &Subtarget) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001309 DebugLoc dl = Op.getDebugLoc();
Nicolas Geoffray01119992007-04-03 13:59:52 +00001310
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001311 if (Subtarget.isDarwinABI()) {
Nicolas Geoffray01119992007-04-03 13:59:52 +00001312 // vastart just stores the address of the VarArgsFrameIndex slot into the
1313 // memory location argument.
Owen Andersone50ed302009-08-10 22:56:29 +00001314 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001315 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001316 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen33c960f2009-02-04 20:06:27 +00001317 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001318 }
1319
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001320 // For the SVR4 ABI we follow the layout of the va_list struct.
Nicolas Geoffray01119992007-04-03 13:59:52 +00001321 // We suppose the given va_list is already allocated.
1322 //
1323 // typedef struct {
1324 // char gpr; /* index into the array of 8 GPRs
1325 // * stored in the register save area
1326 // * gpr=0 corresponds to r3,
1327 // * gpr=1 to r4, etc.
1328 // */
1329 // char fpr; /* index into the array of 8 FPRs
1330 // * stored in the register save area
1331 // * fpr=0 corresponds to f1,
1332 // * fpr=1 to f2, etc.
1333 // */
1334 // char *overflow_arg_area;
1335 // /* location on stack that holds
1336 // * the next overflow argument
1337 // */
1338 // char *reg_save_area;
1339 // /* where r3:r10 and f1:f8 (if saved)
1340 // * are stored
1341 // */
1342 // } va_list[1];
1343
1344
Owen Anderson825b72b2009-08-11 20:47:22 +00001345 SDValue ArgGPR = DAG.getConstant(VarArgsNumGPR, MVT::i32);
1346 SDValue ArgFPR = DAG.getConstant(VarArgsNumFPR, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00001347
Nicolas Geoffray01119992007-04-03 13:59:52 +00001348
Owen Andersone50ed302009-08-10 22:56:29 +00001349 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00001350
Dan Gohman475871a2008-07-27 21:46:04 +00001351 SDValue StackOffsetFI = DAG.getFrameIndex(VarArgsStackOffset, PtrVT);
1352 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001353
Duncan Sands83ec4b62008-06-06 12:08:01 +00001354 uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
Dan Gohman475871a2008-07-27 21:46:04 +00001355 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001356
Duncan Sands83ec4b62008-06-06 12:08:01 +00001357 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001358 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001359
1360 uint64_t FPROffset = 1;
Dan Gohman475871a2008-07-27 21:46:04 +00001361 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001362
Dan Gohman69de1932008-02-06 22:27:42 +00001363 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00001364
Nicolas Geoffray01119992007-04-03 13:59:52 +00001365 // Store first byte : number of int regs
Tilmann Schellerffd02002009-07-03 06:45:56 +00001366 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
Owen Anderson825b72b2009-08-11 20:47:22 +00001367 Op.getOperand(1), SV, 0, MVT::i8);
Dan Gohman69de1932008-02-06 22:27:42 +00001368 uint64_t nextOffset = FPROffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001369 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
Nicolas Geoffray01119992007-04-03 13:59:52 +00001370 ConstFPROffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001371
Nicolas Geoffray01119992007-04-03 13:59:52 +00001372 // Store second byte : number of float regs
Dan Gohman475871a2008-07-27 21:46:04 +00001373 SDValue secondStore =
Owen Anderson825b72b2009-08-11 20:47:22 +00001374 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr, SV, nextOffset, MVT::i8);
Dan Gohman69de1932008-02-06 22:27:42 +00001375 nextOffset += StackOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001376 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
Scott Michelfdc40a02009-02-17 22:15:04 +00001377
Nicolas Geoffray01119992007-04-03 13:59:52 +00001378 // Store second word : arguments given on stack
Dan Gohman475871a2008-07-27 21:46:04 +00001379 SDValue thirdStore =
Dale Johannesen33c960f2009-02-04 20:06:27 +00001380 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr, SV, nextOffset);
Dan Gohman69de1932008-02-06 22:27:42 +00001381 nextOffset += FrameOffset;
Dale Johannesen33c960f2009-02-04 20:06:27 +00001382 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001383
1384 // Store third word : arguments given in registers
Dale Johannesen33c960f2009-02-04 20:06:27 +00001385 return DAG.getStore(thirdStore, dl, FR, nextPtr, SV, nextOffset);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001386
Chris Lattner1a635d62006-04-14 06:01:58 +00001387}
1388
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00001389#include "PPCGenCallingConv.inc"
1390
Owen Andersone50ed302009-08-10 22:56:29 +00001391static bool CC_PPC_SVR4_Custom_Dummy(unsigned &ValNo, EVT &ValVT, EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001392 CCValAssign::LocInfo &LocInfo,
1393 ISD::ArgFlagsTy &ArgFlags,
1394 CCState &State) {
1395 return true;
1396}
1397
Owen Andersone50ed302009-08-10 22:56:29 +00001398static bool CC_PPC_SVR4_Custom_AlignArgRegs(unsigned &ValNo, EVT &ValVT,
1399 EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001400 CCValAssign::LocInfo &LocInfo,
1401 ISD::ArgFlagsTy &ArgFlags,
1402 CCState &State) {
1403 static const unsigned ArgRegs[] = {
1404 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1405 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1406 };
1407 const unsigned NumArgRegs = array_lengthof(ArgRegs);
1408
1409 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1410
1411 // Skip one register if the first unallocated register has an even register
1412 // number and there are still argument registers available which have not been
1413 // allocated yet. RegNum is actually an index into ArgRegs, which means we
1414 // need to skip a register if RegNum is odd.
1415 if (RegNum != NumArgRegs && RegNum % 2 == 1) {
1416 State.AllocateReg(ArgRegs[RegNum]);
1417 }
1418
1419 // Always return false here, as this function only makes sure that the first
1420 // unallocated register has an odd register number and does not actually
1421 // allocate a register for the current argument.
1422 return false;
1423}
1424
Owen Andersone50ed302009-08-10 22:56:29 +00001425static bool CC_PPC_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, EVT &ValVT,
1426 EVT &LocVT,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001427 CCValAssign::LocInfo &LocInfo,
1428 ISD::ArgFlagsTy &ArgFlags,
1429 CCState &State) {
1430 static const unsigned ArgRegs[] = {
1431 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1432 PPC::F8
1433 };
1434
1435 const unsigned NumArgRegs = array_lengthof(ArgRegs);
1436
1437 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
1438
1439 // If there is only one Floating-point register left we need to put both f64
1440 // values of a split ppc_fp128 value on the stack.
1441 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
1442 State.AllocateReg(ArgRegs[RegNum]);
1443 }
1444
1445 // Always return false here, as this function only makes sure that the two f64
1446 // values a ppc_fp128 value is split into are both passed in registers or both
1447 // passed on the stack and does not actually allocate a register for the
1448 // current argument.
1449 return false;
1450}
1451
Chris Lattner9f0bc652007-02-25 05:34:32 +00001452/// GetFPR - Get the set of FP registers that should be allocated for arguments,
1453/// depending on which subtarget is selected.
1454static const unsigned *GetFPR(const PPCSubtarget &Subtarget) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001455 if (Subtarget.isDarwinABI()) {
Chris Lattner9f0bc652007-02-25 05:34:32 +00001456 static const unsigned FPR[] = {
1457 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1458 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
1459 };
1460 return FPR;
1461 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001462
1463
Chris Lattner9f0bc652007-02-25 05:34:32 +00001464 static const unsigned FPR[] = {
1465 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Nicolas Geoffrayef3c0302007-04-03 10:27:07 +00001466 PPC::F8
Chris Lattner9f0bc652007-02-25 05:34:32 +00001467 };
1468 return FPR;
1469}
1470
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001471/// CalculateStackSlotSize - Calculates the size reserved for this argument on
1472/// the stack.
Owen Andersone50ed302009-08-10 22:56:29 +00001473static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001474 unsigned PtrByteSize) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001475 unsigned ArgSize = ArgVT.getSizeInBits()/8;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001476 if (Flags.isByVal())
1477 ArgSize = Flags.getByValSize();
1478 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1479
1480 return ArgSize;
1481}
1482
Dan Gohman475871a2008-07-27 21:46:04 +00001483SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001484PPCTargetLowering::LowerFormalArguments(SDValue Chain,
1485 unsigned CallConv, bool isVarArg,
1486 const SmallVectorImpl<ISD::InputArg>
1487 &Ins,
1488 DebugLoc dl, SelectionDAG &DAG,
1489 SmallVectorImpl<SDValue> &InVals) {
1490 if (PPCSubTarget.isSVR4ABI()) {
1491 return LowerFormalArguments_SVR4(Chain, CallConv, isVarArg, Ins,
1492 dl, DAG, InVals);
1493 } else {
1494 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
1495 dl, DAG, InVals);
1496 }
1497}
1498
1499SDValue
1500PPCTargetLowering::LowerFormalArguments_SVR4(
1501 SDValue Chain,
1502 unsigned CallConv, bool isVarArg,
1503 const SmallVectorImpl<ISD::InputArg>
1504 &Ins,
1505 DebugLoc dl, SelectionDAG &DAG,
1506 SmallVectorImpl<SDValue> &InVals) {
1507
Tilmann Schellerffd02002009-07-03 06:45:56 +00001508 // SVR4 ABI Stack Frame Layout:
1509 // +-----------------------------------+
1510 // +--> | Back chain |
1511 // | +-----------------------------------+
1512 // | | Floating-point register save area |
1513 // | +-----------------------------------+
1514 // | | General register save area |
1515 // | +-----------------------------------+
1516 // | | CR save word |
1517 // | +-----------------------------------+
1518 // | | VRSAVE save word |
1519 // | +-----------------------------------+
1520 // | | Alignment padding |
1521 // | +-----------------------------------+
1522 // | | Vector register save area |
1523 // | +-----------------------------------+
1524 // | | Local variable space |
1525 // | +-----------------------------------+
1526 // | | Parameter list area |
1527 // | +-----------------------------------+
1528 // | | LR save word |
1529 // | +-----------------------------------+
1530 // SP--> +--- | Back chain |
1531 // +-----------------------------------+
1532 //
1533 // Specifications:
1534 // System V Application Binary Interface PowerPC Processor Supplement
1535 // AltiVec Technology Programming Interface Manual
1536
1537 MachineFunction &MF = DAG.getMachineFunction();
1538 MachineFrameInfo *MFI = MF.getFrameInfo();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001539
Owen Andersone50ed302009-08-10 22:56:29 +00001540 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001541 // Potential tail calls could cause overwriting of argument stack slots.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001542 bool isImmutable = !(PerformTailCallOpt && (CallConv==CallingConv::Fast));
Tilmann Schellerffd02002009-07-03 06:45:56 +00001543 unsigned PtrByteSize = 4;
1544
1545 // Assign locations to all of the incoming arguments.
1546 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001547 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), ArgLocs,
1548 *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001549
1550 // Reserve space for the linkage area on the stack.
1551 CCInfo.AllocateStack(PPCFrameInfo::getLinkageSize(false, false), PtrByteSize);
1552
Dan Gohman98ca4f22009-08-05 01:29:28 +00001553 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC_SVR4);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001554
1555 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1556 CCValAssign &VA = ArgLocs[i];
1557
1558 // Arguments stored in registers.
1559 if (VA.isRegLoc()) {
1560 TargetRegisterClass *RC;
Owen Andersone50ed302009-08-10 22:56:29 +00001561 EVT ValVT = VA.getValVT();
Tilmann Schellerffd02002009-07-03 06:45:56 +00001562
Owen Anderson825b72b2009-08-11 20:47:22 +00001563 switch (ValVT.getSimpleVT().SimpleTy) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00001564 default:
Dan Gohman98ca4f22009-08-05 01:29:28 +00001565 llvm_unreachable("ValVT not supported by formal arguments Lowering");
Owen Anderson825b72b2009-08-11 20:47:22 +00001566 case MVT::i32:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001567 RC = PPC::GPRCRegisterClass;
1568 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001569 case MVT::f32:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001570 RC = PPC::F4RCRegisterClass;
1571 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001572 case MVT::f64:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001573 RC = PPC::F8RCRegisterClass;
1574 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001575 case MVT::v16i8:
1576 case MVT::v8i16:
1577 case MVT::v4i32:
1578 case MVT::v4f32:
Tilmann Schellerffd02002009-07-03 06:45:56 +00001579 RC = PPC::VRRCRegisterClass;
1580 break;
1581 }
1582
1583 // Transform the arguments stored in physical registers into virtual ones.
1584 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001585 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, ValVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001586
Dan Gohman98ca4f22009-08-05 01:29:28 +00001587 InVals.push_back(ArgValue);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001588 } else {
1589 // Argument stored in memory.
1590 assert(VA.isMemLoc());
1591
1592 unsigned ArgSize = VA.getLocVT().getSizeInBits() / 8;
1593 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
1594 isImmutable);
1595
1596 // Create load nodes to retrieve arguments from the stack.
1597 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001598 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN, NULL, 0));
Tilmann Schellerffd02002009-07-03 06:45:56 +00001599 }
1600 }
1601
1602 // Assign locations to all of the incoming aggregate by value arguments.
1603 // Aggregates passed by value are stored in the local variable space of the
1604 // caller's stack frame, right above the parameter list area.
1605 SmallVector<CCValAssign, 16> ByValArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001606 CCState CCByValInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001607 ByValArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001608
1609 // Reserve stack space for the allocations in CCInfo.
1610 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
1611
Dan Gohman98ca4f22009-08-05 01:29:28 +00001612 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001613
1614 // Area that is at least reserved in the caller of this function.
1615 unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
1616
1617 // Set the size that is at least reserved in caller of this function. Tail
1618 // call optimized function's reserved stack space needs to be aligned so that
1619 // taking the difference between two stack areas will result in an aligned
1620 // stack.
1621 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
1622
1623 MinReservedArea =
1624 std::max(MinReservedArea,
1625 PPCFrameInfo::getMinCallFrameSize(false, false));
1626
1627 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameInfo()->
1628 getStackAlignment();
1629 unsigned AlignMask = TargetAlign-1;
1630 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
1631
1632 FI->setMinReservedArea(MinReservedArea);
1633
1634 SmallVector<SDValue, 8> MemOps;
1635
1636 // If the function takes variable number of arguments, make a frame index for
1637 // the start of the first vararg value... for expansion of llvm.va_start.
1638 if (isVarArg) {
1639 static const unsigned GPArgRegs[] = {
1640 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1641 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1642 };
1643 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
1644
1645 static const unsigned FPArgRegs[] = {
1646 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1647 PPC::F8
1648 };
1649 const unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
1650
1651 VarArgsNumGPR = CCInfo.getFirstUnallocated(GPArgRegs, NumGPArgRegs);
1652 VarArgsNumFPR = CCInfo.getFirstUnallocated(FPArgRegs, NumFPArgRegs);
1653
1654 // Make room for NumGPArgRegs and NumFPArgRegs.
1655 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
Owen Anderson825b72b2009-08-11 20:47:22 +00001656 NumFPArgRegs * EVT(MVT::f64).getSizeInBits()/8;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001657
1658 VarArgsStackOffset = MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
1659 CCInfo.getNextStackOffset());
1660
1661 VarArgsFrameIndex = MFI->CreateStackObject(Depth, 8);
1662 SDValue FIN = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
1663
1664 // The fixed integer arguments of a variadic function are
1665 // stored to the VarArgsFrameIndex on the stack.
1666 unsigned GPRIndex = 0;
1667 for (; GPRIndex != VarArgsNumGPR; ++GPRIndex) {
1668 SDValue Val = DAG.getRegister(GPArgRegs[GPRIndex], PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001669 SDValue Store = DAG.getStore(Chain, dl, Val, FIN, NULL, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001670 MemOps.push_back(Store);
1671 // Increment the address by four for the next argument to store
1672 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
1673 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1674 }
1675
1676 // If this function is vararg, store any remaining integer argument regs
1677 // to their spots on the stack so that they may be loaded by deferencing the
1678 // result of va_next.
1679 for (; GPRIndex != NumGPArgRegs; ++GPRIndex) {
1680 unsigned VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
1681
Dan Gohman98ca4f22009-08-05 01:29:28 +00001682 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001683 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
1684 MemOps.push_back(Store);
1685 // Increment the address by four for the next argument to store
1686 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
1687 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1688 }
1689
1690 // FIXME SVR4: We only need to save FP argument registers if CR bit 6 is
1691 // set.
1692
1693 // The double arguments are stored to the VarArgsFrameIndex
1694 // on the stack.
1695 unsigned FPRIndex = 0;
1696 for (FPRIndex = 0; FPRIndex != VarArgsNumFPR; ++FPRIndex) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001697 SDValue Val = DAG.getRegister(FPArgRegs[FPRIndex], MVT::f64);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001698 SDValue Store = DAG.getStore(Chain, dl, Val, FIN, NULL, 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001699 MemOps.push_back(Store);
1700 // Increment the address by eight for the next argument to store
Owen Anderson825b72b2009-08-11 20:47:22 +00001701 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001702 PtrVT);
1703 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1704 }
1705
1706 for (; FPRIndex != NumFPArgRegs; ++FPRIndex) {
1707 unsigned VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
1708
Owen Anderson825b72b2009-08-11 20:47:22 +00001709 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
Tilmann Schellerffd02002009-07-03 06:45:56 +00001710 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
1711 MemOps.push_back(Store);
1712 // Increment the address by eight for the next argument to store
Owen Anderson825b72b2009-08-11 20:47:22 +00001713 SDValue PtrOff = DAG.getConstant(EVT(MVT::f64).getSizeInBits()/8,
Tilmann Schellerffd02002009-07-03 06:45:56 +00001714 PtrVT);
1715 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
1716 }
1717 }
1718
1719 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00001720 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001721 MVT::Other, &MemOps[0], MemOps.size());
Tilmann Schellerffd02002009-07-03 06:45:56 +00001722
Dan Gohman98ca4f22009-08-05 01:29:28 +00001723 return Chain;
Tilmann Schellerffd02002009-07-03 06:45:56 +00001724}
1725
1726SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001727PPCTargetLowering::LowerFormalArguments_Darwin(
1728 SDValue Chain,
1729 unsigned CallConv, bool isVarArg,
1730 const SmallVectorImpl<ISD::InputArg>
1731 &Ins,
1732 DebugLoc dl, SelectionDAG &DAG,
1733 SmallVectorImpl<SDValue> &InVals) {
1734
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001735 // TODO: add description of PPC stack frame format, or at least some docs.
1736 //
1737 MachineFunction &MF = DAG.getMachineFunction();
1738 MachineFrameInfo *MFI = MF.getFrameInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001739
Owen Andersone50ed302009-08-10 22:56:29 +00001740 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00001741 bool isPPC64 = PtrVT == MVT::i64;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001742 // Potential tail calls could cause overwriting of argument stack slots.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001743 bool isImmutable = !(PerformTailCallOpt && (CallConv==CallingConv::Fast));
Jim Laskeye9bd7b22006-11-28 14:53:52 +00001744 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey2f616bf2006-11-16 22:43:37 +00001745
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001746 unsigned ArgOffset = PPCFrameInfo::getLinkageSize(isPPC64, true);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001747 // Area that is at least reserved in caller of this function.
1748 unsigned MinReservedArea = ArgOffset;
1749
Chris Lattnerc91a4752006-06-26 22:48:35 +00001750 static const unsigned GPR_32[] = { // 32-bit registers.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001751 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1752 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1753 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00001754 static const unsigned GPR_64[] = { // 64-bit registers.
1755 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
1756 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
1757 };
Scott Michelfdc40a02009-02-17 22:15:04 +00001758
Dan Gohman98ca4f22009-08-05 01:29:28 +00001759 static const unsigned *FPR = GetFPR(PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00001760
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001761 static const unsigned VR[] = {
1762 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
1763 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
1764 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00001765
Owen Anderson718cb662007-09-07 04:06:50 +00001766 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001767 const unsigned Num_FPR_Regs = 13;
Owen Anderson718cb662007-09-07 04:06:50 +00001768 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey2f616bf2006-11-16 22:43:37 +00001769
1770 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00001771
Chris Lattnerc91a4752006-06-26 22:48:35 +00001772 const unsigned *GPR = isPPC64 ? GPR_64 : GPR_32;
Scott Michelfdc40a02009-02-17 22:15:04 +00001773
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001774 // In 32-bit non-varargs functions, the stack space for vectors is after the
1775 // stack space for non-vectors. We do not use this space unless we have
1776 // too many vectors to fit in registers, something that only occurs in
Scott Michelfdc40a02009-02-17 22:15:04 +00001777 // constructed examples:), but we have to walk the arglist to figure
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001778 // that out...for the pathological case, compute VecArgOffset as the
1779 // start of the vector parameter area. Computing VecArgOffset is the
1780 // entire point of the following loop.
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001781 unsigned VecArgOffset = ArgOffset;
1782 if (!isVarArg && !isPPC64) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001783 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001784 ++ArgNo) {
Owen Andersone50ed302009-08-10 22:56:29 +00001785 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001786 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001787 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001788
Duncan Sands276dcbd2008-03-21 09:14:45 +00001789 if (Flags.isByVal()) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001790 // ObjSize is the true size, ArgSize rounded up to multiple of regs.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001791 ObjSize = Flags.getByValSize();
Scott Michelfdc40a02009-02-17 22:15:04 +00001792 unsigned ArgSize =
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001793 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1794 VecArgOffset += ArgSize;
1795 continue;
1796 }
1797
Owen Anderson825b72b2009-08-11 20:47:22 +00001798 switch(ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001799 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001800 case MVT::i32:
1801 case MVT::f32:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001802 VecArgOffset += isPPC64 ? 8 : 4;
1803 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001804 case MVT::i64: // PPC64
1805 case MVT::f64:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001806 VecArgOffset += 8;
1807 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001808 case MVT::v4f32:
1809 case MVT::v4i32:
1810 case MVT::v8i16:
1811 case MVT::v16i8:
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001812 // Nothing to do, we're only looking at Nonvector args here.
1813 break;
1814 }
1815 }
1816 }
1817 // We've found where the vector parameter area in memory is. Skip the
1818 // first 12 parameters; these don't use that memory.
1819 VecArgOffset = ((VecArgOffset+15)/16)*16;
1820 VecArgOffset += 12*16;
1821
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001822 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey2f616bf2006-11-16 22:43:37 +00001823 // entry to a function on PPC, the arguments start after the linkage area,
1824 // although the first ones are often in registers.
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001825
Dan Gohman475871a2008-07-27 21:46:04 +00001826 SmallVector<SDValue, 8> MemOps;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001827 unsigned nAltivecParamsAtEnd = 0;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001828 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00001829 SDValue ArgVal;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001830 bool needsLoad = false;
Owen Andersone50ed302009-08-10 22:56:29 +00001831 EVT ObjectVT = Ins[ArgNo].VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001832 unsigned ObjSize = ObjectVT.getSizeInBits()/8;
Jim Laskey619965d2006-11-29 13:37:09 +00001833 unsigned ArgSize = ObjSize;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001834 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001835
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001836 unsigned CurArgOffset = ArgOffset;
Dale Johannesen8419dd62008-03-07 20:27:40 +00001837
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001838 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00001839 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
1840 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001841 if (isVarArg || isPPC64) {
1842 MinReservedArea = ((MinReservedArea+15)/16)*16;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001843 MinReservedArea += CalculateStackSlotSize(ObjectVT,
Dan Gohman095cc292008-09-13 01:54:27 +00001844 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001845 PtrByteSize);
1846 } else nAltivecParamsAtEnd++;
1847 } else
1848 // Calculate min reserved area.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001849 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
Dan Gohman095cc292008-09-13 01:54:27 +00001850 Flags,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001851 PtrByteSize);
1852
Dale Johannesen8419dd62008-03-07 20:27:40 +00001853 // FIXME the codegen can be much improved in some cases.
1854 // We do not have to keep everything in memory.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001855 if (Flags.isByVal()) {
Dale Johannesen8419dd62008-03-07 20:27:40 +00001856 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001857 ObjSize = Flags.getByValSize();
Dale Johannesen8419dd62008-03-07 20:27:40 +00001858 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
Dale Johannesen7f96f392008-03-08 01:41:42 +00001859 // Objects of size 1 and 2 are right justified, everything else is
1860 // left justified. This means the memory address is adjusted forwards.
1861 if (ObjSize==1 || ObjSize==2) {
1862 CurArgOffset = CurArgOffset + (4 - ObjSize);
1863 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00001864 // The value of the object is its address.
1865 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00001866 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001867 InVals.push_back(FIN);
Dale Johannesen7f96f392008-03-08 01:41:42 +00001868 if (ObjSize==1 || ObjSize==2) {
1869 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001870 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001871 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001872 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
Owen Anderson825b72b2009-08-11 20:47:22 +00001873 NULL, 0, ObjSize==1 ? MVT::i8 : MVT::i16 );
Dale Johannesen7f96f392008-03-08 01:41:42 +00001874 MemOps.push_back(Store);
1875 ++GPR_idx;
Dale Johannesen7f96f392008-03-08 01:41:42 +00001876 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001877
1878 ArgOffset += PtrByteSize;
1879
Dale Johannesen7f96f392008-03-08 01:41:42 +00001880 continue;
1881 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00001882 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
1883 // Store whatever pieces of the object are in registers
1884 // to memory. ArgVal will be address of the beginning of
1885 // the object.
1886 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001887 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Dale Johannesen8419dd62008-03-07 20:27:40 +00001888 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00001889 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001890 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00001891 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
Dale Johannesen8419dd62008-03-07 20:27:40 +00001892 MemOps.push_back(Store);
1893 ++GPR_idx;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001894 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00001895 } else {
1896 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
1897 break;
1898 }
1899 }
1900 continue;
1901 }
1902
Owen Anderson825b72b2009-08-11 20:47:22 +00001903 switch (ObjectVT.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001904 default: llvm_unreachable("Unhandled argument type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001905 case MVT::i32:
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001906 if (!isPPC64) {
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001907 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001908 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001909 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001910 ++GPR_idx;
1911 } else {
1912 needsLoad = true;
1913 ArgSize = PtrByteSize;
1914 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001915 // All int arguments reserve stack space in the Darwin ABI.
1916 ArgOffset += PtrByteSize;
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001917 break;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001918 }
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001919 // FALLTHROUGH
Owen Anderson825b72b2009-08-11 20:47:22 +00001920 case MVT::i64: // PPC64
Chris Lattnerc91a4752006-06-26 22:48:35 +00001921 if (GPR_idx != Num_GPR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001922 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001923 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001924
Owen Anderson825b72b2009-08-11 20:47:22 +00001925 if (ObjectVT == MVT::i32) {
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001926 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
Owen Anderson825b72b2009-08-11 20:47:22 +00001927 // value to MVT::i64 and then truncate to the correct register size.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001928 if (Flags.isSExt())
Owen Anderson825b72b2009-08-11 20:47:22 +00001929 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001930 DAG.getValueType(ObjectVT));
Duncan Sands276dcbd2008-03-21 09:14:45 +00001931 else if (Flags.isZExt())
Owen Anderson825b72b2009-08-11 20:47:22 +00001932 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001933 DAG.getValueType(ObjectVT));
1934
Owen Anderson825b72b2009-08-11 20:47:22 +00001935 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
Bill Wendling5f5bf3a2008-03-07 20:49:02 +00001936 }
1937
Chris Lattnerc91a4752006-06-26 22:48:35 +00001938 ++GPR_idx;
1939 } else {
1940 needsLoad = true;
Evan Cheng982a0592008-07-24 08:17:07 +00001941 ArgSize = PtrByteSize;
Chris Lattnerc91a4752006-06-26 22:48:35 +00001942 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001943 // All int arguments reserve stack space in the Darwin ABI.
1944 ArgOffset += 8;
Chris Lattnerc91a4752006-06-26 22:48:35 +00001945 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001946
Owen Anderson825b72b2009-08-11 20:47:22 +00001947 case MVT::f32:
1948 case MVT::f64:
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001949 // Every 4 bytes of argument space consumes one of the GPRs available for
1950 // argument passing.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001951 if (GPR_idx != Num_GPR_Regs) {
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001952 ++GPR_idx;
Chris Lattnerb1eb9872006-11-18 01:57:19 +00001953 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001954 ++GPR_idx;
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001955 }
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001956 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001957 unsigned VReg;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001958
Owen Anderson825b72b2009-08-11 20:47:22 +00001959 if (ObjectVT == MVT::f32)
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001960 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001961 else
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001962 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
1963
Dan Gohman98ca4f22009-08-05 01:29:28 +00001964 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001965 ++FPR_idx;
1966 } else {
1967 needsLoad = true;
1968 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001969
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00001970 // All FP arguments reserve stack space in the Darwin ABI.
1971 ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001972 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001973 case MVT::v4f32:
1974 case MVT::v4i32:
1975 case MVT::v8i16:
1976 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00001977 // Note that vector arguments in registers don't reserve stack space,
1978 // except in varargs functions.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001979 if (VR_idx != Num_VR_Regs) {
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00001980 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001981 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
Dale Johannesen75092de2008-03-12 00:22:17 +00001982 if (isVarArg) {
1983 while ((ArgOffset % 16) != 0) {
1984 ArgOffset += PtrByteSize;
1985 if (GPR_idx != Num_GPR_Regs)
1986 GPR_idx++;
1987 }
1988 ArgOffset += 16;
1989 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs);
1990 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001991 ++VR_idx;
1992 } else {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00001993 if (!isVarArg && !isPPC64) {
1994 // Vectors go after all the nonvectors.
1995 CurArgOffset = VecArgOffset;
1996 VecArgOffset += 16;
1997 } else {
1998 // Vectors are aligned.
1999 ArgOffset = ((ArgOffset+15)/16)*16;
2000 CurArgOffset = ArgOffset;
2001 ArgOffset += 16;
Dale Johannesen404d9902008-03-12 00:49:20 +00002002 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002003 needsLoad = true;
2004 }
2005 break;
2006 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002007
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002008 // We need to load the argument to a virtual register if we determined above
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002009 // that we ran out of physical registers of the appropriate type.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002010 if (needsLoad) {
Chris Lattner9f72d1a2008-02-13 07:35:30 +00002011 int FI = MFI->CreateFixedObject(ObjSize,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002012 CurArgOffset + (ArgSize - ObjSize),
2013 isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00002014 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002015 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, NULL, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002016 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002017
Dan Gohman98ca4f22009-08-05 01:29:28 +00002018 InVals.push_back(ArgVal);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002019 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00002020
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002021 // Set the size that is at least reserved in caller of this function. Tail
2022 // call optimized function's reserved stack space needs to be aligned so that
2023 // taking the difference between two stack areas will result in an aligned
2024 // stack.
2025 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2026 // Add the Altivec parameters at the end, if needed.
2027 if (nAltivecParamsAtEnd) {
2028 MinReservedArea = ((MinReservedArea+15)/16)*16;
2029 MinReservedArea += 16*nAltivecParamsAtEnd;
2030 }
2031 MinReservedArea =
2032 std::max(MinReservedArea,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002033 PPCFrameInfo::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002034 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameInfo()->
2035 getStackAlignment();
2036 unsigned AlignMask = TargetAlign-1;
2037 MinReservedArea = (MinReservedArea + AlignMask) & ~AlignMask;
2038 FI->setMinReservedArea(MinReservedArea);
2039
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002040 // If the function takes variable number of arguments, make a frame index for
2041 // the start of the first vararg value... for expansion of llvm.va_start.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002042 if (isVarArg) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002043 int Depth = ArgOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00002044
Duncan Sands83ec4b62008-06-06 12:08:01 +00002045 VarArgsFrameIndex = MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002046 Depth);
Dan Gohman475871a2008-07-27 21:46:04 +00002047 SDValue FIN = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002048
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002049 // If this function is vararg, store any remaining integer argument regs
2050 // to their spots on the stack so that they may be loaded by deferencing the
2051 // result of va_next.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00002052 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002053 unsigned VReg;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002054
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002055 if (isPPC64)
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002056 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002057 else
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002058 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00002059
Dan Gohman98ca4f22009-08-05 01:29:28 +00002060 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00002061 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, NULL, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002062 MemOps.push_back(Store);
2063 // Increment the address by four for the next argument to store
Dan Gohman475871a2008-07-27 21:46:04 +00002064 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
Dale Johannesen39355f92009-02-04 02:34:38 +00002065 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002066 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002067 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002068
Dale Johannesen8419dd62008-03-07 20:27:40 +00002069 if (!MemOps.empty())
Dan Gohman98ca4f22009-08-05 01:29:28 +00002070 Chain = DAG.getNode(ISD::TokenFactor, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00002071 MVT::Other, &MemOps[0], MemOps.size());
Dale Johannesen8419dd62008-03-07 20:27:40 +00002072
Dan Gohman98ca4f22009-08-05 01:29:28 +00002073 return Chain;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00002074}
2075
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002076/// CalculateParameterAndLinkageAreaSize - Get the size of the paramter plus
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002077/// linkage area for the Darwin ABI.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002078static unsigned
2079CalculateParameterAndLinkageAreaSize(SelectionDAG &DAG,
2080 bool isPPC64,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002081 bool isVarArg,
2082 unsigned CC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002083 const SmallVectorImpl<ISD::OutputArg>
2084 &Outs,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002085 unsigned &nAltivecParamsAtEnd) {
2086 // Count how many bytes are to be pushed on the stack, including the linkage
2087 // area, and parameter passing area. We start with 24/48 bytes, which is
2088 // prereserved space for [SP][CR][LR][3 x unused].
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002089 unsigned NumBytes = PPCFrameInfo::getLinkageSize(isPPC64, true);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002090 unsigned NumOps = Outs.size();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002091 unsigned PtrByteSize = isPPC64 ? 8 : 4;
2092
2093 // Add up all the space actually used.
2094 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
2095 // they all go in registers, but we must reserve stack space for them for
2096 // possible use by the caller. In varargs or 64-bit calls, parameters are
2097 // assigned stack space in order, with padding so Altivec parameters are
2098 // 16-byte aligned.
2099 nAltivecParamsAtEnd = 0;
2100 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002101 SDValue Arg = Outs[i].Val;
2102 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Owen Andersone50ed302009-08-10 22:56:29 +00002103 EVT ArgVT = Arg.getValueType();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002104 // Varargs Altivec parameters are padded to a 16 byte boundary.
Owen Anderson825b72b2009-08-11 20:47:22 +00002105 if (ArgVT==MVT::v4f32 || ArgVT==MVT::v4i32 ||
2106 ArgVT==MVT::v8i16 || ArgVT==MVT::v16i8) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002107 if (!isVarArg && !isPPC64) {
2108 // Non-varargs Altivec parameters go after all the non-Altivec
2109 // parameters; handle those later so we know how much padding we need.
2110 nAltivecParamsAtEnd++;
2111 continue;
2112 }
2113 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
2114 NumBytes = ((NumBytes+15)/16)*16;
2115 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002116 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002117 }
2118
2119 // Allow for Altivec parameters at the end, if needed.
2120 if (nAltivecParamsAtEnd) {
2121 NumBytes = ((NumBytes+15)/16)*16;
2122 NumBytes += 16*nAltivecParamsAtEnd;
2123 }
2124
2125 // The prolog code of the callee may store up to 8 GPR argument registers to
2126 // the stack, allowing va_start to index over them in memory if its varargs.
2127 // Because we cannot tell if this is needed on the caller side, we have to
2128 // conservatively assume that it is needed. As such, make sure we have at
2129 // least enough stack space for the caller to store the 8 GPRs.
2130 NumBytes = std::max(NumBytes,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002131 PPCFrameInfo::getMinCallFrameSize(isPPC64, true));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002132
2133 // Tail call needs the stack to be aligned.
2134 if (CC==CallingConv::Fast && PerformTailCallOpt) {
2135 unsigned TargetAlign = DAG.getMachineFunction().getTarget().getFrameInfo()->
2136 getStackAlignment();
2137 unsigned AlignMask = TargetAlign-1;
2138 NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2139 }
2140
2141 return NumBytes;
2142}
2143
2144/// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
2145/// adjusted to accomodate the arguments for the tailcall.
2146static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool IsTailCall,
2147 unsigned ParamSize) {
2148
2149 if (!IsTailCall) return 0;
2150
2151 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
2152 unsigned CallerMinReservedArea = FI->getMinReservedArea();
2153 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
2154 // Remember only if the new adjustement is bigger.
2155 if (SPDiff < FI->getTailCallSPDelta())
2156 FI->setTailCallSPDelta(SPDiff);
2157
2158 return SPDiff;
2159}
2160
Dan Gohman98ca4f22009-08-05 01:29:28 +00002161/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2162/// for tail call optimization. Targets which want to do tail call
2163/// optimization should implement this function.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002164bool
Dan Gohman98ca4f22009-08-05 01:29:28 +00002165PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2166 unsigned CalleeCC,
2167 bool isVarArg,
2168 const SmallVectorImpl<ISD::InputArg> &Ins,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002169 SelectionDAG& DAG) const {
2170 // Variable argument functions are not supported.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002171 if (isVarArg)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002172 return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002173
Dan Gohman98ca4f22009-08-05 01:29:28 +00002174 MachineFunction &MF = DAG.getMachineFunction();
2175 unsigned CallerCC = MF.getFunction()->getCallingConv();
2176 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
2177 // Functions containing by val parameters are not supported.
2178 for (unsigned i = 0; i != Ins.size(); i++) {
2179 ISD::ArgFlagsTy Flags = Ins[i].Flags;
2180 if (Flags.isByVal()) return false;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002181 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002182
2183 // Non PIC/GOT tail calls are supported.
2184 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
2185 return true;
2186
2187 // At the moment we can only do local tail calls (in same module, hidden
2188 // or protected) if we are generating PIC.
2189 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2190 return G->getGlobal()->hasHiddenVisibility()
2191 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002192 }
2193
2194 return false;
2195}
2196
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002197/// isCallCompatibleAddress - Return the immediate to use if the specified
2198/// 32-bit value is representable in the immediate field of a BxA instruction.
Dan Gohman475871a2008-07-27 21:46:04 +00002199static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002200 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
2201 if (!C) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002202
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002203 int Addr = C->getZExtValue();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002204 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
2205 (Addr << 6 >> 6) != Addr)
2206 return 0; // Top 6 bits have to be sext of immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00002207
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002208 return DAG.getConstant((int)C->getZExtValue() >> 2,
Gabor Greifba36cb52008-08-28 21:40:38 +00002209 DAG.getTargetLoweringInfo().getPointerTy()).getNode();
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002210}
2211
Dan Gohman844731a2008-05-13 00:00:25 +00002212namespace {
2213
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002214struct TailCallArgumentInfo {
Dan Gohman475871a2008-07-27 21:46:04 +00002215 SDValue Arg;
2216 SDValue FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002217 int FrameIdx;
2218
2219 TailCallArgumentInfo() : FrameIdx(0) {}
2220};
2221
Dan Gohman844731a2008-05-13 00:00:25 +00002222}
2223
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002224/// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
2225static void
2226StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00002227 SDValue Chain,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002228 const SmallVector<TailCallArgumentInfo, 8> &TailCallArgs,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002229 SmallVector<SDValue, 8> &MemOpChains,
2230 DebugLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002231 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002232 SDValue Arg = TailCallArgs[i].Arg;
2233 SDValue FIN = TailCallArgs[i].FrameIdxOp;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002234 int FI = TailCallArgs[i].FrameIdx;
2235 // Store relative to framepointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00002236 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00002237 PseudoSourceValue::getFixedStack(FI),
2238 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002239 }
2240}
2241
2242/// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
2243/// the appropriate stack slot for the tail call optimized function call.
Dan Gohman475871a2008-07-27 21:46:04 +00002244static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002245 MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00002246 SDValue Chain,
2247 SDValue OldRetAddr,
2248 SDValue OldFP,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002249 int SPDiff,
2250 bool isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002251 bool isDarwinABI,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002252 DebugLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002253 if (SPDiff) {
2254 // Calculate the new stack slot for the return address.
2255 int SlotSize = isPPC64 ? 8 : 4;
2256 int NewRetAddrLoc = SPDiff + PPCFrameInfo::getReturnSaveOffset(isPPC64,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002257 isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002258 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
2259 NewRetAddrLoc);
Owen Anderson825b72b2009-08-11 20:47:22 +00002260 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002261 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002262 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
Dan Gohmana54cf172008-07-11 22:44:52 +00002263 PseudoSourceValue::getFixedStack(NewRetAddr), 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002264
2265 // When using the SVR4 ABI there is no need to move the FP stack slot
2266 // as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002267 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002268 int NewFPLoc =
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002269 SPDiff + PPCFrameInfo::getFramePointerSaveOffset(isPPC64, isDarwinABI);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002270 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc);
2271 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
2272 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
2273 PseudoSourceValue::getFixedStack(NewFPIdx), 0);
2274 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002275 }
2276 return Chain;
2277}
2278
2279/// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
2280/// the position of the argument.
2281static void
2282CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
Dan Gohman475871a2008-07-27 21:46:04 +00002283 SDValue Arg, int SPDiff, unsigned ArgOffset,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002284 SmallVector<TailCallArgumentInfo, 8>& TailCallArguments) {
2285 int Offset = ArgOffset + SPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002286 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002287 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Owen Anderson825b72b2009-08-11 20:47:22 +00002288 EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002289 SDValue FIN = DAG.getFrameIndex(FI, VT);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002290 TailCallArgumentInfo Info;
2291 Info.Arg = Arg;
2292 Info.FrameIdxOp = FIN;
2293 Info.FrameIdx = FI;
2294 TailCallArguments.push_back(Info);
2295}
2296
2297/// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
2298/// stack slot. Returns the chain as result and the loaded frame pointers in
2299/// LROpOut/FPOpout. Used when tail calling.
Dan Gohman475871a2008-07-27 21:46:04 +00002300SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002301 int SPDiff,
2302 SDValue Chain,
2303 SDValue &LROpOut,
2304 SDValue &FPOpOut,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002305 bool isDarwinABI,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002306 DebugLoc dl) {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002307 if (SPDiff) {
2308 // Load the LR and FP stack slot for later adjusting.
Owen Anderson825b72b2009-08-11 20:47:22 +00002309 EVT VT = PPCSubTarget.isPPC64() ? MVT::i64 : MVT::i32;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002310 LROpOut = getReturnAddrFrameIndex(DAG);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002311 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, NULL, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002312 Chain = SDValue(LROpOut.getNode(), 1);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002313
2314 // When using the SVR4 ABI there is no need to load the FP stack slot
2315 // as the FP is never overwritten.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002316 if (isDarwinABI) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002317 FPOpOut = getFramePointerFrameIndex(DAG);
2318 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, NULL, 0);
2319 Chain = SDValue(FPOpOut.getNode(), 1);
2320 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002321 }
2322 return Chain;
2323}
2324
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002325/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
Scott Michelfdc40a02009-02-17 22:15:04 +00002326/// by "Src" to address "Dst" of size "Size". Alignment information is
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002327/// specified by the specific parameter attribute. The copy will be passed as
2328/// a byval function parameter.
2329/// Sometimes what we are copying is the end of a larger object, the part that
2330/// does not fit in registers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002331static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002332CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sands276dcbd2008-03-21 09:14:45 +00002333 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002334 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002335 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesen8ad9b432009-02-04 01:17:06 +00002336 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2337 false, NULL, 0, NULL, 0);
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002338}
Chris Lattner9f0bc652007-02-25 05:34:32 +00002339
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002340/// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
2341/// tail calls.
2342static void
Dan Gohman475871a2008-07-27 21:46:04 +00002343LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
2344 SDValue Arg, SDValue PtrOff, int SPDiff,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002345 unsigned ArgOffset, bool isPPC64, bool isTailCall,
Dan Gohman475871a2008-07-27 21:46:04 +00002346 bool isVector, SmallVector<SDValue, 8> &MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002347 SmallVector<TailCallArgumentInfo, 8>& TailCallArguments,
2348 DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002349 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002350 if (!isTailCall) {
2351 if (isVector) {
Dan Gohman475871a2008-07-27 21:46:04 +00002352 SDValue StackPtr;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002353 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002354 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002355 else
Owen Anderson825b72b2009-08-11 20:47:22 +00002356 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +00002357 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002358 DAG.getConstant(ArgOffset, PtrVT));
2359 }
Dale Johannesen33c960f2009-02-04 20:06:27 +00002360 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002361 // Calculate and remember argument location.
2362 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
2363 TailCallArguments);
2364}
2365
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002366static
2367void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
2368 DebugLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
2369 SDValue LROp, SDValue FPOp, bool isDarwinABI,
2370 SmallVector<TailCallArgumentInfo, 8> &TailCallArguments) {
2371 MachineFunction &MF = DAG.getMachineFunction();
2372
2373 // Emit a sequence of copyto/copyfrom virtual registers for arguments that
2374 // might overwrite each other in case of tail call optimization.
2375 SmallVector<SDValue, 8> MemOpChains2;
2376 // Do not flag preceeding copytoreg stuff together with the following stuff.
2377 InFlag = SDValue();
2378 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
2379 MemOpChains2, dl);
2380 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002381 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002382 &MemOpChains2[0], MemOpChains2.size());
2383
2384 // Store the return address to the appropriate stack slot.
2385 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
2386 isPPC64, isDarwinABI, dl);
2387
2388 // Emit callseq_end just before tailcall node.
2389 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2390 DAG.getIntPtrConstant(0, true), InFlag);
2391 InFlag = Chain.getValue(1);
2392}
2393
2394static
2395unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
2396 SDValue &Chain, DebugLoc dl, int SPDiff, bool isTailCall,
2397 SmallVector<std::pair<unsigned, SDValue>, 8> &RegsToPass,
Owen Andersone50ed302009-08-10 22:56:29 +00002398 SmallVector<SDValue, 8> &Ops, std::vector<EVT> &NodeTys,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002399 bool isSVR4ABI) {
Owen Andersone50ed302009-08-10 22:56:29 +00002400 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00002401 NodeTys.push_back(MVT::Other); // Returns a chain
2402 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002403
2404 unsigned CallOpc = isSVR4ABI ? PPCISD::CALL_SVR4 : PPCISD::CALL_Darwin;
2405
2406 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
2407 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
2408 // node so that legalize doesn't hack it.
2409 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
2410 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), Callee.getValueType());
2411 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
2412 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType());
2413 else if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG))
2414 // If this is an absolute destination address, use the munged value.
2415 Callee = SDValue(Dest, 0);
2416 else {
2417 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
2418 // to do the call, we can't use PPCISD::CALL.
2419 SDValue MTCTROps[] = {Chain, Callee, InFlag};
2420 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys, MTCTROps,
2421 2 + (InFlag.getNode() != 0));
2422 InFlag = Chain.getValue(1);
2423
2424 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00002425 NodeTys.push_back(MVT::Other);
2426 NodeTys.push_back(MVT::Flag);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002427 Ops.push_back(Chain);
2428 CallOpc = isSVR4ABI ? PPCISD::BCTRL_SVR4 : PPCISD::BCTRL_Darwin;
2429 Callee.setNode(0);
2430 // Add CTR register as callee so a bctr can be emitted later.
2431 if (isTailCall)
2432 Ops.push_back(DAG.getRegister(PPC::CTR, PtrVT));
2433 }
2434
2435 // If this is a direct call, pass the chain and the callee.
2436 if (Callee.getNode()) {
2437 Ops.push_back(Chain);
2438 Ops.push_back(Callee);
2439 }
2440 // If this is a tail call add stack pointer delta.
2441 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002442 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002443
2444 // Add argument registers to the end of the list so that they are known live
2445 // into the call.
2446 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2447 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2448 RegsToPass[i].second.getValueType()));
2449
2450 return CallOpc;
2451}
2452
Dan Gohman98ca4f22009-08-05 01:29:28 +00002453SDValue
2454PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
2455 unsigned CallConv, bool isVarArg,
2456 const SmallVectorImpl<ISD::InputArg> &Ins,
2457 DebugLoc dl, SelectionDAG &DAG,
2458 SmallVectorImpl<SDValue> &InVals) {
2459
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002460 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002461 CCState CCRetInfo(CallConv, isVarArg, getTargetMachine(),
2462 RVLocs, *DAG.getContext());
2463 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002464
2465 // Copy all of the result registers out of their specified physreg.
2466 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2467 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002468 EVT VT = VA.getValVT();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002469 assert(VA.isRegLoc() && "Can only return in registers!");
2470 Chain = DAG.getCopyFromReg(Chain, dl,
2471 VA.getLocReg(), VT, InFlag).getValue(1);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002472 InVals.push_back(Chain.getValue(0));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002473 InFlag = Chain.getValue(2);
2474 }
2475
Dan Gohman98ca4f22009-08-05 01:29:28 +00002476 return Chain;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002477}
2478
Dan Gohman98ca4f22009-08-05 01:29:28 +00002479SDValue
2480PPCTargetLowering::FinishCall(unsigned CallConv, DebugLoc dl, bool isTailCall,
2481 bool isVarArg,
2482 SelectionDAG &DAG,
2483 SmallVector<std::pair<unsigned, SDValue>, 8>
2484 &RegsToPass,
2485 SDValue InFlag, SDValue Chain,
2486 SDValue &Callee,
2487 int SPDiff, unsigned NumBytes,
2488 const SmallVectorImpl<ISD::InputArg> &Ins,
2489 SmallVectorImpl<SDValue> &InVals) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002490
Owen Andersone50ed302009-08-10 22:56:29 +00002491 std::vector<EVT> NodeTys;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002492 SmallVector<SDValue, 8> Ops;
2493 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, dl, SPDiff,
2494 isTailCall, RegsToPass, Ops, NodeTys,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002495 PPCSubTarget.isSVR4ABI());
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002496
2497 // When performing tail call optimization the callee pops its arguments off
2498 // the stack. Account for this here so these bytes can be pushed back on in
2499 // PPCRegisterInfo::eliminateCallFramePseudoInstr.
2500 int BytesCalleePops =
Dan Gohman98ca4f22009-08-05 01:29:28 +00002501 (CallConv==CallingConv::Fast && PerformTailCallOpt) ? NumBytes : 0;
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002502
2503 if (InFlag.getNode())
2504 Ops.push_back(InFlag);
2505
2506 // Emit tail call.
2507 if (isTailCall) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002508 // If this is the first return lowered for this function, add the regs
2509 // to the liveout set for the function.
2510 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
2511 SmallVector<CCValAssign, 16> RVLocs;
2512 CCState CCInfo(CallConv, isVarArg, getTargetMachine(), RVLocs,
2513 *DAG.getContext());
2514 CCInfo.AnalyzeCallResult(Ins, RetCC_PPC);
2515 for (unsigned i = 0; i != RVLocs.size(); ++i)
2516 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
2517 }
2518
2519 assert(((Callee.getOpcode() == ISD::Register &&
2520 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
2521 Callee.getOpcode() == ISD::TargetExternalSymbol ||
2522 Callee.getOpcode() == ISD::TargetGlobalAddress ||
2523 isa<ConstantSDNode>(Callee)) &&
2524 "Expecting an global address, external symbol, absolute value or register");
2525
Owen Anderson825b72b2009-08-11 20:47:22 +00002526 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, &Ops[0], Ops.size());
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002527 }
2528
2529 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size());
2530 InFlag = Chain.getValue(1);
2531
2532 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2533 DAG.getIntPtrConstant(BytesCalleePops, true),
2534 InFlag);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002535 if (!Ins.empty())
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002536 InFlag = Chain.getValue(1);
2537
Dan Gohman98ca4f22009-08-05 01:29:28 +00002538 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2539 Ins, dl, DAG, InVals);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002540}
2541
Dan Gohman98ca4f22009-08-05 01:29:28 +00002542SDValue
2543PPCTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
2544 unsigned CallConv, bool isVarArg,
2545 bool isTailCall,
2546 const SmallVectorImpl<ISD::OutputArg> &Outs,
2547 const SmallVectorImpl<ISD::InputArg> &Ins,
2548 DebugLoc dl, SelectionDAG &DAG,
2549 SmallVectorImpl<SDValue> &InVals) {
2550 if (PPCSubTarget.isSVR4ABI()) {
2551 return LowerCall_SVR4(Chain, Callee, CallConv, isVarArg,
2552 isTailCall, Outs, Ins,
2553 dl, DAG, InVals);
2554 } else {
2555 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
2556 isTailCall, Outs, Ins,
2557 dl, DAG, InVals);
2558 }
2559}
2560
2561SDValue
2562PPCTargetLowering::LowerCall_SVR4(SDValue Chain, SDValue Callee,
2563 unsigned CallConv, bool isVarArg,
2564 bool isTailCall,
2565 const SmallVectorImpl<ISD::OutputArg> &Outs,
2566 const SmallVectorImpl<ISD::InputArg> &Ins,
2567 DebugLoc dl, SelectionDAG &DAG,
2568 SmallVectorImpl<SDValue> &InVals) {
2569 // See PPCTargetLowering::LowerFormalArguments_SVR4() for a description
Tilmann Schellerffd02002009-07-03 06:45:56 +00002570 // of the SVR4 ABI stack frame layout.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002571
2572 assert((!isTailCall ||
2573 (CallConv == CallingConv::Fast && PerformTailCallOpt)) &&
2574 "IsEligibleForTailCallOptimization missed a case!");
2575
2576 assert((CallConv == CallingConv::C ||
2577 CallConv == CallingConv::Fast) && "Unknown calling convention!");
Tilmann Schellerffd02002009-07-03 06:45:56 +00002578
Owen Andersone50ed302009-08-10 22:56:29 +00002579 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Tilmann Schellerffd02002009-07-03 06:45:56 +00002580 unsigned PtrByteSize = 4;
2581
2582 MachineFunction &MF = DAG.getMachineFunction();
2583
2584 // Mark this function as potentially containing a function that contains a
2585 // tail call. As a consequence the frame pointer will be used for dynamicalloc
2586 // and restoring the callers stack pointer in this functions epilog. This is
2587 // done because by tail calling the called function might overwrite the value
2588 // in this function's (MF) stack pointer stack slot 0(SP).
Dan Gohman98ca4f22009-08-05 01:29:28 +00002589 if (PerformTailCallOpt && CallConv==CallingConv::Fast)
Tilmann Schellerffd02002009-07-03 06:45:56 +00002590 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
2591
2592 // Count how many bytes are to be pushed on the stack, including the linkage
2593 // area, parameter list area and the part of the local variable space which
2594 // contains copies of aggregates which are passed by value.
2595
2596 // Assign locations to all of the outgoing arguments.
2597 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002598 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
2599 ArgLocs, *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00002600
2601 // Reserve space for the linkage area on the stack.
2602 CCInfo.AllocateStack(PPCFrameInfo::getLinkageSize(false, false), PtrByteSize);
2603
2604 if (isVarArg) {
2605 // Handle fixed and variable vector arguments differently.
2606 // Fixed vector arguments go into registers as long as registers are
2607 // available. Variable vector arguments always go into memory.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002608 unsigned NumArgs = Outs.size();
Tilmann Schellerffd02002009-07-03 06:45:56 +00002609
2610 for (unsigned i = 0; i != NumArgs; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00002611 EVT ArgVT = Outs[i].Val.getValueType();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002612 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002613 bool Result;
2614
Dan Gohman98ca4f22009-08-05 01:29:28 +00002615 if (Outs[i].IsFixed) {
Tilmann Schellerffd02002009-07-03 06:45:56 +00002616 Result = CC_PPC_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
2617 CCInfo);
2618 } else {
2619 Result = CC_PPC_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
2620 ArgFlags, CCInfo);
2621 }
2622
2623 if (Result) {
Torok Edwindac237e2009-07-08 20:53:28 +00002624#ifndef NDEBUG
Tilmann Schellerffd02002009-07-03 06:45:56 +00002625 cerr << "Call operand #" << i << " has unhandled type "
Owen Andersone50ed302009-08-10 22:56:29 +00002626 << ArgVT.getEVTString() << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +00002627#endif
Torok Edwinc23197a2009-07-14 16:55:14 +00002628 llvm_unreachable(0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002629 }
2630 }
2631 } else {
2632 // All arguments are treated the same.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002633 CCInfo.AnalyzeCallOperands(Outs, CC_PPC_SVR4);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002634 }
2635
2636 // Assign locations to all of the outgoing aggregate by value arguments.
2637 SmallVector<CCValAssign, 16> ByValArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002638 CCState CCByValInfo(CallConv, isVarArg, getTargetMachine(), ByValArgLocs,
Owen Andersone922c022009-07-22 00:24:57 +00002639 *DAG.getContext());
Tilmann Schellerffd02002009-07-03 06:45:56 +00002640
2641 // Reserve stack space for the allocations in CCInfo.
2642 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2643
Dan Gohman98ca4f22009-08-05 01:29:28 +00002644 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC_SVR4_ByVal);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002645
2646 // Size of the linkage area, parameter list area and the part of the local
2647 // space variable where copies of aggregates which are passed by value are
2648 // stored.
2649 unsigned NumBytes = CCByValInfo.getNextStackOffset();
2650
2651 // Calculate by how many bytes the stack has to be adjusted in case of tail
2652 // call optimization.
2653 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
2654
2655 // Adjust the stack pointer for the new arguments...
2656 // These operations are automatically eliminated by the prolog/epilog pass
2657 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
2658 SDValue CallSeqStart = Chain;
2659
2660 // Load the return address and frame pointer so it can be moved somewhere else
2661 // later.
2662 SDValue LROp, FPOp;
2663 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
2664 dl);
2665
2666 // Set up a copy of the stack pointer for use loading and storing any
2667 // arguments that may not fit in the registers available for argument
2668 // passing.
Owen Anderson825b72b2009-08-11 20:47:22 +00002669 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002670
2671 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2672 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
2673 SmallVector<SDValue, 8> MemOpChains;
2674
2675 // Walk the register/memloc assignments, inserting copies/loads.
2676 for (unsigned i = 0, j = 0, e = ArgLocs.size();
2677 i != e;
2678 ++i) {
2679 CCValAssign &VA = ArgLocs[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002680 SDValue Arg = Outs[i].Val;
2681 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002682
2683 if (Flags.isByVal()) {
2684 // Argument is an aggregate which is passed by value, thus we need to
2685 // create a copy of it in the local variable space of the current stack
2686 // frame (which is the stack frame of the caller) and pass the address of
2687 // this copy to the callee.
2688 assert((j < ByValArgLocs.size()) && "Index out of bounds!");
2689 CCValAssign &ByValVA = ByValArgLocs[j++];
2690 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
2691
2692 // Memory reserved in the local variable space of the callers stack frame.
2693 unsigned LocMemOffset = ByValVA.getLocMemOffset();
2694
2695 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2696 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2697
2698 // Create a copy of the argument in the local area of the current
2699 // stack frame.
2700 SDValue MemcpyCall =
2701 CreateCopyOfByValArgument(Arg, PtrOff,
2702 CallSeqStart.getNode()->getOperand(0),
2703 Flags, DAG, dl);
2704
2705 // This must go outside the CALLSEQ_START..END.
2706 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
2707 CallSeqStart.getNode()->getOperand(1));
2708 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
2709 NewCallSeqStart.getNode());
2710 Chain = CallSeqStart = NewCallSeqStart;
2711
2712 // Pass the address of the aggregate copy on the stack either in a
2713 // physical register or in the parameter list area of the current stack
2714 // frame to the callee.
2715 Arg = PtrOff;
2716 }
2717
2718 if (VA.isRegLoc()) {
2719 // Put argument in a physical register.
2720 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2721 } else {
2722 // Put argument in the parameter list area of the current stack frame.
2723 assert(VA.isMemLoc());
2724 unsigned LocMemOffset = VA.getLocMemOffset();
2725
2726 if (!isTailCall) {
2727 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2728 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2729
2730 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
2731 PseudoSourceValue::getStack(), LocMemOffset));
2732 } else {
2733 // Calculate and remember argument location.
2734 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
2735 TailCallArguments);
2736 }
2737 }
2738 }
2739
2740 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002741 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Tilmann Schellerffd02002009-07-03 06:45:56 +00002742 &MemOpChains[0], MemOpChains.size());
2743
2744 // Build a sequence of copy-to-reg nodes chained together with token chain
2745 // and flag operands which copy the outgoing args into the appropriate regs.
2746 SDValue InFlag;
2747 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2748 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2749 RegsToPass[i].second, InFlag);
2750 InFlag = Chain.getValue(1);
2751 }
2752
2753 // Set CR6 to true if this is a vararg call.
2754 if (isVarArg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002755 SDValue SetCR(DAG.getTargetNode(PPC::CRSET, dl, MVT::i32), 0);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002756 Chain = DAG.getCopyToReg(Chain, dl, PPC::CR1EQ, SetCR, InFlag);
2757 InFlag = Chain.getValue(1);
2758 }
2759
Tilmann Schellerffd02002009-07-03 06:45:56 +00002760 if (isTailCall) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002761 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
2762 false, TailCallArguments);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002763 }
2764
Dan Gohman98ca4f22009-08-05 01:29:28 +00002765 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
2766 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
2767 Ins, InVals);
Tilmann Schellerffd02002009-07-03 06:45:56 +00002768}
2769
Dan Gohman98ca4f22009-08-05 01:29:28 +00002770SDValue
2771PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
2772 unsigned CallConv, bool isVarArg,
2773 bool isTailCall,
2774 const SmallVectorImpl<ISD::OutputArg> &Outs,
2775 const SmallVectorImpl<ISD::InputArg> &Ins,
2776 DebugLoc dl, SelectionDAG &DAG,
2777 SmallVectorImpl<SDValue> &InVals) {
2778
2779 unsigned NumOps = Outs.size();
Scott Michelfdc40a02009-02-17 22:15:04 +00002780
Owen Andersone50ed302009-08-10 22:56:29 +00002781 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00002782 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002783 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00002784
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002785 MachineFunction &MF = DAG.getMachineFunction();
2786
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002787 // Mark this function as potentially containing a function that contains a
2788 // tail call. As a consequence the frame pointer will be used for dynamicalloc
2789 // and restoring the callers stack pointer in this functions epilog. This is
2790 // done because by tail calling the called function might overwrite the value
2791 // in this function's (MF) stack pointer stack slot 0(SP).
Dan Gohman98ca4f22009-08-05 01:29:28 +00002792 if (PerformTailCallOpt && CallConv==CallingConv::Fast)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002793 MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
2794
2795 unsigned nAltivecParamsAtEnd = 0;
2796
Chris Lattnerabde4602006-05-16 22:56:08 +00002797 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerc91a4752006-06-26 22:48:35 +00002798 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002799 // prereserved space for [SP][CR][LR][3 x unused].
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002800 unsigned NumBytes =
Dan Gohman98ca4f22009-08-05 01:29:28 +00002801 CalculateParameterAndLinkageAreaSize(DAG, isPPC64, isVarArg, CallConv,
2802 Outs,
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002803 nAltivecParamsAtEnd);
Dale Johannesen75092de2008-03-12 00:22:17 +00002804
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002805 // Calculate by how many bytes the stack has to be adjusted in case of tail
2806 // call optimization.
2807 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
Scott Michelfdc40a02009-02-17 22:15:04 +00002808
Dan Gohman98ca4f22009-08-05 01:29:28 +00002809 // To protect arguments on the stack from being clobbered in a tail call,
2810 // force all the loads to happen before doing any other lowering.
2811 if (isTailCall)
2812 Chain = DAG.getStackArgumentTokenFactor(Chain);
2813
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002814 // Adjust the stack pointer for the new arguments...
2815 // These operations are automatically eliminated by the prolog/epilog pass
Chris Lattnere563bbc2008-10-11 22:08:30 +00002816 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohman475871a2008-07-27 21:46:04 +00002817 SDValue CallSeqStart = Chain;
Scott Michelfdc40a02009-02-17 22:15:04 +00002818
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002819 // Load the return address and frame pointer so it can be move somewhere else
2820 // later.
Dan Gohman475871a2008-07-27 21:46:04 +00002821 SDValue LROp, FPOp;
Tilmann Schellerffd02002009-07-03 06:45:56 +00002822 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
2823 dl);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002824
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002825 // Set up a copy of the stack pointer for use loading and storing any
2826 // arguments that may not fit in the registers available for argument
2827 // passing.
Dan Gohman475871a2008-07-27 21:46:04 +00002828 SDValue StackPtr;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002829 if (isPPC64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002830 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
Chris Lattnerc91a4752006-06-26 22:48:35 +00002831 else
Owen Anderson825b72b2009-08-11 20:47:22 +00002832 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00002833
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002834 // Figure out which arguments are going to go in registers, and which in
2835 // memory. Also, if this is a vararg function, floating point operations
2836 // must be stored to our stack, and loaded into integer regs as well, if
2837 // any integer regs are available for argument passing.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002838 unsigned ArgOffset = PPCFrameInfo::getLinkageSize(isPPC64, true);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002839 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00002840
Chris Lattnerc91a4752006-06-26 22:48:35 +00002841 static const unsigned GPR_32[] = { // 32-bit registers.
Chris Lattner9a2a4972006-05-17 06:01:33 +00002842 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2843 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2844 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00002845 static const unsigned GPR_64[] = { // 64-bit registers.
2846 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2847 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2848 };
Dan Gohman98ca4f22009-08-05 01:29:28 +00002849 static const unsigned *FPR = GetFPR(PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00002850
Chris Lattner9a2a4972006-05-17 06:01:33 +00002851 static const unsigned VR[] = {
2852 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2853 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2854 };
Owen Anderson718cb662007-09-07 04:06:50 +00002855 const unsigned NumGPRs = array_lengthof(GPR_32);
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002856 const unsigned NumFPRs = 13;
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002857 const unsigned NumVRs = array_lengthof(VR);
Scott Michelfdc40a02009-02-17 22:15:04 +00002858
Chris Lattnerc91a4752006-06-26 22:48:35 +00002859 const unsigned *GPR = isPPC64 ? GPR_64 : GPR_32;
2860
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002861 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002862 SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
2863
Dan Gohman475871a2008-07-27 21:46:04 +00002864 SmallVector<SDValue, 8> MemOpChains;
Evan Cheng4360bdc2006-05-25 00:57:32 +00002865 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattner9f0bc652007-02-25 05:34:32 +00002866 bool inMem = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002867 SDValue Arg = Outs[i].Val;
2868 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00002869
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002870 // PtrOff will be used to store the current argument to the stack if a
2871 // register cannot be found for it.
Dan Gohman475871a2008-07-27 21:46:04 +00002872 SDValue PtrOff;
Scott Michelfdc40a02009-02-17 22:15:04 +00002873
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002874 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00002875
Dale Johannesen39355f92009-02-04 02:34:38 +00002876 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
Chris Lattnerc91a4752006-06-26 22:48:35 +00002877
2878 // On PPC64, promote integers to 64-bit values.
Owen Anderson825b72b2009-08-11 20:47:22 +00002879 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Duncan Sands276dcbd2008-03-21 09:14:45 +00002880 // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
2881 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Owen Anderson825b72b2009-08-11 20:47:22 +00002882 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
Chris Lattnerc91a4752006-06-26 22:48:35 +00002883 }
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002884
Dale Johannesen8419dd62008-03-07 20:27:40 +00002885 // FIXME memcpy is used way more than necessary. Correctness first.
Duncan Sands276dcbd2008-03-21 09:14:45 +00002886 if (Flags.isByVal()) {
2887 unsigned Size = Flags.getByValSize();
Dale Johannesen8419dd62008-03-07 20:27:40 +00002888 if (Size==1 || Size==2) {
2889 // Very small objects are passed right-justified.
2890 // Everything else is passed left-justified.
Owen Anderson825b72b2009-08-11 20:47:22 +00002891 EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002892 if (GPR_idx != NumGPRs) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002893 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
Dale Johannesen8419dd62008-03-07 20:27:40 +00002894 NULL, 0, VT);
2895 MemOpChains.push_back(Load.getValue(1));
2896 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002897
2898 ArgOffset += PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002899 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00002900 SDValue Const = DAG.getConstant(4 - Size, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00002901 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
Dan Gohman475871a2008-07-27 21:46:04 +00002902 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, AddPtr,
Scott Michelfdc40a02009-02-17 22:15:04 +00002903 CallSeqStart.getNode()->getOperand(0),
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002904 Flags, DAG, dl);
Dale Johannesen8419dd62008-03-07 20:27:40 +00002905 // This must go outside the CALLSEQ_START..END.
Dan Gohman475871a2008-07-27 21:46:04 +00002906 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Gabor Greifba36cb52008-08-28 21:40:38 +00002907 CallSeqStart.getNode()->getOperand(1));
Gabor Greif93c53e52008-08-31 15:37:04 +00002908 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
2909 NewCallSeqStart.getNode());
Dale Johannesen8419dd62008-03-07 20:27:40 +00002910 Chain = CallSeqStart = NewCallSeqStart;
2911 ArgOffset += PtrByteSize;
2912 }
2913 continue;
2914 }
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002915 // Copy entire object into memory. There are cases where gcc-generated
2916 // code assumes it is there, even if it could be put entirely into
2917 // registers. (This is not what the doc says.)
Dan Gohman475871a2008-07-27 21:46:04 +00002918 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
Scott Michelfdc40a02009-02-17 22:15:04 +00002919 CallSeqStart.getNode()->getOperand(0),
Tilmann Scheller667ee3c2009-07-03 06:43:35 +00002920 Flags, DAG, dl);
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002921 // This must go outside the CALLSEQ_START..END.
Dan Gohman475871a2008-07-27 21:46:04 +00002922 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
Gabor Greifba36cb52008-08-28 21:40:38 +00002923 CallSeqStart.getNode()->getOperand(1));
2924 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(), NewCallSeqStart.getNode());
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002925 Chain = CallSeqStart = NewCallSeqStart;
2926 // And copy the pieces of it that fit into registers.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002927 for (unsigned j=0; j<Size; j+=PtrByteSize) {
Dan Gohman475871a2008-07-27 21:46:04 +00002928 SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00002929 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002930 if (GPR_idx != NumGPRs) {
Dale Johannesen39355f92009-02-04 02:34:38 +00002931 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg, NULL, 0);
Dale Johannesen1f797a32008-03-05 23:31:27 +00002932 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002933 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002934 ArgOffset += PtrByteSize;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002935 } else {
Dale Johannesenfdd3ade2008-03-17 02:13:43 +00002936 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
Dale Johannesen8419dd62008-03-07 20:27:40 +00002937 break;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002938 }
2939 }
2940 continue;
2941 }
2942
Owen Anderson825b72b2009-08-11 20:47:22 +00002943 switch (Arg.getValueType().getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002944 default: llvm_unreachable("Unexpected ValueType for argument!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002945 case MVT::i32:
2946 case MVT::i64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00002947 if (GPR_idx != NumGPRs) {
2948 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002949 } else {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002950 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
2951 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002952 TailCallArguments, dl);
Chris Lattner9f0bc652007-02-25 05:34:32 +00002953 inMem = true;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002954 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002955 ArgOffset += PtrByteSize;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002956 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002957 case MVT::f32:
2958 case MVT::f64:
Chris Lattner9a2a4972006-05-17 06:01:33 +00002959 if (FPR_idx != NumFPRs) {
2960 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
2961
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002962 if (isVarArg) {
Dale Johannesen39355f92009-02-04 02:34:38 +00002963 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002964 MemOpChains.push_back(Store);
2965
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002966 // Float varargs are always shadowed in available integer registers
Chris Lattner9a2a4972006-05-17 06:01:33 +00002967 if (GPR_idx != NumGPRs) {
Dale Johannesen39355f92009-02-04 02:34:38 +00002968 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002969 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002970 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002971 }
Owen Anderson825b72b2009-08-11 20:47:22 +00002972 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Dan Gohman475871a2008-07-27 21:46:04 +00002973 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Dale Johannesen39355f92009-02-04 02:34:38 +00002974 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
2975 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00002976 MemOpChains.push_back(Load.getValue(1));
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002977 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
Chris Lattnerabde4602006-05-16 22:56:08 +00002978 }
2979 } else {
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002980 // If we have any FPRs remaining, we may also have GPRs remaining.
2981 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
2982 // GPRs.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002983 if (GPR_idx != NumGPRs)
2984 ++GPR_idx;
Owen Anderson825b72b2009-08-11 20:47:22 +00002985 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002986 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
2987 ++GPR_idx;
Chris Lattnerabde4602006-05-16 22:56:08 +00002988 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002989 } else {
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002990 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
2991 isPPC64, isTailCall, false, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00002992 TailCallArguments, dl);
Chris Lattner9f0bc652007-02-25 05:34:32 +00002993 inMem = true;
Chris Lattnerabde4602006-05-16 22:56:08 +00002994 }
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00002995 if (isPPC64)
2996 ArgOffset += 8;
2997 else
Owen Anderson825b72b2009-08-11 20:47:22 +00002998 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00002999 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00003000 case MVT::v4f32:
3001 case MVT::v4i32:
3002 case MVT::v8i16:
3003 case MVT::v16i8:
Dale Johannesen75092de2008-03-12 00:22:17 +00003004 if (isVarArg) {
3005 // These go aligned on the stack, or in the corresponding R registers
Scott Michelfdc40a02009-02-17 22:15:04 +00003006 // when within range. The Darwin PPC ABI doc claims they also go in
Dale Johannesen75092de2008-03-12 00:22:17 +00003007 // V registers; in fact gcc does this only for arguments that are
3008 // prototyped, not for those that match the ... We do it for all
3009 // arguments, seems to work.
3010 while (ArgOffset % 16 !=0) {
3011 ArgOffset += PtrByteSize;
3012 if (GPR_idx != NumGPRs)
3013 GPR_idx++;
3014 }
3015 // We could elide this store in the case where the object fits
3016 // entirely in R registers. Maybe later.
Scott Michelfdc40a02009-02-17 22:15:04 +00003017 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
Dale Johannesen75092de2008-03-12 00:22:17 +00003018 DAG.getConstant(ArgOffset, PtrVT));
Dale Johannesen39355f92009-02-04 02:34:38 +00003019 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00003020 MemOpChains.push_back(Store);
3021 if (VR_idx != NumVRs) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003022 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff, NULL, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00003023 MemOpChains.push_back(Load.getValue(1));
3024 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
3025 }
3026 ArgOffset += 16;
3027 for (unsigned i=0; i<16; i+=PtrByteSize) {
3028 if (GPR_idx == NumGPRs)
3029 break;
Dale Johannesen39355f92009-02-04 02:34:38 +00003030 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
Dale Johannesen75092de2008-03-12 00:22:17 +00003031 DAG.getConstant(i, PtrVT));
Dale Johannesen39355f92009-02-04 02:34:38 +00003032 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, NULL, 0);
Dale Johannesen75092de2008-03-12 00:22:17 +00003033 MemOpChains.push_back(Load.getValue(1));
3034 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
3035 }
3036 break;
3037 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003038
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003039 // Non-varargs Altivec params generally go in registers, but have
3040 // stack space allocated at the end.
3041 if (VR_idx != NumVRs) {
3042 // Doesn't have GPR space allocated.
3043 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
3044 } else if (nAltivecParamsAtEnd==0) {
3045 // We are emitting Altivec params in order.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003046 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3047 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00003048 TailCallArguments, dl);
Dale Johannesen75092de2008-03-12 00:22:17 +00003049 ArgOffset += 16;
Dale Johannesen75092de2008-03-12 00:22:17 +00003050 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00003051 break;
Chris Lattnerabde4602006-05-16 22:56:08 +00003052 }
Chris Lattnerabde4602006-05-16 22:56:08 +00003053 }
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003054 // If all Altivec parameters fit in registers, as they usually do,
3055 // they get stack space following the non-Altivec parameters. We
3056 // don't track this here because nobody below needs it.
3057 // If there are more Altivec parameters than fit in registers emit
3058 // the stores here.
3059 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
3060 unsigned j = 0;
3061 // Offset is aligned; skip 1st 12 params which go in V registers.
3062 ArgOffset = ((ArgOffset+15)/16)*16;
3063 ArgOffset += 12*16;
3064 for (unsigned i = 0; i != NumOps; ++i) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00003065 SDValue Arg = Outs[i].Val;
Owen Andersone50ed302009-08-10 22:56:29 +00003066 EVT ArgType = Arg.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00003067 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
3068 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003069 if (++j > NumVRs) {
Dan Gohman475871a2008-07-27 21:46:04 +00003070 SDValue PtrOff;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003071 // We are emitting Altivec params in order.
3072 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
3073 isPPC64, isTailCall, true, MemOpChains,
Dale Johannesen33c960f2009-02-04 20:06:27 +00003074 TailCallArguments, dl);
Dale Johannesen8f5422c2008-03-14 17:41:26 +00003075 ArgOffset += 16;
3076 }
3077 }
3078 }
3079 }
3080
Chris Lattner9a2a4972006-05-17 06:01:33 +00003081 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00003082 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnere2199452006-08-11 17:38:39 +00003083 &MemOpChains[0], MemOpChains.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00003084
Chris Lattner9a2a4972006-05-17 06:01:33 +00003085 // Build a sequence of copy-to-reg nodes chained together with token chain
3086 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman475871a2008-07-27 21:46:04 +00003087 SDValue InFlag;
Chris Lattner9a2a4972006-05-17 06:01:33 +00003088 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003089 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesen39355f92009-02-04 02:34:38 +00003090 RegsToPass[i].second, InFlag);
Chris Lattner9a2a4972006-05-17 06:01:33 +00003091 InFlag = Chain.getValue(1);
3092 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003093
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003094 if (isTailCall) {
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003095 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
3096 FPOp, true, TailCallArguments);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003097 }
3098
Dan Gohman98ca4f22009-08-05 01:29:28 +00003099 return FinishCall(CallConv, dl, isTailCall, isVarArg, DAG,
3100 RegsToPass, InFlag, Chain, Callee, SPDiff, NumBytes,
3101 Ins, InVals);
Chris Lattnerabde4602006-05-16 22:56:08 +00003102}
3103
Dan Gohman98ca4f22009-08-05 01:29:28 +00003104SDValue
3105PPCTargetLowering::LowerReturn(SDValue Chain,
3106 unsigned CallConv, bool isVarArg,
3107 const SmallVectorImpl<ISD::OutputArg> &Outs,
3108 DebugLoc dl, SelectionDAG &DAG) {
3109
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003110 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00003111 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
3112 RVLocs, *DAG.getContext());
3113 CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
Scott Michelfdc40a02009-02-17 22:15:04 +00003114
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003115 // If this is the first return lowered for this function, add the regs to the
3116 // liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +00003117 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003118 for (unsigned i = 0; i != RVLocs.size(); ++i)
Chris Lattner84bc5422007-12-31 04:13:23 +00003119 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003120 }
3121
Dan Gohman475871a2008-07-27 21:46:04 +00003122 SDValue Flag;
Scott Michelfdc40a02009-02-17 22:15:04 +00003123
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003124 // Copy the result values into the output registers.
3125 for (unsigned i = 0; i != RVLocs.size(); ++i) {
3126 CCValAssign &VA = RVLocs[i];
3127 assert(VA.isRegLoc() && "Can only return in registers!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003128 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00003129 Outs[i].Val, Flag);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003130 Flag = Chain.getValue(1);
3131 }
3132
Gabor Greifba36cb52008-08-28 21:40:38 +00003133 if (Flag.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003134 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, Chain, Flag);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003135 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003136 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, Chain);
Chris Lattner1a635d62006-04-14 06:01:58 +00003137}
3138
Dan Gohman475871a2008-07-27 21:46:04 +00003139SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
Jim Laskeyefc7e522006-12-04 22:04:42 +00003140 const PPCSubtarget &Subtarget) {
3141 // When we pop the dynamic allocation we need to restore the SP link.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003142 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00003143
Jim Laskeyefc7e522006-12-04 22:04:42 +00003144 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00003145 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskeyefc7e522006-12-04 22:04:42 +00003146
3147 // Construct the stack pointer operand.
3148 bool IsPPC64 = Subtarget.isPPC64();
3149 unsigned SP = IsPPC64 ? PPC::X1 : PPC::R1;
Dan Gohman475871a2008-07-27 21:46:04 +00003150 SDValue StackPtr = DAG.getRegister(SP, PtrVT);
Jim Laskeyefc7e522006-12-04 22:04:42 +00003151
3152 // Get the operands for the STACKRESTORE.
Dan Gohman475871a2008-07-27 21:46:04 +00003153 SDValue Chain = Op.getOperand(0);
3154 SDValue SaveSP = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003155
Jim Laskeyefc7e522006-12-04 22:04:42 +00003156 // Load the old link SP.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003157 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr, NULL, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003158
Jim Laskeyefc7e522006-12-04 22:04:42 +00003159 // Restore the stack pointer.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003160 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
Scott Michelfdc40a02009-02-17 22:15:04 +00003161
Jim Laskeyefc7e522006-12-04 22:04:42 +00003162 // Store the old link SP.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003163 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, NULL, 0);
Jim Laskeyefc7e522006-12-04 22:04:42 +00003164}
3165
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003166
3167
Dan Gohman475871a2008-07-27 21:46:04 +00003168SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003169PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
Jim Laskey2f616bf2006-11-16 22:43:37 +00003170 MachineFunction &MF = DAG.getMachineFunction();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003171 bool IsPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003172 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00003173 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003174
3175 // Get current frame pointer save index. The users of this index will be
3176 // primarily DYNALLOC instructions.
3177 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
3178 int RASI = FI->getReturnAddrSaveIndex();
3179
3180 // If the frame pointer save index hasn't been defined yet.
3181 if (!RASI) {
3182 // Find out what the fix offset of the frame pointer save area.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003183 int LROffset = PPCFrameInfo::getReturnSaveOffset(IsPPC64, isDarwinABI);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003184 // Allocate the frame index for frame pointer save area.
3185 RASI = MF.getFrameInfo()->CreateFixedObject(IsPPC64? 8 : 4, LROffset);
3186 // Save the result.
3187 FI->setReturnAddrSaveIndex(RASI);
3188 }
3189 return DAG.getFrameIndex(RASI, PtrVT);
3190}
3191
Dan Gohman475871a2008-07-27 21:46:04 +00003192SDValue
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003193PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
3194 MachineFunction &MF = DAG.getMachineFunction();
3195 bool IsPPC64 = PPCSubTarget.isPPC64();
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003196 bool isDarwinABI = PPCSubTarget.isDarwinABI();
Owen Andersone50ed302009-08-10 22:56:29 +00003197 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00003198
3199 // Get current frame pointer save index. The users of this index will be
3200 // primarily DYNALLOC instructions.
3201 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
3202 int FPSI = FI->getFramePointerSaveIndex();
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003203
Jim Laskey2f616bf2006-11-16 22:43:37 +00003204 // If the frame pointer save index hasn't been defined yet.
3205 if (!FPSI) {
3206 // Find out what the fix offset of the frame pointer save area.
Tilmann Scheller2a9ddfb2009-07-03 06:47:08 +00003207 int FPOffset = PPCFrameInfo::getFramePointerSaveOffset(IsPPC64,
3208 isDarwinABI);
Scott Michelfdc40a02009-02-17 22:15:04 +00003209
Jim Laskey2f616bf2006-11-16 22:43:37 +00003210 // Allocate the frame index for frame pointer save area.
Scott Michelfdc40a02009-02-17 22:15:04 +00003211 FPSI = MF.getFrameInfo()->CreateFixedObject(IsPPC64? 8 : 4, FPOffset);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003212 // Save the result.
Scott Michelfdc40a02009-02-17 22:15:04 +00003213 FI->setFramePointerSaveIndex(FPSI);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003214 }
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003215 return DAG.getFrameIndex(FPSI, PtrVT);
3216}
Jim Laskey2f616bf2006-11-16 22:43:37 +00003217
Dan Gohman475871a2008-07-27 21:46:04 +00003218SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00003219 SelectionDAG &DAG,
3220 const PPCSubtarget &Subtarget) {
Jim Laskey2f616bf2006-11-16 22:43:37 +00003221 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00003222 SDValue Chain = Op.getOperand(0);
3223 SDValue Size = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003224 DebugLoc dl = Op.getDebugLoc();
3225
Jim Laskey2f616bf2006-11-16 22:43:37 +00003226 // Get the corect type for pointers.
Owen Andersone50ed302009-08-10 22:56:29 +00003227 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Jim Laskey2f616bf2006-11-16 22:43:37 +00003228 // Negate the size.
Dale Johannesende064702009-02-06 21:50:26 +00003229 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
Jim Laskey2f616bf2006-11-16 22:43:37 +00003230 DAG.getConstant(0, PtrVT), Size);
3231 // Construct a node for the frame pointer save index.
Dan Gohman475871a2008-07-27 21:46:04 +00003232 SDValue FPSIdx = getFramePointerFrameIndex(DAG);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003233 // Build a DYNALLOC node.
Dan Gohman475871a2008-07-27 21:46:04 +00003234 SDValue Ops[3] = { Chain, NegSize, FPSIdx };
Owen Anderson825b72b2009-08-11 20:47:22 +00003235 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
Dale Johannesende064702009-02-06 21:50:26 +00003236 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops, 3);
Jim Laskey2f616bf2006-11-16 22:43:37 +00003237}
3238
Chris Lattner1a635d62006-04-14 06:01:58 +00003239/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
3240/// possible.
Dan Gohman475871a2008-07-27 21:46:04 +00003241SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00003242 // Not FP? Not a fsel.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003243 if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
3244 !Op.getOperand(2).getValueType().isFloatingPoint())
Eli Friedmanc06441e2009-05-28 04:31:08 +00003245 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00003246
Chris Lattner1a635d62006-04-14 06:01:58 +00003247 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003248
Chris Lattner1a635d62006-04-14 06:01:58 +00003249 // Cannot handle SETEQ/SETNE.
Eli Friedmanc06441e2009-05-28 04:31:08 +00003250 if (CC == ISD::SETEQ || CC == ISD::SETNE) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00003251
Owen Andersone50ed302009-08-10 22:56:29 +00003252 EVT ResVT = Op.getValueType();
3253 EVT CmpVT = Op.getOperand(0).getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003254 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
3255 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3);
Dale Johannesende064702009-02-06 21:50:26 +00003256 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00003257
Chris Lattner1a635d62006-04-14 06:01:58 +00003258 // If the RHS of the comparison is a 0.0, we don't need to do the
3259 // subtraction at all.
3260 if (isFloatingPointZero(RHS))
3261 switch (CC) {
3262 default: break; // SETUO etc aren't handled by fsel.
3263 case ISD::SETULT:
3264 case ISD::SETLT:
3265 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00003266 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003267 case ISD::SETGE:
Owen Anderson825b72b2009-08-11 20:47:22 +00003268 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
3269 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00003270 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003271 case ISD::SETUGT:
3272 case ISD::SETGT:
3273 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
Chris Lattner57340122006-05-24 00:06:44 +00003274 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003275 case ISD::SETLE:
Owen Anderson825b72b2009-08-11 20:47:22 +00003276 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
3277 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
Dale Johannesende064702009-02-06 21:50:26 +00003278 return DAG.getNode(PPCISD::FSEL, dl, ResVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00003279 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003280 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003281
Dan Gohman475871a2008-07-27 21:46:04 +00003282 SDValue Cmp;
Chris Lattner1a635d62006-04-14 06:01:58 +00003283 switch (CC) {
3284 default: break; // SETUO etc aren't handled by fsel.
3285 case ISD::SETULT:
3286 case ISD::SETLT:
Dale Johannesende064702009-02-06 21:50:26 +00003287 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003288 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3289 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003290 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00003291 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003292 case ISD::SETGE:
Dale Johannesende064702009-02-06 21:50:26 +00003293 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003294 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3295 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003296 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003297 case ISD::SETUGT:
3298 case ISD::SETGT:
Dale Johannesende064702009-02-06 21:50:26 +00003299 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003300 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3301 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003302 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
Chris Lattner57340122006-05-24 00:06:44 +00003303 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00003304 case ISD::SETLE:
Dale Johannesende064702009-02-06 21:50:26 +00003305 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00003306 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
3307 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
Dale Johannesende064702009-02-06 21:50:26 +00003308 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
Chris Lattner1a635d62006-04-14 06:01:58 +00003309 }
Eli Friedmanc06441e2009-05-28 04:31:08 +00003310 return Op;
Chris Lattner1a635d62006-04-14 06:01:58 +00003311}
3312
Chris Lattner1f873002007-11-28 18:44:47 +00003313// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen4c9369d2009-06-04 20:53:52 +00003314SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
Dale Johannesen3484c092009-02-05 22:07:54 +00003315 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003316 assert(Op.getOperand(0).getValueType().isFloatingPoint());
Dan Gohman475871a2008-07-27 21:46:04 +00003317 SDValue Src = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00003318 if (Src.getValueType() == MVT::f32)
3319 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
Duncan Sandsa7360f02008-07-19 16:26:02 +00003320
Dan Gohman475871a2008-07-27 21:46:04 +00003321 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00003322 switch (Op.getValueType().getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003323 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
Owen Anderson825b72b2009-08-11 20:47:22 +00003324 case MVT::i32:
Dale Johannesen4c9369d2009-06-04 20:53:52 +00003325 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ :
3326 PPCISD::FCTIDZ,
Owen Anderson825b72b2009-08-11 20:47:22 +00003327 dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00003328 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00003329 case MVT::i64:
3330 Tmp = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Src);
Chris Lattner1a635d62006-04-14 06:01:58 +00003331 break;
3332 }
Duncan Sandsa7360f02008-07-19 16:26:02 +00003333
Chris Lattner1a635d62006-04-14 06:01:58 +00003334 // Convert the FP value to an int value through memory.
Owen Anderson825b72b2009-08-11 20:47:22 +00003335 SDValue FIPtr = DAG.CreateStackTemporary(MVT::f64);
Duncan Sandsa7360f02008-07-19 16:26:02 +00003336
Chris Lattner1de7c1d2007-10-15 20:14:52 +00003337 // Emit a store to the stack slot.
Dale Johannesen33c960f2009-02-04 20:06:27 +00003338 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr, NULL, 0);
Chris Lattner1de7c1d2007-10-15 20:14:52 +00003339
3340 // Result is a load from the stack slot. If loading 4 bytes, make sure to
3341 // add in a bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00003342 if (Op.getValueType() == MVT::i32)
Dale Johannesen33c960f2009-02-04 20:06:27 +00003343 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
Chris Lattner1de7c1d2007-10-15 20:14:52 +00003344 DAG.getConstant(4, FIPtr.getValueType()));
Dale Johannesen33c960f2009-02-04 20:06:27 +00003345 return DAG.getLoad(Op.getValueType(), dl, Chain, FIPtr, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00003346}
3347
Dan Gohman475871a2008-07-27 21:46:04 +00003348SDValue PPCTargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003349 DebugLoc dl = Op.getDebugLoc();
Dan Gohman034f60e2008-03-11 01:59:03 +00003350 // Don't handle ppc_fp128 here; let it be lowered to a libcall.
Owen Anderson825b72b2009-08-11 20:47:22 +00003351 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
Dan Gohman475871a2008-07-27 21:46:04 +00003352 return SDValue();
Dan Gohman034f60e2008-03-11 01:59:03 +00003353
Owen Anderson825b72b2009-08-11 20:47:22 +00003354 if (Op.getOperand(0).getValueType() == MVT::i64) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003355 SDValue Bits = DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003356 MVT::f64, Op.getOperand(0));
3357 SDValue FP = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Bits);
3358 if (Op.getValueType() == MVT::f32)
Scott Michelfdc40a02009-02-17 22:15:04 +00003359 FP = DAG.getNode(ISD::FP_ROUND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003360 MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00003361 return FP;
3362 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003363
Owen Anderson825b72b2009-08-11 20:47:22 +00003364 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
Chris Lattner1a635d62006-04-14 06:01:58 +00003365 "Unhandled SINT_TO_FP type in custom expander!");
3366 // Since we only generate this in 64-bit mode, we can take advantage of
3367 // 64-bit registers. In particular, sign extend the input value into the
3368 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
3369 // then lfd it and fcfid it.
3370 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3371 int FrameIdx = FrameInfo->CreateStackObject(8, 8);
Owen Andersone50ed302009-08-10 22:56:29 +00003372 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00003373 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003374
Owen Anderson825b72b2009-08-11 20:47:22 +00003375 SDValue Ext64 = DAG.getNode(PPCISD::EXTSW_32, dl, MVT::i32,
Chris Lattner1a635d62006-04-14 06:01:58 +00003376 Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00003377
Chris Lattner1a635d62006-04-14 06:01:58 +00003378 // STD the extended value into the stack slot.
Dan Gohmana54cf172008-07-11 22:44:52 +00003379 MachineMemOperand MO(PseudoSourceValue::getFixedStack(FrameIdx),
3380 MachineMemOperand::MOStore, 0, 8, 8);
Owen Anderson825b72b2009-08-11 20:47:22 +00003381 SDValue Store = DAG.getNode(PPCISD::STD_32, dl, MVT::Other,
Chris Lattner1a635d62006-04-14 06:01:58 +00003382 DAG.getEntryNode(), Ext64, FIdx,
Dan Gohman69de1932008-02-06 22:27:42 +00003383 DAG.getMemOperand(MO));
Chris Lattner1a635d62006-04-14 06:01:58 +00003384 // Load the value as a double.
Owen Anderson825b72b2009-08-11 20:47:22 +00003385 SDValue Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx, NULL, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003386
Chris Lattner1a635d62006-04-14 06:01:58 +00003387 // FCFID it and return it.
Owen Anderson825b72b2009-08-11 20:47:22 +00003388 SDValue FP = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Ld);
3389 if (Op.getValueType() == MVT::f32)
3390 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00003391 return FP;
3392}
3393
Dan Gohman475871a2008-07-27 21:46:04 +00003394SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003395 DebugLoc dl = Op.getDebugLoc();
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003396 /*
3397 The rounding mode is in bits 30:31 of FPSR, and has the following
3398 settings:
3399 00 Round to nearest
3400 01 Round to 0
3401 10 Round to +inf
3402 11 Round to -inf
3403
3404 FLT_ROUNDS, on the other hand, expects the following:
3405 -1 Undefined
3406 0 Round to 0
3407 1 Round to nearest
3408 2 Round to +inf
3409 3 Round to -inf
3410
3411 To perform the conversion, we do:
3412 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
3413 */
3414
3415 MachineFunction &MF = DAG.getMachineFunction();
Owen Andersone50ed302009-08-10 22:56:29 +00003416 EVT VT = Op.getValueType();
3417 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3418 std::vector<EVT> NodeTys;
Dan Gohman475871a2008-07-27 21:46:04 +00003419 SDValue MFFSreg, InFlag;
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003420
3421 // Save FP Control Word to register
Owen Anderson825b72b2009-08-11 20:47:22 +00003422 NodeTys.push_back(MVT::f64); // return register
3423 NodeTys.push_back(MVT::Flag); // unused in this context
Dale Johannesen33c960f2009-02-04 20:06:27 +00003424 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003425
3426 // Save FP register to stack slot
3427 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman475871a2008-07-27 21:46:04 +00003428 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003429 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003430 StackSlot, NULL, 0);
3431
3432 // Load FP Control Word from low 32 bits of stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00003433 SDValue Four = DAG.getConstant(4, PtrVT);
Dale Johannesen33c960f2009-02-04 20:06:27 +00003434 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
Owen Anderson825b72b2009-08-11 20:47:22 +00003435 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, NULL, 0);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003436
3437 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00003438 SDValue CWD1 =
Owen Anderson825b72b2009-08-11 20:47:22 +00003439 DAG.getNode(ISD::AND, dl, MVT::i32,
3440 CWD, DAG.getConstant(3, MVT::i32));
Dan Gohman475871a2008-07-27 21:46:04 +00003441 SDValue CWD2 =
Owen Anderson825b72b2009-08-11 20:47:22 +00003442 DAG.getNode(ISD::SRL, dl, MVT::i32,
3443 DAG.getNode(ISD::AND, dl, MVT::i32,
3444 DAG.getNode(ISD::XOR, dl, MVT::i32,
3445 CWD, DAG.getConstant(3, MVT::i32)),
3446 DAG.getConstant(3, MVT::i32)),
3447 DAG.getConstant(1, MVT::i32));
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003448
Dan Gohman475871a2008-07-27 21:46:04 +00003449 SDValue RetVal =
Owen Anderson825b72b2009-08-11 20:47:22 +00003450 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003451
Duncan Sands83ec4b62008-06-06 12:08:01 +00003452 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen33c960f2009-02-04 20:06:27 +00003453 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Dale Johannesen5c5eb802008-01-18 19:55:37 +00003454}
3455
Dan Gohman475871a2008-07-27 21:46:04 +00003456SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003457 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003458 unsigned BitWidth = VT.getSizeInBits();
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003459 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9ed06db2008-03-07 20:36:53 +00003460 assert(Op.getNumOperands() == 3 &&
3461 VT == Op.getOperand(1).getValueType() &&
3462 "Unexpected SHL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003463
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00003464 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00003465 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00003466 SDValue Lo = Op.getOperand(0);
3467 SDValue Hi = Op.getOperand(1);
3468 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00003469 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003470
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003471 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003472 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003473 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
3474 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
3475 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
3476 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003477 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003478 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
3479 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
3480 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00003481 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003482 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00003483}
3484
Dan Gohman475871a2008-07-27 21:46:04 +00003485SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003486 EVT VT = Op.getValueType();
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003487 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003488 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00003489 assert(Op.getNumOperands() == 3 &&
3490 VT == Op.getOperand(1).getValueType() &&
3491 "Unexpected SRL!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003492
Dan Gohman9ed06db2008-03-07 20:36:53 +00003493 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00003494 // depend on the PPC behavior for oversized shift amounts.
Dan Gohman475871a2008-07-27 21:46:04 +00003495 SDValue Lo = Op.getOperand(0);
3496 SDValue Hi = Op.getOperand(1);
3497 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00003498 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003499
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003500 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003501 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003502 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
3503 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
3504 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
3505 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003506 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003507 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
3508 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
3509 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
Dan Gohman475871a2008-07-27 21:46:04 +00003510 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003511 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00003512}
3513
Dan Gohman475871a2008-07-27 21:46:04 +00003514SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003515 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00003516 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003517 unsigned BitWidth = VT.getSizeInBits();
Dan Gohman9ed06db2008-03-07 20:36:53 +00003518 assert(Op.getNumOperands() == 3 &&
3519 VT == Op.getOperand(1).getValueType() &&
3520 "Unexpected SRA!");
Scott Michelfdc40a02009-02-17 22:15:04 +00003521
Dan Gohman9ed06db2008-03-07 20:36:53 +00003522 // Expand into a bunch of logical ops, followed by a select_cc.
Dan Gohman475871a2008-07-27 21:46:04 +00003523 SDValue Lo = Op.getOperand(0);
3524 SDValue Hi = Op.getOperand(1);
3525 SDValue Amt = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00003526 EVT AmtVT = Amt.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003527
Dale Johannesenf5d97892009-02-04 01:48:28 +00003528 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003529 DAG.getConstant(BitWidth, AmtVT), Amt);
Dale Johannesenf5d97892009-02-04 01:48:28 +00003530 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
3531 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
3532 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
3533 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003534 DAG.getConstant(-BitWidth, AmtVT));
Dale Johannesenf5d97892009-02-04 01:48:28 +00003535 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
3536 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
3537 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
Duncan Sands2fbfbd22008-10-30 19:28:32 +00003538 Tmp4, Tmp6, ISD::SETLE);
Dan Gohman475871a2008-07-27 21:46:04 +00003539 SDValue OutOps[] = { OutLo, OutHi };
Dale Johannesen4be0bdf2009-02-05 00:20:09 +00003540 return DAG.getMergeValues(OutOps, 2, dl);
Chris Lattner1a635d62006-04-14 06:01:58 +00003541}
3542
3543//===----------------------------------------------------------------------===//
3544// Vector related lowering.
3545//
3546
Chris Lattner4a998b92006-04-17 06:00:21 +00003547/// BuildSplatI - Build a canonical splati of Val with an element size of
3548/// SplatSize. Cast the result to VT.
Owen Andersone50ed302009-08-10 22:56:29 +00003549static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
Dale Johannesened2eee62009-02-06 01:31:28 +00003550 SelectionDAG &DAG, DebugLoc dl) {
Chris Lattner4a998b92006-04-17 06:00:21 +00003551 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner70fa4932006-12-01 01:45:39 +00003552
Owen Andersone50ed302009-08-10 22:56:29 +00003553 static const EVT VTys[] = { // canonical VT to use for each size.
Owen Anderson825b72b2009-08-11 20:47:22 +00003554 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
Chris Lattner4a998b92006-04-17 06:00:21 +00003555 };
Chris Lattner70fa4932006-12-01 01:45:39 +00003556
Owen Anderson825b72b2009-08-11 20:47:22 +00003557 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00003558
Chris Lattner70fa4932006-12-01 01:45:39 +00003559 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
3560 if (Val == -1)
3561 SplatSize = 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00003562
Owen Andersone50ed302009-08-10 22:56:29 +00003563 EVT CanonicalVT = VTys[SplatSize-1];
Scott Michelfdc40a02009-02-17 22:15:04 +00003564
Chris Lattner4a998b92006-04-17 06:00:21 +00003565 // Build a canonical splat for this value.
Owen Anderson825b72b2009-08-11 20:47:22 +00003566 SDValue Elt = DAG.getConstant(Val, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003567 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003568 Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
Evan Chenga87008d2009-02-25 22:49:59 +00003569 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT,
3570 &Ops[0], Ops.size());
Dale Johannesened2eee62009-02-06 01:31:28 +00003571 return DAG.getNode(ISD::BIT_CONVERT, dl, ReqVT, Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00003572}
3573
Chris Lattnere7c768e2006-04-18 03:24:30 +00003574/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner6876e662006-04-17 06:58:41 +00003575/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00003576static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
Dale Johannesened2eee62009-02-06 01:31:28 +00003577 SelectionDAG &DAG, DebugLoc dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003578 EVT DestVT = MVT::Other) {
3579 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00003580 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00003581 DAG.getConstant(IID, MVT::i32), LHS, RHS);
Chris Lattner6876e662006-04-17 06:58:41 +00003582}
3583
Chris Lattnere7c768e2006-04-18 03:24:30 +00003584/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
3585/// specified intrinsic ID.
Dan Gohman475871a2008-07-27 21:46:04 +00003586static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
Dale Johannesened2eee62009-02-06 01:31:28 +00003587 SDValue Op2, SelectionDAG &DAG,
Owen Anderson825b72b2009-08-11 20:47:22 +00003588 DebugLoc dl, EVT DestVT = MVT::Other) {
3589 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
Dale Johannesened2eee62009-02-06 01:31:28 +00003590 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
Owen Anderson825b72b2009-08-11 20:47:22 +00003591 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
Chris Lattnere7c768e2006-04-18 03:24:30 +00003592}
3593
3594
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003595/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
3596/// amount. The result has the specified value type.
Dan Gohman475871a2008-07-27 21:46:04 +00003597static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
Owen Andersone50ed302009-08-10 22:56:29 +00003598 EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003599 // Force LHS/RHS to be the right type.
Owen Anderson825b72b2009-08-11 20:47:22 +00003600 LHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, LHS);
3601 RHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, RHS);
Duncan Sandsd038e042008-07-21 10:20:31 +00003602
Nate Begeman9008ca62009-04-27 18:41:29 +00003603 int Ops[16];
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003604 for (unsigned i = 0; i != 16; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003605 Ops[i] = i + Amt;
Owen Anderson825b72b2009-08-11 20:47:22 +00003606 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
Dale Johannesened2eee62009-02-06 01:31:28 +00003607 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, T);
Chris Lattnerbdd558c2006-04-17 17:55:10 +00003608}
3609
Chris Lattnerf1b47082006-04-14 05:19:18 +00003610// If this is a case we can't handle, return null and let the default
3611// expansion code take care of it. If we CAN select this case, and if it
3612// selects to a single instruction, return Op. Otherwise, if we can codegen
3613// this case more efficiently than a constant pool load, lower it to the
3614// sequence of ops that should be used.
Bob Wilsona27ea9e2009-03-01 01:13:55 +00003615SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesened2eee62009-02-06 01:31:28 +00003616 DebugLoc dl = Op.getDebugLoc();
Bob Wilsona27ea9e2009-03-01 01:13:55 +00003617 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
3618 assert(BVN != 0 && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
Scott Micheldf380432009-02-25 03:12:50 +00003619
Bob Wilson24e338e2009-03-02 23:24:16 +00003620 // Check if this is a splat of a constant value.
3621 APInt APSplatBits, APSplatUndef;
3622 unsigned SplatBitSize;
Bob Wilsona27ea9e2009-03-01 01:13:55 +00003623 bool HasAnyUndefs;
Bob Wilsonf2950b02009-03-03 19:26:27 +00003624 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
3625 HasAnyUndefs) || SplatBitSize > 32)
3626 return SDValue();
Evan Chenga87008d2009-02-25 22:49:59 +00003627
Bob Wilsonf2950b02009-03-03 19:26:27 +00003628 unsigned SplatBits = APSplatBits.getZExtValue();
3629 unsigned SplatUndef = APSplatUndef.getZExtValue();
3630 unsigned SplatSize = SplatBitSize / 8;
Scott Michelfdc40a02009-02-17 22:15:04 +00003631
Bob Wilsonf2950b02009-03-03 19:26:27 +00003632 // First, handle single instruction cases.
3633
3634 // All zeros?
3635 if (SplatBits == 0) {
3636 // Canonicalize all zero vectors to be v4i32.
Owen Anderson825b72b2009-08-11 20:47:22 +00003637 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
3638 SDValue Z = DAG.getConstant(0, MVT::i32);
3639 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003640 Op = DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Z);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003641 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00003642 return Op;
3643 }
Chris Lattnerb17f1672006-04-16 01:01:29 +00003644
Bob Wilsonf2950b02009-03-03 19:26:27 +00003645 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
3646 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
3647 (32-SplatBitSize));
3648 if (SextVal >= -16 && SextVal <= 15)
3649 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003650
3651
Bob Wilsonf2950b02009-03-03 19:26:27 +00003652 // Two instruction sequences.
Scott Michelfdc40a02009-02-17 22:15:04 +00003653
Bob Wilsonf2950b02009-03-03 19:26:27 +00003654 // If this value is in the range [-32,30] and is even, use:
3655 // tmp = VSPLTI[bhw], result = add tmp, tmp
3656 if (SextVal >= -32 && SextVal <= 30 && (SextVal & 1) == 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003657 SDValue Res = BuildSplatI(SextVal >> 1, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003658 Res = DAG.getNode(ISD::ADD, dl, Res.getValueType(), Res, Res);
3659 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
3660 }
3661
3662 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
3663 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
3664 // for fneg/fabs.
3665 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
3666 // Make -1 and vspltisw -1:
Owen Anderson825b72b2009-08-11 20:47:22 +00003667 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003668
3669 // Make the VSLW intrinsic, computing 0x8000_0000.
3670 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
3671 OnesV, DAG, dl);
3672
3673 // xor by OnesV to invert it.
Owen Anderson825b72b2009-08-11 20:47:22 +00003674 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003675 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
3676 }
3677
3678 // Check to see if this is a wide variety of vsplti*, binop self cases.
3679 static const signed char SplatCsts[] = {
3680 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
3681 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
3682 };
3683
3684 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
3685 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
3686 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
3687 int i = SplatCsts[idx];
3688
3689 // Figure out what shift amount will be used by altivec if shifted by i in
3690 // this splat size.
3691 unsigned TypeShiftAmt = i & (SplatBitSize-1);
3692
3693 // vsplti + shl self.
3694 if (SextVal == (i << (int)TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003695 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003696 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3697 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
3698 Intrinsic::ppc_altivec_vslw
3699 };
3700 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Dale Johannesened2eee62009-02-06 01:31:28 +00003701 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00003702 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003703
Bob Wilsonf2950b02009-03-03 19:26:27 +00003704 // vsplti + srl self.
3705 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003706 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003707 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3708 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
3709 Intrinsic::ppc_altivec_vsrw
3710 };
3711 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
Dale Johannesened2eee62009-02-06 01:31:28 +00003712 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00003713 }
3714
Bob Wilsonf2950b02009-03-03 19:26:27 +00003715 // vsplti + sra self.
3716 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003717 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003718 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3719 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
3720 Intrinsic::ppc_altivec_vsraw
3721 };
3722 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
3723 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00003724 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003725
Bob Wilsonf2950b02009-03-03 19:26:27 +00003726 // vsplti + rol self.
3727 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
3728 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003729 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003730 static const unsigned IIDs[] = { // Intrinsic to use for each size.
3731 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
3732 Intrinsic::ppc_altivec_vrlw
3733 };
3734 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
3735 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Res);
3736 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003737
Bob Wilsonf2950b02009-03-03 19:26:27 +00003738 // t = vsplti c, result = vsldoi t, t, 1
3739 if (SextVal == ((i << 8) | (i >> (TypeShiftAmt-8)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003740 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003741 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
Chris Lattnerdbce85d2006-04-17 18:09:22 +00003742 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00003743 // t = vsplti c, result = vsldoi t, t, 2
3744 if (SextVal == ((i << 16) | (i >> (TypeShiftAmt-16)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003745 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003746 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003747 }
Bob Wilsonf2950b02009-03-03 19:26:27 +00003748 // t = vsplti c, result = vsldoi t, t, 3
3749 if (SextVal == ((i << 24) | (i >> (TypeShiftAmt-24)))) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003750 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003751 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
3752 }
3753 }
3754
3755 // Three instruction sequences.
3756
3757 // Odd, in range [17,31]: (vsplti C)-(vsplti -16).
3758 if (SextVal >= 0 && SextVal <= 31) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003759 SDValue LHS = BuildSplatI(SextVal-16, SplatSize, MVT::Other, DAG, dl);
3760 SDValue RHS = BuildSplatI(-16, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003761 LHS = DAG.getNode(ISD::SUB, dl, LHS.getValueType(), LHS, RHS);
3762 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), LHS);
3763 }
3764 // Odd, in range [-31,-17]: (vsplti C)+(vsplti -16).
3765 if (SextVal >= -31 && SextVal <= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003766 SDValue LHS = BuildSplatI(SextVal+16, SplatSize, MVT::Other, DAG, dl);
3767 SDValue RHS = BuildSplatI(-16, SplatSize, MVT::Other, DAG, dl);
Bob Wilsonf2950b02009-03-03 19:26:27 +00003768 LHS = DAG.getNode(ISD::ADD, dl, LHS.getValueType(), LHS, RHS);
3769 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), LHS);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003770 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003771
Dan Gohman475871a2008-07-27 21:46:04 +00003772 return SDValue();
Chris Lattnerf1b47082006-04-14 05:19:18 +00003773}
3774
Chris Lattner59138102006-04-17 05:28:54 +00003775/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
3776/// the specified operations to build the shuffle.
Dan Gohman475871a2008-07-27 21:46:04 +00003777static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00003778 SDValue RHS, SelectionDAG &DAG,
Dale Johannesened2eee62009-02-06 01:31:28 +00003779 DebugLoc dl) {
Chris Lattner59138102006-04-17 05:28:54 +00003780 unsigned OpNum = (PFEntry >> 26) & 0x0F;
Bill Wendling77959322008-09-17 00:30:57 +00003781 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
Chris Lattner59138102006-04-17 05:28:54 +00003782 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003783
Chris Lattner59138102006-04-17 05:28:54 +00003784 enum {
Chris Lattner00402c72006-05-16 04:20:24 +00003785 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 +00003786 OP_VMRGHW,
3787 OP_VMRGLW,
3788 OP_VSPLTISW0,
3789 OP_VSPLTISW1,
3790 OP_VSPLTISW2,
3791 OP_VSPLTISW3,
3792 OP_VSLDOI4,
3793 OP_VSLDOI8,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00003794 OP_VSLDOI12
Chris Lattner59138102006-04-17 05:28:54 +00003795 };
Scott Michelfdc40a02009-02-17 22:15:04 +00003796
Chris Lattner59138102006-04-17 05:28:54 +00003797 if (OpNum == OP_COPY) {
3798 if (LHSID == (1*9+2)*9+3) return LHS;
3799 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
3800 return RHS;
3801 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003802
Dan Gohman475871a2008-07-27 21:46:04 +00003803 SDValue OpLHS, OpRHS;
Dale Johannesened2eee62009-02-06 01:31:28 +00003804 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
3805 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003806
Nate Begeman9008ca62009-04-27 18:41:29 +00003807 int ShufIdxs[16];
Chris Lattner59138102006-04-17 05:28:54 +00003808 switch (OpNum) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003809 default: llvm_unreachable("Unknown i32 permute!");
Chris Lattner59138102006-04-17 05:28:54 +00003810 case OP_VMRGHW:
3811 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
3812 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
3813 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
3814 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
3815 break;
3816 case OP_VMRGLW:
3817 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
3818 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
3819 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
3820 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
3821 break;
3822 case OP_VSPLTISW0:
3823 for (unsigned i = 0; i != 16; ++i)
3824 ShufIdxs[i] = (i&3)+0;
3825 break;
3826 case OP_VSPLTISW1:
3827 for (unsigned i = 0; i != 16; ++i)
3828 ShufIdxs[i] = (i&3)+4;
3829 break;
3830 case OP_VSPLTISW2:
3831 for (unsigned i = 0; i != 16; ++i)
3832 ShufIdxs[i] = (i&3)+8;
3833 break;
3834 case OP_VSPLTISW3:
3835 for (unsigned i = 0; i != 16; ++i)
3836 ShufIdxs[i] = (i&3)+12;
3837 break;
3838 case OP_VSLDOI4:
Dale Johannesened2eee62009-02-06 01:31:28 +00003839 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003840 case OP_VSLDOI8:
Dale Johannesened2eee62009-02-06 01:31:28 +00003841 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003842 case OP_VSLDOI12:
Dale Johannesened2eee62009-02-06 01:31:28 +00003843 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003844 }
Owen Andersone50ed302009-08-10 22:56:29 +00003845 EVT VT = OpLHS.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00003846 OpLHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, OpLHS);
3847 OpRHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, OpRHS);
3848 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
Nate Begeman9008ca62009-04-27 18:41:29 +00003849 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, T);
Chris Lattner59138102006-04-17 05:28:54 +00003850}
3851
Chris Lattnerf1b47082006-04-14 05:19:18 +00003852/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
3853/// is a shuffle we can handle in a single instruction, return it. Otherwise,
3854/// return the code it can be lowered into. Worst case, it can always be
3855/// lowered into a vperm.
Scott Michelfdc40a02009-02-17 22:15:04 +00003856SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
Nate Begeman9008ca62009-04-27 18:41:29 +00003857 SelectionDAG &DAG) {
Dale Johannesened2eee62009-02-06 01:31:28 +00003858 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003859 SDValue V1 = Op.getOperand(0);
3860 SDValue V2 = Op.getOperand(1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003861 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Owen Andersone50ed302009-08-10 22:56:29 +00003862 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003863
Chris Lattnerf1b47082006-04-14 05:19:18 +00003864 // Cases that are handled by instructions that take permute immediates
3865 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
3866 // selected by the instruction selector.
3867 if (V2.getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003868 if (PPC::isSplatShuffleMask(SVOp, 1) ||
3869 PPC::isSplatShuffleMask(SVOp, 2) ||
3870 PPC::isSplatShuffleMask(SVOp, 4) ||
3871 PPC::isVPKUWUMShuffleMask(SVOp, true) ||
3872 PPC::isVPKUHUMShuffleMask(SVOp, true) ||
3873 PPC::isVSLDOIShuffleMask(SVOp, true) != -1 ||
3874 PPC::isVMRGLShuffleMask(SVOp, 1, true) ||
3875 PPC::isVMRGLShuffleMask(SVOp, 2, true) ||
3876 PPC::isVMRGLShuffleMask(SVOp, 4, true) ||
3877 PPC::isVMRGHShuffleMask(SVOp, 1, true) ||
3878 PPC::isVMRGHShuffleMask(SVOp, 2, true) ||
3879 PPC::isVMRGHShuffleMask(SVOp, 4, true)) {
Chris Lattnerf1b47082006-04-14 05:19:18 +00003880 return Op;
3881 }
3882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003883
Chris Lattnerf1b47082006-04-14 05:19:18 +00003884 // Altivec has a variety of "shuffle immediates" that take two vector inputs
3885 // and produce a fixed permutation. If any of these match, do not lower to
3886 // VPERM.
Nate Begeman9008ca62009-04-27 18:41:29 +00003887 if (PPC::isVPKUWUMShuffleMask(SVOp, false) ||
3888 PPC::isVPKUHUMShuffleMask(SVOp, false) ||
3889 PPC::isVSLDOIShuffleMask(SVOp, false) != -1 ||
3890 PPC::isVMRGLShuffleMask(SVOp, 1, false) ||
3891 PPC::isVMRGLShuffleMask(SVOp, 2, false) ||
3892 PPC::isVMRGLShuffleMask(SVOp, 4, false) ||
3893 PPC::isVMRGHShuffleMask(SVOp, 1, false) ||
3894 PPC::isVMRGHShuffleMask(SVOp, 2, false) ||
3895 PPC::isVMRGHShuffleMask(SVOp, 4, false))
Chris Lattnerf1b47082006-04-14 05:19:18 +00003896 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00003897
Chris Lattner59138102006-04-17 05:28:54 +00003898 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
3899 // perfect shuffle table to emit an optimal matching sequence.
Nate Begeman9008ca62009-04-27 18:41:29 +00003900 SmallVector<int, 16> PermMask;
3901 SVOp->getMask(PermMask);
3902
Chris Lattner59138102006-04-17 05:28:54 +00003903 unsigned PFIndexes[4];
3904 bool isFourElementShuffle = true;
3905 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
3906 unsigned EltNo = 8; // Start out undef.
3907 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
Nate Begeman9008ca62009-04-27 18:41:29 +00003908 if (PermMask[i*4+j] < 0)
Chris Lattner59138102006-04-17 05:28:54 +00003909 continue; // Undef, ignore it.
Scott Michelfdc40a02009-02-17 22:15:04 +00003910
Nate Begeman9008ca62009-04-27 18:41:29 +00003911 unsigned ByteSource = PermMask[i*4+j];
Chris Lattner59138102006-04-17 05:28:54 +00003912 if ((ByteSource & 3) != j) {
3913 isFourElementShuffle = false;
3914 break;
3915 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003916
Chris Lattner59138102006-04-17 05:28:54 +00003917 if (EltNo == 8) {
3918 EltNo = ByteSource/4;
3919 } else if (EltNo != ByteSource/4) {
3920 isFourElementShuffle = false;
3921 break;
3922 }
3923 }
3924 PFIndexes[i] = EltNo;
3925 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003926
3927 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
Chris Lattner59138102006-04-17 05:28:54 +00003928 // perfect shuffle vector to determine if it is cost effective to do this as
3929 // discrete instructions, or whether we should use a vperm.
3930 if (isFourElementShuffle) {
3931 // Compute the index in the perfect shuffle table.
Scott Michelfdc40a02009-02-17 22:15:04 +00003932 unsigned PFTableIndex =
Chris Lattner59138102006-04-17 05:28:54 +00003933 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Scott Michelfdc40a02009-02-17 22:15:04 +00003934
Chris Lattner59138102006-04-17 05:28:54 +00003935 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
3936 unsigned Cost = (PFEntry >> 30);
Scott Michelfdc40a02009-02-17 22:15:04 +00003937
Chris Lattner59138102006-04-17 05:28:54 +00003938 // Determining when to avoid vperm is tricky. Many things affect the cost
3939 // of vperm, particularly how many times the perm mask needs to be computed.
3940 // For example, if the perm mask can be hoisted out of a loop or is already
3941 // used (perhaps because there are multiple permutes with the same shuffle
3942 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
3943 // the loop requires an extra register.
3944 //
3945 // As a compromise, we only emit discrete instructions if the shuffle can be
Scott Michelfdc40a02009-02-17 22:15:04 +00003946 // generated in 3 or fewer operations. When we have loop information
Chris Lattner59138102006-04-17 05:28:54 +00003947 // available, if this block is within a loop, we should avoid using vperm
3948 // for 3-operation perms and use a constant pool load instead.
Scott Michelfdc40a02009-02-17 22:15:04 +00003949 if (Cost < 3)
Dale Johannesened2eee62009-02-06 01:31:28 +00003950 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
Chris Lattner59138102006-04-17 05:28:54 +00003951 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003952
Chris Lattnerf1b47082006-04-14 05:19:18 +00003953 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
3954 // vector that will get spilled to the constant pool.
3955 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
Scott Michelfdc40a02009-02-17 22:15:04 +00003956
Chris Lattnerf1b47082006-04-14 05:19:18 +00003957 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
3958 // that it is in input element units, not in bytes. Convert now.
Owen Andersone50ed302009-08-10 22:56:29 +00003959 EVT EltVT = V1.getValueType().getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003960 unsigned BytesPerElement = EltVT.getSizeInBits()/8;
Scott Michelfdc40a02009-02-17 22:15:04 +00003961
Dan Gohman475871a2008-07-27 21:46:04 +00003962 SmallVector<SDValue, 16> ResultMask;
Nate Begeman9008ca62009-04-27 18:41:29 +00003963 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
3964 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00003965
Chris Lattnerf1b47082006-04-14 05:19:18 +00003966 for (unsigned j = 0; j != BytesPerElement; ++j)
3967 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
Owen Anderson825b72b2009-08-11 20:47:22 +00003968 MVT::i32));
Chris Lattnerf1b47082006-04-14 05:19:18 +00003969 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003970
Owen Anderson825b72b2009-08-11 20:47:22 +00003971 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
Evan Chenga87008d2009-02-25 22:49:59 +00003972 &ResultMask[0], ResultMask.size());
Dale Johannesened2eee62009-02-06 01:31:28 +00003973 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), V1, V2, VPermMask);
Chris Lattnerf1b47082006-04-14 05:19:18 +00003974}
3975
Chris Lattner90564f22006-04-18 17:59:36 +00003976/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
3977/// altivec comparison. If it is, return true and fill in Opc/isDot with
3978/// information about the intrinsic.
Dan Gohman475871a2008-07-27 21:46:04 +00003979static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
Chris Lattner90564f22006-04-18 17:59:36 +00003980 bool &isDot) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003981 unsigned IntrinsicID =
3982 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00003983 CompareOpc = -1;
3984 isDot = false;
3985 switch (IntrinsicID) {
3986 default: return false;
3987 // Comparison predicates.
Chris Lattner1a635d62006-04-14 06:01:58 +00003988 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
3989 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
3990 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
3991 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
3992 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
3993 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
3994 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
3995 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
3996 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
3997 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
3998 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
3999 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
4000 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004001
Chris Lattner1a635d62006-04-14 06:01:58 +00004002 // Normal Comparisons.
4003 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
4004 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
4005 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
4006 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
4007 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
4008 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
4009 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
4010 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
4011 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
4012 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
4013 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
4014 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
4015 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
4016 }
Chris Lattner90564f22006-04-18 17:59:36 +00004017 return true;
4018}
4019
4020/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
4021/// lower, do it, otherwise return null.
Scott Michelfdc40a02009-02-17 22:15:04 +00004022SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004023 SelectionDAG &DAG) {
Chris Lattner90564f22006-04-18 17:59:36 +00004024 // If this is a lowered altivec predicate compare, CompareOpc is set to the
4025 // opcode number of the comparison.
Dale Johannesen3484c092009-02-05 22:07:54 +00004026 DebugLoc dl = Op.getDebugLoc();
Chris Lattner90564f22006-04-18 17:59:36 +00004027 int CompareOpc;
4028 bool isDot;
4029 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
Dan Gohman475871a2008-07-27 21:46:04 +00004030 return SDValue(); // Don't custom lower most intrinsics.
Scott Michelfdc40a02009-02-17 22:15:04 +00004031
Chris Lattner90564f22006-04-18 17:59:36 +00004032 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner1a635d62006-04-14 06:01:58 +00004033 if (!isDot) {
Dale Johannesen3484c092009-02-05 22:07:54 +00004034 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
Chris Lattner1a635d62006-04-14 06:01:58 +00004035 Op.getOperand(1), Op.getOperand(2),
Owen Anderson825b72b2009-08-11 20:47:22 +00004036 DAG.getConstant(CompareOpc, MVT::i32));
Dale Johannesen3484c092009-02-05 22:07:54 +00004037 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Tmp);
Chris Lattner1a635d62006-04-14 06:01:58 +00004038 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004039
Chris Lattner1a635d62006-04-14 06:01:58 +00004040 // Create the PPCISD altivec 'dot' comparison node.
Dan Gohman475871a2008-07-27 21:46:04 +00004041 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00004042 Op.getOperand(2), // LHS
4043 Op.getOperand(3), // RHS
Owen Anderson825b72b2009-08-11 20:47:22 +00004044 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00004045 };
Owen Andersone50ed302009-08-10 22:56:29 +00004046 std::vector<EVT> VTs;
Chris Lattner1a635d62006-04-14 06:01:58 +00004047 VTs.push_back(Op.getOperand(2).getValueType());
Owen Anderson825b72b2009-08-11 20:47:22 +00004048 VTs.push_back(MVT::Flag);
Dale Johannesen3484c092009-02-05 22:07:54 +00004049 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00004050
Chris Lattner1a635d62006-04-14 06:01:58 +00004051 // Now that we have the comparison, emit a copy from the CR to a GPR.
4052 // This is flagged to the above dot comparison.
Owen Anderson825b72b2009-08-11 20:47:22 +00004053 SDValue Flags = DAG.getNode(PPCISD::MFCR, dl, MVT::i32,
4054 DAG.getRegister(PPC::CR6, MVT::i32),
Scott Michelfdc40a02009-02-17 22:15:04 +00004055 CompNode.getValue(1));
4056
Chris Lattner1a635d62006-04-14 06:01:58 +00004057 // Unpack the result based on how the target uses it.
4058 unsigned BitNo; // Bit # of CR6.
4059 bool InvertBit; // Invert result?
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004060 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
Chris Lattner1a635d62006-04-14 06:01:58 +00004061 default: // Can't happen, don't crash on invalid number though.
4062 case 0: // Return the value of the EQ bit of CR6.
4063 BitNo = 0; InvertBit = false;
4064 break;
4065 case 1: // Return the inverted value of the EQ bit of CR6.
4066 BitNo = 0; InvertBit = true;
4067 break;
4068 case 2: // Return the value of the LT bit of CR6.
4069 BitNo = 2; InvertBit = false;
4070 break;
4071 case 3: // Return the inverted value of the LT bit of CR6.
4072 BitNo = 2; InvertBit = true;
4073 break;
4074 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004075
Chris Lattner1a635d62006-04-14 06:01:58 +00004076 // Shift the bit into the low position.
Owen Anderson825b72b2009-08-11 20:47:22 +00004077 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
4078 DAG.getConstant(8-(3-BitNo), MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00004079 // Isolate the bit.
Owen Anderson825b72b2009-08-11 20:47:22 +00004080 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
4081 DAG.getConstant(1, MVT::i32));
Scott Michelfdc40a02009-02-17 22:15:04 +00004082
Chris Lattner1a635d62006-04-14 06:01:58 +00004083 // If we are supposed to, toggle the bit.
4084 if (InvertBit)
Owen Anderson825b72b2009-08-11 20:47:22 +00004085 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
4086 DAG.getConstant(1, MVT::i32));
Chris Lattner1a635d62006-04-14 06:01:58 +00004087 return Flags;
4088}
4089
Scott Michelfdc40a02009-02-17 22:15:04 +00004090SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
Dale Johannesen5b3b6952008-03-04 23:17:14 +00004091 SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004092 DebugLoc dl = Op.getDebugLoc();
Chris Lattner1a635d62006-04-14 06:01:58 +00004093 // Create a stack slot that is 16-byte aligned.
4094 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
4095 int FrameIdx = FrameInfo->CreateStackObject(16, 16);
Owen Andersone50ed302009-08-10 22:56:29 +00004096 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00004097 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004098
Chris Lattner1a635d62006-04-14 06:01:58 +00004099 // Store the input value into Value#0 of the stack slot.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004100 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004101 Op.getOperand(0), FIdx, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00004102 // Load it out.
Dale Johannesen33c960f2009-02-04 20:06:27 +00004103 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00004104}
4105
Dan Gohman475871a2008-07-27 21:46:04 +00004106SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) {
Dale Johannesened2eee62009-02-06 01:31:28 +00004107 DebugLoc dl = Op.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00004108 if (Op.getValueType() == MVT::v4i32) {
Dan Gohman475871a2008-07-27 21:46:04 +00004109 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004110
Owen Anderson825b72b2009-08-11 20:47:22 +00004111 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl);
4112 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
Scott Michelfdc40a02009-02-17 22:15:04 +00004113
Dan Gohman475871a2008-07-27 21:46:04 +00004114 SDValue RHSSwap = // = vrlw RHS, 16
Dale Johannesened2eee62009-02-06 01:31:28 +00004115 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00004116
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004117 // Shrinkify inputs to v8i16.
Owen Anderson825b72b2009-08-11 20:47:22 +00004118 LHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, LHS);
4119 RHS = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, RHS);
4120 RHSSwap = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, RHSSwap);
Scott Michelfdc40a02009-02-17 22:15:04 +00004121
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004122 // Low parts multiplied together, generating 32-bit results (we ignore the
4123 // top parts).
Dan Gohman475871a2008-07-27 21:46:04 +00004124 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
Owen Anderson825b72b2009-08-11 20:47:22 +00004125 LHS, RHS, DAG, dl, MVT::v4i32);
Scott Michelfdc40a02009-02-17 22:15:04 +00004126
Dan Gohman475871a2008-07-27 21:46:04 +00004127 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
Owen Anderson825b72b2009-08-11 20:47:22 +00004128 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004129 // Shift the high parts up 16 bits.
Scott Michelfdc40a02009-02-17 22:15:04 +00004130 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
Dale Johannesened2eee62009-02-06 01:31:28 +00004131 Neg16, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00004132 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
4133 } else if (Op.getValueType() == MVT::v8i16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004134 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004135
Owen Anderson825b72b2009-08-11 20:47:22 +00004136 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004137
Chris Lattnercea2aa72006-04-18 04:28:57 +00004138 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
Dale Johannesened2eee62009-02-06 01:31:28 +00004139 LHS, RHS, Zero, DAG, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00004140 } else if (Op.getValueType() == MVT::v16i8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004141 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004142
Chris Lattner19a81522006-04-18 03:57:35 +00004143 // Multiply the even 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00004144 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
Owen Anderson825b72b2009-08-11 20:47:22 +00004145 LHS, RHS, DAG, dl, MVT::v8i16);
4146 EvenParts = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, EvenParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00004147
Chris Lattner19a81522006-04-18 03:57:35 +00004148 // Multiply the odd 8-bit parts, producing 16-bit sums.
Dan Gohman475871a2008-07-27 21:46:04 +00004149 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
Owen Anderson825b72b2009-08-11 20:47:22 +00004150 LHS, RHS, DAG, dl, MVT::v8i16);
4151 OddParts = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, OddParts);
Scott Michelfdc40a02009-02-17 22:15:04 +00004152
Chris Lattner19a81522006-04-18 03:57:35 +00004153 // Merge the results together.
Nate Begeman9008ca62009-04-27 18:41:29 +00004154 int Ops[16];
Chris Lattner19a81522006-04-18 03:57:35 +00004155 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004156 Ops[i*2 ] = 2*i+1;
4157 Ops[i*2+1] = 2*i+1+16;
Chris Lattner19a81522006-04-18 03:57:35 +00004158 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004159 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004160 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00004161 llvm_unreachable("Unknown mul to lower!");
Chris Lattner72dd9bd2006-04-18 03:43:48 +00004162 }
Chris Lattnere7c768e2006-04-18 03:24:30 +00004163}
4164
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00004165/// LowerOperation - Provide custom lowering hooks for some operations.
4166///
Dan Gohman475871a2008-07-27 21:46:04 +00004167SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00004168 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00004169 default: llvm_unreachable("Wasn't expecting to be able to lower this!");
Chris Lattner1a635d62006-04-14 06:01:58 +00004170 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
4171 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +00004172 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman37efe672006-04-22 18:53:45 +00004173 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00004174 case ISD::SETCC: return LowerSETCC(Op, DAG);
Bill Wendling77959322008-09-17 00:30:57 +00004175 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004176 case ISD::VASTART:
Nicolas Geoffray01119992007-04-03 13:59:52 +00004177 return LowerVASTART(Op, DAG, VarArgsFrameIndex, VarArgsStackOffset,
4178 VarArgsNumGPR, VarArgsNumFPR, PPCSubTarget);
Scott Michelfdc40a02009-02-17 22:15:04 +00004179
4180 case ISD::VAARG:
Nicolas Geoffray01119992007-04-03 13:59:52 +00004181 return LowerVAARG(Op, DAG, VarArgsFrameIndex, VarArgsStackOffset,
4182 VarArgsNumGPR, VarArgsNumFPR, PPCSubTarget);
4183
Jim Laskeyefc7e522006-12-04 22:04:42 +00004184 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, PPCSubTarget);
Chris Lattner9f0bc652007-02-25 05:34:32 +00004185 case ISD::DYNAMIC_STACKALLOC:
4186 return LowerDYNAMIC_STACKALLOC(Op, DAG, PPCSubTarget);
Evan Cheng54fc97d2008-04-19 01:30:48 +00004187
Chris Lattner1a635d62006-04-14 06:01:58 +00004188 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004189 case ISD::FP_TO_UINT:
4190 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG,
Dale Johannesen3484c092009-02-05 22:07:54 +00004191 Op.getDebugLoc());
Chris Lattner1a635d62006-04-14 06:01:58 +00004192 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00004193 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004194
Chris Lattner1a635d62006-04-14 06:01:58 +00004195 // Lower 64-bit shifts.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00004196 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
4197 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
4198 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004199
Chris Lattner1a635d62006-04-14 06:01:58 +00004200 // Vector-related lowering.
4201 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
4202 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
4203 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
4204 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Chris Lattnere7c768e2006-04-18 03:24:30 +00004205 case ISD::MUL: return LowerMUL(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004206
Chris Lattner3fc027d2007-12-08 06:59:59 +00004207 // Frame & Return address.
4208 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00004209 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnerbc11c342005-08-31 20:23:54 +00004210 }
Dan Gohman475871a2008-07-27 21:46:04 +00004211 return SDValue();
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00004212}
4213
Duncan Sands1607f052008-12-01 11:39:25 +00004214void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
4215 SmallVectorImpl<SDValue>&Results,
4216 SelectionDAG &DAG) {
Dale Johannesen3484c092009-02-05 22:07:54 +00004217 DebugLoc dl = N->getDebugLoc();
Chris Lattner1f873002007-11-28 18:44:47 +00004218 switch (N->getOpcode()) {
Duncan Sands57760d92008-10-28 15:00:32 +00004219 default:
Duncan Sands1607f052008-12-01 11:39:25 +00004220 assert(false && "Do not know how to custom type legalize this operation!");
4221 return;
4222 case ISD::FP_ROUND_INREG: {
Owen Anderson825b72b2009-08-11 20:47:22 +00004223 assert(N->getValueType(0) == MVT::ppcf128);
4224 assert(N->getOperand(0).getValueType() == MVT::ppcf128);
Scott Michelfdc40a02009-02-17 22:15:04 +00004225 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004226 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00004227 DAG.getIntPtrConstant(0));
Dale Johannesen3484c092009-02-05 22:07:54 +00004228 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004229 MVT::f64, N->getOperand(0),
Duncan Sands1607f052008-12-01 11:39:25 +00004230 DAG.getIntPtrConstant(1));
4231
4232 // This sequence changes FPSCR to do round-to-zero, adds the two halves
4233 // of the long double, and puts FPSCR back the way it was. We do not
4234 // actually model FPSCR.
Owen Andersone50ed302009-08-10 22:56:29 +00004235 std::vector<EVT> NodeTys;
Duncan Sands1607f052008-12-01 11:39:25 +00004236 SDValue Ops[4], Result, MFFSreg, InFlag, FPreg;
4237
Owen Anderson825b72b2009-08-11 20:47:22 +00004238 NodeTys.push_back(MVT::f64); // Return register
4239 NodeTys.push_back(MVT::Flag); // Returns a flag for later insns
Dale Johannesen3484c092009-02-05 22:07:54 +00004240 Result = DAG.getNode(PPCISD::MFFS, dl, NodeTys, &InFlag, 0);
Duncan Sands1607f052008-12-01 11:39:25 +00004241 MFFSreg = Result.getValue(0);
4242 InFlag = Result.getValue(1);
4243
4244 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004245 NodeTys.push_back(MVT::Flag); // Returns a flag
4246 Ops[0] = DAG.getConstant(31, MVT::i32);
Duncan Sands1607f052008-12-01 11:39:25 +00004247 Ops[1] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004248 Result = DAG.getNode(PPCISD::MTFSB1, dl, NodeTys, Ops, 2);
Duncan Sands1607f052008-12-01 11:39:25 +00004249 InFlag = Result.getValue(0);
4250
4251 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004252 NodeTys.push_back(MVT::Flag); // Returns a flag
4253 Ops[0] = DAG.getConstant(30, MVT::i32);
Duncan Sands1607f052008-12-01 11:39:25 +00004254 Ops[1] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004255 Result = DAG.getNode(PPCISD::MTFSB0, dl, NodeTys, Ops, 2);
Duncan Sands1607f052008-12-01 11:39:25 +00004256 InFlag = Result.getValue(0);
4257
4258 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004259 NodeTys.push_back(MVT::f64); // result of add
4260 NodeTys.push_back(MVT::Flag); // Returns a flag
Duncan Sands1607f052008-12-01 11:39:25 +00004261 Ops[0] = Lo;
4262 Ops[1] = Hi;
4263 Ops[2] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004264 Result = DAG.getNode(PPCISD::FADDRTZ, dl, NodeTys, Ops, 3);
Duncan Sands1607f052008-12-01 11:39:25 +00004265 FPreg = Result.getValue(0);
4266 InFlag = Result.getValue(1);
4267
4268 NodeTys.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00004269 NodeTys.push_back(MVT::f64);
4270 Ops[0] = DAG.getConstant(1, MVT::i32);
Duncan Sands1607f052008-12-01 11:39:25 +00004271 Ops[1] = MFFSreg;
4272 Ops[2] = FPreg;
4273 Ops[3] = InFlag;
Dale Johannesen3484c092009-02-05 22:07:54 +00004274 Result = DAG.getNode(PPCISD::MTFSF, dl, NodeTys, Ops, 4);
Duncan Sands1607f052008-12-01 11:39:25 +00004275 FPreg = Result.getValue(0);
4276
4277 // We know the low half is about to be thrown away, so just use something
4278 // convenient.
Owen Anderson825b72b2009-08-11 20:47:22 +00004279 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
Dale Johannesen3484c092009-02-05 22:07:54 +00004280 FPreg, FPreg));
Duncan Sands1607f052008-12-01 11:39:25 +00004281 return;
Duncan Sandsa7360f02008-07-19 16:26:02 +00004282 }
Duncan Sands1607f052008-12-01 11:39:25 +00004283 case ISD::FP_TO_SINT:
Dale Johannesen4c9369d2009-06-04 20:53:52 +00004284 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
Duncan Sands1607f052008-12-01 11:39:25 +00004285 return;
Chris Lattner1f873002007-11-28 18:44:47 +00004286 }
4287}
4288
4289
Chris Lattner1a635d62006-04-14 06:01:58 +00004290//===----------------------------------------------------------------------===//
4291// Other Lowering Code
4292//===----------------------------------------------------------------------===//
4293
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004294MachineBasicBlock *
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004295PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00004296 bool is64bit, unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00004297 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004298 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
4299
4300 const BasicBlock *LLVM_BB = BB->getBasicBlock();
4301 MachineFunction *F = BB->getParent();
4302 MachineFunction::iterator It = BB;
4303 ++It;
4304
4305 unsigned dest = MI->getOperand(0).getReg();
4306 unsigned ptrA = MI->getOperand(1).getReg();
4307 unsigned ptrB = MI->getOperand(2).getReg();
4308 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004309 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004310
4311 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
4312 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
4313 F->insert(It, loopMBB);
4314 F->insert(It, exitMBB);
4315 exitMBB->transferSuccessors(BB);
4316
4317 MachineRegisterInfo &RegInfo = F->getRegInfo();
Dale Johannesen0e55f062008-08-29 18:29:46 +00004318 unsigned TmpReg = (!BinOpcode) ? incr :
4319 RegInfo.createVirtualRegister(
Dale Johannesena619d012008-09-02 20:30:23 +00004320 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
4321 (const TargetRegisterClass *) &PPC::GPRCRegClass);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004322
4323 // thisMBB:
4324 // ...
4325 // fallthrough --> loopMBB
4326 BB->addSuccessor(loopMBB);
4327
4328 // loopMBB:
4329 // l[wd]arx dest, ptr
4330 // add r0, dest, incr
4331 // st[wd]cx. r0, ptr
4332 // bne- loopMBB
4333 // fallthrough --> exitMBB
4334 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004335 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004336 .addReg(ptrA).addReg(ptrB);
Dale Johannesen0e55f062008-08-29 18:29:46 +00004337 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004338 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
4339 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004340 .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004341 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00004342 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004343 BB->addSuccessor(loopMBB);
4344 BB->addSuccessor(exitMBB);
4345
4346 // exitMBB:
4347 // ...
4348 BB = exitMBB;
4349 return BB;
4350}
4351
4352MachineBasicBlock *
Scott Michelfdc40a02009-02-17 22:15:04 +00004353PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
Dale Johannesen97efa362008-08-28 17:53:09 +00004354 MachineBasicBlock *BB,
4355 bool is8bit, // operation
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00004356 unsigned BinOpcode) const {
Dale Johannesen0e55f062008-08-29 18:29:46 +00004357 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
Dale Johannesen97efa362008-08-28 17:53:09 +00004358 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
4359 // In 64 bit mode we have to use 64 bits for addresses, even though the
4360 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address
4361 // registers without caring whether they're 32 or 64, but here we're
4362 // doing actual arithmetic on the addresses.
4363 bool is64bit = PPCSubTarget.isPPC64();
4364
4365 const BasicBlock *LLVM_BB = BB->getBasicBlock();
4366 MachineFunction *F = BB->getParent();
4367 MachineFunction::iterator It = BB;
4368 ++It;
4369
4370 unsigned dest = MI->getOperand(0).getReg();
4371 unsigned ptrA = MI->getOperand(1).getReg();
4372 unsigned ptrB = MI->getOperand(2).getReg();
4373 unsigned incr = MI->getOperand(3).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004374 DebugLoc dl = MI->getDebugLoc();
Dale Johannesen97efa362008-08-28 17:53:09 +00004375
4376 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
4377 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
4378 F->insert(It, loopMBB);
4379 F->insert(It, exitMBB);
4380 exitMBB->transferSuccessors(BB);
4381
4382 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00004383 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00004384 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
4385 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesen97efa362008-08-28 17:53:09 +00004386 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
4387 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
4388 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
4389 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
4390 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
4391 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
4392 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
4393 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
4394 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
4395 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen0e55f062008-08-29 18:29:46 +00004396 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00004397 unsigned Ptr1Reg;
Dale Johannesen0e55f062008-08-29 18:29:46 +00004398 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
Dale Johannesen97efa362008-08-28 17:53:09 +00004399
4400 // thisMBB:
4401 // ...
4402 // fallthrough --> loopMBB
4403 BB->addSuccessor(loopMBB);
4404
4405 // The 4-byte load must be aligned, while a char or short may be
4406 // anywhere in the word. Hence all this nasty bookkeeping code.
4407 // add ptr1, ptrA, ptrB [copy if ptrA==0]
4408 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00004409 // xori shift, shift1, 24 [16]
Dale Johannesen97efa362008-08-28 17:53:09 +00004410 // rlwinm ptr, ptr1, 0, 0, 29
4411 // slw incr2, incr, shift
4412 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
4413 // slw mask, mask2, shift
4414 // loopMBB:
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004415 // lwarx tmpDest, ptr
Dale Johannesen0e55f062008-08-29 18:29:46 +00004416 // add tmp, tmpDest, incr2
4417 // andc tmp2, tmpDest, mask
Dale Johannesen97efa362008-08-28 17:53:09 +00004418 // and tmp3, tmp, mask
4419 // or tmp4, tmp3, tmp2
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004420 // stwcx. tmp4, ptr
Dale Johannesen97efa362008-08-28 17:53:09 +00004421 // bne- loopMBB
4422 // fallthrough --> exitMBB
Dale Johannesen0e55f062008-08-29 18:29:46 +00004423 // srw dest, tmpDest, shift
Dale Johannesen97efa362008-08-28 17:53:09 +00004424
4425 if (ptrA!=PPC::R0) {
4426 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004427 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004428 .addReg(ptrA).addReg(ptrB);
4429 } else {
4430 Ptr1Reg = ptrB;
4431 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004432 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004433 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004434 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004435 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
4436 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004437 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004438 .addReg(Ptr1Reg).addImm(0).addImm(61);
4439 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00004440 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004441 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004442 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004443 .addReg(incr).addReg(ShiftReg);
4444 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004445 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesen97efa362008-08-28 17:53:09 +00004446 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00004447 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
4448 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
Dale Johannesen97efa362008-08-28 17:53:09 +00004449 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004450 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004451 .addReg(Mask2Reg).addReg(ShiftReg);
4452
4453 BB = loopMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004454 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004455 .addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen0e55f062008-08-29 18:29:46 +00004456 if (BinOpcode)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004457 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00004458 .addReg(Incr2Reg).addReg(TmpDestReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004459 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
Dale Johannesen0e55f062008-08-29 18:29:46 +00004460 .addReg(TmpDestReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004461 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004462 .addReg(TmpReg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004463 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
Dale Johannesen97efa362008-08-28 17:53:09 +00004464 .addReg(Tmp3Reg).addReg(Tmp2Reg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004465 BuildMI(BB, dl, TII->get(PPC::STWCX))
Dale Johannesen97efa362008-08-28 17:53:09 +00004466 .addReg(Tmp4Reg).addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004467 BuildMI(BB, dl, TII->get(PPC::BCC))
Scott Michelfdc40a02009-02-17 22:15:04 +00004468 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
Dale Johannesen97efa362008-08-28 17:53:09 +00004469 BB->addSuccessor(loopMBB);
4470 BB->addSuccessor(exitMBB);
4471
4472 // exitMBB:
4473 // ...
4474 BB = exitMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004475 BuildMI(BB, dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg).addReg(ShiftReg);
Dale Johannesen97efa362008-08-28 17:53:09 +00004476 return BB;
4477}
4478
4479MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00004480PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00004481 MachineBasicBlock *BB) const {
Evan Chengc0f64ff2006-11-27 23:37:22 +00004482 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng53301922008-07-12 02:23:19 +00004483
4484 // To "insert" these instructions we actually have to insert their
4485 // control-flow patterns.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004486 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004487 MachineFunction::iterator It = BB;
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004488 ++It;
Evan Cheng53301922008-07-12 02:23:19 +00004489
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004490 MachineFunction *F = BB->getParent();
Evan Cheng53301922008-07-12 02:23:19 +00004491
4492 if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
4493 MI->getOpcode() == PPC::SELECT_CC_I8 ||
4494 MI->getOpcode() == PPC::SELECT_CC_F4 ||
4495 MI->getOpcode() == PPC::SELECT_CC_F8 ||
4496 MI->getOpcode() == PPC::SELECT_CC_VRRC) {
4497
4498 // The incoming instruction knows the destination vreg to set, the
4499 // condition code register to branch on, the true/false values to
4500 // select between, and a branch opcode to use.
4501
4502 // thisMBB:
4503 // ...
4504 // TrueVal = ...
4505 // cmpTY ccX, r1, r2
4506 // bCC copy1MBB
4507 // fallthrough --> copy0MBB
4508 MachineBasicBlock *thisMBB = BB;
4509 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
4510 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
4511 unsigned SelectPred = MI->getOperand(4).getImm();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004512 DebugLoc dl = MI->getDebugLoc();
4513 BuildMI(BB, dl, TII->get(PPC::BCC))
Evan Cheng53301922008-07-12 02:23:19 +00004514 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
4515 F->insert(It, copy0MBB);
4516 F->insert(It, sinkMBB);
4517 // Update machine-CFG edges by transferring all successors of the current
4518 // block to the new block which will contain the Phi node for the select.
4519 sinkMBB->transferSuccessors(BB);
4520 // Next, add the true and fallthrough blocks as its successors.
4521 BB->addSuccessor(copy0MBB);
4522 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004523
Evan Cheng53301922008-07-12 02:23:19 +00004524 // copy0MBB:
4525 // %FalseValue = ...
4526 // # fallthrough to sinkMBB
4527 BB = copy0MBB;
Scott Michelfdc40a02009-02-17 22:15:04 +00004528
Evan Cheng53301922008-07-12 02:23:19 +00004529 // Update machine-CFG edges
4530 BB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004531
Evan Cheng53301922008-07-12 02:23:19 +00004532 // sinkMBB:
4533 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
4534 // ...
4535 BB = sinkMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004536 BuildMI(BB, dl, TII->get(PPC::PHI), MI->getOperand(0).getReg())
Evan Cheng53301922008-07-12 02:23:19 +00004537 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
4538 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
4539 }
Dale Johannesen97efa362008-08-28 17:53:09 +00004540 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
4541 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
4542 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
4543 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004544 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
4545 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
4546 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
4547 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004548
4549 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
4550 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
4551 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
4552 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004553 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
4554 BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
4555 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
4556 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004557
4558 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
4559 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
4560 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
4561 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004562 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
4563 BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
4564 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
4565 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004566
4567 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
4568 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
4569 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
4570 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004571 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
4572 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
4573 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
4574 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004575
4576 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
Dale Johannesen209a4092008-09-11 02:15:03 +00004577 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ANDC);
Dale Johannesen97efa362008-08-28 17:53:09 +00004578 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
Dale Johannesen209a4092008-09-11 02:15:03 +00004579 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004580 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
Dale Johannesen209a4092008-09-11 02:15:03 +00004581 BB = EmitAtomicBinary(MI, BB, false, PPC::ANDC);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004582 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
Dale Johannesen209a4092008-09-11 02:15:03 +00004583 BB = EmitAtomicBinary(MI, BB, true, PPC::ANDC8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004584
4585 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
4586 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
4587 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
4588 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
Dale Johannesenbdab93a2008-08-25 22:34:37 +00004589 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
4590 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
4591 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
4592 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
Dale Johannesen97efa362008-08-28 17:53:09 +00004593
Dale Johannesen0e55f062008-08-29 18:29:46 +00004594 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
4595 BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
4596 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
4597 BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
4598 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
4599 BB = EmitAtomicBinary(MI, BB, false, 0);
4600 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
4601 BB = EmitAtomicBinary(MI, BB, true, 0);
4602
Evan Cheng53301922008-07-12 02:23:19 +00004603 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
4604 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
4605 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
4606
4607 unsigned dest = MI->getOperand(0).getReg();
4608 unsigned ptrA = MI->getOperand(1).getReg();
4609 unsigned ptrB = MI->getOperand(2).getReg();
4610 unsigned oldval = MI->getOperand(3).getReg();
4611 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004612 DebugLoc dl = MI->getDebugLoc();
Evan Cheng53301922008-07-12 02:23:19 +00004613
Dale Johannesen65e39732008-08-25 18:53:26 +00004614 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
4615 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
4616 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
Evan Cheng53301922008-07-12 02:23:19 +00004617 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dale Johannesen65e39732008-08-25 18:53:26 +00004618 F->insert(It, loop1MBB);
4619 F->insert(It, loop2MBB);
4620 F->insert(It, midMBB);
Evan Cheng53301922008-07-12 02:23:19 +00004621 F->insert(It, exitMBB);
4622 exitMBB->transferSuccessors(BB);
4623
4624 // thisMBB:
4625 // ...
4626 // fallthrough --> loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00004627 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00004628
Dale Johannesen65e39732008-08-25 18:53:26 +00004629 // loop1MBB:
Evan Cheng53301922008-07-12 02:23:19 +00004630 // l[wd]arx dest, ptr
Dale Johannesen65e39732008-08-25 18:53:26 +00004631 // cmp[wd] dest, oldval
4632 // bne- midMBB
4633 // loop2MBB:
Evan Cheng53301922008-07-12 02:23:19 +00004634 // st[wd]cx. newval, ptr
4635 // bne- loopMBB
Dale Johannesen65e39732008-08-25 18:53:26 +00004636 // b exitBB
4637 // midMBB:
4638 // st[wd]cx. dest, ptr
4639 // exitBB:
4640 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004641 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
Evan Cheng53301922008-07-12 02:23:19 +00004642 .addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004643 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
Evan Cheng53301922008-07-12 02:23:19 +00004644 .addReg(oldval).addReg(dest);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004645 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00004646 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
4647 BB->addSuccessor(loop2MBB);
4648 BB->addSuccessor(midMBB);
4649
4650 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004651 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Evan Cheng53301922008-07-12 02:23:19 +00004652 .addReg(newval).addReg(ptrA).addReg(ptrB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004653 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesen65e39732008-08-25 18:53:26 +00004654 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004655 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesen65e39732008-08-25 18:53:26 +00004656 BB->addSuccessor(loop1MBB);
Evan Cheng53301922008-07-12 02:23:19 +00004657 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004658
Dale Johannesen65e39732008-08-25 18:53:26 +00004659 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004660 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
Dale Johannesen65e39732008-08-25 18:53:26 +00004661 .addReg(dest).addReg(ptrA).addReg(ptrB);
4662 BB->addSuccessor(exitMBB);
4663
Evan Cheng53301922008-07-12 02:23:19 +00004664 // exitMBB:
4665 // ...
4666 BB = exitMBB;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004667 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
4668 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
4669 // We must use 64-bit registers for addresses when targeting 64-bit,
4670 // since we're actually doing arithmetic on them. Other registers
4671 // can be 32-bit.
4672 bool is64bit = PPCSubTarget.isPPC64();
4673 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
4674
4675 unsigned dest = MI->getOperand(0).getReg();
4676 unsigned ptrA = MI->getOperand(1).getReg();
4677 unsigned ptrB = MI->getOperand(2).getReg();
4678 unsigned oldval = MI->getOperand(3).getReg();
4679 unsigned newval = MI->getOperand(4).getReg();
Dale Johannesen536a2f12009-02-13 02:27:39 +00004680 DebugLoc dl = MI->getDebugLoc();
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004681
4682 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
4683 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
4684 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
4685 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
4686 F->insert(It, loop1MBB);
4687 F->insert(It, loop2MBB);
4688 F->insert(It, midMBB);
4689 F->insert(It, exitMBB);
4690 exitMBB->transferSuccessors(BB);
4691
4692 MachineRegisterInfo &RegInfo = F->getRegInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00004693 const TargetRegisterClass *RC =
Dale Johannesena619d012008-09-02 20:30:23 +00004694 is64bit ? (const TargetRegisterClass *) &PPC::G8RCRegClass :
4695 (const TargetRegisterClass *) &PPC::GPRCRegClass;
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004696 unsigned PtrReg = RegInfo.createVirtualRegister(RC);
4697 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
4698 unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
4699 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
4700 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
4701 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
4702 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
4703 unsigned MaskReg = RegInfo.createVirtualRegister(RC);
4704 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
4705 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
4706 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
4707 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
4708 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
4709 unsigned Ptr1Reg;
4710 unsigned TmpReg = RegInfo.createVirtualRegister(RC);
4711 // thisMBB:
4712 // ...
4713 // fallthrough --> loopMBB
4714 BB->addSuccessor(loop1MBB);
4715
4716 // The 4-byte load must be aligned, while a char or short may be
4717 // anywhere in the word. Hence all this nasty bookkeeping code.
4718 // add ptr1, ptrA, ptrB [copy if ptrA==0]
4719 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
Dale Johannesena619d012008-09-02 20:30:23 +00004720 // xori shift, shift1, 24 [16]
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004721 // rlwinm ptr, ptr1, 0, 0, 29
4722 // slw newval2, newval, shift
4723 // slw oldval2, oldval,shift
4724 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
4725 // slw mask, mask2, shift
4726 // and newval3, newval2, mask
4727 // and oldval3, oldval2, mask
4728 // loop1MBB:
4729 // lwarx tmpDest, ptr
4730 // and tmp, tmpDest, mask
4731 // cmpw tmp, oldval3
4732 // bne- midMBB
4733 // loop2MBB:
4734 // andc tmp2, tmpDest, mask
4735 // or tmp4, tmp2, newval3
4736 // stwcx. tmp4, ptr
4737 // bne- loop1MBB
4738 // b exitBB
4739 // midMBB:
4740 // stwcx. tmpDest, ptr
4741 // exitBB:
4742 // srw dest, tmpDest, shift
4743 if (ptrA!=PPC::R0) {
4744 Ptr1Reg = RegInfo.createVirtualRegister(RC);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004745 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004746 .addReg(ptrA).addReg(ptrB);
4747 } else {
4748 Ptr1Reg = ptrB;
4749 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004750 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004751 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004752 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004753 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
4754 if (is64bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004755 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004756 .addReg(Ptr1Reg).addImm(0).addImm(61);
4757 else
Dale Johannesen536a2f12009-02-13 02:27:39 +00004758 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004759 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004760 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004761 .addReg(newval).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004762 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004763 .addReg(oldval).addReg(ShiftReg);
4764 if (is8bit)
Dale Johannesen536a2f12009-02-13 02:27:39 +00004765 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004766 else {
Dale Johannesen536a2f12009-02-13 02:27:39 +00004767 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
4768 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
4769 .addReg(Mask3Reg).addImm(65535);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004770 }
Dale Johannesen536a2f12009-02-13 02:27:39 +00004771 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004772 .addReg(Mask2Reg).addReg(ShiftReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004773 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004774 .addReg(NewVal2Reg).addReg(MaskReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004775 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004776 .addReg(OldVal2Reg).addReg(MaskReg);
4777
4778 BB = loop1MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004779 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004780 .addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004781 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
4782 .addReg(TmpDestReg).addReg(MaskReg);
4783 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004784 .addReg(TmpReg).addReg(OldVal3Reg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004785 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004786 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
4787 BB->addSuccessor(loop2MBB);
4788 BB->addSuccessor(midMBB);
4789
4790 BB = loop2MBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004791 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
4792 .addReg(TmpDestReg).addReg(MaskReg);
4793 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
4794 .addReg(Tmp2Reg).addReg(NewVal3Reg);
4795 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004796 .addReg(PPC::R0).addReg(PtrReg);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004797 BuildMI(BB, dl, TII->get(PPC::BCC))
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004798 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
Dale Johannesen536a2f12009-02-13 02:27:39 +00004799 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004800 BB->addSuccessor(loop1MBB);
4801 BB->addSuccessor(exitMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00004802
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004803 BB = midMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004804 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004805 .addReg(PPC::R0).addReg(PtrReg);
4806 BB->addSuccessor(exitMBB);
4807
4808 // exitMBB:
4809 // ...
4810 BB = exitMBB;
Dale Johannesen536a2f12009-02-13 02:27:39 +00004811 BuildMI(BB, dl, TII->get(PPC::SRW),dest).addReg(TmpReg).addReg(ShiftReg);
Dale Johannesenea9eedb2008-08-30 00:08:53 +00004812 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00004813 llvm_unreachable("Unexpected instr type to insert");
Evan Cheng53301922008-07-12 02:23:19 +00004814 }
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004815
Dan Gohman8e5f2c62008-07-07 23:14:23 +00004816 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00004817 return BB;
4818}
4819
Chris Lattner1a635d62006-04-14 06:01:58 +00004820//===----------------------------------------------------------------------===//
4821// Target Optimization Hooks
4822//===----------------------------------------------------------------------===//
4823
Duncan Sands25cf2272008-11-24 14:53:14 +00004824SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
4825 DAGCombinerInfo &DCI) const {
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004826 TargetMachine &TM = getTargetMachine();
4827 SelectionDAG &DAG = DCI.DAG;
Dale Johannesen3484c092009-02-05 22:07:54 +00004828 DebugLoc dl = N->getDebugLoc();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004829 switch (N->getOpcode()) {
4830 default: break;
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004831 case PPCISD::SHL:
4832 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004833 if (C->getZExtValue() == 0) // 0 << V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004834 return N->getOperand(0);
4835 }
4836 break;
4837 case PPCISD::SRL:
4838 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004839 if (C->getZExtValue() == 0) // 0 >>u V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004840 return N->getOperand(0);
4841 }
4842 break;
4843 case PPCISD::SRA:
4844 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004845 if (C->getZExtValue() == 0 || // 0 >>s V -> 0.
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00004846 C->isAllOnesValue()) // -1 >>s V -> -1.
4847 return N->getOperand(0);
4848 }
4849 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004850
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004851 case ISD::SINT_TO_FP:
Chris Lattnera7a58542006-06-16 17:34:12 +00004852 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004853 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
4854 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
4855 // We allow the src/dst to be either f32/f64, but the intermediate
4856 // type must be i64.
Owen Anderson825b72b2009-08-11 20:47:22 +00004857 if (N->getOperand(0).getValueType() == MVT::i64 &&
4858 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004859 SDValue Val = N->getOperand(0).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00004860 if (Val.getValueType() == MVT::f32) {
4861 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004862 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004863 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004864
Owen Anderson825b72b2009-08-11 20:47:22 +00004865 Val = DAG.getNode(PPCISD::FCTIDZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004866 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00004867 Val = DAG.getNode(PPCISD::FCFID, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004868 DCI.AddToWorklist(Val.getNode());
Owen Anderson825b72b2009-08-11 20:47:22 +00004869 if (N->getValueType(0) == MVT::f32) {
4870 Val = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Val,
Chris Lattner0bd48932008-01-17 07:00:52 +00004871 DAG.getIntPtrConstant(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004872 DCI.AddToWorklist(Val.getNode());
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004873 }
4874 return Val;
Owen Anderson825b72b2009-08-11 20:47:22 +00004875 } else if (N->getOperand(0).getValueType() == MVT::i32) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00004876 // If the intermediate type is i32, we can avoid the load/store here
4877 // too.
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004878 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00004879 }
4880 }
4881 break;
Chris Lattner51269842006-03-01 05:50:56 +00004882 case ISD::STORE:
4883 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
4884 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnera7a02fb2008-01-18 16:54:56 +00004885 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner51269842006-03-01 05:50:56 +00004886 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004887 N->getOperand(1).getValueType() == MVT::i32 &&
4888 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004889 SDValue Val = N->getOperand(1).getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00004890 if (Val.getValueType() == MVT::f32) {
4891 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004892 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00004893 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004894 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
Gabor Greifba36cb52008-08-28 21:40:38 +00004895 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00004896
Owen Anderson825b72b2009-08-11 20:47:22 +00004897 Val = DAG.getNode(PPCISD::STFIWX, dl, MVT::Other, N->getOperand(0), Val,
Chris Lattner51269842006-03-01 05:50:56 +00004898 N->getOperand(2), N->getOperand(3));
Gabor Greifba36cb52008-08-28 21:40:38 +00004899 DCI.AddToWorklist(Val.getNode());
Chris Lattner51269842006-03-01 05:50:56 +00004900 return Val;
4901 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004902
Chris Lattnerd9989382006-07-10 20:56:58 +00004903 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
4904 if (N->getOperand(1).getOpcode() == ISD::BSWAP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004905 N->getOperand(1).getNode()->hasOneUse() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004906 (N->getOperand(1).getValueType() == MVT::i32 ||
4907 N->getOperand(1).getValueType() == MVT::i16)) {
Dan Gohman475871a2008-07-27 21:46:04 +00004908 SDValue BSwapOp = N->getOperand(1).getOperand(0);
Chris Lattnerd9989382006-07-10 20:56:58 +00004909 // Do an any-extend to 32-bits if this is a half-word input.
Owen Anderson825b72b2009-08-11 20:47:22 +00004910 if (BSwapOp.getValueType() == MVT::i16)
4911 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
Chris Lattnerd9989382006-07-10 20:56:58 +00004912
Owen Anderson825b72b2009-08-11 20:47:22 +00004913 return DAG.getNode(PPCISD::STBRX, dl, MVT::Other, N->getOperand(0),
Dale Johannesen3484c092009-02-05 22:07:54 +00004914 BSwapOp, N->getOperand(2), N->getOperand(3),
Chris Lattnerd9989382006-07-10 20:56:58 +00004915 DAG.getValueType(N->getOperand(1).getValueType()));
4916 }
4917 break;
4918 case ISD::BSWAP:
4919 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Gabor Greifba36cb52008-08-28 21:40:38 +00004920 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
Chris Lattnerd9989382006-07-10 20:56:58 +00004921 N->getOperand(0).hasOneUse() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004922 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16)) {
Dan Gohman475871a2008-07-27 21:46:04 +00004923 SDValue Load = N->getOperand(0);
Evan Cheng466685d2006-10-09 20:57:25 +00004924 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnerd9989382006-07-10 20:56:58 +00004925 // Create the byte-swapping load.
Owen Andersone50ed302009-08-10 22:56:29 +00004926 std::vector<EVT> VTs;
Owen Anderson825b72b2009-08-11 20:47:22 +00004927 VTs.push_back(MVT::i32);
4928 VTs.push_back(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004929 SDValue MO = DAG.getMemOperand(LD->getMemOperand());
4930 SDValue Ops[] = {
Evan Cheng466685d2006-10-09 20:57:25 +00004931 LD->getChain(), // Chain
4932 LD->getBasePtr(), // Ptr
Dan Gohman69de1932008-02-06 22:27:42 +00004933 MO, // MemOperand
Chris Lattner79e490a2006-08-11 17:18:05 +00004934 DAG.getValueType(N->getValueType(0)) // VT
4935 };
Dale Johannesen3484c092009-02-05 22:07:54 +00004936 SDValue BSLoad = DAG.getNode(PPCISD::LBRX, dl, VTs, Ops, 4);
Chris Lattnerd9989382006-07-10 20:56:58 +00004937
Scott Michelfdc40a02009-02-17 22:15:04 +00004938 // If this is an i16 load, insert the truncate.
Dan Gohman475871a2008-07-27 21:46:04 +00004939 SDValue ResVal = BSLoad;
Owen Anderson825b72b2009-08-11 20:47:22 +00004940 if (N->getValueType(0) == MVT::i16)
4941 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
Scott Michelfdc40a02009-02-17 22:15:04 +00004942
Chris Lattnerd9989382006-07-10 20:56:58 +00004943 // First, combine the bswap away. This makes the value produced by the
4944 // load dead.
4945 DCI.CombineTo(N, ResVal);
4946
4947 // Next, combine the load away, we give it a bogus result value but a real
4948 // chain result. The result value is dead because the bswap is dead.
Gabor Greifba36cb52008-08-28 21:40:38 +00004949 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00004950
Chris Lattnerd9989382006-07-10 20:56:58 +00004951 // Return N so it doesn't get rechecked!
Dan Gohman475871a2008-07-27 21:46:04 +00004952 return SDValue(N, 0);
Chris Lattnerd9989382006-07-10 20:56:58 +00004953 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004954
Chris Lattner51269842006-03-01 05:50:56 +00004955 break;
Chris Lattner4468c222006-03-31 06:02:07 +00004956 case PPCISD::VCMP: {
4957 // If a VCMPo node already exists with exactly the same operands as this
4958 // node, use its result instead of this node (VCMPo computes both a CR6 and
4959 // a normal output).
4960 //
4961 if (!N->getOperand(0).hasOneUse() &&
4962 !N->getOperand(1).hasOneUse() &&
4963 !N->getOperand(2).hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004964
Chris Lattner4468c222006-03-31 06:02:07 +00004965 // Scan all of the users of the LHS, looking for VCMPo's that match.
4966 SDNode *VCMPoNode = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004967
Gabor Greifba36cb52008-08-28 21:40:38 +00004968 SDNode *LHSN = N->getOperand(0).getNode();
Chris Lattner4468c222006-03-31 06:02:07 +00004969 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
4970 UI != E; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +00004971 if (UI->getOpcode() == PPCISD::VCMPo &&
4972 UI->getOperand(1) == N->getOperand(1) &&
4973 UI->getOperand(2) == N->getOperand(2) &&
4974 UI->getOperand(0) == N->getOperand(0)) {
4975 VCMPoNode = *UI;
Chris Lattner4468c222006-03-31 06:02:07 +00004976 break;
4977 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004978
Chris Lattner00901202006-04-18 18:28:22 +00004979 // If there is no VCMPo node, or if the flag value has a single use, don't
4980 // transform this.
4981 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
4982 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004983
4984 // Look at the (necessarily single) use of the flag value. If it has a
Chris Lattner00901202006-04-18 18:28:22 +00004985 // chain, this transformation is more complex. Note that multiple things
4986 // could use the value result, which we should ignore.
4987 SDNode *FlagUser = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004988 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
Chris Lattner00901202006-04-18 18:28:22 +00004989 FlagUser == 0; ++UI) {
4990 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
Dan Gohman89684502008-07-27 20:43:25 +00004991 SDNode *User = *UI;
Chris Lattner00901202006-04-18 18:28:22 +00004992 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004993 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
Chris Lattner00901202006-04-18 18:28:22 +00004994 FlagUser = User;
4995 break;
4996 }
4997 }
4998 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004999
Chris Lattner00901202006-04-18 18:28:22 +00005000 // If the user is a MFCR instruction, we know this is safe. Otherwise we
5001 // give up for right now.
5002 if (FlagUser->getOpcode() == PPCISD::MFCR)
Dan Gohman475871a2008-07-27 21:46:04 +00005003 return SDValue(VCMPoNode, 0);
Chris Lattner4468c222006-03-31 06:02:07 +00005004 }
5005 break;
5006 }
Chris Lattner90564f22006-04-18 17:59:36 +00005007 case ISD::BR_CC: {
5008 // If this is a branch on an altivec predicate comparison, lower this so
5009 // that we don't have to do a MFCR: instead, branch directly on CR6. This
5010 // lowering is done pre-legalize, because the legalizer lowers the predicate
5011 // compare down to code that is difficult to reassemble.
5012 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
Dan Gohman475871a2008-07-27 21:46:04 +00005013 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
Chris Lattner90564f22006-04-18 17:59:36 +00005014 int CompareOpc;
5015 bool isDot;
Scott Michelfdc40a02009-02-17 22:15:04 +00005016
Chris Lattner90564f22006-04-18 17:59:36 +00005017 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
5018 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
5019 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
5020 assert(isDot && "Can't compare against a vector result!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005021
Chris Lattner90564f22006-04-18 17:59:36 +00005022 // If this is a comparison against something other than 0/1, then we know
5023 // that the condition is never/always true.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005024 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
Chris Lattner90564f22006-04-18 17:59:36 +00005025 if (Val != 0 && Val != 1) {
5026 if (CC == ISD::SETEQ) // Cond never true, remove branch.
5027 return N->getOperand(0);
5028 // Always !=, turn it into an unconditional branch.
Owen Anderson825b72b2009-08-11 20:47:22 +00005029 return DAG.getNode(ISD::BR, dl, MVT::Other,
Chris Lattner90564f22006-04-18 17:59:36 +00005030 N->getOperand(0), N->getOperand(4));
5031 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005032
Chris Lattner90564f22006-04-18 17:59:36 +00005033 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005034
Chris Lattner90564f22006-04-18 17:59:36 +00005035 // Create the PPCISD altivec 'dot' comparison node.
Owen Andersone50ed302009-08-10 22:56:29 +00005036 std::vector<EVT> VTs;
Dan Gohman475871a2008-07-27 21:46:04 +00005037 SDValue Ops[] = {
Chris Lattner79e490a2006-08-11 17:18:05 +00005038 LHS.getOperand(2), // LHS of compare
5039 LHS.getOperand(3), // RHS of compare
Owen Anderson825b72b2009-08-11 20:47:22 +00005040 DAG.getConstant(CompareOpc, MVT::i32)
Chris Lattner79e490a2006-08-11 17:18:05 +00005041 };
Chris Lattner90564f22006-04-18 17:59:36 +00005042 VTs.push_back(LHS.getOperand(2).getValueType());
Owen Anderson825b72b2009-08-11 20:47:22 +00005043 VTs.push_back(MVT::Flag);
Dale Johannesen3484c092009-02-05 22:07:54 +00005044 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00005045
Chris Lattner90564f22006-04-18 17:59:36 +00005046 // Unpack the result based on how the target uses it.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005047 PPC::Predicate CompOpc;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005048 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
Chris Lattner90564f22006-04-18 17:59:36 +00005049 default: // Can't happen, don't crash on invalid number though.
5050 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005051 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner90564f22006-04-18 17:59:36 +00005052 break;
5053 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005054 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner90564f22006-04-18 17:59:36 +00005055 break;
5056 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005057 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner90564f22006-04-18 17:59:36 +00005058 break;
5059 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00005060 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner90564f22006-04-18 17:59:36 +00005061 break;
5062 }
5063
Owen Anderson825b72b2009-08-11 20:47:22 +00005064 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
5065 DAG.getConstant(CompOpc, MVT::i32),
5066 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner90564f22006-04-18 17:59:36 +00005067 N->getOperand(4), CompNode.getValue(1));
5068 }
5069 break;
5070 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00005071 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005072
Dan Gohman475871a2008-07-27 21:46:04 +00005073 return SDValue();
Chris Lattner8c13d0a2006-03-01 04:57:39 +00005074}
5075
Chris Lattner1a635d62006-04-14 06:01:58 +00005076//===----------------------------------------------------------------------===//
5077// Inline Assembly Support
5078//===----------------------------------------------------------------------===//
5079
Dan Gohman475871a2008-07-27 21:46:04 +00005080void PPCTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00005081 const APInt &Mask,
Scott Michelfdc40a02009-02-17 22:15:04 +00005082 APInt &KnownZero,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00005083 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00005084 const SelectionDAG &DAG,
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005085 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00005086 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005087 switch (Op.getOpcode()) {
5088 default: break;
Chris Lattnerd9989382006-07-10 20:56:58 +00005089 case PPCISD::LBRX: {
5090 // lhbrx is known to have the top bits cleared out.
Owen Anderson825b72b2009-08-11 20:47:22 +00005091 if (cast<VTSDNode>(Op.getOperand(3))->getVT() == MVT::i16)
Chris Lattnerd9989382006-07-10 20:56:58 +00005092 KnownZero = 0xFFFF0000;
5093 break;
5094 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005095 case ISD::INTRINSIC_WO_CHAIN: {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005096 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005097 default: break;
5098 case Intrinsic::ppc_altivec_vcmpbfp_p:
5099 case Intrinsic::ppc_altivec_vcmpeqfp_p:
5100 case Intrinsic::ppc_altivec_vcmpequb_p:
5101 case Intrinsic::ppc_altivec_vcmpequh_p:
5102 case Intrinsic::ppc_altivec_vcmpequw_p:
5103 case Intrinsic::ppc_altivec_vcmpgefp_p:
5104 case Intrinsic::ppc_altivec_vcmpgtfp_p:
5105 case Intrinsic::ppc_altivec_vcmpgtsb_p:
5106 case Intrinsic::ppc_altivec_vcmpgtsh_p:
5107 case Intrinsic::ppc_altivec_vcmpgtsw_p:
5108 case Intrinsic::ppc_altivec_vcmpgtub_p:
5109 case Intrinsic::ppc_altivec_vcmpgtuh_p:
5110 case Intrinsic::ppc_altivec_vcmpgtuw_p:
5111 KnownZero = ~1U; // All bits but the low one are known to be zero.
5112 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005113 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00005114 }
5115 }
5116}
5117
5118
Chris Lattner4234f572007-03-25 02:14:49 +00005119/// getConstraintType - Given a constraint, return the type of
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00005120/// constraint it is for this target.
Scott Michelfdc40a02009-02-17 22:15:04 +00005121PPCTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00005122PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
5123 if (Constraint.size() == 1) {
5124 switch (Constraint[0]) {
5125 default: break;
5126 case 'b':
5127 case 'r':
5128 case 'f':
5129 case 'v':
5130 case 'y':
5131 return C_RegisterClass;
5132 }
5133 }
5134 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00005135}
5136
Scott Michelfdc40a02009-02-17 22:15:04 +00005137std::pair<unsigned, const TargetRegisterClass*>
Chris Lattner331d1bc2006-11-02 01:44:04 +00005138PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +00005139 EVT VT) const {
Chris Lattnerddc787d2006-01-31 19:20:21 +00005140 if (Constraint.size() == 1) {
Chris Lattner331d1bc2006-11-02 01:44:04 +00005141 // GCC RS6000 Constraint Letters
5142 switch (Constraint[0]) {
5143 case 'b': // R1-R31
5144 case 'r': // R0-R31
Owen Anderson825b72b2009-08-11 20:47:22 +00005145 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
Chris Lattner331d1bc2006-11-02 01:44:04 +00005146 return std::make_pair(0U, PPC::G8RCRegisterClass);
5147 return std::make_pair(0U, PPC::GPRCRegisterClass);
5148 case 'f':
Owen Anderson825b72b2009-08-11 20:47:22 +00005149 if (VT == MVT::f32)
Chris Lattner331d1bc2006-11-02 01:44:04 +00005150 return std::make_pair(0U, PPC::F4RCRegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00005151 else if (VT == MVT::f64)
Chris Lattner331d1bc2006-11-02 01:44:04 +00005152 return std::make_pair(0U, PPC::F8RCRegisterClass);
5153 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005154 case 'v':
Chris Lattner331d1bc2006-11-02 01:44:04 +00005155 return std::make_pair(0U, PPC::VRRCRegisterClass);
5156 case 'y': // crrc
5157 return std::make_pair(0U, PPC::CRRCRegisterClass);
Chris Lattnerddc787d2006-01-31 19:20:21 +00005158 }
5159 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005160
Chris Lattner331d1bc2006-11-02 01:44:04 +00005161 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattnerddc787d2006-01-31 19:20:21 +00005162}
Chris Lattner763317d2006-02-07 00:47:13 +00005163
Chris Lattner331d1bc2006-11-02 01:44:04 +00005164
Chris Lattner48884cd2007-08-25 00:47:38 +00005165/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
Evan Chengda43bcf2008-09-24 00:05:32 +00005166/// vector. If it is invalid, don't add anything to Ops. If hasMemory is true
5167/// it means one of the asm constraint of the inline asm instruction being
5168/// processed is 'm'.
Dan Gohman475871a2008-07-27 21:46:04 +00005169void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op, char Letter,
Evan Chengda43bcf2008-09-24 00:05:32 +00005170 bool hasMemory,
Dan Gohman475871a2008-07-27 21:46:04 +00005171 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00005172 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00005173 SDValue Result(0,0);
Chris Lattner763317d2006-02-07 00:47:13 +00005174 switch (Letter) {
5175 default: break;
5176 case 'I':
5177 case 'J':
5178 case 'K':
5179 case 'L':
5180 case 'M':
5181 case 'N':
5182 case 'O':
5183 case 'P': {
Chris Lattner9f5d5782007-05-15 01:31:05 +00005184 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattner48884cd2007-08-25 00:47:38 +00005185 if (!CST) return; // Must be an immediate to match.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005186 unsigned Value = CST->getZExtValue();
Chris Lattner763317d2006-02-07 00:47:13 +00005187 switch (Letter) {
Torok Edwinc23197a2009-07-14 16:55:14 +00005188 default: llvm_unreachable("Unknown constraint letter!");
Chris Lattner763317d2006-02-07 00:47:13 +00005189 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005190 if ((short)Value == (int)Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00005191 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005192 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005193 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
5194 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005195 if ((short)Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00005196 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005197 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005198 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005199 if ((Value >> 16) == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00005200 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005201 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005202 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005203 if (Value > 31)
Chris Lattner48884cd2007-08-25 00:47:38 +00005204 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005205 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005206 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005207 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattner48884cd2007-08-25 00:47:38 +00005208 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005209 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00005210 case 'O': // "O" is the constant zero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005211 if (Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00005212 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005213 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005214 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00005215 if ((short)-Value == (int)-Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00005216 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00005217 break;
Chris Lattner763317d2006-02-07 00:47:13 +00005218 }
5219 break;
5220 }
5221 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005222
Gabor Greifba36cb52008-08-28 21:40:38 +00005223 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00005224 Ops.push_back(Result);
5225 return;
5226 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005227
Chris Lattner763317d2006-02-07 00:47:13 +00005228 // Handle standard constraint letters.
Evan Chengda43bcf2008-09-24 00:05:32 +00005229 TargetLowering::LowerAsmOperandForConstraint(Op, Letter, hasMemory, Ops, DAG);
Chris Lattner763317d2006-02-07 00:47:13 +00005230}
Evan Chengc4c62572006-03-13 23:20:37 +00005231
Chris Lattnerc9addb72007-03-30 23:15:24 +00005232// isLegalAddressingMode - Return true if the addressing mode represented
5233// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00005234bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00005235 const Type *Ty) const {
5236 // FIXME: PPC does not allow r+i addressing modes for vectors!
Scott Michelfdc40a02009-02-17 22:15:04 +00005237
Chris Lattnerc9addb72007-03-30 23:15:24 +00005238 // PPC allows a sign-extended 16-bit immediate field.
5239 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
5240 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005241
Chris Lattnerc9addb72007-03-30 23:15:24 +00005242 // No global is ever allowed as a base.
5243 if (AM.BaseGV)
5244 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005245
5246 // PPC only support r+r,
Chris Lattnerc9addb72007-03-30 23:15:24 +00005247 switch (AM.Scale) {
5248 case 0: // "r+i" or just "i", depending on HasBaseReg.
5249 break;
5250 case 1:
5251 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
5252 return false;
5253 // Otherwise we have r+r or r+i.
5254 break;
5255 case 2:
5256 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
5257 return false;
5258 // Allow 2*r as r+r.
5259 break;
Chris Lattner7c7ba9d2007-04-09 22:10:05 +00005260 default:
5261 // No other scales are supported.
5262 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00005263 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005264
Chris Lattnerc9addb72007-03-30 23:15:24 +00005265 return true;
5266}
5267
Evan Chengc4c62572006-03-13 23:20:37 +00005268/// isLegalAddressImmediate - Return true if the integer value can be used
Evan Cheng86193912007-03-12 23:29:01 +00005269/// as the offset of the target addressing mode for load / store of the
5270/// given type.
5271bool PPCTargetLowering::isLegalAddressImmediate(int64_t V,const Type *Ty) const{
Evan Chengc4c62572006-03-13 23:20:37 +00005272 // PPC allows a sign-extended 16-bit immediate field.
5273 return (V > -(1 << 16) && V < (1 << 16)-1);
5274}
Reid Spencer3a9ec242006-08-28 01:02:49 +00005275
5276bool PPCTargetLowering::isLegalAddressImmediate(llvm::GlobalValue* GV) const {
Scott Michelfdc40a02009-02-17 22:15:04 +00005277 return false;
Reid Spencer3a9ec242006-08-28 01:02:49 +00005278}
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005279
Dan Gohman475871a2008-07-27 21:46:04 +00005280SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005281 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005282 // Depths > 0 not supported yet!
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005283 if (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue() > 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005284 return SDValue();
Chris Lattner3fc027d2007-12-08 06:59:59 +00005285
5286 MachineFunction &MF = DAG.getMachineFunction();
5287 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
Chris Lattner3fc027d2007-12-08 06:59:59 +00005288
Chris Lattner3fc027d2007-12-08 06:59:59 +00005289 // Just load the return address off the stack.
Dan Gohman475871a2008-07-27 21:46:04 +00005290 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00005291
5292 // Make sure the function really does not optimize away the store of the RA
5293 // to the stack.
5294 FuncInfo->setLRStoreRequired();
Scott Michelfdc40a02009-02-17 22:15:04 +00005295 return DAG.getLoad(getPointerTy(), dl,
Dale Johannesen33c960f2009-02-04 20:06:27 +00005296 DAG.getEntryNode(), RetAddrFI, NULL, 0);
Chris Lattner3fc027d2007-12-08 06:59:59 +00005297}
5298
Dan Gohman475871a2008-07-27 21:46:04 +00005299SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Dale Johannesena05dca42009-02-04 23:02:30 +00005300 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005301 // Depths > 0 not supported yet!
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005302 if (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue() > 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005303 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00005304
Owen Andersone50ed302009-08-10 22:56:29 +00005305 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Owen Anderson825b72b2009-08-11 20:47:22 +00005306 bool isPPC64 = PtrVT == MVT::i64;
Scott Michelfdc40a02009-02-17 22:15:04 +00005307
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005308 MachineFunction &MF = DAG.getMachineFunction();
5309 MachineFrameInfo *MFI = MF.getFrameInfo();
Scott Michelfdc40a02009-02-17 22:15:04 +00005310 bool is31 = (NoFramePointerElim || MFI->hasVarSizedObjects())
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005311 && MFI->getStackSize();
5312
5313 if (isPPC64)
Dale Johannesena05dca42009-02-04 23:02:30 +00005314 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, is31 ? PPC::X31 : PPC::X1,
Owen Anderson825b72b2009-08-11 20:47:22 +00005315 MVT::i64);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005316 else
Dale Johannesena05dca42009-02-04 23:02:30 +00005317 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, is31 ? PPC::R31 : PPC::R1,
Owen Anderson825b72b2009-08-11 20:47:22 +00005318 MVT::i32);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00005319}
Dan Gohman54aeea32008-10-21 03:41:46 +00005320
5321bool
5322PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
5323 // The PowerPC target isn't yet aware of offsets.
5324 return false;
5325}
Tilmann Schellerffd02002009-07-03 06:45:56 +00005326
Owen Andersone50ed302009-08-10 22:56:29 +00005327EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
Tilmann Schellerffd02002009-07-03 06:45:56 +00005328 bool isSrcConst, bool isSrcStr,
5329 SelectionDAG &DAG) const {
5330 if (this->PPCSubTarget.isPPC64()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005331 return MVT::i64;
Tilmann Schellerffd02002009-07-03 06:45:56 +00005332 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00005333 return MVT::i32;
Tilmann Schellerffd02002009-07-03 06:45:56 +00005334 }
5335}