blob: dffbf7cb2774ca0a8dd4cef59f607690e49d247f [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"
Evan Chengc4c62572006-03-13 23:20:37 +000021#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chris Lattnerb9a7bea2007-03-06 00:59:59 +000022#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
24#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner8a2d3ca2005-08-26 21:23:58 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000027#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000028#include "llvm/CodeGen/SelectionDAG.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 Lattner4eab7142006-11-10 02:08:47 +000034#include "llvm/Support/CommandLine.h"
Chris Lattner7c5a3d32005-08-16 17:14:42 +000035using namespace llvm;
36
Chris Lattner3ee77402007-06-19 05:46:06 +000037static cl::opt<bool> EnablePPCPreinc("enable-ppc-preinc",
38cl::desc("enable preincrement load/store generation on PPC (experimental)"),
39 cl::Hidden);
Chris Lattner4eab7142006-11-10 02:08:47 +000040
Chris Lattner331d1bc2006-11-02 01:44:04 +000041PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM)
42 : TargetLowering(TM), PPCSubTarget(*TM.getSubtargetImpl()) {
Chris Lattner7c5a3d32005-08-16 17:14:42 +000043
Nate Begeman405e3ec2005-10-21 00:02:42 +000044 setPow2DivIsCheap();
Chris Lattner7c5a3d32005-08-16 17:14:42 +000045
Chris Lattnerd145a612005-09-27 22:18:25 +000046 // Use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000047 setUseUnderscoreSetJmp(true);
48 setUseUnderscoreLongJmp(true);
Chris Lattnerd145a612005-09-27 22:18:25 +000049
Chris Lattner7c5a3d32005-08-16 17:14:42 +000050 // Set up the register classes.
Nate Begeman1d9d7422005-10-18 00:28:58 +000051 addRegisterClass(MVT::i32, PPC::GPRCRegisterClass);
52 addRegisterClass(MVT::f32, PPC::F4RCRegisterClass);
53 addRegisterClass(MVT::f64, PPC::F8RCRegisterClass);
Chris Lattner7c5a3d32005-08-16 17:14:42 +000054
Evan Chengc5484282006-10-04 00:56:09 +000055 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
Duncan Sandsf9c98e62008-01-23 20:39:46 +000056 setLoadXAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +000057 setLoadXAction(ISD::SEXTLOAD, MVT::i8, Expand);
Duncan Sandsf9c98e62008-01-23 20:39:46 +000058
Chris Lattnerddf89562008-01-17 19:59:44 +000059 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
60
Chris Lattner94e509c2006-11-10 23:58:45 +000061 // PowerPC has pre-inc load and store's.
62 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
63 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
64 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
Evan Chengcd633192006-11-09 19:11:50 +000065 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
66 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
Chris Lattner94e509c2006-11-10 23:58:45 +000067 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
68 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
69 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
Evan Chengcd633192006-11-09 19:11:50 +000070 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
71 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
72
Dale Johannesen638ccd52007-10-06 01:24:11 +000073 // Shortening conversions involving ppcf128 get expanded (2 regs -> 1 reg)
74 setConvertAction(MVT::ppcf128, MVT::f64, Expand);
75 setConvertAction(MVT::ppcf128, MVT::f32, Expand);
Dale Johannesen6eaeff22007-10-10 01:01:31 +000076 // This is used in the ppcf128->int sequence. Note it has different semantics
77 // from FP_ROUND: that rounds to nearest, this rounds to zero.
78 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
Dale Johannesen638ccd52007-10-06 01:24:11 +000079
Chris Lattner7c5a3d32005-08-16 17:14:42 +000080 // PowerPC has no intrinsics for these particular operations
81 setOperationAction(ISD::MEMMOVE, MVT::Other, Expand);
82 setOperationAction(ISD::MEMSET, MVT::Other, Expand);
83 setOperationAction(ISD::MEMCPY, MVT::Other, Expand);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +000084 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
85
Chris Lattner7c5a3d32005-08-16 17:14:42 +000086 // PowerPC has no SREM/UREM instructions
87 setOperationAction(ISD::SREM, MVT::i32, Expand);
88 setOperationAction(ISD::UREM, MVT::i32, Expand);
Chris Lattner563ecfb2006-06-27 18:18:41 +000089 setOperationAction(ISD::SREM, MVT::i64, Expand);
90 setOperationAction(ISD::UREM, MVT::i64, Expand);
Dan Gohman3ce990d2007-10-08 17:28:24 +000091
92 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
93 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
94 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
95 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
96 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
97 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
98 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
99 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
100 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000101
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000102 // We don't support sin/cos/sqrt/fmod/pow
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000103 setOperationAction(ISD::FSIN , MVT::f64, Expand);
104 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattner615c2d02005-09-28 22:29:58 +0000105 setOperationAction(ISD::FREM , MVT::f64, Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000106 setOperationAction(ISD::FPOW , MVT::f64, Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000107 setOperationAction(ISD::FSIN , MVT::f32, Expand);
108 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattner615c2d02005-09-28 22:29:58 +0000109 setOperationAction(ISD::FREM , MVT::f32, Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000110 setOperationAction(ISD::FPOW , MVT::f32, Expand);
Dale Johannesen5c5eb802008-01-18 19:55:37 +0000111
Dan Gohman1a024862008-01-31 00:41:03 +0000112 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000113
114 // If we're enabling GP optimizations, use hardware square root
Chris Lattner1e9de3e2005-09-02 18:33:05 +0000115 if (!TM.getSubtarget<PPCSubtarget>().hasFSQRT()) {
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000116 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
117 setOperationAction(ISD::FSQRT, MVT::f32, Expand);
118 }
119
Chris Lattner9601a862006-03-05 05:08:37 +0000120 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
121 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
122
Nate Begemand88fc032006-01-14 03:14:10 +0000123 // PowerPC does not have BSWAP, CTPOP or CTTZ
124 setOperationAction(ISD::BSWAP, MVT::i32 , Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000125 setOperationAction(ISD::CTPOP, MVT::i32 , Expand);
126 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
Chris Lattnerf89437d2006-06-27 20:14:52 +0000127 setOperationAction(ISD::BSWAP, MVT::i64 , Expand);
128 setOperationAction(ISD::CTPOP, MVT::i64 , Expand);
129 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000130
Nate Begeman35ef9132006-01-11 21:21:00 +0000131 // PowerPC does not have ROTR
132 setOperationAction(ISD::ROTR, MVT::i32 , Expand);
133
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000134 // PowerPC does not have Select
135 setOperationAction(ISD::SELECT, MVT::i32, Expand);
Chris Lattnerf89437d2006-06-27 20:14:52 +0000136 setOperationAction(ISD::SELECT, MVT::i64, Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000137 setOperationAction(ISD::SELECT, MVT::f32, Expand);
138 setOperationAction(ISD::SELECT, MVT::f64, Expand);
Chris Lattnere4bc9ea2005-08-26 00:52:45 +0000139
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000140 // PowerPC wants to turn select_cc of FP into fsel when possible.
141 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
142 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Nate Begeman44775902006-01-31 08:17:29 +0000143
Nate Begeman750ac1b2006-02-01 07:19:44 +0000144 // PowerPC wants to optimize integer setcc a bit
Nate Begeman44775902006-01-31 08:17:29 +0000145 setOperationAction(ISD::SETCC, MVT::i32, Custom);
Chris Lattnereb9b62e2005-08-31 19:09:57 +0000146
Nate Begeman81e80972006-03-17 01:40:33 +0000147 // PowerPC does not have BRCOND which requires SetCC
148 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
Evan Chengc35497f2006-10-30 08:02:39 +0000149
150 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000151
Chris Lattnerf7605322005-08-31 21:09:52 +0000152 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
153 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000154
Jim Laskeyad23c9d2005-08-17 00:40:22 +0000155 // PowerPC does not have [U|S]INT_TO_FP
156 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
157 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
158
Chris Lattner53e88452005-12-23 05:13:35 +0000159 setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
160 setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand);
Chris Lattner5f9faea2006-06-27 18:40:08 +0000161 setOperationAction(ISD::BIT_CONVERT, MVT::i64, Expand);
162 setOperationAction(ISD::BIT_CONVERT, MVT::f64, Expand);
Chris Lattner53e88452005-12-23 05:13:35 +0000163
Chris Lattner25b8b8c2006-04-28 21:56:10 +0000164 // We cannot sextinreg(i1). Expand to shifts.
165 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000166
Jim Laskeyabf6d172006-01-05 01:25:28 +0000167 // Support label based line numbers.
Chris Lattnerf73bae12005-11-29 06:16:21 +0000168 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +0000169 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Nicolas Geoffray616585b2007-12-21 12:19:44 +0000170
171 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
172 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
173 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
174 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
175
Chris Lattnere6ec9f22005-09-10 00:21:06 +0000176
Nate Begeman28a6b022005-12-10 02:36:00 +0000177 // We want to legalize GlobalAddress and ConstantPool nodes into the
178 // appropriate instructions to materialize the address.
Chris Lattner3eef4e32005-11-17 18:26:56 +0000179 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000180 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Nate Begeman28a6b022005-12-10 02:36:00 +0000181 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
Nate Begeman37efe672006-04-22 18:53:45 +0000182 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
Chris Lattner059ca0f2006-06-16 21:01:35 +0000183 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000184 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Chris Lattner059ca0f2006-06-16 21:01:35 +0000185 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
186 setOperationAction(ISD::JumpTable, MVT::i64, Custom);
187
Nate Begemanee625572006-01-27 21:09:22 +0000188 // RET must be custom lowered, to meet ABI requirements
189 setOperationAction(ISD::RET , MVT::Other, Custom);
Duncan Sands36397f52007-07-27 12:58:54 +0000190
Nate Begemanacc398c2006-01-25 18:21:52 +0000191 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
192 setOperationAction(ISD::VASTART , MVT::Other, Custom);
193
Nicolas Geoffray01119992007-04-03 13:59:52 +0000194 // VAARG is custom lowered with ELF 32 ABI
195 if (TM.getSubtarget<PPCSubtarget>().isELF32_ABI())
196 setOperationAction(ISD::VAARG, MVT::Other, Custom);
197 else
198 setOperationAction(ISD::VAARG, MVT::Other, Expand);
199
Chris Lattnerb22c08b2006-01-15 09:02:48 +0000200 // Use the default implementation.
Nate Begemanacc398c2006-01-25 18:21:52 +0000201 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
202 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Chris Lattnerb22c08b2006-01-15 09:02:48 +0000203 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand);
Jim Laskeyefc7e522006-12-04 22:04:42 +0000204 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom);
Jim Laskey2f616bf2006-11-16 22:43:37 +0000205 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom);
206 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom);
Chris Lattner56a752e2006-10-18 01:18:48 +0000207
Chris Lattner6d92cad2006-03-26 10:06:40 +0000208 // We want to custom lower some of our intrinsics.
Chris Lattner48b61a72006-03-28 00:40:33 +0000209 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Chris Lattner6d92cad2006-03-26 10:06:40 +0000210
Chris Lattnera7a58542006-06-16 17:34:12 +0000211 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Nate Begeman1d9d7422005-10-18 00:28:58 +0000212 // They also have instructions for converting between i64 and fp.
Nate Begemanc09eeec2005-09-06 22:03:27 +0000213 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
Jim Laskeyca367b42006-12-15 14:32:57 +0000214 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000215 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
Chris Lattner85c671b2006-12-07 01:24:16 +0000216 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
Jim Laskeyca367b42006-12-15 14:32:57 +0000217 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
218
Chris Lattner7fbcef72006-03-24 07:53:47 +0000219 // FIXME: disable this lowered code. This generates 64-bit register values,
220 // and we don't model the fact that the top part is clobbered by calls. We
221 // need to flag these together so that the value isn't live across a call.
222 //setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
223
Nate Begemanae749a92005-10-25 23:48:36 +0000224 // To take advantage of the above i64 FP_TO_SINT, promote i32 FP_TO_UINT
225 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Promote);
226 } else {
Chris Lattner860e8862005-11-17 07:30:41 +0000227 // PowerPC does not have FP_TO_UINT on 32-bit implementations.
Nate Begemanae749a92005-10-25 23:48:36 +0000228 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
Nate Begeman9d2b8172005-10-18 00:56:42 +0000229 }
230
Chris Lattnera7a58542006-06-16 17:34:12 +0000231 if (TM.getSubtarget<PPCSubtarget>().use64BitRegs()) {
Chris Lattner26cb2862007-10-19 04:08:28 +0000232 // 64-bit PowerPC implementations can support i64 types directly
Nate Begeman9d2b8172005-10-18 00:56:42 +0000233 addRegisterClass(MVT::i64, PPC::G8RCRegisterClass);
Nate Begeman1d9d7422005-10-18 00:28:58 +0000234 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
235 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Dan Gohman9ed06db2008-03-07 20:36:53 +0000236 // 64-bit PowerPC wants to expand i128 shifts itself.
237 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
238 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
239 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
Nate Begeman1d9d7422005-10-18 00:28:58 +0000240 } else {
Chris Lattner26cb2862007-10-19 04:08:28 +0000241 // 32-bit PowerPC wants to expand i64 shifts itself.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +0000242 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
243 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
244 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Nate Begemanc09eeec2005-09-06 22:03:27 +0000245 }
Evan Chengd30bf012006-03-01 01:11:20 +0000246
Nate Begeman425a9692005-11-29 08:17:20 +0000247 if (TM.getSubtarget<PPCSubtarget>().hasAltivec()) {
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000248 // First set operation action for all vector types to expand. Then we
249 // will selectively turn on ones that can be effectively codegen'd.
250 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Dan Gohmanf5135be2007-05-18 23:21:46 +0000251 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000252 // add/sub are legal for all supported vector VT's.
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000253 setOperationAction(ISD::ADD , (MVT::ValueType)VT, Legal);
254 setOperationAction(ISD::SUB , (MVT::ValueType)VT, Legal);
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000255
Chris Lattner7ff7e672006-04-04 17:25:31 +0000256 // We promote all shuffles to v16i8.
257 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, Promote);
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000258 AddPromotedToType (ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, MVT::v16i8);
259
260 // We promote all non-typed operations to v4i32.
261 setOperationAction(ISD::AND , (MVT::ValueType)VT, Promote);
262 AddPromotedToType (ISD::AND , (MVT::ValueType)VT, MVT::v4i32);
263 setOperationAction(ISD::OR , (MVT::ValueType)VT, Promote);
264 AddPromotedToType (ISD::OR , (MVT::ValueType)VT, MVT::v4i32);
265 setOperationAction(ISD::XOR , (MVT::ValueType)VT, Promote);
266 AddPromotedToType (ISD::XOR , (MVT::ValueType)VT, MVT::v4i32);
267 setOperationAction(ISD::LOAD , (MVT::ValueType)VT, Promote);
268 AddPromotedToType (ISD::LOAD , (MVT::ValueType)VT, MVT::v4i32);
269 setOperationAction(ISD::SELECT, (MVT::ValueType)VT, Promote);
270 AddPromotedToType (ISD::SELECT, (MVT::ValueType)VT, MVT::v4i32);
271 setOperationAction(ISD::STORE, (MVT::ValueType)VT, Promote);
272 AddPromotedToType (ISD::STORE, (MVT::ValueType)VT, MVT::v4i32);
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000273
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000274 // No other operations are legal.
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000275 setOperationAction(ISD::MUL , (MVT::ValueType)VT, Expand);
276 setOperationAction(ISD::SDIV, (MVT::ValueType)VT, Expand);
277 setOperationAction(ISD::SREM, (MVT::ValueType)VT, Expand);
278 setOperationAction(ISD::UDIV, (MVT::ValueType)VT, Expand);
279 setOperationAction(ISD::UREM, (MVT::ValueType)VT, Expand);
Chris Lattner2ef5e892006-05-24 00:15:25 +0000280 setOperationAction(ISD::FDIV, (MVT::ValueType)VT, Expand);
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000281 setOperationAction(ISD::FNEG, (MVT::ValueType)VT, Expand);
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000282 setOperationAction(ISD::EXTRACT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
283 setOperationAction(ISD::INSERT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
284 setOperationAction(ISD::BUILD_VECTOR, (MVT::ValueType)VT, Expand);
Dan Gohman3ce990d2007-10-08 17:28:24 +0000285 setOperationAction(ISD::UMUL_LOHI, (MVT::ValueType)VT, Expand);
286 setOperationAction(ISD::SMUL_LOHI, (MVT::ValueType)VT, Expand);
287 setOperationAction(ISD::UDIVREM, (MVT::ValueType)VT, Expand);
288 setOperationAction(ISD::SDIVREM, (MVT::ValueType)VT, Expand);
Chris Lattner01cae072006-04-03 23:55:43 +0000289 setOperationAction(ISD::SCALAR_TO_VECTOR, (MVT::ValueType)VT, Expand);
Dan Gohmana3f269f2007-10-12 14:08:57 +0000290 setOperationAction(ISD::FPOW, (MVT::ValueType)VT, Expand);
291 setOperationAction(ISD::CTPOP, (MVT::ValueType)VT, Expand);
292 setOperationAction(ISD::CTLZ, (MVT::ValueType)VT, Expand);
293 setOperationAction(ISD::CTTZ, (MVT::ValueType)VT, Expand);
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000294 }
295
Chris Lattner7ff7e672006-04-04 17:25:31 +0000296 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
297 // with merges, splats, etc.
298 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
299
Chris Lattnerf3f69de2006-04-16 01:37:57 +0000300 setOperationAction(ISD::AND , MVT::v4i32, Legal);
301 setOperationAction(ISD::OR , MVT::v4i32, Legal);
302 setOperationAction(ISD::XOR , MVT::v4i32, Legal);
303 setOperationAction(ISD::LOAD , MVT::v4i32, Legal);
304 setOperationAction(ISD::SELECT, MVT::v4i32, Expand);
305 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
306
Nate Begeman425a9692005-11-29 08:17:20 +0000307 addRegisterClass(MVT::v4f32, PPC::VRRCRegisterClass);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000308 addRegisterClass(MVT::v4i32, PPC::VRRCRegisterClass);
Chris Lattner8d052bc2006-03-25 07:39:07 +0000309 addRegisterClass(MVT::v8i16, PPC::VRRCRegisterClass);
310 addRegisterClass(MVT::v16i8, PPC::VRRCRegisterClass);
Chris Lattnerec4a0c72006-01-29 06:32:58 +0000311
Chris Lattnere3fea5a2006-03-31 19:52:36 +0000312 setOperationAction(ISD::MUL, MVT::v4f32, Legal);
Chris Lattnere7c768e2006-04-18 03:24:30 +0000313 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
Chris Lattner72dd9bd2006-04-18 03:43:48 +0000314 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
Chris Lattner19a81522006-04-18 03:57:35 +0000315 setOperationAction(ISD::MUL, MVT::v16i8, Custom);
Chris Lattnerf1d0b2b2006-03-20 01:53:53 +0000316
Chris Lattnerb2177b92006-03-19 06:55:52 +0000317 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
318 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
Chris Lattner64b3a082006-03-24 07:48:08 +0000319
Chris Lattner541f91b2006-04-02 00:43:36 +0000320 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
321 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
Chris Lattner64b3a082006-03-24 07:48:08 +0000322 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
323 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
Nate Begeman425a9692005-11-29 08:17:20 +0000324 }
325
Chris Lattnerc08f9022006-06-27 00:04:13 +0000326 setSetCCResultType(MVT::i32);
Chris Lattner7b0c58c2006-06-27 17:34:57 +0000327 setShiftAmountType(MVT::i32);
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000328 setSetCCResultContents(ZeroOrOneSetCCResult);
Chris Lattner10da9572006-10-18 01:20:43 +0000329
Jim Laskey2ad9f172007-02-22 14:56:36 +0000330 if (TM.getSubtarget<PPCSubtarget>().isPPC64()) {
Chris Lattner10da9572006-10-18 01:20:43 +0000331 setStackPointerRegisterToSaveRestore(PPC::X1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000332 setExceptionPointerRegister(PPC::X3);
333 setExceptionSelectorRegister(PPC::X4);
334 } else {
Chris Lattner10da9572006-10-18 01:20:43 +0000335 setStackPointerRegisterToSaveRestore(PPC::R1);
Jim Laskey2ad9f172007-02-22 14:56:36 +0000336 setExceptionPointerRegister(PPC::R3);
337 setExceptionSelectorRegister(PPC::R4);
338 }
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000339
Chris Lattner8c13d0a2006-03-01 04:57:39 +0000340 // We have target-specific dag combine patterns for the following nodes:
341 setTargetDAGCombine(ISD::SINT_TO_FP);
Chris Lattner51269842006-03-01 05:50:56 +0000342 setTargetDAGCombine(ISD::STORE);
Chris Lattner90564f22006-04-18 17:59:36 +0000343 setTargetDAGCombine(ISD::BR_CC);
Chris Lattnerd9989382006-07-10 20:56:58 +0000344 setTargetDAGCombine(ISD::BSWAP);
Chris Lattner8c13d0a2006-03-01 04:57:39 +0000345
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000346 // Darwin long double math library functions have $LDBL128 appended.
347 if (TM.getSubtarget<PPCSubtarget>().isDarwin()) {
Duncan Sands007f9842008-01-10 10:28:30 +0000348 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000349 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
350 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
Duncan Sands007f9842008-01-10 10:28:30 +0000351 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
352 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
Dale Johannesenfabd32d2007-10-19 00:59:18 +0000353 }
354
Chris Lattner7c5a3d32005-08-16 17:14:42 +0000355 computeRegisterProperties();
356}
357
Dale Johannesen28d08fd2008-02-28 22:31:51 +0000358/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
359/// function arguments in the caller parameter area.
360unsigned PPCTargetLowering::getByValTypeAlignment(const Type *Ty) const {
361 TargetMachine &TM = getTargetMachine();
362 // Darwin passes everything on 4 byte boundary.
363 if (TM.getSubtarget<PPCSubtarget>().isDarwin())
364 return 4;
365 // FIXME Elf TBD
366 return 4;
367}
368
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000369const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
370 switch (Opcode) {
371 default: return 0;
372 case PPCISD::FSEL: return "PPCISD::FSEL";
373 case PPCISD::FCFID: return "PPCISD::FCFID";
374 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ";
375 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ";
Chris Lattner51269842006-03-01 05:50:56 +0000376 case PPCISD::STFIWX: return "PPCISD::STFIWX";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000377 case PPCISD::VMADDFP: return "PPCISD::VMADDFP";
378 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP";
Chris Lattnerf1d0b2b2006-03-20 01:53:53 +0000379 case PPCISD::VPERM: return "PPCISD::VPERM";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000380 case PPCISD::Hi: return "PPCISD::Hi";
381 case PPCISD::Lo: return "PPCISD::Lo";
Jim Laskey2060a822006-12-11 18:45:56 +0000382 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000383 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg";
384 case PPCISD::SRL: return "PPCISD::SRL";
385 case PPCISD::SRA: return "PPCISD::SRA";
386 case PPCISD::SHL: return "PPCISD::SHL";
Chris Lattnerecfe55e2006-03-22 05:30:33 +0000387 case PPCISD::EXTSW_32: return "PPCISD::EXTSW_32";
388 case PPCISD::STD_32: return "PPCISD::STD_32";
Nicolas Geoffray63f8fb12007-02-27 13:01:19 +0000389 case PPCISD::CALL_ELF: return "PPCISD::CALL_ELF";
390 case PPCISD::CALL_Macho: return "PPCISD::CALL_Macho";
Chris Lattnerc703a8f2006-05-17 19:00:46 +0000391 case PPCISD::MTCTR: return "PPCISD::MTCTR";
Chris Lattner9f0bc652007-02-25 05:34:32 +0000392 case PPCISD::BCTRL_Macho: return "PPCISD::BCTRL_Macho";
393 case PPCISD::BCTRL_ELF: return "PPCISD::BCTRL_ELF";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000394 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG";
Chris Lattner6d92cad2006-03-26 10:06:40 +0000395 case PPCISD::MFCR: return "PPCISD::MFCR";
Chris Lattnera17b1552006-03-31 05:13:27 +0000396 case PPCISD::VCMP: return "PPCISD::VCMP";
Chris Lattner6d92cad2006-03-26 10:06:40 +0000397 case PPCISD::VCMPo: return "PPCISD::VCMPo";
Chris Lattnerd9989382006-07-10 20:56:58 +0000398 case PPCISD::LBRX: return "PPCISD::LBRX";
399 case PPCISD::STBRX: return "PPCISD::STBRX";
Chris Lattnerf70f8d92006-04-18 18:05:58 +0000400 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH";
Chris Lattneref97c672008-01-18 18:51:16 +0000401 case PPCISD::MFFS: return "PPCISD::MFFS";
402 case PPCISD::MTFSB0: return "PPCISD::MTFSB0";
403 case PPCISD::MTFSB1: return "PPCISD::MTFSB1";
404 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ";
405 case PPCISD::MTFSF: return "PPCISD::MTFSF";
Chris Lattnerda6d20f2006-01-09 23:52:17 +0000406 }
407}
408
Chris Lattner1a635d62006-04-14 06:01:58 +0000409//===----------------------------------------------------------------------===//
410// Node matching predicates, for use by the tblgen matching code.
411//===----------------------------------------------------------------------===//
412
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000413/// isFloatingPointZero - Return true if this is 0.0 or -0.0.
414static bool isFloatingPointZero(SDOperand Op) {
415 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000416 return CFP->getValueAPF().isZero();
Evan Cheng466685d2006-10-09 20:57:25 +0000417 else if (ISD::isEXTLoad(Op.Val) || ISD::isNON_EXTLoad(Op.Val)) {
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000418 // Maybe this has already been legalized into the constant pool?
419 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
Evan Chengc356a572006-09-12 21:04:05 +0000420 if (ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000421 return CFP->getValueAPF().isZero();
Chris Lattner0b1e4e52005-08-26 17:36:52 +0000422 }
423 return false;
424}
425
Chris Lattnerddb739e2006-04-06 17:23:16 +0000426/// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return
427/// true if Op is undef or if it matches the specified value.
428static bool isConstantOrUndef(SDOperand Op, unsigned Val) {
429 return Op.getOpcode() == ISD::UNDEF ||
430 cast<ConstantSDNode>(Op)->getValue() == Val;
431}
432
433/// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
434/// VPKUHUM instruction.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000435bool PPC::isVPKUHUMShuffleMask(SDNode *N, bool isUnary) {
436 if (!isUnary) {
437 for (unsigned i = 0; i != 16; ++i)
438 if (!isConstantOrUndef(N->getOperand(i), i*2+1))
439 return false;
440 } else {
441 for (unsigned i = 0; i != 8; ++i)
442 if (!isConstantOrUndef(N->getOperand(i), i*2+1) ||
443 !isConstantOrUndef(N->getOperand(i+8), i*2+1))
444 return false;
445 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000446 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000447}
448
449/// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
450/// VPKUWUM instruction.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000451bool PPC::isVPKUWUMShuffleMask(SDNode *N, bool isUnary) {
452 if (!isUnary) {
453 for (unsigned i = 0; i != 16; i += 2)
454 if (!isConstantOrUndef(N->getOperand(i ), i*2+2) ||
455 !isConstantOrUndef(N->getOperand(i+1), i*2+3))
456 return false;
457 } else {
458 for (unsigned i = 0; i != 8; i += 2)
459 if (!isConstantOrUndef(N->getOperand(i ), i*2+2) ||
460 !isConstantOrUndef(N->getOperand(i+1), i*2+3) ||
461 !isConstantOrUndef(N->getOperand(i+8), i*2+2) ||
462 !isConstantOrUndef(N->getOperand(i+9), i*2+3))
463 return false;
464 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000465 return true;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000466}
467
Chris Lattnercaad1632006-04-06 22:02:42 +0000468/// isVMerge - Common function, used to match vmrg* shuffles.
469///
470static bool isVMerge(SDNode *N, unsigned UnitSize,
471 unsigned LHSStart, unsigned RHSStart) {
Chris Lattner116cc482006-04-06 21:11:54 +0000472 assert(N->getOpcode() == ISD::BUILD_VECTOR &&
473 N->getNumOperands() == 16 && "PPC only supports shuffles by bytes!");
474 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
475 "Unsupported merge size!");
476
477 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units
478 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit
479 if (!isConstantOrUndef(N->getOperand(i*UnitSize*2+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000480 LHSStart+j+i*UnitSize) ||
Chris Lattner116cc482006-04-06 21:11:54 +0000481 !isConstantOrUndef(N->getOperand(i*UnitSize*2+UnitSize+j),
Chris Lattnercaad1632006-04-06 22:02:42 +0000482 RHSStart+j+i*UnitSize))
Chris Lattner116cc482006-04-06 21:11:54 +0000483 return false;
484 }
Chris Lattnercaad1632006-04-06 22:02:42 +0000485 return true;
486}
487
488/// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
489/// a VRGL* instruction with the specified unit size (1,2 or 4 bytes).
490bool PPC::isVMRGLShuffleMask(SDNode *N, unsigned UnitSize, bool isUnary) {
491 if (!isUnary)
492 return isVMerge(N, UnitSize, 8, 24);
493 return isVMerge(N, UnitSize, 8, 8);
Chris Lattner116cc482006-04-06 21:11:54 +0000494}
495
496/// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
497/// a VRGH* instruction with the specified unit size (1,2 or 4 bytes).
Chris Lattnercaad1632006-04-06 22:02:42 +0000498bool PPC::isVMRGHShuffleMask(SDNode *N, unsigned UnitSize, bool isUnary) {
499 if (!isUnary)
500 return isVMerge(N, UnitSize, 0, 16);
501 return isVMerge(N, UnitSize, 0, 0);
Chris Lattner116cc482006-04-06 21:11:54 +0000502}
503
504
Chris Lattnerd0608e12006-04-06 18:26:28 +0000505/// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
506/// amount, otherwise return -1.
Chris Lattnerf24380e2006-04-06 22:28:36 +0000507int PPC::isVSLDOIShuffleMask(SDNode *N, bool isUnary) {
Chris Lattner116cc482006-04-06 21:11:54 +0000508 assert(N->getOpcode() == ISD::BUILD_VECTOR &&
509 N->getNumOperands() == 16 && "PPC only supports shuffles by bytes!");
Chris Lattnerd0608e12006-04-06 18:26:28 +0000510 // Find the first non-undef value in the shuffle mask.
511 unsigned i;
512 for (i = 0; i != 16 && N->getOperand(i).getOpcode() == ISD::UNDEF; ++i)
513 /*search*/;
514
515 if (i == 16) return -1; // all undef.
516
517 // Otherwise, check to see if the rest of the elements are consequtively
518 // numbered from this value.
519 unsigned ShiftAmt = cast<ConstantSDNode>(N->getOperand(i))->getValue();
520 if (ShiftAmt < i) return -1;
521 ShiftAmt -= i;
Chris Lattnerddb739e2006-04-06 17:23:16 +0000522
Chris Lattnerf24380e2006-04-06 22:28:36 +0000523 if (!isUnary) {
524 // Check the rest of the elements to see if they are consequtive.
525 for (++i; i != 16; ++i)
526 if (!isConstantOrUndef(N->getOperand(i), ShiftAmt+i))
527 return -1;
528 } else {
529 // Check the rest of the elements to see if they are consequtive.
530 for (++i; i != 16; ++i)
531 if (!isConstantOrUndef(N->getOperand(i), (ShiftAmt+i) & 15))
532 return -1;
533 }
Chris Lattnerd0608e12006-04-06 18:26:28 +0000534
535 return ShiftAmt;
536}
Chris Lattneref819f82006-03-20 06:33:01 +0000537
538/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
539/// specifies a splat of a single element that is suitable for input to
540/// VSPLTB/VSPLTH/VSPLTW.
Chris Lattner7ff7e672006-04-04 17:25:31 +0000541bool PPC::isSplatShuffleMask(SDNode *N, unsigned EltSize) {
542 assert(N->getOpcode() == ISD::BUILD_VECTOR &&
543 N->getNumOperands() == 16 &&
544 (EltSize == 1 || EltSize == 2 || EltSize == 4));
Chris Lattnerdd4d2d02006-03-20 06:51:10 +0000545
Chris Lattner88a99ef2006-03-20 06:37:44 +0000546 // This is a splat operation if each element of the permute is the same, and
547 // if the value doesn't reference the second vector.
Chris Lattner7ff7e672006-04-04 17:25:31 +0000548 unsigned ElementBase = 0;
Chris Lattner88a99ef2006-03-20 06:37:44 +0000549 SDOperand Elt = N->getOperand(0);
Chris Lattner7ff7e672006-04-04 17:25:31 +0000550 if (ConstantSDNode *EltV = dyn_cast<ConstantSDNode>(Elt))
551 ElementBase = EltV->getValue();
552 else
553 return false; // FIXME: Handle UNDEF elements too!
554
555 if (cast<ConstantSDNode>(Elt)->getValue() >= 16)
556 return false;
557
558 // Check that they are consequtive.
559 for (unsigned i = 1; i != EltSize; ++i) {
560 if (!isa<ConstantSDNode>(N->getOperand(i)) ||
561 cast<ConstantSDNode>(N->getOperand(i))->getValue() != i+ElementBase)
562 return false;
563 }
564
Chris Lattner88a99ef2006-03-20 06:37:44 +0000565 assert(isa<ConstantSDNode>(Elt) && "Invalid VECTOR_SHUFFLE mask!");
Chris Lattner7ff7e672006-04-04 17:25:31 +0000566 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
Chris Lattnerb097aa92006-04-14 23:19:08 +0000567 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Chris Lattner88a99ef2006-03-20 06:37:44 +0000568 assert(isa<ConstantSDNode>(N->getOperand(i)) &&
569 "Invalid VECTOR_SHUFFLE mask!");
Chris Lattner7ff7e672006-04-04 17:25:31 +0000570 for (unsigned j = 0; j != EltSize; ++j)
571 if (N->getOperand(i+j) != N->getOperand(j))
572 return false;
Chris Lattner88a99ef2006-03-20 06:37:44 +0000573 }
574
Chris Lattner7ff7e672006-04-04 17:25:31 +0000575 return true;
Chris Lattneref819f82006-03-20 06:33:01 +0000576}
577
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000578/// isAllNegativeZeroVector - Returns true if all elements of build_vector
579/// are -0.0.
580bool PPC::isAllNegativeZeroVector(SDNode *N) {
581 assert(N->getOpcode() == ISD::BUILD_VECTOR);
582 if (PPC::isSplatShuffleMask(N, N->getNumOperands()))
583 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N))
Dale Johanneseneaf08942007-08-31 04:03:46 +0000584 return CFP->getValueAPF().isNegZero();
Evan Cheng66ffe6b2007-07-30 07:51:22 +0000585 return false;
586}
587
Chris Lattneref819f82006-03-20 06:33:01 +0000588/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
589/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
Chris Lattner7ff7e672006-04-04 17:25:31 +0000590unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize) {
591 assert(isSplatShuffleMask(N, EltSize));
592 return cast<ConstantSDNode>(N->getOperand(0))->getValue() / EltSize;
Chris Lattneref819f82006-03-20 06:33:01 +0000593}
594
Chris Lattnere87192a2006-04-12 17:37:20 +0000595/// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
Chris Lattner140a58f2006-04-08 06:46:53 +0000596/// by using a vspltis[bhw] instruction of the specified element size, return
597/// the constant being splatted. The ByteSize field indicates the number of
598/// bytes of each element [124] -> [bhw].
Chris Lattnere87192a2006-04-12 17:37:20 +0000599SDOperand PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000600 SDOperand OpVal(0, 0);
Chris Lattner79d9a882006-04-08 07:14:26 +0000601
602 // If ByteSize of the splat is bigger than the element size of the
603 // build_vector, then we have a case where we are checking for a splat where
604 // multiple elements of the buildvector are folded together into a single
605 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
606 unsigned EltSize = 16/N->getNumOperands();
607 if (EltSize < ByteSize) {
608 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
609 SDOperand UniquedVals[4];
610 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
611
612 // See if all of the elements in the buildvector agree across.
613 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
614 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
615 // If the element isn't a constant, bail fully out.
616 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDOperand();
617
618
619 if (UniquedVals[i&(Multiple-1)].Val == 0)
620 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
621 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
622 return SDOperand(); // no match.
623 }
624
625 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
626 // either constant or undef values that are identical for each chunk. See
627 // if these chunks can form into a larger vspltis*.
628
629 // Check to see if all of the leading entries are either 0 or -1. If
630 // neither, then this won't fit into the immediate field.
631 bool LeadingZero = true;
632 bool LeadingOnes = true;
633 for (unsigned i = 0; i != Multiple-1; ++i) {
634 if (UniquedVals[i].Val == 0) continue; // Must have been undefs.
635
636 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
637 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
638 }
639 // Finally, check the least significant entry.
640 if (LeadingZero) {
641 if (UniquedVals[Multiple-1].Val == 0)
642 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef
643 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getValue();
644 if (Val < 16)
645 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4)
646 }
647 if (LeadingOnes) {
648 if (UniquedVals[Multiple-1].Val == 0)
649 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef
650 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSignExtended();
651 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2)
652 return DAG.getTargetConstant(Val, MVT::i32);
653 }
654
655 return SDOperand();
656 }
657
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000658 // Check to see if this buildvec has a single non-undef value in its elements.
659 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
660 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
661 if (OpVal.Val == 0)
662 OpVal = N->getOperand(i);
663 else if (OpVal != N->getOperand(i))
Chris Lattner140a58f2006-04-08 06:46:53 +0000664 return SDOperand();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000665 }
666
Chris Lattner140a58f2006-04-08 06:46:53 +0000667 if (OpVal.Val == 0) return SDOperand(); // All UNDEF: use implicit def.
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000668
Nate Begeman98e70cc2006-03-28 04:15:58 +0000669 unsigned ValSizeInBytes = 0;
670 uint64_t Value = 0;
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000671 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
672 Value = CN->getValue();
673 ValSizeInBytes = MVT::getSizeInBits(CN->getValueType(0))/8;
674 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
675 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
Dale Johanneseneaf08942007-08-31 04:03:46 +0000676 Value = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000677 ValSizeInBytes = 4;
678 }
679
680 // If the splat value is larger than the element value, then we can never do
681 // this splat. The only case that we could fit the replicated bits into our
682 // immediate field for would be zero, and we prefer to use vxor for it.
Chris Lattner140a58f2006-04-08 06:46:53 +0000683 if (ValSizeInBytes < ByteSize) return SDOperand();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000684
685 // If the element value is larger than the splat value, cut it in half and
686 // check to see if the two halves are equal. Continue doing this until we
687 // get to ByteSize. This allows us to handle 0x01010101 as 0x01.
688 while (ValSizeInBytes > ByteSize) {
689 ValSizeInBytes >>= 1;
690
691 // If the top half equals the bottom half, we're still ok.
Chris Lattner9b42bdd2006-04-05 17:39:25 +0000692 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
693 (Value & ((1 << (8*ValSizeInBytes))-1)))
Chris Lattner140a58f2006-04-08 06:46:53 +0000694 return SDOperand();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000695 }
696
697 // Properly sign extend the value.
698 int ShAmt = (4-ByteSize)*8;
699 int MaskVal = ((int)Value << ShAmt) >> ShAmt;
700
Evan Cheng5b6a01b2006-03-26 09:52:32 +0000701 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
Chris Lattner140a58f2006-04-08 06:46:53 +0000702 if (MaskVal == 0) return SDOperand();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000703
Chris Lattner140a58f2006-04-08 06:46:53 +0000704 // Finally, if this value fits in a 5 bit sext field, return it
705 if (((MaskVal << (32-5)) >> (32-5)) == MaskVal)
706 return DAG.getTargetConstant(MaskVal, MVT::i32);
707 return SDOperand();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000708}
709
Chris Lattner1a635d62006-04-14 06:01:58 +0000710//===----------------------------------------------------------------------===//
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000711// Addressing Mode Selection
712//===----------------------------------------------------------------------===//
713
714/// isIntS16Immediate - This method tests to see if the node is either a 32-bit
715/// or 64-bit immediate, and if the value can be accurately represented as a
716/// sign extension from a 16-bit value. If so, this returns true and the
717/// immediate.
718static bool isIntS16Immediate(SDNode *N, short &Imm) {
719 if (N->getOpcode() != ISD::Constant)
720 return false;
721
722 Imm = (short)cast<ConstantSDNode>(N)->getValue();
723 if (N->getValueType(0) == MVT::i32)
724 return Imm == (int32_t)cast<ConstantSDNode>(N)->getValue();
725 else
726 return Imm == (int64_t)cast<ConstantSDNode>(N)->getValue();
727}
728static bool isIntS16Immediate(SDOperand Op, short &Imm) {
729 return isIntS16Immediate(Op.Val, Imm);
730}
731
732
733/// SelectAddressRegReg - Given the specified addressed, check to see if it
734/// can be represented as an indexed [r+r] operation. Returns false if it
735/// can be more efficiently represented with [r+imm].
736bool PPCTargetLowering::SelectAddressRegReg(SDOperand N, SDOperand &Base,
737 SDOperand &Index,
738 SelectionDAG &DAG) {
739 short imm = 0;
740 if (N.getOpcode() == ISD::ADD) {
741 if (isIntS16Immediate(N.getOperand(1), imm))
742 return false; // r+i
743 if (N.getOperand(1).getOpcode() == PPCISD::Lo)
744 return false; // r+i
745
746 Base = N.getOperand(0);
747 Index = N.getOperand(1);
748 return true;
749 } else if (N.getOpcode() == ISD::OR) {
750 if (isIntS16Immediate(N.getOperand(1), imm))
751 return false; // r+i can fold it if we can.
752
753 // If this is an or of disjoint bitfields, we can codegen this as an add
754 // (for better address arithmetic) if the LHS and RHS of the OR are provably
755 // disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000756 APInt LHSKnownZero, LHSKnownOne;
757 APInt RHSKnownZero, RHSKnownOne;
758 DAG.ComputeMaskedBits(N.getOperand(0),
Dan Gohmanec59b952008-02-27 21:12:32 +0000759 APInt::getAllOnesValue(N.getOperand(0)
760 .getValueSizeInBits()),
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000761 LHSKnownZero, LHSKnownOne);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000762
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000763 if (LHSKnownZero.getBoolValue()) {
764 DAG.ComputeMaskedBits(N.getOperand(1),
Dan Gohmanec59b952008-02-27 21:12:32 +0000765 APInt::getAllOnesValue(N.getOperand(1)
766 .getValueSizeInBits()),
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000767 RHSKnownZero, RHSKnownOne);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000768 // If all of the bits are known zero on the LHS or RHS, the add won't
769 // carry.
Dan Gohmanec59b952008-02-27 21:12:32 +0000770 if (~(LHSKnownZero | RHSKnownZero) == 0) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000771 Base = N.getOperand(0);
772 Index = N.getOperand(1);
773 return true;
774 }
775 }
776 }
777
778 return false;
779}
780
781/// Returns true if the address N can be represented by a base register plus
782/// a signed 16-bit displacement [r+imm], and if it is not better
783/// represented as reg+reg.
784bool PPCTargetLowering::SelectAddressRegImm(SDOperand N, SDOperand &Disp,
785 SDOperand &Base, SelectionDAG &DAG){
786 // If this can be more profitably realized as r+r, fail.
787 if (SelectAddressRegReg(N, Disp, Base, DAG))
788 return false;
789
790 if (N.getOpcode() == ISD::ADD) {
791 short imm = 0;
792 if (isIntS16Immediate(N.getOperand(1), imm)) {
793 Disp = DAG.getTargetConstant((int)imm & 0xFFFF, MVT::i32);
794 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
795 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
796 } else {
797 Base = N.getOperand(0);
798 }
799 return true; // [r+i]
800 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
801 // Match LOAD (ADD (X, Lo(G))).
802 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getValue()
803 && "Cannot handle constant offsets yet!");
804 Disp = N.getOperand(1).getOperand(0); // The global address.
805 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
806 Disp.getOpcode() == ISD::TargetConstantPool ||
807 Disp.getOpcode() == ISD::TargetJumpTable);
808 Base = N.getOperand(0);
809 return true; // [&g+r]
810 }
811 } else if (N.getOpcode() == ISD::OR) {
812 short imm = 0;
813 if (isIntS16Immediate(N.getOperand(1), imm)) {
814 // If this is an or of disjoint bitfields, we can codegen this as an add
815 // (for better address arithmetic) if the LHS and RHS of the OR are
816 // provably disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000817 APInt LHSKnownZero, LHSKnownOne;
818 DAG.ComputeMaskedBits(N.getOperand(0),
819 APInt::getAllOnesValue(32),
820 LHSKnownZero, LHSKnownOne);
821 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000822 // If all of the bits are known zero on the LHS or RHS, the add won't
823 // carry.
824 Base = N.getOperand(0);
825 Disp = DAG.getTargetConstant((int)imm & 0xFFFF, MVT::i32);
826 return true;
827 }
828 }
829 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
830 // Loading from a constant address.
831
832 // If this address fits entirely in a 16-bit sext immediate field, codegen
833 // this as "d, 0"
834 short Imm;
835 if (isIntS16Immediate(CN, Imm)) {
836 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
837 Base = DAG.getRegister(PPC::R0, CN->getValueType(0));
838 return true;
839 }
Chris Lattnerbc681d62007-02-17 06:44:03 +0000840
841 // Handle 32-bit sext immediates with LIS + addr mode.
842 if (CN->getValueType(0) == MVT::i32 ||
843 (int64_t)CN->getValue() == (int)CN->getValue()) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000844 int Addr = (int)CN->getValue();
845
846 // Otherwise, break this down into an LIS + disp.
Chris Lattnerbc681d62007-02-17 06:44:03 +0000847 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
848
849 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
850 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
851 Base = SDOperand(DAG.getTargetNode(Opc, CN->getValueType(0), Base), 0);
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000852 return true;
853 }
854 }
855
856 Disp = DAG.getTargetConstant(0, getPointerTy());
857 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N))
858 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
859 else
860 Base = N;
861 return true; // [r+0]
862}
863
864/// SelectAddressRegRegOnly - Given the specified addressed, force it to be
865/// represented as an indexed [r+r] operation.
866bool PPCTargetLowering::SelectAddressRegRegOnly(SDOperand N, SDOperand &Base,
867 SDOperand &Index,
868 SelectionDAG &DAG) {
869 // Check to see if we can easily represent this as an [r+r] address. This
870 // will fail if it thinks that the address is more profitably represented as
871 // reg+imm, e.g. where imm = 0.
872 if (SelectAddressRegReg(N, Base, Index, DAG))
873 return true;
874
875 // If the operand is an addition, always emit this as [r+r], since this is
876 // better (for code size, and execution, as the memop does the add for free)
877 // than emitting an explicit add.
878 if (N.getOpcode() == ISD::ADD) {
879 Base = N.getOperand(0);
880 Index = N.getOperand(1);
881 return true;
882 }
883
884 // Otherwise, do it the hard way, using R0 as the base register.
885 Base = DAG.getRegister(PPC::R0, N.getValueType());
886 Index = N;
887 return true;
888}
889
890/// SelectAddressRegImmShift - Returns true if the address N can be
891/// represented by a base register plus a signed 14-bit displacement
892/// [r+imm*4]. Suitable for use by STD and friends.
893bool PPCTargetLowering::SelectAddressRegImmShift(SDOperand N, SDOperand &Disp,
894 SDOperand &Base,
895 SelectionDAG &DAG) {
896 // If this can be more profitably realized as r+r, fail.
897 if (SelectAddressRegReg(N, Disp, Base, DAG))
898 return false;
899
900 if (N.getOpcode() == ISD::ADD) {
901 short imm = 0;
902 if (isIntS16Immediate(N.getOperand(1), imm) && (imm & 3) == 0) {
903 Disp = DAG.getTargetConstant(((int)imm & 0xFFFF) >> 2, MVT::i32);
904 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
905 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
906 } else {
907 Base = N.getOperand(0);
908 }
909 return true; // [r+i]
910 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
911 // Match LOAD (ADD (X, Lo(G))).
912 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getValue()
913 && "Cannot handle constant offsets yet!");
914 Disp = N.getOperand(1).getOperand(0); // The global address.
915 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
916 Disp.getOpcode() == ISD::TargetConstantPool ||
917 Disp.getOpcode() == ISD::TargetJumpTable);
918 Base = N.getOperand(0);
919 return true; // [&g+r]
920 }
921 } else if (N.getOpcode() == ISD::OR) {
922 short imm = 0;
923 if (isIntS16Immediate(N.getOperand(1), imm) && (imm & 3) == 0) {
924 // If this is an or of disjoint bitfields, we can codegen this as an add
925 // (for better address arithmetic) if the LHS and RHS of the OR are
926 // provably disjoint.
Dan Gohmanb3564aa2008-02-27 01:23:58 +0000927 APInt LHSKnownZero, LHSKnownOne;
928 DAG.ComputeMaskedBits(N.getOperand(0),
929 APInt::getAllOnesValue(32),
930 LHSKnownZero, LHSKnownOne);
931 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000932 // If all of the bits are known zero on the LHS or RHS, the add won't
933 // carry.
934 Base = N.getOperand(0);
935 Disp = DAG.getTargetConstant(((int)imm & 0xFFFF) >> 2, MVT::i32);
936 return true;
937 }
938 }
939 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
Chris Lattnerdee5a5a2007-02-17 06:57:26 +0000940 // Loading from a constant address. Verify low two bits are clear.
941 if ((CN->getValue() & 3) == 0) {
942 // If this address fits entirely in a 14-bit sext immediate field, codegen
943 // this as "d, 0"
944 short Imm;
945 if (isIntS16Immediate(CN, Imm)) {
946 Disp = DAG.getTargetConstant((unsigned short)Imm >> 2, getPointerTy());
947 Base = DAG.getRegister(PPC::R0, CN->getValueType(0));
948 return true;
949 }
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000950
Chris Lattnerdee5a5a2007-02-17 06:57:26 +0000951 // Fold the low-part of 32-bit absolute addresses into addr mode.
952 if (CN->getValueType(0) == MVT::i32 ||
953 (int64_t)CN->getValue() == (int)CN->getValue()) {
954 int Addr = (int)CN->getValue();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000955
Chris Lattnerdee5a5a2007-02-17 06:57:26 +0000956 // Otherwise, break this down into an LIS + disp.
957 Disp = DAG.getTargetConstant((short)Addr >> 2, MVT::i32);
958
959 Base = DAG.getTargetConstant((Addr-(signed short)Addr) >> 16, MVT::i32);
960 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
961 Base = SDOperand(DAG.getTargetNode(Opc, CN->getValueType(0), Base), 0);
962 return true;
963 }
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000964 }
965 }
966
967 Disp = DAG.getTargetConstant(0, getPointerTy());
968 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N))
969 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
970 else
971 Base = N;
972 return true; // [r+0]
973}
974
975
976/// getPreIndexedAddressParts - returns true by value, base pointer and
977/// offset pointer and addressing mode by reference if the node's address
978/// can be legally represented as pre-indexed load / store address.
979bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDOperand &Base,
980 SDOperand &Offset,
Evan Cheng144d8f02006-11-09 17:55:04 +0000981 ISD::MemIndexedMode &AM,
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000982 SelectionDAG &DAG) {
Chris Lattner4eab7142006-11-10 02:08:47 +0000983 // Disabled by default for now.
984 if (!EnablePPCPreinc) return false;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000985
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000986 SDOperand Ptr;
Chris Lattner2fe4bf42006-11-14 01:38:31 +0000987 MVT::ValueType VT;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000988 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
989 Ptr = LD->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000990 VT = LD->getMemoryVT();
Chris Lattner0851b4f2006-11-15 19:55:13 +0000991
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000992 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattner4eab7142006-11-10 02:08:47 +0000993 ST = ST;
Chris Lattner2fe4bf42006-11-14 01:38:31 +0000994 Ptr = ST->getBasePtr();
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000995 VT = ST->getMemoryVT();
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +0000996 } else
997 return false;
998
Chris Lattner2fe4bf42006-11-14 01:38:31 +0000999 // PowerPC doesn't have preinc load/store instructions for vectors.
1000 if (MVT::isVector(VT))
1001 return false;
1002
Chris Lattner0851b4f2006-11-15 19:55:13 +00001003 // TODO: Check reg+reg first.
1004
1005 // LDU/STU use reg+imm*4, others use reg+imm.
1006 if (VT != MVT::i64) {
1007 // reg + imm
1008 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG))
1009 return false;
1010 } else {
1011 // reg + imm * 4.
1012 if (!SelectAddressRegImmShift(Ptr, Offset, Base, DAG))
1013 return false;
1014 }
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001015
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001016 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattner0851b4f2006-11-15 19:55:13 +00001017 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of
1018 // sext i32 to i64 when addr mode is r+i.
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001019 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
Chris Lattnerf6edf4d2006-11-11 00:08:42 +00001020 LD->getExtensionType() == ISD::SEXTLOAD &&
1021 isa<ConstantSDNode>(Offset))
1022 return false;
Chris Lattner0851b4f2006-11-15 19:55:13 +00001023 }
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001024
Chris Lattner4eab7142006-11-10 02:08:47 +00001025 AM = ISD::PRE_INC;
1026 return true;
Chris Lattnerfc5b1ab2006-11-08 02:15:41 +00001027}
1028
1029//===----------------------------------------------------------------------===//
Chris Lattner1a635d62006-04-14 06:01:58 +00001030// LowerOperation implementation
1031//===----------------------------------------------------------------------===//
1032
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001033SDOperand PPCTargetLowering::LowerConstantPool(SDOperand Op,
1034 SelectionDAG &DAG) {
Chris Lattner059ca0f2006-06-16 21:01:35 +00001035 MVT::ValueType PtrVT = Op.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00001036 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Evan Chengc356a572006-09-12 21:04:05 +00001037 Constant *C = CP->getConstVal();
Chris Lattner059ca0f2006-06-16 21:01:35 +00001038 SDOperand CPI = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment());
1039 SDOperand Zero = DAG.getConstant(0, PtrVT);
Chris Lattner1a635d62006-04-14 06:01:58 +00001040
1041 const TargetMachine &TM = DAG.getTarget();
1042
Chris Lattner059ca0f2006-06-16 21:01:35 +00001043 SDOperand Hi = DAG.getNode(PPCISD::Hi, PtrVT, CPI, Zero);
1044 SDOperand Lo = DAG.getNode(PPCISD::Lo, PtrVT, CPI, Zero);
1045
Chris Lattner1a635d62006-04-14 06:01:58 +00001046 // If this is a non-darwin platform, we don't support non-static relo models
1047 // yet.
1048 if (TM.getRelocationModel() == Reloc::Static ||
1049 !TM.getSubtarget<PPCSubtarget>().isDarwin()) {
1050 // Generate non-pic code that has direct accesses to the constant pool.
1051 // The address of the global is just (hi(&g)+lo(&g)).
Chris Lattner059ca0f2006-06-16 21:01:35 +00001052 return DAG.getNode(ISD::ADD, PtrVT, Hi, Lo);
Chris Lattner1a635d62006-04-14 06:01:58 +00001053 }
1054
Chris Lattner35d86fe2006-07-26 21:12:04 +00001055 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner1a635d62006-04-14 06:01:58 +00001056 // With PIC, the first instruction is actually "GR+hi(&G)".
Chris Lattner059ca0f2006-06-16 21:01:35 +00001057 Hi = DAG.getNode(ISD::ADD, PtrVT,
1058 DAG.getNode(PPCISD::GlobalBaseReg, PtrVT), Hi);
Chris Lattner1a635d62006-04-14 06:01:58 +00001059 }
1060
Chris Lattner059ca0f2006-06-16 21:01:35 +00001061 Lo = DAG.getNode(ISD::ADD, PtrVT, Hi, Lo);
Chris Lattner1a635d62006-04-14 06:01:58 +00001062 return Lo;
1063}
1064
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001065SDOperand PPCTargetLowering::LowerJumpTable(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner059ca0f2006-06-16 21:01:35 +00001066 MVT::ValueType PtrVT = Op.getValueType();
Nate Begeman37efe672006-04-22 18:53:45 +00001067 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Chris Lattner059ca0f2006-06-16 21:01:35 +00001068 SDOperand JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
1069 SDOperand Zero = DAG.getConstant(0, PtrVT);
Nate Begeman37efe672006-04-22 18:53:45 +00001070
1071 const TargetMachine &TM = DAG.getTarget();
Chris Lattner059ca0f2006-06-16 21:01:35 +00001072
1073 SDOperand Hi = DAG.getNode(PPCISD::Hi, PtrVT, JTI, Zero);
1074 SDOperand Lo = DAG.getNode(PPCISD::Lo, PtrVT, JTI, Zero);
1075
Nate Begeman37efe672006-04-22 18:53:45 +00001076 // If this is a non-darwin platform, we don't support non-static relo models
1077 // yet.
1078 if (TM.getRelocationModel() == Reloc::Static ||
1079 !TM.getSubtarget<PPCSubtarget>().isDarwin()) {
1080 // Generate non-pic code that has direct accesses to the constant pool.
1081 // The address of the global is just (hi(&g)+lo(&g)).
Chris Lattner059ca0f2006-06-16 21:01:35 +00001082 return DAG.getNode(ISD::ADD, PtrVT, Hi, Lo);
Nate Begeman37efe672006-04-22 18:53:45 +00001083 }
1084
Chris Lattner35d86fe2006-07-26 21:12:04 +00001085 if (TM.getRelocationModel() == Reloc::PIC_) {
Nate Begeman37efe672006-04-22 18:53:45 +00001086 // With PIC, the first instruction is actually "GR+hi(&G)".
Chris Lattner059ca0f2006-06-16 21:01:35 +00001087 Hi = DAG.getNode(ISD::ADD, PtrVT,
Chris Lattner0d72a202006-07-28 16:45:47 +00001088 DAG.getNode(PPCISD::GlobalBaseReg, PtrVT), Hi);
Nate Begeman37efe672006-04-22 18:53:45 +00001089 }
1090
Chris Lattner059ca0f2006-06-16 21:01:35 +00001091 Lo = DAG.getNode(ISD::ADD, PtrVT, Hi, Lo);
Nate Begeman37efe672006-04-22 18:53:45 +00001092 return Lo;
1093}
1094
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001095SDOperand PPCTargetLowering::LowerGlobalTLSAddress(SDOperand Op,
1096 SelectionDAG &DAG) {
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +00001097 assert(0 && "TLS not implemented for PPC.");
1098}
1099
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001100SDOperand PPCTargetLowering::LowerGlobalAddress(SDOperand Op,
1101 SelectionDAG &DAG) {
Chris Lattner059ca0f2006-06-16 21:01:35 +00001102 MVT::ValueType PtrVT = Op.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00001103 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
1104 GlobalValue *GV = GSDN->getGlobal();
Chris Lattner059ca0f2006-06-16 21:01:35 +00001105 SDOperand GA = DAG.getTargetGlobalAddress(GV, PtrVT, GSDN->getOffset());
Evan Chengfcf5d4f2008-02-02 05:06:29 +00001106 // If it's a debug information descriptor, don't mess with it.
1107 if (DAG.isVerifiedDebugInfoDesc(Op))
1108 return GA;
Chris Lattner059ca0f2006-06-16 21:01:35 +00001109 SDOperand Zero = DAG.getConstant(0, PtrVT);
Chris Lattner1a635d62006-04-14 06:01:58 +00001110
1111 const TargetMachine &TM = DAG.getTarget();
1112
Chris Lattner059ca0f2006-06-16 21:01:35 +00001113 SDOperand Hi = DAG.getNode(PPCISD::Hi, PtrVT, GA, Zero);
1114 SDOperand Lo = DAG.getNode(PPCISD::Lo, PtrVT, GA, Zero);
1115
Chris Lattner1a635d62006-04-14 06:01:58 +00001116 // If this is a non-darwin platform, we don't support non-static relo models
1117 // yet.
1118 if (TM.getRelocationModel() == Reloc::Static ||
1119 !TM.getSubtarget<PPCSubtarget>().isDarwin()) {
1120 // Generate non-pic code that has direct accesses to globals.
1121 // The address of the global is just (hi(&g)+lo(&g)).
Chris Lattner059ca0f2006-06-16 21:01:35 +00001122 return DAG.getNode(ISD::ADD, PtrVT, Hi, Lo);
Chris Lattner1a635d62006-04-14 06:01:58 +00001123 }
1124
Chris Lattner35d86fe2006-07-26 21:12:04 +00001125 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner1a635d62006-04-14 06:01:58 +00001126 // With PIC, the first instruction is actually "GR+hi(&G)".
Chris Lattner059ca0f2006-06-16 21:01:35 +00001127 Hi = DAG.getNode(ISD::ADD, PtrVT,
1128 DAG.getNode(PPCISD::GlobalBaseReg, PtrVT), Hi);
Chris Lattner1a635d62006-04-14 06:01:58 +00001129 }
1130
Chris Lattner059ca0f2006-06-16 21:01:35 +00001131 Lo = DAG.getNode(ISD::ADD, PtrVT, Hi, Lo);
Chris Lattner1a635d62006-04-14 06:01:58 +00001132
Chris Lattner57fc62c2006-12-11 23:22:45 +00001133 if (!TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV))
Chris Lattner1a635d62006-04-14 06:01:58 +00001134 return Lo;
1135
1136 // If the global is weak or external, we have to go through the lazy
1137 // resolution stub.
Evan Cheng466685d2006-10-09 20:57:25 +00001138 return DAG.getLoad(PtrVT, DAG.getEntryNode(), Lo, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00001139}
1140
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001141SDOperand PPCTargetLowering::LowerSETCC(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00001142 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
1143
1144 // If we're comparing for equality to zero, expose the fact that this is
1145 // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1146 // fold the new nodes.
1147 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1148 if (C->isNullValue() && CC == ISD::SETEQ) {
1149 MVT::ValueType VT = Op.getOperand(0).getValueType();
1150 SDOperand Zext = Op.getOperand(0);
1151 if (VT < MVT::i32) {
1152 VT = MVT::i32;
1153 Zext = DAG.getNode(ISD::ZERO_EXTEND, VT, Op.getOperand(0));
1154 }
1155 unsigned Log2b = Log2_32(MVT::getSizeInBits(VT));
1156 SDOperand Clz = DAG.getNode(ISD::CTLZ, VT, Zext);
1157 SDOperand Scc = DAG.getNode(ISD::SRL, VT, Clz,
1158 DAG.getConstant(Log2b, MVT::i32));
1159 return DAG.getNode(ISD::TRUNCATE, MVT::i32, Scc);
1160 }
1161 // Leave comparisons against 0 and -1 alone for now, since they're usually
1162 // optimized. FIXME: revisit this when we can custom lower all setcc
1163 // optimizations.
1164 if (C->isAllOnesValue() || C->isNullValue())
1165 return SDOperand();
1166 }
1167
1168 // If we have an integer seteq/setne, turn it into a compare against zero
Chris Lattnerac011bc2006-11-14 05:28:08 +00001169 // by xor'ing the rhs with the lhs, which is faster than setting a
1170 // condition register, reading it back out, and masking the correct bit. The
1171 // normal approach here uses sub to do this instead of xor. Using xor exposes
1172 // the result to other bit-twiddling opportunities.
Chris Lattner1a635d62006-04-14 06:01:58 +00001173 MVT::ValueType LHSVT = Op.getOperand(0).getValueType();
1174 if (MVT::isInteger(LHSVT) && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1175 MVT::ValueType VT = Op.getValueType();
Chris Lattnerac011bc2006-11-14 05:28:08 +00001176 SDOperand Sub = DAG.getNode(ISD::XOR, LHSVT, Op.getOperand(0),
Chris Lattner1a635d62006-04-14 06:01:58 +00001177 Op.getOperand(1));
1178 return DAG.getSetCC(VT, Sub, DAG.getConstant(0, LHSVT), CC);
1179 }
1180 return SDOperand();
1181}
1182
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001183SDOperand PPCTargetLowering::LowerVAARG(SDOperand Op, SelectionDAG &DAG,
Nicolas Geoffray01119992007-04-03 13:59:52 +00001184 int VarArgsFrameIndex,
1185 int VarArgsStackOffset,
1186 unsigned VarArgsNumGPR,
1187 unsigned VarArgsNumFPR,
1188 const PPCSubtarget &Subtarget) {
1189
1190 assert(0 && "VAARG in ELF32 ABI not implemented yet!");
1191}
1192
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001193SDOperand PPCTargetLowering::LowerVASTART(SDOperand Op, SelectionDAG &DAG,
Nicolas Geoffray01119992007-04-03 13:59:52 +00001194 int VarArgsFrameIndex,
1195 int VarArgsStackOffset,
1196 unsigned VarArgsNumGPR,
1197 unsigned VarArgsNumFPR,
1198 const PPCSubtarget &Subtarget) {
1199
1200 if (Subtarget.isMachoABI()) {
1201 // vastart just stores the address of the VarArgsFrameIndex slot into the
1202 // memory location argument.
1203 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1204 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Dan Gohman69de1932008-02-06 22:27:42 +00001205 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
1206 return DAG.getStore(Op.getOperand(0), FR, Op.getOperand(1), SV, 0);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001207 }
1208
1209 // For ELF 32 ABI we follow the layout of the va_list struct.
1210 // We suppose the given va_list is already allocated.
1211 //
1212 // typedef struct {
1213 // char gpr; /* index into the array of 8 GPRs
1214 // * stored in the register save area
1215 // * gpr=0 corresponds to r3,
1216 // * gpr=1 to r4, etc.
1217 // */
1218 // char fpr; /* index into the array of 8 FPRs
1219 // * stored in the register save area
1220 // * fpr=0 corresponds to f1,
1221 // * fpr=1 to f2, etc.
1222 // */
1223 // char *overflow_arg_area;
1224 // /* location on stack that holds
1225 // * the next overflow argument
1226 // */
1227 // char *reg_save_area;
1228 // /* where r3:r10 and f1:f8 (if saved)
1229 // * are stored
1230 // */
1231 // } va_list[1];
1232
1233
1234 SDOperand ArgGPR = DAG.getConstant(VarArgsNumGPR, MVT::i8);
1235 SDOperand ArgFPR = DAG.getConstant(VarArgsNumFPR, MVT::i8);
1236
1237
Chris Lattner0d72a202006-07-28 16:45:47 +00001238 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Nicolas Geoffray01119992007-04-03 13:59:52 +00001239
Dan Gohman69de1932008-02-06 22:27:42 +00001240 SDOperand StackOffsetFI = DAG.getFrameIndex(VarArgsStackOffset, PtrVT);
Chris Lattner0d72a202006-07-28 16:45:47 +00001241 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001242
Dan Gohman69de1932008-02-06 22:27:42 +00001243 uint64_t FrameOffset = MVT::getSizeInBits(PtrVT)/8;
1244 SDOperand ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
1245
1246 uint64_t StackOffset = MVT::getSizeInBits(PtrVT)/8 - 1;
1247 SDOperand ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
1248
1249 uint64_t FPROffset = 1;
1250 SDOperand ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001251
Dan Gohman69de1932008-02-06 22:27:42 +00001252 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Nicolas Geoffray01119992007-04-03 13:59:52 +00001253
1254 // Store first byte : number of int regs
1255 SDOperand firstStore = DAG.getStore(Op.getOperand(0), ArgGPR,
Dan Gohman69de1932008-02-06 22:27:42 +00001256 Op.getOperand(1), SV, 0);
1257 uint64_t nextOffset = FPROffset;
Nicolas Geoffray01119992007-04-03 13:59:52 +00001258 SDOperand nextPtr = DAG.getNode(ISD::ADD, PtrVT, Op.getOperand(1),
1259 ConstFPROffset);
1260
1261 // Store second byte : number of float regs
Dan Gohman69de1932008-02-06 22:27:42 +00001262 SDOperand secondStore =
1263 DAG.getStore(firstStore, ArgFPR, nextPtr, SV, nextOffset);
1264 nextOffset += StackOffset;
Nicolas Geoffray01119992007-04-03 13:59:52 +00001265 nextPtr = DAG.getNode(ISD::ADD, PtrVT, nextPtr, ConstStackOffset);
1266
1267 // Store second word : arguments given on stack
Dan Gohman69de1932008-02-06 22:27:42 +00001268 SDOperand thirdStore =
1269 DAG.getStore(secondStore, StackOffsetFI, nextPtr, SV, nextOffset);
1270 nextOffset += FrameOffset;
Nicolas Geoffray01119992007-04-03 13:59:52 +00001271 nextPtr = DAG.getNode(ISD::ADD, PtrVT, nextPtr, ConstFrameOffset);
1272
1273 // Store third word : arguments given in registers
Dan Gohman69de1932008-02-06 22:27:42 +00001274 return DAG.getStore(thirdStore, FR, nextPtr, SV, nextOffset);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001275
Chris Lattner1a635d62006-04-14 06:01:58 +00001276}
1277
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00001278#include "PPCGenCallingConv.inc"
1279
Chris Lattner9f0bc652007-02-25 05:34:32 +00001280/// GetFPR - Get the set of FP registers that should be allocated for arguments,
1281/// depending on which subtarget is selected.
1282static const unsigned *GetFPR(const PPCSubtarget &Subtarget) {
1283 if (Subtarget.isMachoABI()) {
1284 static const unsigned FPR[] = {
1285 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
1286 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
1287 };
1288 return FPR;
1289 }
1290
1291
1292 static const unsigned FPR[] = {
1293 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
Nicolas Geoffrayef3c0302007-04-03 10:27:07 +00001294 PPC::F8
Chris Lattner9f0bc652007-02-25 05:34:32 +00001295 };
1296 return FPR;
1297}
1298
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001299SDOperand PPCTargetLowering::LowerFORMAL_ARGUMENTS(SDOperand Op,
1300 SelectionDAG &DAG,
Chris Lattner9f0bc652007-02-25 05:34:32 +00001301 int &VarArgsFrameIndex,
Nicolas Geoffray01119992007-04-03 13:59:52 +00001302 int &VarArgsStackOffset,
1303 unsigned &VarArgsNumGPR,
1304 unsigned &VarArgsNumFPR,
Chris Lattner9f0bc652007-02-25 05:34:32 +00001305 const PPCSubtarget &Subtarget) {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001306 // TODO: add description of PPC stack frame format, or at least some docs.
1307 //
1308 MachineFunction &MF = DAG.getMachineFunction();
1309 MachineFrameInfo *MFI = MF.getFrameInfo();
Chris Lattner84bc5422007-12-31 04:13:23 +00001310 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Chris Lattner79e490a2006-08-11 17:18:05 +00001311 SmallVector<SDOperand, 8> ArgValues;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001312 SDOperand Root = Op.getOperand(0);
1313
Jim Laskey2f616bf2006-11-16 22:43:37 +00001314 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1315 bool isPPC64 = PtrVT == MVT::i64;
Chris Lattner9f0bc652007-02-25 05:34:32 +00001316 bool isMachoABI = Subtarget.isMachoABI();
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001317 bool isELF32_ABI = Subtarget.isELF32_ABI();
Jim Laskeye9bd7b22006-11-28 14:53:52 +00001318 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Jim Laskey2f616bf2006-11-16 22:43:37 +00001319
Chris Lattner9f0bc652007-02-25 05:34:32 +00001320 unsigned ArgOffset = PPCFrameInfo::getLinkageSize(isPPC64, isMachoABI);
Chris Lattnerc91a4752006-06-26 22:48:35 +00001321
1322 static const unsigned GPR_32[] = { // 32-bit registers.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001323 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1324 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1325 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00001326 static const unsigned GPR_64[] = { // 64-bit registers.
1327 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
1328 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
1329 };
Chris Lattner9f0bc652007-02-25 05:34:32 +00001330
1331 static const unsigned *FPR = GetFPR(Subtarget);
1332
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001333 static const unsigned VR[] = {
1334 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
1335 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
1336 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00001337
Owen Anderson718cb662007-09-07 04:06:50 +00001338 const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
Nicolas Geoffrayef3c0302007-04-03 10:27:07 +00001339 const unsigned Num_FPR_Regs = isMachoABI ? 13 : 8;
Owen Anderson718cb662007-09-07 04:06:50 +00001340 const unsigned Num_VR_Regs = array_lengthof( VR);
Jim Laskey2f616bf2006-11-16 22:43:37 +00001341
1342 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
1343
Chris Lattnerc91a4752006-06-26 22:48:35 +00001344 const unsigned *GPR = isPPC64 ? GPR_64 : GPR_32;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001345
1346 // Add DAG nodes to load the arguments or copy them out of registers. On
Jim Laskey2f616bf2006-11-16 22:43:37 +00001347 // entry to a function on PPC, the arguments start after the linkage area,
1348 // although the first ones are often in registers.
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001349 //
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001350 // In the ELF 32 ABI, GPRs and stack are double word align: an argument
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001351 // represented with two words (long long or double) must be copied to an
1352 // even GPR_idx value or to an even ArgOffset value.
1353
Dale Johannesen8419dd62008-03-07 20:27:40 +00001354 SmallVector<SDOperand, 8> MemOps;
1355
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001356 for (unsigned ArgNo = 0, e = Op.Val->getNumValues()-1; ArgNo != e; ++ArgNo) {
1357 SDOperand ArgVal;
1358 bool needsLoad = false;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001359 MVT::ValueType ObjectVT = Op.getValue(ArgNo).getValueType();
1360 unsigned ObjSize = MVT::getSizeInBits(ObjectVT)/8;
Jim Laskey619965d2006-11-29 13:37:09 +00001361 unsigned ArgSize = ObjSize;
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001362 unsigned Flags = cast<ConstantSDNode>(Op.getOperand(ArgNo+3))->getValue();
1363 unsigned AlignFlag = 1 << ISD::ParamFlags::OrigAlignmentOffs;
Dale Johannesen8419dd62008-03-07 20:27:40 +00001364 unsigned isByVal = Flags & ISD::ParamFlags::ByVal;
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001365 // See if next argument requires stack alignment in ELF
1366 bool Expand = (ObjectVT == MVT::f64) || ((ArgNo + 1 < e) &&
1367 (cast<ConstantSDNode>(Op.getOperand(ArgNo+4))->getValue() & AlignFlag) &&
1368 (!(Flags & AlignFlag)));
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001369
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001370 unsigned CurArgOffset = ArgOffset;
Dale Johannesen8419dd62008-03-07 20:27:40 +00001371
1372 // FIXME alignment for ELF may not be right
1373 // FIXME the codegen can be much improved in some cases.
1374 // We do not have to keep everything in memory.
1375 if (isByVal) {
1376 // Double word align in ELF
1377 if (Expand && isELF32_ABI) GPR_idx += (GPR_idx % 2);
1378 // ObjSize is the true size, ArgSize rounded up to multiple of registers.
1379 ObjSize = (Flags & ISD::ParamFlags::ByValSize) >>
1380 ISD::ParamFlags::ByValSizeOffs;
1381 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
1382 // The value of the object is its address.
1383 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset);
1384 SDOperand FIN = DAG.getFrameIndex(FI, PtrVT);
1385 ArgValues.push_back(FIN);
1386 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
1387 // Store whatever pieces of the object are in registers
1388 // to memory. ArgVal will be address of the beginning of
1389 // the object.
1390 if (GPR_idx != Num_GPR_Regs) {
1391 unsigned VReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
1392 RegInfo.addLiveIn(GPR[GPR_idx], VReg);
1393 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset);
1394 SDOperand FIN = DAG.getFrameIndex(FI, PtrVT);
1395 SDOperand Val = DAG.getCopyFromReg(Root, VReg, PtrVT);
1396 SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
1397 MemOps.push_back(Store);
1398 ++GPR_idx;
1399 if (isMachoABI) ArgOffset += PtrByteSize;
1400 } else {
1401 ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
1402 break;
1403 }
1404 }
1405 continue;
1406 }
1407
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001408 switch (ObjectVT) {
1409 default: assert(0 && "Unhandled argument type!");
1410 case MVT::i32:
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001411 // Double word align in ELF
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001412 if (Expand && isELF32_ABI) GPR_idx += (GPR_idx % 2);
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001413 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner84bc5422007-12-31 04:13:23 +00001414 unsigned VReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
1415 RegInfo.addLiveIn(GPR[GPR_idx], VReg);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001416 ArgVal = DAG.getCopyFromReg(Root, VReg, MVT::i32);
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001417 ++GPR_idx;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001418 } else {
1419 needsLoad = true;
Jim Laskey619965d2006-11-29 13:37:09 +00001420 ArgSize = PtrByteSize;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001421 }
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001422 // Stack align in ELF
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001423 if (needsLoad && Expand && isELF32_ABI)
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001424 ArgOffset += ((ArgOffset/4) % 2) * PtrByteSize;
Chris Lattner9f0bc652007-02-25 05:34:32 +00001425 // All int arguments reserve stack space in Macho ABI.
1426 if (isMachoABI || needsLoad) ArgOffset += PtrByteSize;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001427 break;
Chris Lattnerc91a4752006-06-26 22:48:35 +00001428
Chris Lattner9f0bc652007-02-25 05:34:32 +00001429 case MVT::i64: // PPC64
Chris Lattnerc91a4752006-06-26 22:48:35 +00001430 if (GPR_idx != Num_GPR_Regs) {
Chris Lattner84bc5422007-12-31 04:13:23 +00001431 unsigned VReg = RegInfo.createVirtualRegister(&PPC::G8RCRegClass);
1432 RegInfo.addLiveIn(GPR[GPR_idx], VReg);
Chris Lattnerc91a4752006-06-26 22:48:35 +00001433 ArgVal = DAG.getCopyFromReg(Root, VReg, MVT::i64);
1434 ++GPR_idx;
1435 } else {
1436 needsLoad = true;
1437 }
Chris Lattner9f0bc652007-02-25 05:34:32 +00001438 // All int arguments reserve stack space in Macho ABI.
1439 if (isMachoABI || needsLoad) ArgOffset += 8;
Chris Lattnerc91a4752006-06-26 22:48:35 +00001440 break;
Chris Lattner9f0bc652007-02-25 05:34:32 +00001441
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001442 case MVT::f32:
1443 case MVT::f64:
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001444 // Every 4 bytes of argument space consumes one of the GPRs available for
1445 // argument passing.
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001446 if (GPR_idx != Num_GPR_Regs && isMachoABI) {
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001447 ++GPR_idx;
Chris Lattnerb1eb9872006-11-18 01:57:19 +00001448 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001449 ++GPR_idx;
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001450 }
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001451 if (FPR_idx != Num_FPR_Regs) {
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001452 unsigned VReg;
1453 if (ObjectVT == MVT::f32)
Chris Lattner84bc5422007-12-31 04:13:23 +00001454 VReg = RegInfo.createVirtualRegister(&PPC::F4RCRegClass);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001455 else
Chris Lattner84bc5422007-12-31 04:13:23 +00001456 VReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
1457 RegInfo.addLiveIn(FPR[FPR_idx], VReg);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001458 ArgVal = DAG.getCopyFromReg(Root, VReg, ObjectVT);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001459 ++FPR_idx;
1460 } else {
1461 needsLoad = true;
1462 }
Chris Lattner9f0bc652007-02-25 05:34:32 +00001463
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001464 // Stack align in ELF
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001465 if (needsLoad && Expand && isELF32_ABI)
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001466 ArgOffset += ((ArgOffset/4) % 2) * PtrByteSize;
Chris Lattner9f0bc652007-02-25 05:34:32 +00001467 // All FP arguments reserve stack space in Macho ABI.
1468 if (isMachoABI || needsLoad) ArgOffset += isPPC64 ? 8 : ObjSize;
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001469 break;
1470 case MVT::v4f32:
1471 case MVT::v4i32:
1472 case MVT::v8i16:
1473 case MVT::v16i8:
Chris Lattnerbe4849a2006-05-16 18:51:52 +00001474 // Note that vector arguments in registers don't reserve stack space.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001475 if (VR_idx != Num_VR_Regs) {
Chris Lattner84bc5422007-12-31 04:13:23 +00001476 unsigned VReg = RegInfo.createVirtualRegister(&PPC::VRRCRegClass);
1477 RegInfo.addLiveIn(VR[VR_idx], VReg);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001478 ArgVal = DAG.getCopyFromReg(Root, VReg, ObjectVT);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001479 ++VR_idx;
1480 } else {
1481 // This should be simple, but requires getting 16-byte aligned stack
1482 // values.
1483 assert(0 && "Loading VR argument not implemented yet!");
1484 needsLoad = true;
1485 }
1486 break;
1487 }
1488
1489 // We need to load the argument to a virtual register if we determined above
Chris Lattner9f72d1a2008-02-13 07:35:30 +00001490 // that we ran out of physical registers of the appropriate type.
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001491 if (needsLoad) {
Chris Lattner9f72d1a2008-02-13 07:35:30 +00001492 int FI = MFI->CreateFixedObject(ObjSize,
1493 CurArgOffset + (ArgSize - ObjSize));
1494 SDOperand FIN = DAG.getFrameIndex(FI, PtrVT);
1495 ArgVal = DAG.getLoad(ObjectVT, Root, FIN, NULL, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001496 }
1497
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001498 ArgValues.push_back(ArgVal);
1499 }
Dale Johannesen8419dd62008-03-07 20:27:40 +00001500
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001501 // If the function takes variable number of arguments, make a frame index for
1502 // the start of the first vararg value... for expansion of llvm.va_start.
1503 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
1504 if (isVarArg) {
Nicolas Geoffray01119992007-04-03 13:59:52 +00001505
1506 int depth;
1507 if (isELF32_ABI) {
1508 VarArgsNumGPR = GPR_idx;
1509 VarArgsNumFPR = FPR_idx;
1510
1511 // Make room for Num_GPR_Regs, Num_FPR_Regs and for a possible frame
1512 // pointer.
1513 depth = -(Num_GPR_Regs * MVT::getSizeInBits(PtrVT)/8 +
1514 Num_FPR_Regs * MVT::getSizeInBits(MVT::f64)/8 +
1515 MVT::getSizeInBits(PtrVT)/8);
1516
1517 VarArgsStackOffset = MFI->CreateFixedObject(MVT::getSizeInBits(PtrVT)/8,
1518 ArgOffset);
1519
1520 }
1521 else
1522 depth = ArgOffset;
1523
Chris Lattnerc91a4752006-06-26 22:48:35 +00001524 VarArgsFrameIndex = MFI->CreateFixedObject(MVT::getSizeInBits(PtrVT)/8,
Nicolas Geoffray01119992007-04-03 13:59:52 +00001525 depth);
Chris Lattnerc91a4752006-06-26 22:48:35 +00001526 SDOperand FIN = DAG.getFrameIndex(VarArgsFrameIndex, PtrVT);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001527
Nicolas Geoffray01119992007-04-03 13:59:52 +00001528 // In ELF 32 ABI, the fixed integer arguments of a variadic function are
1529 // stored to the VarArgsFrameIndex on the stack.
1530 if (isELF32_ABI) {
1531 for (GPR_idx = 0; GPR_idx != VarArgsNumGPR; ++GPR_idx) {
1532 SDOperand Val = DAG.getRegister(GPR[GPR_idx], PtrVT);
1533 SDOperand Store = DAG.getStore(Root, Val, FIN, NULL, 0);
1534 MemOps.push_back(Store);
1535 // Increment the address by four for the next argument to store
1536 SDOperand PtrOff = DAG.getConstant(MVT::getSizeInBits(PtrVT)/8, PtrVT);
1537 FIN = DAG.getNode(ISD::ADD, PtrOff.getValueType(), FIN, PtrOff);
1538 }
1539 }
1540
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001541 // If this function is vararg, store any remaining integer argument regs
1542 // to their spots on the stack so that they may be loaded by deferencing the
1543 // result of va_next.
Chris Lattneraf4ec0c2006-05-16 18:58:15 +00001544 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
Chris Lattnerb1eb9872006-11-18 01:57:19 +00001545 unsigned VReg;
1546 if (isPPC64)
Chris Lattner84bc5422007-12-31 04:13:23 +00001547 VReg = RegInfo.createVirtualRegister(&PPC::G8RCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00001548 else
Chris Lattner84bc5422007-12-31 04:13:23 +00001549 VReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
Chris Lattnerb1eb9872006-11-18 01:57:19 +00001550
Chris Lattner84bc5422007-12-31 04:13:23 +00001551 RegInfo.addLiveIn(GPR[GPR_idx], VReg);
Chris Lattnerc91a4752006-06-26 22:48:35 +00001552 SDOperand Val = DAG.getCopyFromReg(Root, VReg, PtrVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001553 SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001554 MemOps.push_back(Store);
1555 // Increment the address by four for the next argument to store
Chris Lattnerc91a4752006-06-26 22:48:35 +00001556 SDOperand PtrOff = DAG.getConstant(MVT::getSizeInBits(PtrVT)/8, PtrVT);
1557 FIN = DAG.getNode(ISD::ADD, PtrOff.getValueType(), FIN, PtrOff);
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001558 }
Nicolas Geoffray01119992007-04-03 13:59:52 +00001559
1560 // In ELF 32 ABI, the double arguments are stored to the VarArgsFrameIndex
1561 // on the stack.
1562 if (isELF32_ABI) {
1563 for (FPR_idx = 0; FPR_idx != VarArgsNumFPR; ++FPR_idx) {
1564 SDOperand Val = DAG.getRegister(FPR[FPR_idx], MVT::f64);
1565 SDOperand Store = DAG.getStore(Root, Val, FIN, NULL, 0);
1566 MemOps.push_back(Store);
1567 // Increment the address by eight for the next argument to store
1568 SDOperand PtrOff = DAG.getConstant(MVT::getSizeInBits(MVT::f64)/8,
1569 PtrVT);
1570 FIN = DAG.getNode(ISD::ADD, PtrOff.getValueType(), FIN, PtrOff);
1571 }
1572
1573 for (; FPR_idx != Num_FPR_Regs; ++FPR_idx) {
1574 unsigned VReg;
Chris Lattner84bc5422007-12-31 04:13:23 +00001575 VReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001576
Chris Lattner84bc5422007-12-31 04:13:23 +00001577 RegInfo.addLiveIn(FPR[FPR_idx], VReg);
Nicolas Geoffray01119992007-04-03 13:59:52 +00001578 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::f64);
1579 SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
1580 MemOps.push_back(Store);
1581 // Increment the address by eight for the next argument to store
1582 SDOperand PtrOff = DAG.getConstant(MVT::getSizeInBits(MVT::f64)/8,
1583 PtrVT);
1584 FIN = DAG.getNode(ISD::ADD, PtrOff.getValueType(), FIN, PtrOff);
1585 }
1586 }
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001587 }
1588
Dale Johannesen8419dd62008-03-07 20:27:40 +00001589 if (!MemOps.empty())
1590 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,&MemOps[0],MemOps.size());
1591
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001592 ArgValues.push_back(Root);
1593
1594 // Return the new list of results.
1595 std::vector<MVT::ValueType> RetVT(Op.Val->value_begin(),
1596 Op.Val->value_end());
Chris Lattner79e490a2006-08-11 17:18:05 +00001597 return DAG.getNode(ISD::MERGE_VALUES, RetVT, &ArgValues[0], ArgValues.size());
Chris Lattner8ab5fe52006-05-16 18:18:50 +00001598}
1599
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001600/// isCallCompatibleAddress - Return the immediate to use if the specified
1601/// 32-bit value is representable in the immediate field of a BxA instruction.
1602static SDNode *isBLACompatibleAddress(SDOperand Op, SelectionDAG &DAG) {
1603 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
1604 if (!C) return 0;
1605
1606 int Addr = C->getValue();
1607 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero.
1608 (Addr << 6 >> 6) != Addr)
1609 return 0; // Top 6 bits have to be sext of immediate.
1610
Evan Cheng33118762007-10-22 19:46:19 +00001611 return DAG.getConstant((int)C->getValue() >> 2,
1612 DAG.getTargetLoweringInfo().getPointerTy()).Val;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001613}
1614
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001615/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1616/// by "Src" to address "Dst" of size "Size". Alignment information is
1617/// specified by the specific parameter attribute. The copy will be passed as
1618/// a byval function parameter.
1619/// Sometimes what we are copying is the end of a larger object, the part that
1620/// does not fit in registers.
1621static SDOperand
1622CreateCopyOfByValArgument(SDOperand Src, SDOperand Dst, SDOperand Chain,
1623 unsigned Flags, SelectionDAG &DAG, unsigned Size) {
1624 unsigned Align = 1 <<
1625 ((Flags & ISD::ParamFlags::ByValAlign) >> ISD::ParamFlags::ByValAlignOffs);
1626 SDOperand AlignNode = DAG.getConstant(Align, MVT::i32);
1627 SDOperand SizeNode = DAG.getConstant(Size, MVT::i32);
Dale Johannesen1f797a32008-03-05 23:31:27 +00001628 SDOperand AlwaysInline = DAG.getConstant(0, MVT::i32);
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001629 return DAG.getMemcpy(Chain, Dst, Src, SizeNode, AlignNode, AlwaysInline);
1630}
Chris Lattner9f0bc652007-02-25 05:34:32 +00001631
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001632SDOperand PPCTargetLowering::LowerCALL(SDOperand Op, SelectionDAG &DAG,
1633 const PPCSubtarget &Subtarget) {
Chris Lattner9f0bc652007-02-25 05:34:32 +00001634 SDOperand Chain = Op.getOperand(0);
1635 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
1636 SDOperand Callee = Op.getOperand(4);
1637 unsigned NumOps = (Op.getNumOperands() - 5) / 2;
1638
1639 bool isMachoABI = Subtarget.isMachoABI();
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001640 bool isELF32_ABI = Subtarget.isELF32_ABI();
Evan Cheng4360bdc2006-05-25 00:57:32 +00001641
Chris Lattnerc91a4752006-06-26 22:48:35 +00001642 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1643 bool isPPC64 = PtrVT == MVT::i64;
1644 unsigned PtrByteSize = isPPC64 ? 8 : 4;
Chris Lattnerc91a4752006-06-26 22:48:35 +00001645
Chris Lattnerabde4602006-05-16 22:56:08 +00001646 // args_to_use will accumulate outgoing args for the PPCISD::CALL case in
1647 // SelectExpr to use to put the arguments in the appropriate registers.
1648 std::vector<SDOperand> args_to_use;
1649
1650 // Count how many bytes are to be pushed on the stack, including the linkage
Chris Lattnerc91a4752006-06-26 22:48:35 +00001651 // area, and parameter passing area. We start with 24/48 bytes, which is
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001652 // prereserved space for [SP][CR][LR][3 x unused].
Chris Lattner9f0bc652007-02-25 05:34:32 +00001653 unsigned NumBytes = PPCFrameInfo::getLinkageSize(isPPC64, isMachoABI);
Chris Lattnerabde4602006-05-16 22:56:08 +00001654
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001655 // Add up all the space actually used.
Jim Laskeye9bd7b22006-11-28 14:53:52 +00001656 for (unsigned i = 0; i != NumOps; ++i) {
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001657 unsigned Flags = cast<ConstantSDNode>(Op.getOperand(5+2*i+1))->getValue();
Jim Laskeye9bd7b22006-11-28 14:53:52 +00001658 unsigned ArgSize =MVT::getSizeInBits(Op.getOperand(5+2*i).getValueType())/8;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001659 if (Flags & ISD::ParamFlags::ByVal)
1660 ArgSize = (Flags & ISD::ParamFlags::ByValSize) >>
1661 ISD::ParamFlags::ByValSizeOffs;
Jim Laskeye9bd7b22006-11-28 14:53:52 +00001662 ArgSize = std::max(ArgSize, PtrByteSize);
1663 NumBytes += ArgSize;
1664 }
Chris Lattnerc04ba7a2006-05-16 23:54:25 +00001665
Chris Lattner7b053502006-05-30 21:21:04 +00001666 // The prolog code of the callee may store up to 8 GPR argument registers to
1667 // the stack, allowing va_start to index over them in memory if its varargs.
1668 // Because we cannot tell if this is needed on the caller side, we have to
1669 // conservatively assume that it is needed. As such, make sure we have at
1670 // least enough stack space for the caller to store the 8 GPRs.
Chris Lattner9f0bc652007-02-25 05:34:32 +00001671 NumBytes = std::max(NumBytes,
1672 PPCFrameInfo::getMinCallFrameSize(isPPC64, isMachoABI));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001673
1674 // Adjust the stack pointer for the new arguments...
1675 // These operations are automatically eliminated by the prolog/epilog pass
1676 Chain = DAG.getCALLSEQ_START(Chain,
Chris Lattnerc91a4752006-06-26 22:48:35 +00001677 DAG.getConstant(NumBytes, PtrVT));
Dale Johannesen1f797a32008-03-05 23:31:27 +00001678 SDOperand CallSeqStart = Chain;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001679
1680 // Set up a copy of the stack pointer for use loading and storing any
1681 // arguments that may not fit in the registers available for argument
1682 // passing.
Chris Lattnerc91a4752006-06-26 22:48:35 +00001683 SDOperand StackPtr;
1684 if (isPPC64)
1685 StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
1686 else
1687 StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001688
1689 // Figure out which arguments are going to go in registers, and which in
1690 // memory. Also, if this is a vararg function, floating point operations
1691 // must be stored to our stack, and loaded into integer regs as well, if
1692 // any integer regs are available for argument passing.
Chris Lattner9f0bc652007-02-25 05:34:32 +00001693 unsigned ArgOffset = PPCFrameInfo::getLinkageSize(isPPC64, isMachoABI);
Chris Lattner9a2a4972006-05-17 06:01:33 +00001694 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
Jim Laskey2f616bf2006-11-16 22:43:37 +00001695
Chris Lattnerc91a4752006-06-26 22:48:35 +00001696 static const unsigned GPR_32[] = { // 32-bit registers.
Chris Lattner9a2a4972006-05-17 06:01:33 +00001697 PPC::R3, PPC::R4, PPC::R5, PPC::R6,
1698 PPC::R7, PPC::R8, PPC::R9, PPC::R10,
1699 };
Chris Lattnerc91a4752006-06-26 22:48:35 +00001700 static const unsigned GPR_64[] = { // 64-bit registers.
1701 PPC::X3, PPC::X4, PPC::X5, PPC::X6,
1702 PPC::X7, PPC::X8, PPC::X9, PPC::X10,
1703 };
Chris Lattner9f0bc652007-02-25 05:34:32 +00001704 static const unsigned *FPR = GetFPR(Subtarget);
1705
Chris Lattner9a2a4972006-05-17 06:01:33 +00001706 static const unsigned VR[] = {
1707 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
1708 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
1709 };
Owen Anderson718cb662007-09-07 04:06:50 +00001710 const unsigned NumGPRs = array_lengthof(GPR_32);
Nicolas Geoffrayef3c0302007-04-03 10:27:07 +00001711 const unsigned NumFPRs = isMachoABI ? 13 : 8;
Owen Anderson718cb662007-09-07 04:06:50 +00001712 const unsigned NumVRs = array_lengthof( VR);
Chris Lattner9a2a4972006-05-17 06:01:33 +00001713
Chris Lattnerc91a4752006-06-26 22:48:35 +00001714 const unsigned *GPR = isPPC64 ? GPR_64 : GPR_32;
1715
Chris Lattner9a2a4972006-05-17 06:01:33 +00001716 std::vector<std::pair<unsigned, SDOperand> > RegsToPass;
Chris Lattnere2199452006-08-11 17:38:39 +00001717 SmallVector<SDOperand, 8> MemOpChains;
Evan Cheng4360bdc2006-05-25 00:57:32 +00001718 for (unsigned i = 0; i != NumOps; ++i) {
Chris Lattner9f0bc652007-02-25 05:34:32 +00001719 bool inMem = false;
Evan Cheng4360bdc2006-05-25 00:57:32 +00001720 SDOperand Arg = Op.getOperand(5+2*i);
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001721 unsigned Flags = cast<ConstantSDNode>(Op.getOperand(5+2*i+1))->getValue();
1722 unsigned AlignFlag = 1 << ISD::ParamFlags::OrigAlignmentOffs;
1723 // See if next argument requires stack alignment in ELF
1724 unsigned next = 5+2*(i+1)+1;
1725 bool Expand = (Arg.getValueType() == MVT::f64) || ((i + 1 < NumOps) &&
1726 (cast<ConstantSDNode>(Op.getOperand(next))->getValue() & AlignFlag) &&
1727 (!(Flags & AlignFlag)));
1728
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001729 // PtrOff will be used to store the current argument to the stack if a
1730 // register cannot be found for it.
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001731 SDOperand PtrOff;
1732
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001733 // Stack align in ELF 32
1734 if (isELF32_ABI && Expand)
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001735 PtrOff = DAG.getConstant(ArgOffset + ((ArgOffset/4) % 2) * PtrByteSize,
1736 StackPtr.getValueType());
1737 else
1738 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
1739
Chris Lattnerc91a4752006-06-26 22:48:35 +00001740 PtrOff = DAG.getNode(ISD::ADD, PtrVT, StackPtr, PtrOff);
1741
1742 // On PPC64, promote integers to 64-bit values.
1743 if (isPPC64 && Arg.getValueType() == MVT::i32) {
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001744 unsigned ExtOp = (Flags & 1) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
1745
Chris Lattnerc91a4752006-06-26 22:48:35 +00001746 Arg = DAG.getNode(ExtOp, MVT::i64, Arg);
1747 }
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001748
1749 // FIXME Elf untested, what are alignment rules?
Dale Johannesen8419dd62008-03-07 20:27:40 +00001750 // FIXME memcpy is used way more than necessary. Correctness first.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001751 if (Flags & ISD::ParamFlags::ByVal) {
1752 unsigned Size = (Flags & ISD::ParamFlags::ByValSize) >>
1753 ISD::ParamFlags::ByValSizeOffs;
1754 if (isELF32_ABI && Expand) GPR_idx += (GPR_idx % 2);
Dale Johannesen8419dd62008-03-07 20:27:40 +00001755 if (Size==1 || Size==2) {
1756 // Very small objects are passed right-justified.
1757 // Everything else is passed left-justified.
1758 MVT::ValueType VT = (Size==1) ? MVT::i8 : MVT::i16;
1759 if (GPR_idx != NumGPRs) {
1760 SDOperand Load = DAG.getExtLoad(ISD::EXTLOAD, PtrVT, Chain, Arg,
1761 NULL, 0, VT);
1762 MemOpChains.push_back(Load.getValue(1));
1763 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
1764 if (isMachoABI)
1765 ArgOffset += PtrByteSize;
1766 } else {
1767 SDOperand Const = DAG.getConstant(4 - Size, PtrOff.getValueType());
1768 SDOperand AddPtr = DAG.getNode(ISD::ADD, PtrVT, PtrOff, Const);
1769 SDOperand MemcpyCall = CreateCopyOfByValArgument(Arg, AddPtr,
1770 CallSeqStart.Val->getOperand(0),
1771 Flags, DAG, Size);
1772 // This must go outside the CALLSEQ_START..END.
1773 SDOperand NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
1774 CallSeqStart.Val->getOperand(1));
1775 DAG.ReplaceAllUsesWith(CallSeqStart.Val, NewCallSeqStart.Val);
1776 Chain = CallSeqStart = NewCallSeqStart;
1777 ArgOffset += PtrByteSize;
1778 }
1779 continue;
1780 }
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001781 for (unsigned j=0; j<Size; j+=PtrByteSize) {
1782 SDOperand Const = DAG.getConstant(j, PtrOff.getValueType());
1783 SDOperand AddArg = DAG.getNode(ISD::ADD, PtrVT, Arg, Const);
1784 if (GPR_idx != NumGPRs) {
1785 SDOperand Load = DAG.getLoad(PtrVT, Chain, AddArg, NULL, 0);
Dale Johannesen1f797a32008-03-05 23:31:27 +00001786 MemOpChains.push_back(Load.getValue(1));
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001787 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
1788 if (isMachoABI)
1789 ArgOffset += PtrByteSize;
1790 } else {
1791 SDOperand AddPtr = DAG.getNode(ISD::ADD, PtrVT, PtrOff, Const);
Dale Johannesen1f797a32008-03-05 23:31:27 +00001792 SDOperand MemcpyCall = CreateCopyOfByValArgument(AddArg, AddPtr,
1793 CallSeqStart.Val->getOperand(0),
1794 Flags, DAG, Size - j);
1795 // This must go outside the CALLSEQ_START..END.
1796 SDOperand NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
1797 CallSeqStart.Val->getOperand(1));
1798 DAG.ReplaceAllUsesWith(CallSeqStart.Val, NewCallSeqStart.Val);
Dale Johannesen8419dd62008-03-07 20:27:40 +00001799 Chain = CallSeqStart = NewCallSeqStart;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001800 ArgOffset += ((Size - j + 3)/4)*4;
Dale Johannesen8419dd62008-03-07 20:27:40 +00001801 break;
Dale Johannesen5b3b6952008-03-04 23:17:14 +00001802 }
1803 }
1804 continue;
1805 }
1806
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001807 switch (Arg.getValueType()) {
1808 default: assert(0 && "Unexpected ValueType for argument!");
1809 case MVT::i32:
Chris Lattnerc91a4752006-06-26 22:48:35 +00001810 case MVT::i64:
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001811 // Double word align in ELF
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001812 if (isELF32_ABI && Expand) GPR_idx += (GPR_idx % 2);
Chris Lattner9a2a4972006-05-17 06:01:33 +00001813 if (GPR_idx != NumGPRs) {
1814 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001815 } else {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001816 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
Chris Lattner9f0bc652007-02-25 05:34:32 +00001817 inMem = true;
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001818 }
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001819 if (inMem || isMachoABI) {
1820 // Stack align in ELF
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001821 if (isELF32_ABI && Expand)
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001822 ArgOffset += ((ArgOffset/4) % 2) * PtrByteSize;
1823
1824 ArgOffset += PtrByteSize;
1825 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001826 break;
1827 case MVT::f32:
1828 case MVT::f64:
Chris Lattner4ddf7a42007-02-25 20:01:40 +00001829 if (isVarArg) {
Jim Laskeyfbb74e62006-12-01 16:30:47 +00001830 // Float varargs need to be promoted to double.
1831 if (Arg.getValueType() == MVT::f32)
1832 Arg = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Arg);
1833 }
1834
Chris Lattner9a2a4972006-05-17 06:01:33 +00001835 if (FPR_idx != NumFPRs) {
1836 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
1837
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001838 if (isVarArg) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001839 SDOperand Store = DAG.getStore(Chain, Arg, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00001840 MemOpChains.push_back(Store);
1841
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001842 // Float varargs are always shadowed in available integer registers
Chris Lattner9a2a4972006-05-17 06:01:33 +00001843 if (GPR_idx != NumGPRs) {
Evan Cheng466685d2006-10-09 20:57:25 +00001844 SDOperand Load = DAG.getLoad(PtrVT, Store, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00001845 MemOpChains.push_back(Load.getValue(1));
Chris Lattner9f0bc652007-02-25 05:34:32 +00001846 if (isMachoABI) RegsToPass.push_back(std::make_pair(GPR[GPR_idx++],
1847 Load));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001848 }
Jim Laskeyfbb74e62006-12-01 16:30:47 +00001849 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001850 SDOperand ConstFour = DAG.getConstant(4, PtrOff.getValueType());
Chris Lattnerc91a4752006-06-26 22:48:35 +00001851 PtrOff = DAG.getNode(ISD::ADD, PtrVT, PtrOff, ConstFour);
Evan Cheng466685d2006-10-09 20:57:25 +00001852 SDOperand Load = DAG.getLoad(PtrVT, Store, PtrOff, NULL, 0);
Chris Lattner9a2a4972006-05-17 06:01:33 +00001853 MemOpChains.push_back(Load.getValue(1));
Chris Lattner9f0bc652007-02-25 05:34:32 +00001854 if (isMachoABI) RegsToPass.push_back(std::make_pair(GPR[GPR_idx++],
1855 Load));
Chris Lattnerabde4602006-05-16 22:56:08 +00001856 }
1857 } else {
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001858 // If we have any FPRs remaining, we may also have GPRs remaining.
1859 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
1860 // GPRs.
Chris Lattner9f0bc652007-02-25 05:34:32 +00001861 if (isMachoABI) {
1862 if (GPR_idx != NumGPRs)
1863 ++GPR_idx;
1864 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
1865 !isPPC64) // PPC64 has 64-bit GPR's obviously :)
1866 ++GPR_idx;
1867 }
Chris Lattnerabde4602006-05-16 22:56:08 +00001868 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001869 } else {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001870 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
Chris Lattner9f0bc652007-02-25 05:34:32 +00001871 inMem = true;
Chris Lattnerabde4602006-05-16 22:56:08 +00001872 }
Chris Lattner9f0bc652007-02-25 05:34:32 +00001873 if (inMem || isMachoABI) {
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001874 // Stack align in ELF
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001875 if (isELF32_ABI && Expand)
Nicolas Geoffrayb2ec1cc2007-03-13 15:02:46 +00001876 ArgOffset += ((ArgOffset/4) % 2) * PtrByteSize;
Chris Lattner9f0bc652007-02-25 05:34:32 +00001877 if (isPPC64)
1878 ArgOffset += 8;
1879 else
1880 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
1881 }
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001882 break;
1883 case MVT::v4f32:
1884 case MVT::v4i32:
1885 case MVT::v8i16:
1886 case MVT::v16i8:
1887 assert(!isVarArg && "Don't support passing vectors to varargs yet!");
Chris Lattner9a2a4972006-05-17 06:01:33 +00001888 assert(VR_idx != NumVRs &&
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001889 "Don't support passing more than 12 vector args yet!");
Chris Lattner9a2a4972006-05-17 06:01:33 +00001890 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
Chris Lattnerc8b682c2006-05-17 00:15:40 +00001891 break;
Chris Lattnerabde4602006-05-16 22:56:08 +00001892 }
Chris Lattnerabde4602006-05-16 22:56:08 +00001893 }
Chris Lattner9a2a4972006-05-17 06:01:33 +00001894 if (!MemOpChains.empty())
Chris Lattnere2199452006-08-11 17:38:39 +00001895 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
1896 &MemOpChains[0], MemOpChains.size());
Chris Lattnerabde4602006-05-16 22:56:08 +00001897
Chris Lattner9a2a4972006-05-17 06:01:33 +00001898 // Build a sequence of copy-to-reg nodes chained together with token chain
1899 // and flag operands which copy the outgoing args into the appropriate regs.
1900 SDOperand InFlag;
1901 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1902 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1903 InFlag);
1904 InFlag = Chain.getValue(1);
1905 }
Chris Lattner9f0bc652007-02-25 05:34:32 +00001906
Nicolas Geoffrayec58d9f2007-04-03 12:35:28 +00001907 // With the ELF 32 ABI, set CR6 to true if this is a vararg call.
1908 if (isVarArg && isELF32_ABI) {
Chris Lattner9f0bc652007-02-25 05:34:32 +00001909 SDOperand SetCR(DAG.getTargetNode(PPC::SETCR, MVT::i32), 0);
1910 Chain = DAG.getCopyToReg(Chain, PPC::CR6, SetCR, InFlag);
1911 InFlag = Chain.getValue(1);
1912 }
1913
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001914 std::vector<MVT::ValueType> NodeTys;
Chris Lattner4a45abf2006-06-10 01:14:28 +00001915 NodeTys.push_back(MVT::Other); // Returns a chain
1916 NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use.
1917
Chris Lattner79e490a2006-08-11 17:18:05 +00001918 SmallVector<SDOperand, 8> Ops;
Nicolas Geoffray63f8fb12007-02-27 13:01:19 +00001919 unsigned CallOpc = isMachoABI? PPCISD::CALL_Macho : PPCISD::CALL_ELF;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001920
1921 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1922 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1923 // node so that legalize doesn't hack it.
Nicolas Geoffray5a6c91a2007-12-21 12:22:29 +00001924 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1925 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), Callee.getValueType());
1926 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001927 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType());
1928 else if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG))
1929 // If this is an absolute destination address, use the munged value.
1930 Callee = SDOperand(Dest, 0);
1931 else {
1932 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair
1933 // to do the call, we can't use PPCISD::CALL.
Chris Lattner79e490a2006-08-11 17:18:05 +00001934 SDOperand MTCTROps[] = {Chain, Callee, InFlag};
1935 Chain = DAG.getNode(PPCISD::MTCTR, NodeTys, MTCTROps, 2+(InFlag.Val!=0));
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001936 InFlag = Chain.getValue(1);
1937
1938 // Copy the callee address into R12 on darwin.
Chris Lattner9f0bc652007-02-25 05:34:32 +00001939 if (isMachoABI) {
1940 Chain = DAG.getCopyToReg(Chain, PPC::R12, Callee, InFlag);
1941 InFlag = Chain.getValue(1);
1942 }
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001943
1944 NodeTys.clear();
1945 NodeTys.push_back(MVT::Other);
1946 NodeTys.push_back(MVT::Flag);
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001947 Ops.push_back(Chain);
Chris Lattner9f0bc652007-02-25 05:34:32 +00001948 CallOpc = isMachoABI ? PPCISD::BCTRL_Macho : PPCISD::BCTRL_ELF;
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001949 Callee.Val = 0;
1950 }
Chris Lattner9a2a4972006-05-17 06:01:33 +00001951
Chris Lattner4a45abf2006-06-10 01:14:28 +00001952 // If this is a direct call, pass the chain and the callee.
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001953 if (Callee.Val) {
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001954 Ops.push_back(Chain);
1955 Ops.push_back(Callee);
Chris Lattnerc703a8f2006-05-17 19:00:46 +00001956 }
Chris Lattnerabde4602006-05-16 22:56:08 +00001957
Chris Lattner4a45abf2006-06-10 01:14:28 +00001958 // Add argument registers to the end of the list so that they are known live
1959 // into the call.
1960 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1961 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1962 RegsToPass[i].second.getValueType()));
1963
1964 if (InFlag.Val)
1965 Ops.push_back(InFlag);
Chris Lattner79e490a2006-08-11 17:18:05 +00001966 Chain = DAG.getNode(CallOpc, NodeTys, &Ops[0], Ops.size());
Chris Lattner4a45abf2006-06-10 01:14:28 +00001967 InFlag = Chain.getValue(1);
1968
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001969 Chain = DAG.getCALLSEQ_END(Chain,
1970 DAG.getConstant(NumBytes, PtrVT),
1971 DAG.getConstant(0, PtrVT),
1972 InFlag);
1973 if (Op.Val->getValueType(0) != MVT::Other)
1974 InFlag = Chain.getValue(1);
1975
Chris Lattner79e490a2006-08-11 17:18:05 +00001976 SDOperand ResultVals[3];
1977 unsigned NumResults = 0;
Chris Lattner9a2a4972006-05-17 06:01:33 +00001978 NodeTys.clear();
1979
1980 // If the call has results, copy the values out of the ret val registers.
1981 switch (Op.Val->getValueType(0)) {
1982 default: assert(0 && "Unexpected ret value!");
1983 case MVT::Other: break;
1984 case MVT::i32:
1985 if (Op.Val->getValueType(1) == MVT::i32) {
Dan Gohman532dc2e2007-07-09 20:59:04 +00001986 Chain = DAG.getCopyFromReg(Chain, PPC::R3, MVT::i32, InFlag).getValue(1);
Chris Lattner79e490a2006-08-11 17:18:05 +00001987 ResultVals[0] = Chain.getValue(0);
Dan Gohman532dc2e2007-07-09 20:59:04 +00001988 Chain = DAG.getCopyFromReg(Chain, PPC::R4, MVT::i32,
Chris Lattner9a2a4972006-05-17 06:01:33 +00001989 Chain.getValue(2)).getValue(1);
Chris Lattner79e490a2006-08-11 17:18:05 +00001990 ResultVals[1] = Chain.getValue(0);
1991 NumResults = 2;
Chris Lattner9a2a4972006-05-17 06:01:33 +00001992 NodeTys.push_back(MVT::i32);
1993 } else {
1994 Chain = DAG.getCopyFromReg(Chain, PPC::R3, MVT::i32, InFlag).getValue(1);
Chris Lattner79e490a2006-08-11 17:18:05 +00001995 ResultVals[0] = Chain.getValue(0);
1996 NumResults = 1;
Chris Lattner9a2a4972006-05-17 06:01:33 +00001997 }
1998 NodeTys.push_back(MVT::i32);
1999 break;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002000 case MVT::i64:
2001 Chain = DAG.getCopyFromReg(Chain, PPC::X3, MVT::i64, InFlag).getValue(1);
Chris Lattner79e490a2006-08-11 17:18:05 +00002002 ResultVals[0] = Chain.getValue(0);
2003 NumResults = 1;
Chris Lattnerc91a4752006-06-26 22:48:35 +00002004 NodeTys.push_back(MVT::i64);
2005 break;
Chris Lattner9a2a4972006-05-17 06:01:33 +00002006 case MVT::f64:
Dale Johannesen161e8972007-10-05 20:04:43 +00002007 if (Op.Val->getValueType(1) == MVT::f64) {
2008 Chain = DAG.getCopyFromReg(Chain, PPC::F1, MVT::f64, InFlag).getValue(1);
2009 ResultVals[0] = Chain.getValue(0);
2010 Chain = DAG.getCopyFromReg(Chain, PPC::F2, MVT::f64,
2011 Chain.getValue(2)).getValue(1);
2012 ResultVals[1] = Chain.getValue(0);
2013 NumResults = 2;
2014 NodeTys.push_back(MVT::f64);
2015 NodeTys.push_back(MVT::f64);
2016 break;
2017 }
2018 // else fall through
2019 case MVT::f32:
Chris Lattner9a2a4972006-05-17 06:01:33 +00002020 Chain = DAG.getCopyFromReg(Chain, PPC::F1, Op.Val->getValueType(0),
2021 InFlag).getValue(1);
Chris Lattner79e490a2006-08-11 17:18:05 +00002022 ResultVals[0] = Chain.getValue(0);
2023 NumResults = 1;
Chris Lattner9a2a4972006-05-17 06:01:33 +00002024 NodeTys.push_back(Op.Val->getValueType(0));
2025 break;
2026 case MVT::v4f32:
2027 case MVT::v4i32:
2028 case MVT::v8i16:
2029 case MVT::v16i8:
2030 Chain = DAG.getCopyFromReg(Chain, PPC::V2, Op.Val->getValueType(0),
2031 InFlag).getValue(1);
Chris Lattner79e490a2006-08-11 17:18:05 +00002032 ResultVals[0] = Chain.getValue(0);
2033 NumResults = 1;
Chris Lattner9a2a4972006-05-17 06:01:33 +00002034 NodeTys.push_back(Op.Val->getValueType(0));
2035 break;
2036 }
2037
Chris Lattner9a2a4972006-05-17 06:01:33 +00002038 NodeTys.push_back(MVT::Other);
Chris Lattnerabde4602006-05-16 22:56:08 +00002039
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002040 // If the function returns void, just return the chain.
Chris Lattnerf6e190f2006-08-12 07:20:05 +00002041 if (NumResults == 0)
Chris Lattnerc703a8f2006-05-17 19:00:46 +00002042 return Chain;
2043
2044 // Otherwise, merge everything together with a MERGE_VALUES node.
Chris Lattner79e490a2006-08-11 17:18:05 +00002045 ResultVals[NumResults++] = Chain;
2046 SDOperand Res = DAG.getNode(ISD::MERGE_VALUES, NodeTys,
2047 ResultVals, NumResults);
Chris Lattnerabde4602006-05-16 22:56:08 +00002048 return Res.getValue(Op.ResNo);
2049}
2050
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002051SDOperand PPCTargetLowering::LowerRET(SDOperand Op, SelectionDAG &DAG,
2052 TargetMachine &TM) {
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00002053 SmallVector<CCValAssign, 16> RVLocs;
2054 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Chris Lattner52387be2007-06-19 00:13:10 +00002055 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
2056 CCState CCInfo(CC, isVarArg, TM, RVLocs);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00002057 CCInfo.AnalyzeReturn(Op.Val, RetCC_PPC);
2058
2059 // If this is the first return lowered for this function, add the regs to the
2060 // liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +00002061 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00002062 for (unsigned i = 0; i != RVLocs.size(); ++i)
Chris Lattner84bc5422007-12-31 04:13:23 +00002063 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00002064 }
2065
Chris Lattnercaddd442007-02-26 19:44:02 +00002066 SDOperand Chain = Op.getOperand(0);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00002067 SDOperand Flag;
2068
2069 // Copy the result values into the output registers.
2070 for (unsigned i = 0; i != RVLocs.size(); ++i) {
2071 CCValAssign &VA = RVLocs[i];
2072 assert(VA.isRegLoc() && "Can only return in registers!");
2073 Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), Op.getOperand(i*2+1), Flag);
2074 Flag = Chain.getValue(1);
2075 }
2076
2077 if (Flag.Val)
2078 return DAG.getNode(PPCISD::RET_FLAG, MVT::Other, Chain, Flag);
2079 else
Chris Lattnercaddd442007-02-26 19:44:02 +00002080 return DAG.getNode(PPCISD::RET_FLAG, MVT::Other, Chain);
Chris Lattner1a635d62006-04-14 06:01:58 +00002081}
2082
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002083SDOperand PPCTargetLowering::LowerSTACKRESTORE(SDOperand Op, SelectionDAG &DAG,
Jim Laskeyefc7e522006-12-04 22:04:42 +00002084 const PPCSubtarget &Subtarget) {
2085 // When we pop the dynamic allocation we need to restore the SP link.
2086
2087 // Get the corect type for pointers.
2088 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2089
2090 // Construct the stack pointer operand.
2091 bool IsPPC64 = Subtarget.isPPC64();
2092 unsigned SP = IsPPC64 ? PPC::X1 : PPC::R1;
2093 SDOperand StackPtr = DAG.getRegister(SP, PtrVT);
2094
2095 // Get the operands for the STACKRESTORE.
2096 SDOperand Chain = Op.getOperand(0);
2097 SDOperand SaveSP = Op.getOperand(1);
2098
2099 // Load the old link SP.
2100 SDOperand LoadLinkSP = DAG.getLoad(PtrVT, Chain, StackPtr, NULL, 0);
2101
2102 // Restore the stack pointer.
2103 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), SP, SaveSP);
2104
2105 // Store the old link SP.
2106 return DAG.getStore(Chain, LoadLinkSP, StackPtr, NULL, 0);
2107}
2108
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002109SDOperand PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDOperand Op,
2110 SelectionDAG &DAG,
Jim Laskey2f616bf2006-11-16 22:43:37 +00002111 const PPCSubtarget &Subtarget) {
2112 MachineFunction &MF = DAG.getMachineFunction();
2113 bool IsPPC64 = Subtarget.isPPC64();
Chris Lattner9f0bc652007-02-25 05:34:32 +00002114 bool isMachoABI = Subtarget.isMachoABI();
Jim Laskey2f616bf2006-11-16 22:43:37 +00002115
2116 // Get current frame pointer save index. The users of this index will be
2117 // primarily DYNALLOC instructions.
2118 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
2119 int FPSI = FI->getFramePointerSaveIndex();
Chris Lattner9f0bc652007-02-25 05:34:32 +00002120
Jim Laskey2f616bf2006-11-16 22:43:37 +00002121 // If the frame pointer save index hasn't been defined yet.
2122 if (!FPSI) {
2123 // Find out what the fix offset of the frame pointer save area.
Chris Lattner9f0bc652007-02-25 05:34:32 +00002124 int FPOffset = PPCFrameInfo::getFramePointerSaveOffset(IsPPC64, isMachoABI);
2125
Jim Laskey2f616bf2006-11-16 22:43:37 +00002126 // Allocate the frame index for frame pointer save area.
Chris Lattner9f0bc652007-02-25 05:34:32 +00002127 FPSI = MF.getFrameInfo()->CreateFixedObject(IsPPC64? 8 : 4, FPOffset);
Jim Laskey2f616bf2006-11-16 22:43:37 +00002128 // Save the result.
2129 FI->setFramePointerSaveIndex(FPSI);
2130 }
2131
2132 // Get the inputs.
2133 SDOperand Chain = Op.getOperand(0);
2134 SDOperand Size = Op.getOperand(1);
2135
2136 // Get the corect type for pointers.
2137 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2138 // Negate the size.
2139 SDOperand NegSize = DAG.getNode(ISD::SUB, PtrVT,
2140 DAG.getConstant(0, PtrVT), Size);
2141 // Construct a node for the frame pointer save index.
2142 SDOperand FPSIdx = DAG.getFrameIndex(FPSI, PtrVT);
2143 // Build a DYNALLOC node.
2144 SDOperand Ops[3] = { Chain, NegSize, FPSIdx };
2145 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
2146 return DAG.getNode(PPCISD::DYNALLOC, VTs, Ops, 3);
2147}
2148
2149
Chris Lattner1a635d62006-04-14 06:01:58 +00002150/// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
2151/// possible.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002152SDOperand PPCTargetLowering::LowerSELECT_CC(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00002153 // Not FP? Not a fsel.
2154 if (!MVT::isFloatingPoint(Op.getOperand(0).getValueType()) ||
2155 !MVT::isFloatingPoint(Op.getOperand(2).getValueType()))
2156 return SDOperand();
2157
2158 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
2159
2160 // Cannot handle SETEQ/SETNE.
2161 if (CC == ISD::SETEQ || CC == ISD::SETNE) return SDOperand();
2162
2163 MVT::ValueType ResVT = Op.getValueType();
2164 MVT::ValueType CmpVT = Op.getOperand(0).getValueType();
2165 SDOperand LHS = Op.getOperand(0), RHS = Op.getOperand(1);
2166 SDOperand TV = Op.getOperand(2), FV = Op.getOperand(3);
2167
2168 // If the RHS of the comparison is a 0.0, we don't need to do the
2169 // subtraction at all.
2170 if (isFloatingPointZero(RHS))
2171 switch (CC) {
2172 default: break; // SETUO etc aren't handled by fsel.
2173 case ISD::SETULT:
Chris Lattner57340122006-05-24 00:06:44 +00002174 case ISD::SETOLT:
Chris Lattner1a635d62006-04-14 06:01:58 +00002175 case ISD::SETLT:
2176 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
2177 case ISD::SETUGE:
Chris Lattner57340122006-05-24 00:06:44 +00002178 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00002179 case ISD::SETGE:
2180 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
2181 LHS = DAG.getNode(ISD::FP_EXTEND, MVT::f64, LHS);
2182 return DAG.getNode(PPCISD::FSEL, ResVT, LHS, TV, FV);
2183 case ISD::SETUGT:
Chris Lattner57340122006-05-24 00:06:44 +00002184 case ISD::SETOGT:
Chris Lattner1a635d62006-04-14 06:01:58 +00002185 case ISD::SETGT:
2186 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt
2187 case ISD::SETULE:
Chris Lattner57340122006-05-24 00:06:44 +00002188 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00002189 case ISD::SETLE:
2190 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits
2191 LHS = DAG.getNode(ISD::FP_EXTEND, MVT::f64, LHS);
2192 return DAG.getNode(PPCISD::FSEL, ResVT,
2193 DAG.getNode(ISD::FNEG, MVT::f64, LHS), TV, FV);
2194 }
2195
Chris Lattner1de7c1d2007-10-15 20:14:52 +00002196 SDOperand Cmp;
Chris Lattner1a635d62006-04-14 06:01:58 +00002197 switch (CC) {
2198 default: break; // SETUO etc aren't handled by fsel.
2199 case ISD::SETULT:
Chris Lattner57340122006-05-24 00:06:44 +00002200 case ISD::SETOLT:
Chris Lattner1a635d62006-04-14 06:01:58 +00002201 case ISD::SETLT:
2202 Cmp = DAG.getNode(ISD::FSUB, CmpVT, LHS, RHS);
2203 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
2204 Cmp = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Cmp);
2205 return DAG.getNode(PPCISD::FSEL, ResVT, Cmp, FV, TV);
2206 case ISD::SETUGE:
Chris Lattner57340122006-05-24 00:06:44 +00002207 case ISD::SETOGE:
Chris Lattner1a635d62006-04-14 06:01:58 +00002208 case ISD::SETGE:
2209 Cmp = DAG.getNode(ISD::FSUB, CmpVT, LHS, RHS);
2210 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
2211 Cmp = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Cmp);
2212 return DAG.getNode(PPCISD::FSEL, ResVT, Cmp, TV, FV);
2213 case ISD::SETUGT:
Chris Lattner57340122006-05-24 00:06:44 +00002214 case ISD::SETOGT:
Chris Lattner1a635d62006-04-14 06:01:58 +00002215 case ISD::SETGT:
2216 Cmp = DAG.getNode(ISD::FSUB, CmpVT, RHS, LHS);
2217 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
2218 Cmp = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Cmp);
2219 return DAG.getNode(PPCISD::FSEL, ResVT, Cmp, FV, TV);
2220 case ISD::SETULE:
Chris Lattner57340122006-05-24 00:06:44 +00002221 case ISD::SETOLE:
Chris Lattner1a635d62006-04-14 06:01:58 +00002222 case ISD::SETLE:
2223 Cmp = DAG.getNode(ISD::FSUB, CmpVT, RHS, LHS);
2224 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits
2225 Cmp = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Cmp);
2226 return DAG.getNode(PPCISD::FSEL, ResVT, Cmp, TV, FV);
2227 }
2228 return SDOperand();
2229}
2230
Chris Lattner1f873002007-11-28 18:44:47 +00002231// FIXME: Split this code up when LegalizeDAGTypes lands.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002232SDOperand PPCTargetLowering::LowerFP_TO_SINT(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00002233 assert(MVT::isFloatingPoint(Op.getOperand(0).getValueType()));
2234 SDOperand Src = Op.getOperand(0);
2235 if (Src.getValueType() == MVT::f32)
2236 Src = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Src);
2237
2238 SDOperand Tmp;
2239 switch (Op.getValueType()) {
2240 default: assert(0 && "Unhandled FP_TO_SINT type in custom expander!");
2241 case MVT::i32:
2242 Tmp = DAG.getNode(PPCISD::FCTIWZ, MVT::f64, Src);
2243 break;
2244 case MVT::i64:
2245 Tmp = DAG.getNode(PPCISD::FCTIDZ, MVT::f64, Src);
2246 break;
2247 }
2248
2249 // Convert the FP value to an int value through memory.
Chris Lattner1de7c1d2007-10-15 20:14:52 +00002250 SDOperand FIPtr = DAG.CreateStackTemporary(MVT::f64);
2251
2252 // Emit a store to the stack slot.
2253 SDOperand Chain = DAG.getStore(DAG.getEntryNode(), Tmp, FIPtr, NULL, 0);
2254
2255 // Result is a load from the stack slot. If loading 4 bytes, make sure to
2256 // add in a bias.
Chris Lattner1a635d62006-04-14 06:01:58 +00002257 if (Op.getValueType() == MVT::i32)
Chris Lattner1de7c1d2007-10-15 20:14:52 +00002258 FIPtr = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr,
2259 DAG.getConstant(4, FIPtr.getValueType()));
2260 return DAG.getLoad(Op.getValueType(), Chain, FIPtr, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00002261}
2262
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002263SDOperand PPCTargetLowering::LowerFP_ROUND_INREG(SDOperand Op,
2264 SelectionDAG &DAG) {
Dale Johannesen6eaeff22007-10-10 01:01:31 +00002265 assert(Op.getValueType() == MVT::ppcf128);
2266 SDNode *Node = Op.Val;
2267 assert(Node->getOperand(0).getValueType() == MVT::ppcf128);
Chris Lattner26cb2862007-10-19 04:08:28 +00002268 assert(Node->getOperand(0).Val->getOpcode() == ISD::BUILD_PAIR);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00002269 SDOperand Lo = Node->getOperand(0).Val->getOperand(0);
2270 SDOperand Hi = Node->getOperand(0).Val->getOperand(1);
2271
2272 // This sequence changes FPSCR to do round-to-zero, adds the two halves
2273 // of the long double, and puts FPSCR back the way it was. We do not
2274 // actually model FPSCR.
2275 std::vector<MVT::ValueType> NodeTys;
2276 SDOperand Ops[4], Result, MFFSreg, InFlag, FPreg;
2277
2278 NodeTys.push_back(MVT::f64); // Return register
2279 NodeTys.push_back(MVT::Flag); // Returns a flag for later insns
2280 Result = DAG.getNode(PPCISD::MFFS, NodeTys, &InFlag, 0);
2281 MFFSreg = Result.getValue(0);
2282 InFlag = Result.getValue(1);
2283
2284 NodeTys.clear();
2285 NodeTys.push_back(MVT::Flag); // Returns a flag
2286 Ops[0] = DAG.getConstant(31, MVT::i32);
2287 Ops[1] = InFlag;
2288 Result = DAG.getNode(PPCISD::MTFSB1, NodeTys, Ops, 2);
2289 InFlag = Result.getValue(0);
2290
2291 NodeTys.clear();
2292 NodeTys.push_back(MVT::Flag); // Returns a flag
2293 Ops[0] = DAG.getConstant(30, MVT::i32);
2294 Ops[1] = InFlag;
2295 Result = DAG.getNode(PPCISD::MTFSB0, NodeTys, Ops, 2);
2296 InFlag = Result.getValue(0);
2297
2298 NodeTys.clear();
2299 NodeTys.push_back(MVT::f64); // result of add
2300 NodeTys.push_back(MVT::Flag); // Returns a flag
2301 Ops[0] = Lo;
2302 Ops[1] = Hi;
2303 Ops[2] = InFlag;
2304 Result = DAG.getNode(PPCISD::FADDRTZ, NodeTys, Ops, 3);
2305 FPreg = Result.getValue(0);
2306 InFlag = Result.getValue(1);
2307
2308 NodeTys.clear();
2309 NodeTys.push_back(MVT::f64);
2310 Ops[0] = DAG.getConstant(1, MVT::i32);
2311 Ops[1] = MFFSreg;
2312 Ops[2] = FPreg;
2313 Ops[3] = InFlag;
2314 Result = DAG.getNode(PPCISD::MTFSF, NodeTys, Ops, 4);
2315 FPreg = Result.getValue(0);
2316
2317 // We know the low half is about to be thrown away, so just use something
2318 // convenient.
2319 return DAG.getNode(ISD::BUILD_PAIR, Lo.getValueType(), FPreg, FPreg);
2320}
2321
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002322SDOperand PPCTargetLowering::LowerSINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00002323 if (Op.getOperand(0).getValueType() == MVT::i64) {
2324 SDOperand Bits = DAG.getNode(ISD::BIT_CONVERT, MVT::f64, Op.getOperand(0));
2325 SDOperand FP = DAG.getNode(PPCISD::FCFID, MVT::f64, Bits);
2326 if (Op.getValueType() == MVT::f32)
Chris Lattner0bd48932008-01-17 07:00:52 +00002327 FP = DAG.getNode(ISD::FP_ROUND, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00002328 return FP;
2329 }
2330
2331 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
2332 "Unhandled SINT_TO_FP type in custom expander!");
2333 // Since we only generate this in 64-bit mode, we can take advantage of
2334 // 64-bit registers. In particular, sign extend the input value into the
2335 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
2336 // then lfd it and fcfid it.
2337 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
2338 int FrameIdx = FrameInfo->CreateStackObject(8, 8);
Chris Lattner0d72a202006-07-28 16:45:47 +00002339 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2340 SDOperand FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Chris Lattner1a635d62006-04-14 06:01:58 +00002341
2342 SDOperand Ext64 = DAG.getNode(PPCISD::EXTSW_32, MVT::i32,
2343 Op.getOperand(0));
2344
2345 // STD the extended value into the stack slot.
Dan Gohman3069b872008-02-07 18:41:25 +00002346 MemOperand MO(PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00002347 MemOperand::MOStore, FrameIdx, 8, 8);
Chris Lattner1a635d62006-04-14 06:01:58 +00002348 SDOperand Store = DAG.getNode(PPCISD::STD_32, MVT::Other,
2349 DAG.getEntryNode(), Ext64, FIdx,
Dan Gohman69de1932008-02-06 22:27:42 +00002350 DAG.getMemOperand(MO));
Chris Lattner1a635d62006-04-14 06:01:58 +00002351 // Load the value as a double.
Evan Cheng466685d2006-10-09 20:57:25 +00002352 SDOperand Ld = DAG.getLoad(MVT::f64, Store, FIdx, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00002353
2354 // FCFID it and return it.
2355 SDOperand FP = DAG.getNode(PPCISD::FCFID, MVT::f64, Ld);
2356 if (Op.getValueType() == MVT::f32)
Chris Lattner0bd48932008-01-17 07:00:52 +00002357 FP = DAG.getNode(ISD::FP_ROUND, MVT::f32, FP, DAG.getIntPtrConstant(0));
Chris Lattner1a635d62006-04-14 06:01:58 +00002358 return FP;
2359}
2360
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002361SDOperand PPCTargetLowering::LowerFLT_ROUNDS_(SDOperand Op, SelectionDAG &DAG) {
Dale Johannesen5c5eb802008-01-18 19:55:37 +00002362 /*
2363 The rounding mode is in bits 30:31 of FPSR, and has the following
2364 settings:
2365 00 Round to nearest
2366 01 Round to 0
2367 10 Round to +inf
2368 11 Round to -inf
2369
2370 FLT_ROUNDS, on the other hand, expects the following:
2371 -1 Undefined
2372 0 Round to 0
2373 1 Round to nearest
2374 2 Round to +inf
2375 3 Round to -inf
2376
2377 To perform the conversion, we do:
2378 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
2379 */
2380
2381 MachineFunction &MF = DAG.getMachineFunction();
2382 MVT::ValueType VT = Op.getValueType();
2383 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2384 std::vector<MVT::ValueType> NodeTys;
2385 SDOperand MFFSreg, InFlag;
2386
2387 // Save FP Control Word to register
2388 NodeTys.push_back(MVT::f64); // return register
2389 NodeTys.push_back(MVT::Flag); // unused in this context
2390 SDOperand Chain = DAG.getNode(PPCISD::MFFS, NodeTys, &InFlag, 0);
2391
2392 // Save FP register to stack slot
2393 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
2394 SDOperand StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
2395 SDOperand Store = DAG.getStore(DAG.getEntryNode(), Chain,
2396 StackSlot, NULL, 0);
2397
2398 // Load FP Control Word from low 32 bits of stack slot.
2399 SDOperand Four = DAG.getConstant(4, PtrVT);
2400 SDOperand Addr = DAG.getNode(ISD::ADD, PtrVT, StackSlot, Four);
2401 SDOperand CWD = DAG.getLoad(MVT::i32, Store, Addr, NULL, 0);
2402
2403 // Transform as necessary
2404 SDOperand CWD1 =
2405 DAG.getNode(ISD::AND, MVT::i32,
2406 CWD, DAG.getConstant(3, MVT::i32));
2407 SDOperand CWD2 =
2408 DAG.getNode(ISD::SRL, MVT::i32,
2409 DAG.getNode(ISD::AND, MVT::i32,
2410 DAG.getNode(ISD::XOR, MVT::i32,
2411 CWD, DAG.getConstant(3, MVT::i32)),
2412 DAG.getConstant(3, MVT::i32)),
2413 DAG.getConstant(1, MVT::i8));
2414
2415 SDOperand RetVal =
2416 DAG.getNode(ISD::XOR, MVT::i32, CWD1, CWD2);
2417
2418 return DAG.getNode((MVT::getSizeInBits(VT) < 16 ?
2419 ISD::TRUNCATE : ISD::ZERO_EXTEND), VT, RetVal);
2420}
2421
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002422SDOperand PPCTargetLowering::LowerSHL_PARTS(SDOperand Op, SelectionDAG &DAG) {
Dan Gohman9ed06db2008-03-07 20:36:53 +00002423 MVT::ValueType VT = Op.getValueType();
2424 unsigned BitWidth = MVT::getSizeInBits(VT);
2425 assert(Op.getNumOperands() == 3 &&
2426 VT == Op.getOperand(1).getValueType() &&
2427 "Unexpected SHL!");
Chris Lattner1a635d62006-04-14 06:01:58 +00002428
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002429 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00002430 // depend on the PPC behavior for oversized shift amounts.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002431 SDOperand Lo = Op.getOperand(0);
2432 SDOperand Hi = Op.getOperand(1);
2433 SDOperand Amt = Op.getOperand(2);
Dan Gohman9ed06db2008-03-07 20:36:53 +00002434 MVT::ValueType AmtVT = Amt.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00002435
Dan Gohman9ed06db2008-03-07 20:36:53 +00002436 SDOperand Tmp1 = DAG.getNode(ISD::SUB, AmtVT,
2437 DAG.getConstant(BitWidth, AmtVT), Amt);
2438 SDOperand Tmp2 = DAG.getNode(PPCISD::SHL, VT, Hi, Amt);
2439 SDOperand Tmp3 = DAG.getNode(PPCISD::SRL, VT, Lo, Tmp1);
2440 SDOperand Tmp4 = DAG.getNode(ISD::OR , VT, Tmp2, Tmp3);
2441 SDOperand Tmp5 = DAG.getNode(ISD::ADD, AmtVT, Amt,
2442 DAG.getConstant(-BitWidth, AmtVT));
2443 SDOperand Tmp6 = DAG.getNode(PPCISD::SHL, VT, Lo, Tmp5);
2444 SDOperand OutHi = DAG.getNode(ISD::OR, VT, Tmp4, Tmp6);
2445 SDOperand OutLo = DAG.getNode(PPCISD::SHL, VT, Lo, Amt);
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002446 SDOperand OutOps[] = { OutLo, OutHi };
Dan Gohman9ed06db2008-03-07 20:36:53 +00002447 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, VT),
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002448 OutOps, 2);
Chris Lattner1a635d62006-04-14 06:01:58 +00002449}
2450
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002451SDOperand PPCTargetLowering::LowerSRL_PARTS(SDOperand Op, SelectionDAG &DAG) {
Dan Gohman9ed06db2008-03-07 20:36:53 +00002452 MVT::ValueType VT = Op.getValueType();
2453 unsigned BitWidth = MVT::getSizeInBits(VT);
2454 assert(Op.getNumOperands() == 3 &&
2455 VT == Op.getOperand(1).getValueType() &&
2456 "Unexpected SRL!");
Chris Lattner1a635d62006-04-14 06:01:58 +00002457
Dan Gohman9ed06db2008-03-07 20:36:53 +00002458 // Expand into a bunch of logical ops. Note that these ops
Chris Lattner1a635d62006-04-14 06:01:58 +00002459 // depend on the PPC behavior for oversized shift amounts.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002460 SDOperand Lo = Op.getOperand(0);
2461 SDOperand Hi = Op.getOperand(1);
2462 SDOperand Amt = Op.getOperand(2);
Dan Gohman9ed06db2008-03-07 20:36:53 +00002463 MVT::ValueType AmtVT = Amt.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00002464
Dan Gohman9ed06db2008-03-07 20:36:53 +00002465 SDOperand Tmp1 = DAG.getNode(ISD::SUB, AmtVT,
2466 DAG.getConstant(BitWidth, AmtVT), Amt);
2467 SDOperand Tmp2 = DAG.getNode(PPCISD::SRL, VT, Lo, Amt);
2468 SDOperand Tmp3 = DAG.getNode(PPCISD::SHL, VT, Hi, Tmp1);
2469 SDOperand Tmp4 = DAG.getNode(ISD::OR , VT, Tmp2, Tmp3);
2470 SDOperand Tmp5 = DAG.getNode(ISD::ADD, AmtVT, Amt,
2471 DAG.getConstant(-BitWidth, AmtVT));
2472 SDOperand Tmp6 = DAG.getNode(PPCISD::SRL, VT, Hi, Tmp5);
2473 SDOperand OutLo = DAG.getNode(ISD::OR, VT, Tmp4, Tmp6);
2474 SDOperand OutHi = DAG.getNode(PPCISD::SRL, VT, Hi, Amt);
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002475 SDOperand OutOps[] = { OutLo, OutHi };
Dan Gohman9ed06db2008-03-07 20:36:53 +00002476 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, VT),
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002477 OutOps, 2);
Chris Lattner1a635d62006-04-14 06:01:58 +00002478}
2479
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002480SDOperand PPCTargetLowering::LowerSRA_PARTS(SDOperand Op, SelectionDAG &DAG) {
Dan Gohman9ed06db2008-03-07 20:36:53 +00002481 MVT::ValueType VT = Op.getValueType();
2482 unsigned BitWidth = MVT::getSizeInBits(VT);
2483 assert(Op.getNumOperands() == 3 &&
2484 VT == Op.getOperand(1).getValueType() &&
2485 "Unexpected SRA!");
Chris Lattner1a635d62006-04-14 06:01:58 +00002486
Dan Gohman9ed06db2008-03-07 20:36:53 +00002487 // Expand into a bunch of logical ops, followed by a select_cc.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002488 SDOperand Lo = Op.getOperand(0);
2489 SDOperand Hi = Op.getOperand(1);
2490 SDOperand Amt = Op.getOperand(2);
Dan Gohman9ed06db2008-03-07 20:36:53 +00002491 MVT::ValueType AmtVT = Amt.getValueType();
Chris Lattner1a635d62006-04-14 06:01:58 +00002492
Dan Gohman9ed06db2008-03-07 20:36:53 +00002493 SDOperand Tmp1 = DAG.getNode(ISD::SUB, AmtVT,
2494 DAG.getConstant(BitWidth, AmtVT), Amt);
2495 SDOperand Tmp2 = DAG.getNode(PPCISD::SRL, VT, Lo, Amt);
2496 SDOperand Tmp3 = DAG.getNode(PPCISD::SHL, VT, Hi, Tmp1);
2497 SDOperand Tmp4 = DAG.getNode(ISD::OR , VT, Tmp2, Tmp3);
2498 SDOperand Tmp5 = DAG.getNode(ISD::ADD, AmtVT, Amt,
2499 DAG.getConstant(-BitWidth, AmtVT));
2500 SDOperand Tmp6 = DAG.getNode(PPCISD::SRA, VT, Hi, Tmp5);
2501 SDOperand OutHi = DAG.getNode(PPCISD::SRA, VT, Hi, Amt);
2502 SDOperand OutLo = DAG.getSelectCC(Tmp5, DAG.getConstant(0, AmtVT),
Chris Lattner1a635d62006-04-14 06:01:58 +00002503 Tmp4, Tmp6, ISD::SETLE);
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002504 SDOperand OutOps[] = { OutLo, OutHi };
Dan Gohman9ed06db2008-03-07 20:36:53 +00002505 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, VT),
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00002506 OutOps, 2);
Chris Lattner1a635d62006-04-14 06:01:58 +00002507}
2508
2509//===----------------------------------------------------------------------===//
2510// Vector related lowering.
2511//
2512
Chris Lattnerac225ca2006-04-12 19:07:14 +00002513// If this is a vector of constants or undefs, get the bits. A bit in
2514// UndefBits is set if the corresponding element of the vector is an
2515// ISD::UNDEF value. For undefs, the corresponding VectorBits values are
2516// zero. Return true if this is not an array of constants, false if it is.
2517//
Chris Lattnerac225ca2006-04-12 19:07:14 +00002518static bool GetConstantBuildVectorBits(SDNode *BV, uint64_t VectorBits[2],
2519 uint64_t UndefBits[2]) {
2520 // Start with zero'd results.
2521 VectorBits[0] = VectorBits[1] = UndefBits[0] = UndefBits[1] = 0;
2522
2523 unsigned EltBitSize = MVT::getSizeInBits(BV->getOperand(0).getValueType());
2524 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
2525 SDOperand OpVal = BV->getOperand(i);
2526
2527 unsigned PartNo = i >= e/2; // In the upper 128 bits?
Chris Lattnerb17f1672006-04-16 01:01:29 +00002528 unsigned SlotNo = e/2 - (i & (e/2-1))-1; // Which subpiece of the uint64_t.
Chris Lattnerac225ca2006-04-12 19:07:14 +00002529
2530 uint64_t EltBits = 0;
2531 if (OpVal.getOpcode() == ISD::UNDEF) {
2532 uint64_t EltUndefBits = ~0U >> (32-EltBitSize);
2533 UndefBits[PartNo] |= EltUndefBits << (SlotNo*EltBitSize);
2534 continue;
2535 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
2536 EltBits = CN->getValue() & (~0U >> (32-EltBitSize));
2537 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
2538 assert(CN->getValueType(0) == MVT::f32 &&
2539 "Only one legal FP vector type!");
Dale Johanneseneaf08942007-08-31 04:03:46 +00002540 EltBits = FloatToBits(CN->getValueAPF().convertToFloat());
Chris Lattnerac225ca2006-04-12 19:07:14 +00002541 } else {
2542 // Nonconstant element.
2543 return true;
2544 }
2545
2546 VectorBits[PartNo] |= EltBits << (SlotNo*EltBitSize);
2547 }
2548
2549 //printf("%llx %llx %llx %llx\n",
2550 // VectorBits[0], VectorBits[1], UndefBits[0], UndefBits[1]);
2551 return false;
2552}
Chris Lattneref819f82006-03-20 06:33:01 +00002553
Chris Lattnerb17f1672006-04-16 01:01:29 +00002554// If this is a splat (repetition) of a value across the whole vector, return
2555// the smallest size that splats it. For example, "0x01010101010101..." is a
2556// splat of 0x01, 0x0101, and 0x01010101. We return SplatBits = 0x01 and
2557// SplatSize = 1 byte.
2558static bool isConstantSplat(const uint64_t Bits128[2],
2559 const uint64_t Undef128[2],
2560 unsigned &SplatBits, unsigned &SplatUndef,
2561 unsigned &SplatSize) {
2562
2563 // Don't let undefs prevent splats from matching. See if the top 64-bits are
2564 // the same as the lower 64-bits, ignoring undefs.
2565 if ((Bits128[0] & ~Undef128[1]) != (Bits128[1] & ~Undef128[0]))
2566 return false; // Can't be a splat if two pieces don't match.
2567
2568 uint64_t Bits64 = Bits128[0] | Bits128[1];
2569 uint64_t Undef64 = Undef128[0] & Undef128[1];
2570
2571 // Check that the top 32-bits are the same as the lower 32-bits, ignoring
2572 // undefs.
2573 if ((Bits64 & (~Undef64 >> 32)) != ((Bits64 >> 32) & ~Undef64))
2574 return false; // Can't be a splat if two pieces don't match.
2575
2576 uint32_t Bits32 = uint32_t(Bits64) | uint32_t(Bits64 >> 32);
2577 uint32_t Undef32 = uint32_t(Undef64) & uint32_t(Undef64 >> 32);
2578
2579 // If the top 16-bits are different than the lower 16-bits, ignoring
2580 // undefs, we have an i32 splat.
2581 if ((Bits32 & (~Undef32 >> 16)) != ((Bits32 >> 16) & ~Undef32)) {
2582 SplatBits = Bits32;
2583 SplatUndef = Undef32;
2584 SplatSize = 4;
2585 return true;
2586 }
2587
2588 uint16_t Bits16 = uint16_t(Bits32) | uint16_t(Bits32 >> 16);
2589 uint16_t Undef16 = uint16_t(Undef32) & uint16_t(Undef32 >> 16);
2590
2591 // If the top 8-bits are different than the lower 8-bits, ignoring
2592 // undefs, we have an i16 splat.
2593 if ((Bits16 & (uint16_t(~Undef16) >> 8)) != ((Bits16 >> 8) & ~Undef16)) {
2594 SplatBits = Bits16;
2595 SplatUndef = Undef16;
2596 SplatSize = 2;
2597 return true;
2598 }
2599
2600 // Otherwise, we have an 8-bit splat.
2601 SplatBits = uint8_t(Bits16) | uint8_t(Bits16 >> 8);
2602 SplatUndef = uint8_t(Undef16) & uint8_t(Undef16 >> 8);
2603 SplatSize = 1;
2604 return true;
2605}
2606
Chris Lattner4a998b92006-04-17 06:00:21 +00002607/// BuildSplatI - Build a canonical splati of Val with an element size of
2608/// SplatSize. Cast the result to VT.
2609static SDOperand BuildSplatI(int Val, unsigned SplatSize, MVT::ValueType VT,
2610 SelectionDAG &DAG) {
2611 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
Chris Lattner70fa4932006-12-01 01:45:39 +00002612
Chris Lattner4a998b92006-04-17 06:00:21 +00002613 static const MVT::ValueType VTys[] = { // canonical VT to use for each size.
2614 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
2615 };
Chris Lattner70fa4932006-12-01 01:45:39 +00002616
2617 MVT::ValueType ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
2618
2619 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
2620 if (Val == -1)
2621 SplatSize = 1;
2622
Chris Lattner4a998b92006-04-17 06:00:21 +00002623 MVT::ValueType CanonicalVT = VTys[SplatSize-1];
2624
2625 // Build a canonical splat for this value.
Dan Gohman51eaa862007-06-14 22:58:02 +00002626 SDOperand Elt = DAG.getConstant(Val, MVT::getVectorElementType(CanonicalVT));
Chris Lattnere2199452006-08-11 17:38:39 +00002627 SmallVector<SDOperand, 8> Ops;
2628 Ops.assign(MVT::getVectorNumElements(CanonicalVT), Elt);
2629 SDOperand Res = DAG.getNode(ISD::BUILD_VECTOR, CanonicalVT,
2630 &Ops[0], Ops.size());
Chris Lattner70fa4932006-12-01 01:45:39 +00002631 return DAG.getNode(ISD::BIT_CONVERT, ReqVT, Res);
Chris Lattner4a998b92006-04-17 06:00:21 +00002632}
2633
Chris Lattnere7c768e2006-04-18 03:24:30 +00002634/// BuildIntrinsicOp - Return a binary operator intrinsic node with the
Chris Lattner6876e662006-04-17 06:58:41 +00002635/// specified intrinsic ID.
Chris Lattnere7c768e2006-04-18 03:24:30 +00002636static SDOperand BuildIntrinsicOp(unsigned IID, SDOperand LHS, SDOperand RHS,
2637 SelectionDAG &DAG,
2638 MVT::ValueType DestVT = MVT::Other) {
2639 if (DestVT == MVT::Other) DestVT = LHS.getValueType();
2640 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DestVT,
Chris Lattner6876e662006-04-17 06:58:41 +00002641 DAG.getConstant(IID, MVT::i32), LHS, RHS);
2642}
2643
Chris Lattnere7c768e2006-04-18 03:24:30 +00002644/// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
2645/// specified intrinsic ID.
2646static SDOperand BuildIntrinsicOp(unsigned IID, SDOperand Op0, SDOperand Op1,
2647 SDOperand Op2, SelectionDAG &DAG,
2648 MVT::ValueType DestVT = MVT::Other) {
2649 if (DestVT == MVT::Other) DestVT = Op0.getValueType();
2650 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DestVT,
2651 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
2652}
2653
2654
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002655/// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
2656/// amount. The result has the specified value type.
2657static SDOperand BuildVSLDOI(SDOperand LHS, SDOperand RHS, unsigned Amt,
2658 MVT::ValueType VT, SelectionDAG &DAG) {
2659 // Force LHS/RHS to be the right type.
2660 LHS = DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, LHS);
2661 RHS = DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, RHS);
2662
Chris Lattnere2199452006-08-11 17:38:39 +00002663 SDOperand Ops[16];
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002664 for (unsigned i = 0; i != 16; ++i)
Chris Lattnere2199452006-08-11 17:38:39 +00002665 Ops[i] = DAG.getConstant(i+Amt, MVT::i32);
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002666 SDOperand T = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v16i8, LHS, RHS,
Chris Lattnere2199452006-08-11 17:38:39 +00002667 DAG.getNode(ISD::BUILD_VECTOR, MVT::v16i8, Ops,16));
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002668 return DAG.getNode(ISD::BIT_CONVERT, VT, T);
2669}
2670
Chris Lattnerf1b47082006-04-14 05:19:18 +00002671// If this is a case we can't handle, return null and let the default
2672// expansion code take care of it. If we CAN select this case, and if it
2673// selects to a single instruction, return Op. Otherwise, if we can codegen
2674// this case more efficiently than a constant pool load, lower it to the
2675// sequence of ops that should be used.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002676SDOperand PPCTargetLowering::LowerBUILD_VECTOR(SDOperand Op,
2677 SelectionDAG &DAG) {
Chris Lattnerf1b47082006-04-14 05:19:18 +00002678 // If this is a vector of constants or undefs, get the bits. A bit in
2679 // UndefBits is set if the corresponding element of the vector is an
2680 // ISD::UNDEF value. For undefs, the corresponding VectorBits values are
2681 // zero.
2682 uint64_t VectorBits[2];
2683 uint64_t UndefBits[2];
2684 if (GetConstantBuildVectorBits(Op.Val, VectorBits, UndefBits))
2685 return SDOperand(); // Not a constant vector.
2686
Chris Lattnerb17f1672006-04-16 01:01:29 +00002687 // If this is a splat (repetition) of a value across the whole vector, return
2688 // the smallest size that splats it. For example, "0x01010101010101..." is a
2689 // splat of 0x01, 0x0101, and 0x01010101. We return SplatBits = 0x01 and
2690 // SplatSize = 1 byte.
2691 unsigned SplatBits, SplatUndef, SplatSize;
2692 if (isConstantSplat(VectorBits, UndefBits, SplatBits, SplatUndef, SplatSize)){
2693 bool HasAnyUndefs = (UndefBits[0] | UndefBits[1]) != 0;
2694
2695 // First, handle single instruction cases.
2696
2697 // All zeros?
2698 if (SplatBits == 0) {
2699 // Canonicalize all zero vectors to be v4i32.
2700 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
2701 SDOperand Z = DAG.getConstant(0, MVT::i32);
2702 Z = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Z, Z, Z, Z);
2703 Op = DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Z);
2704 }
2705 return Op;
Chris Lattnerf1b47082006-04-14 05:19:18 +00002706 }
Chris Lattnerb17f1672006-04-16 01:01:29 +00002707
2708 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
2709 int32_t SextVal= int32_t(SplatBits << (32-8*SplatSize)) >> (32-8*SplatSize);
Chris Lattner4a998b92006-04-17 06:00:21 +00002710 if (SextVal >= -16 && SextVal <= 15)
2711 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG);
Chris Lattnerb17f1672006-04-16 01:01:29 +00002712
Chris Lattnerdbce85d2006-04-17 18:09:22 +00002713
2714 // Two instruction sequences.
2715
Chris Lattner4a998b92006-04-17 06:00:21 +00002716 // If this value is in the range [-32,30] and is even, use:
2717 // tmp = VSPLTI[bhw], result = add tmp, tmp
2718 if (SextVal >= -32 && SextVal <= 30 && (SextVal & 1) == 0) {
2719 Op = BuildSplatI(SextVal >> 1, SplatSize, Op.getValueType(), DAG);
2720 return DAG.getNode(ISD::ADD, Op.getValueType(), Op, Op);
2721 }
Chris Lattner6876e662006-04-17 06:58:41 +00002722
2723 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is
2724 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important
2725 // for fneg/fabs.
2726 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
2727 // Make -1 and vspltisw -1:
2728 SDOperand OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG);
2729
2730 // Make the VSLW intrinsic, computing 0x8000_0000.
Chris Lattnere7c768e2006-04-18 03:24:30 +00002731 SDOperand Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
2732 OnesV, DAG);
Chris Lattner6876e662006-04-17 06:58:41 +00002733
2734 // xor by OnesV to invert it.
2735 Res = DAG.getNode(ISD::XOR, MVT::v4i32, Res, OnesV);
2736 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Res);
2737 }
2738
2739 // Check to see if this is a wide variety of vsplti*, binop self cases.
2740 unsigned SplatBitSize = SplatSize*8;
Lauro Ramos Venancio1baa1972007-03-27 16:33:08 +00002741 static const signed char SplatCsts[] = {
Chris Lattner6876e662006-04-17 06:58:41 +00002742 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
Chris Lattnerdbce85d2006-04-17 18:09:22 +00002743 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
Chris Lattner6876e662006-04-17 06:58:41 +00002744 };
Chris Lattner15eb3292006-11-29 19:58:49 +00002745
Owen Anderson718cb662007-09-07 04:06:50 +00002746 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
Chris Lattner6876e662006-04-17 06:58:41 +00002747 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
2748 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1'
2749 int i = SplatCsts[idx];
2750
2751 // Figure out what shift amount will be used by altivec if shifted by i in
2752 // this splat size.
2753 unsigned TypeShiftAmt = i & (SplatBitSize-1);
2754
2755 // vsplti + shl self.
2756 if (SextVal == (i << (int)TypeShiftAmt)) {
Chris Lattner15eb3292006-11-29 19:58:49 +00002757 SDOperand Res = BuildSplatI(i, SplatSize, MVT::Other, DAG);
Chris Lattner6876e662006-04-17 06:58:41 +00002758 static const unsigned IIDs[] = { // Intrinsic to use for each size.
2759 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
2760 Intrinsic::ppc_altivec_vslw
2761 };
Chris Lattner15eb3292006-11-29 19:58:49 +00002762 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG);
2763 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00002764 }
2765
2766 // vsplti + srl self.
2767 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Chris Lattner15eb3292006-11-29 19:58:49 +00002768 SDOperand Res = BuildSplatI(i, SplatSize, MVT::Other, DAG);
Chris Lattner6876e662006-04-17 06:58:41 +00002769 static const unsigned IIDs[] = { // Intrinsic to use for each size.
2770 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
2771 Intrinsic::ppc_altivec_vsrw
2772 };
Chris Lattner15eb3292006-11-29 19:58:49 +00002773 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG);
2774 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00002775 }
2776
2777 // vsplti + sra self.
2778 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
Chris Lattner15eb3292006-11-29 19:58:49 +00002779 SDOperand Res = BuildSplatI(i, SplatSize, MVT::Other, DAG);
Chris Lattner6876e662006-04-17 06:58:41 +00002780 static const unsigned IIDs[] = { // Intrinsic to use for each size.
2781 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
2782 Intrinsic::ppc_altivec_vsraw
2783 };
Chris Lattner15eb3292006-11-29 19:58:49 +00002784 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG);
2785 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Res);
Chris Lattner6876e662006-04-17 06:58:41 +00002786 }
2787
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002788 // vsplti + rol self.
2789 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
2790 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
Chris Lattner15eb3292006-11-29 19:58:49 +00002791 SDOperand Res = BuildSplatI(i, SplatSize, MVT::Other, DAG);
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002792 static const unsigned IIDs[] = { // Intrinsic to use for each size.
2793 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
2794 Intrinsic::ppc_altivec_vrlw
2795 };
Chris Lattner15eb3292006-11-29 19:58:49 +00002796 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG);
2797 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Res);
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002798 }
2799
2800 // t = vsplti c, result = vsldoi t, t, 1
2801 if (SextVal == ((i << 8) | (i >> (TypeShiftAmt-8)))) {
2802 SDOperand T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG);
2803 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG);
2804 }
2805 // t = vsplti c, result = vsldoi t, t, 2
2806 if (SextVal == ((i << 16) | (i >> (TypeShiftAmt-16)))) {
2807 SDOperand T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG);
2808 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG);
2809 }
2810 // t = vsplti c, result = vsldoi t, t, 3
2811 if (SextVal == ((i << 24) | (i >> (TypeShiftAmt-24)))) {
2812 SDOperand T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG);
2813 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG);
2814 }
Chris Lattner6876e662006-04-17 06:58:41 +00002815 }
2816
Chris Lattner6876e662006-04-17 06:58:41 +00002817 // Three instruction sequences.
2818
Chris Lattnerdbce85d2006-04-17 18:09:22 +00002819 // Odd, in range [17,31]: (vsplti C)-(vsplti -16).
2820 if (SextVal >= 0 && SextVal <= 31) {
Chris Lattner15eb3292006-11-29 19:58:49 +00002821 SDOperand LHS = BuildSplatI(SextVal-16, SplatSize, MVT::Other, DAG);
2822 SDOperand RHS = BuildSplatI(-16, SplatSize, MVT::Other, DAG);
Dale Johannesen296c1762007-10-14 01:58:32 +00002823 LHS = DAG.getNode(ISD::SUB, LHS.getValueType(), LHS, RHS);
Chris Lattner15eb3292006-11-29 19:58:49 +00002824 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), LHS);
Chris Lattnerdbce85d2006-04-17 18:09:22 +00002825 }
2826 // Odd, in range [-31,-17]: (vsplti C)+(vsplti -16).
2827 if (SextVal >= -31 && SextVal <= 0) {
Chris Lattner15eb3292006-11-29 19:58:49 +00002828 SDOperand LHS = BuildSplatI(SextVal+16, SplatSize, MVT::Other, DAG);
2829 SDOperand RHS = BuildSplatI(-16, SplatSize, MVT::Other, DAG);
Dale Johannesen296c1762007-10-14 01:58:32 +00002830 LHS = DAG.getNode(ISD::ADD, LHS.getValueType(), LHS, RHS);
Chris Lattner15eb3292006-11-29 19:58:49 +00002831 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), LHS);
Chris Lattnerf1b47082006-04-14 05:19:18 +00002832 }
2833 }
Chris Lattnerb17f1672006-04-16 01:01:29 +00002834
Chris Lattnerf1b47082006-04-14 05:19:18 +00002835 return SDOperand();
2836}
2837
Chris Lattner59138102006-04-17 05:28:54 +00002838/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
2839/// the specified operations to build the shuffle.
2840static SDOperand GeneratePerfectShuffle(unsigned PFEntry, SDOperand LHS,
2841 SDOperand RHS, SelectionDAG &DAG) {
2842 unsigned OpNum = (PFEntry >> 26) & 0x0F;
2843 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
2844 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
2845
2846 enum {
Chris Lattner00402c72006-05-16 04:20:24 +00002847 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 +00002848 OP_VMRGHW,
2849 OP_VMRGLW,
2850 OP_VSPLTISW0,
2851 OP_VSPLTISW1,
2852 OP_VSPLTISW2,
2853 OP_VSPLTISW3,
2854 OP_VSLDOI4,
2855 OP_VSLDOI8,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +00002856 OP_VSLDOI12
Chris Lattner59138102006-04-17 05:28:54 +00002857 };
2858
2859 if (OpNum == OP_COPY) {
2860 if (LHSID == (1*9+2)*9+3) return LHS;
2861 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
2862 return RHS;
2863 }
2864
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002865 SDOperand OpLHS, OpRHS;
2866 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG);
2867 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG);
2868
Chris Lattner59138102006-04-17 05:28:54 +00002869 unsigned ShufIdxs[16];
2870 switch (OpNum) {
2871 default: assert(0 && "Unknown i32 permute!");
2872 case OP_VMRGHW:
2873 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3;
2874 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
2875 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7;
2876 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
2877 break;
2878 case OP_VMRGLW:
2879 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
2880 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
2881 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
2882 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
2883 break;
2884 case OP_VSPLTISW0:
2885 for (unsigned i = 0; i != 16; ++i)
2886 ShufIdxs[i] = (i&3)+0;
2887 break;
2888 case OP_VSPLTISW1:
2889 for (unsigned i = 0; i != 16; ++i)
2890 ShufIdxs[i] = (i&3)+4;
2891 break;
2892 case OP_VSPLTISW2:
2893 for (unsigned i = 0; i != 16; ++i)
2894 ShufIdxs[i] = (i&3)+8;
2895 break;
2896 case OP_VSPLTISW3:
2897 for (unsigned i = 0; i != 16; ++i)
2898 ShufIdxs[i] = (i&3)+12;
2899 break;
2900 case OP_VSLDOI4:
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002901 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG);
Chris Lattner59138102006-04-17 05:28:54 +00002902 case OP_VSLDOI8:
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002903 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG);
Chris Lattner59138102006-04-17 05:28:54 +00002904 case OP_VSLDOI12:
Chris Lattnerbdd558c2006-04-17 17:55:10 +00002905 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG);
Chris Lattner59138102006-04-17 05:28:54 +00002906 }
Chris Lattnere2199452006-08-11 17:38:39 +00002907 SDOperand Ops[16];
Chris Lattner59138102006-04-17 05:28:54 +00002908 for (unsigned i = 0; i != 16; ++i)
Chris Lattnere2199452006-08-11 17:38:39 +00002909 Ops[i] = DAG.getConstant(ShufIdxs[i], MVT::i32);
Chris Lattner59138102006-04-17 05:28:54 +00002910
2911 return DAG.getNode(ISD::VECTOR_SHUFFLE, OpLHS.getValueType(), OpLHS, OpRHS,
Chris Lattnere2199452006-08-11 17:38:39 +00002912 DAG.getNode(ISD::BUILD_VECTOR, MVT::v16i8, Ops, 16));
Chris Lattner59138102006-04-17 05:28:54 +00002913}
2914
Chris Lattnerf1b47082006-04-14 05:19:18 +00002915/// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this
2916/// is a shuffle we can handle in a single instruction, return it. Otherwise,
2917/// return the code it can be lowered into. Worst case, it can always be
2918/// lowered into a vperm.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00002919SDOperand PPCTargetLowering::LowerVECTOR_SHUFFLE(SDOperand Op,
2920 SelectionDAG &DAG) {
Chris Lattnerf1b47082006-04-14 05:19:18 +00002921 SDOperand V1 = Op.getOperand(0);
2922 SDOperand V2 = Op.getOperand(1);
2923 SDOperand PermMask = Op.getOperand(2);
2924
2925 // Cases that are handled by instructions that take permute immediates
2926 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
2927 // selected by the instruction selector.
2928 if (V2.getOpcode() == ISD::UNDEF) {
2929 if (PPC::isSplatShuffleMask(PermMask.Val, 1) ||
2930 PPC::isSplatShuffleMask(PermMask.Val, 2) ||
2931 PPC::isSplatShuffleMask(PermMask.Val, 4) ||
2932 PPC::isVPKUWUMShuffleMask(PermMask.Val, true) ||
2933 PPC::isVPKUHUMShuffleMask(PermMask.Val, true) ||
2934 PPC::isVSLDOIShuffleMask(PermMask.Val, true) != -1 ||
2935 PPC::isVMRGLShuffleMask(PermMask.Val, 1, true) ||
2936 PPC::isVMRGLShuffleMask(PermMask.Val, 2, true) ||
2937 PPC::isVMRGLShuffleMask(PermMask.Val, 4, true) ||
2938 PPC::isVMRGHShuffleMask(PermMask.Val, 1, true) ||
2939 PPC::isVMRGHShuffleMask(PermMask.Val, 2, true) ||
2940 PPC::isVMRGHShuffleMask(PermMask.Val, 4, true)) {
2941 return Op;
2942 }
2943 }
2944
2945 // Altivec has a variety of "shuffle immediates" that take two vector inputs
2946 // and produce a fixed permutation. If any of these match, do not lower to
2947 // VPERM.
2948 if (PPC::isVPKUWUMShuffleMask(PermMask.Val, false) ||
2949 PPC::isVPKUHUMShuffleMask(PermMask.Val, false) ||
2950 PPC::isVSLDOIShuffleMask(PermMask.Val, false) != -1 ||
2951 PPC::isVMRGLShuffleMask(PermMask.Val, 1, false) ||
2952 PPC::isVMRGLShuffleMask(PermMask.Val, 2, false) ||
2953 PPC::isVMRGLShuffleMask(PermMask.Val, 4, false) ||
2954 PPC::isVMRGHShuffleMask(PermMask.Val, 1, false) ||
2955 PPC::isVMRGHShuffleMask(PermMask.Val, 2, false) ||
2956 PPC::isVMRGHShuffleMask(PermMask.Val, 4, false))
2957 return Op;
2958
Chris Lattner59138102006-04-17 05:28:54 +00002959 // Check to see if this is a shuffle of 4-byte values. If so, we can use our
2960 // perfect shuffle table to emit an optimal matching sequence.
2961 unsigned PFIndexes[4];
2962 bool isFourElementShuffle = true;
2963 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
2964 unsigned EltNo = 8; // Start out undef.
2965 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte.
2966 if (PermMask.getOperand(i*4+j).getOpcode() == ISD::UNDEF)
2967 continue; // Undef, ignore it.
2968
2969 unsigned ByteSource =
2970 cast<ConstantSDNode>(PermMask.getOperand(i*4+j))->getValue();
2971 if ((ByteSource & 3) != j) {
2972 isFourElementShuffle = false;
2973 break;
2974 }
2975
2976 if (EltNo == 8) {
2977 EltNo = ByteSource/4;
2978 } else if (EltNo != ByteSource/4) {
2979 isFourElementShuffle = false;
2980 break;
2981 }
2982 }
2983 PFIndexes[i] = EltNo;
2984 }
2985
2986 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
2987 // perfect shuffle vector to determine if it is cost effective to do this as
2988 // discrete instructions, or whether we should use a vperm.
2989 if (isFourElementShuffle) {
2990 // Compute the index in the perfect shuffle table.
2991 unsigned PFTableIndex =
2992 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
2993
2994 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
2995 unsigned Cost = (PFEntry >> 30);
2996
2997 // Determining when to avoid vperm is tricky. Many things affect the cost
2998 // of vperm, particularly how many times the perm mask needs to be computed.
2999 // For example, if the perm mask can be hoisted out of a loop or is already
3000 // used (perhaps because there are multiple permutes with the same shuffle
3001 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of
3002 // the loop requires an extra register.
3003 //
3004 // As a compromise, we only emit discrete instructions if the shuffle can be
3005 // generated in 3 or fewer operations. When we have loop information
3006 // available, if this block is within a loop, we should avoid using vperm
3007 // for 3-operation perms and use a constant pool load instead.
3008 if (Cost < 3)
3009 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG);
3010 }
Chris Lattnerf1b47082006-04-14 05:19:18 +00003011
3012 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
3013 // vector that will get spilled to the constant pool.
3014 if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
3015
3016 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
3017 // that it is in input element units, not in bytes. Convert now.
Dan Gohman51eaa862007-06-14 22:58:02 +00003018 MVT::ValueType EltVT = MVT::getVectorElementType(V1.getValueType());
Chris Lattnerf1b47082006-04-14 05:19:18 +00003019 unsigned BytesPerElement = MVT::getSizeInBits(EltVT)/8;
3020
Chris Lattnere2199452006-08-11 17:38:39 +00003021 SmallVector<SDOperand, 16> ResultMask;
Chris Lattnerf1b47082006-04-14 05:19:18 +00003022 for (unsigned i = 0, e = PermMask.getNumOperands(); i != e; ++i) {
Chris Lattner730b4562006-04-15 23:48:05 +00003023 unsigned SrcElt;
3024 if (PermMask.getOperand(i).getOpcode() == ISD::UNDEF)
3025 SrcElt = 0;
3026 else
3027 SrcElt = cast<ConstantSDNode>(PermMask.getOperand(i))->getValue();
Chris Lattnerf1b47082006-04-14 05:19:18 +00003028
3029 for (unsigned j = 0; j != BytesPerElement; ++j)
3030 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
3031 MVT::i8));
3032 }
3033
Chris Lattnere2199452006-08-11 17:38:39 +00003034 SDOperand VPermMask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v16i8,
3035 &ResultMask[0], ResultMask.size());
Chris Lattnerf1b47082006-04-14 05:19:18 +00003036 return DAG.getNode(PPCISD::VPERM, V1.getValueType(), V1, V2, VPermMask);
3037}
3038
Chris Lattner90564f22006-04-18 17:59:36 +00003039/// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
3040/// altivec comparison. If it is, return true and fill in Opc/isDot with
3041/// information about the intrinsic.
3042static bool getAltivecCompareInfo(SDOperand Intrin, int &CompareOpc,
3043 bool &isDot) {
3044 unsigned IntrinsicID = cast<ConstantSDNode>(Intrin.getOperand(0))->getValue();
3045 CompareOpc = -1;
3046 isDot = false;
3047 switch (IntrinsicID) {
3048 default: return false;
3049 // Comparison predicates.
Chris Lattner1a635d62006-04-14 06:01:58 +00003050 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break;
3051 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
3052 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break;
3053 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break;
3054 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
3055 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
3056 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
3057 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
3058 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
3059 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
3060 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
3061 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
3062 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
3063
3064 // Normal Comparisons.
3065 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break;
3066 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break;
3067 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break;
3068 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break;
3069 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break;
3070 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break;
3071 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break;
3072 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break;
3073 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break;
3074 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break;
3075 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break;
3076 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break;
3077 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break;
3078 }
Chris Lattner90564f22006-04-18 17:59:36 +00003079 return true;
3080}
3081
3082/// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
3083/// lower, do it, otherwise return null.
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003084SDOperand PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDOperand Op,
3085 SelectionDAG &DAG) {
Chris Lattner90564f22006-04-18 17:59:36 +00003086 // If this is a lowered altivec predicate compare, CompareOpc is set to the
3087 // opcode number of the comparison.
3088 int CompareOpc;
3089 bool isDot;
3090 if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
3091 return SDOperand(); // Don't custom lower most intrinsics.
Chris Lattner1a635d62006-04-14 06:01:58 +00003092
Chris Lattner90564f22006-04-18 17:59:36 +00003093 // If this is a non-dot comparison, make the VCMP node and we are done.
Chris Lattner1a635d62006-04-14 06:01:58 +00003094 if (!isDot) {
3095 SDOperand Tmp = DAG.getNode(PPCISD::VCMP, Op.getOperand(2).getValueType(),
3096 Op.getOperand(1), Op.getOperand(2),
3097 DAG.getConstant(CompareOpc, MVT::i32));
3098 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Tmp);
3099 }
3100
3101 // Create the PPCISD altivec 'dot' comparison node.
Chris Lattner79e490a2006-08-11 17:18:05 +00003102 SDOperand Ops[] = {
3103 Op.getOperand(2), // LHS
3104 Op.getOperand(3), // RHS
3105 DAG.getConstant(CompareOpc, MVT::i32)
3106 };
Chris Lattner1a635d62006-04-14 06:01:58 +00003107 std::vector<MVT::ValueType> VTs;
Chris Lattner1a635d62006-04-14 06:01:58 +00003108 VTs.push_back(Op.getOperand(2).getValueType());
3109 VTs.push_back(MVT::Flag);
Chris Lattner79e490a2006-08-11 17:18:05 +00003110 SDOperand CompNode = DAG.getNode(PPCISD::VCMPo, VTs, Ops, 3);
Chris Lattner1a635d62006-04-14 06:01:58 +00003111
3112 // Now that we have the comparison, emit a copy from the CR to a GPR.
3113 // This is flagged to the above dot comparison.
3114 SDOperand Flags = DAG.getNode(PPCISD::MFCR, MVT::i32,
3115 DAG.getRegister(PPC::CR6, MVT::i32),
3116 CompNode.getValue(1));
3117
3118 // Unpack the result based on how the target uses it.
3119 unsigned BitNo; // Bit # of CR6.
3120 bool InvertBit; // Invert result?
3121 switch (cast<ConstantSDNode>(Op.getOperand(1))->getValue()) {
3122 default: // Can't happen, don't crash on invalid number though.
3123 case 0: // Return the value of the EQ bit of CR6.
3124 BitNo = 0; InvertBit = false;
3125 break;
3126 case 1: // Return the inverted value of the EQ bit of CR6.
3127 BitNo = 0; InvertBit = true;
3128 break;
3129 case 2: // Return the value of the LT bit of CR6.
3130 BitNo = 2; InvertBit = false;
3131 break;
3132 case 3: // Return the inverted value of the LT bit of CR6.
3133 BitNo = 2; InvertBit = true;
3134 break;
3135 }
3136
3137 // Shift the bit into the low position.
3138 Flags = DAG.getNode(ISD::SRL, MVT::i32, Flags,
3139 DAG.getConstant(8-(3-BitNo), MVT::i32));
3140 // Isolate the bit.
3141 Flags = DAG.getNode(ISD::AND, MVT::i32, Flags,
3142 DAG.getConstant(1, MVT::i32));
3143
3144 // If we are supposed to, toggle the bit.
3145 if (InvertBit)
3146 Flags = DAG.getNode(ISD::XOR, MVT::i32, Flags,
3147 DAG.getConstant(1, MVT::i32));
3148 return Flags;
3149}
3150
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003151SDOperand PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDOperand Op,
3152 SelectionDAG &DAG) {
Chris Lattner1a635d62006-04-14 06:01:58 +00003153 // Create a stack slot that is 16-byte aligned.
3154 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3155 int FrameIdx = FrameInfo->CreateStackObject(16, 16);
Chris Lattner0d72a202006-07-28 16:45:47 +00003156 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3157 SDOperand FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
Chris Lattner1a635d62006-04-14 06:01:58 +00003158
3159 // Store the input value into Value#0 of the stack slot.
Evan Cheng786225a2006-10-05 23:01:46 +00003160 SDOperand Store = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003161 Op.getOperand(0), FIdx, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00003162 // Load it out.
Evan Cheng466685d2006-10-09 20:57:25 +00003163 return DAG.getLoad(Op.getValueType(), Store, FIdx, NULL, 0);
Chris Lattner1a635d62006-04-14 06:01:58 +00003164}
3165
Dale Johannesen5b3b6952008-03-04 23:17:14 +00003166SDOperand PPCTargetLowering::LowerMUL(SDOperand Op, SelectionDAG &DAG) {
Chris Lattner72dd9bd2006-04-18 03:43:48 +00003167 if (Op.getValueType() == MVT::v4i32) {
3168 SDOperand LHS = Op.getOperand(0), RHS = Op.getOperand(1);
3169
3170 SDOperand Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG);
3171 SDOperand Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG); // +16 as shift amt.
3172
3173 SDOperand RHSSwap = // = vrlw RHS, 16
3174 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG);
3175
3176 // Shrinkify inputs to v8i16.
3177 LHS = DAG.getNode(ISD::BIT_CONVERT, MVT::v8i16, LHS);
3178 RHS = DAG.getNode(ISD::BIT_CONVERT, MVT::v8i16, RHS);
3179 RHSSwap = DAG.getNode(ISD::BIT_CONVERT, MVT::v8i16, RHSSwap);
3180
3181 // Low parts multiplied together, generating 32-bit results (we ignore the
3182 // top parts).
3183 SDOperand LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
3184 LHS, RHS, DAG, MVT::v4i32);
3185
3186 SDOperand HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
3187 LHS, RHSSwap, Zero, DAG, MVT::v4i32);
3188 // Shift the high parts up 16 bits.
3189 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd, Neg16, DAG);
3190 return DAG.getNode(ISD::ADD, MVT::v4i32, LoProd, HiProd);
3191 } else if (Op.getValueType() == MVT::v8i16) {
3192 SDOperand LHS = Op.getOperand(0), RHS = Op.getOperand(1);
3193
Chris Lattnercea2aa72006-04-18 04:28:57 +00003194 SDOperand Zero = BuildSplatI(0, 1, MVT::v8i16, DAG);
Chris Lattner72dd9bd2006-04-18 03:43:48 +00003195
Chris Lattnercea2aa72006-04-18 04:28:57 +00003196 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
3197 LHS, RHS, Zero, DAG);
Chris Lattner19a81522006-04-18 03:57:35 +00003198 } else if (Op.getValueType() == MVT::v16i8) {
3199 SDOperand LHS = Op.getOperand(0), RHS = Op.getOperand(1);
3200
3201 // Multiply the even 8-bit parts, producing 16-bit sums.
3202 SDOperand EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
3203 LHS, RHS, DAG, MVT::v8i16);
3204 EvenParts = DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, EvenParts);
3205
3206 // Multiply the odd 8-bit parts, producing 16-bit sums.
3207 SDOperand OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
3208 LHS, RHS, DAG, MVT::v8i16);
3209 OddParts = DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, OddParts);
3210
3211 // Merge the results together.
Chris Lattnere2199452006-08-11 17:38:39 +00003212 SDOperand Ops[16];
Chris Lattner19a81522006-04-18 03:57:35 +00003213 for (unsigned i = 0; i != 8; ++i) {
Chris Lattnere2199452006-08-11 17:38:39 +00003214 Ops[i*2 ] = DAG.getConstant(2*i+1, MVT::i8);
3215 Ops[i*2+1] = DAG.getConstant(2*i+1+16, MVT::i8);
Chris Lattner19a81522006-04-18 03:57:35 +00003216 }
Chris Lattner19a81522006-04-18 03:57:35 +00003217 return DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v16i8, EvenParts, OddParts,
Chris Lattnere2199452006-08-11 17:38:39 +00003218 DAG.getNode(ISD::BUILD_VECTOR, MVT::v16i8, Ops, 16));
Chris Lattner72dd9bd2006-04-18 03:43:48 +00003219 } else {
3220 assert(0 && "Unknown mul to lower!");
3221 abort();
3222 }
Chris Lattnere7c768e2006-04-18 03:24:30 +00003223}
3224
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00003225/// LowerOperation - Provide custom lowering hooks for some operations.
3226///
Nate Begeman21e463b2005-10-16 05:39:50 +00003227SDOperand PPCTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00003228 switch (Op.getOpcode()) {
3229 default: assert(0 && "Wasn't expecting to be able to lower this!");
Chris Lattner1a635d62006-04-14 06:01:58 +00003230 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
3231 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +00003232 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Nate Begeman37efe672006-04-22 18:53:45 +00003233 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Chris Lattner1a635d62006-04-14 06:01:58 +00003234 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nicolas Geoffray01119992007-04-03 13:59:52 +00003235 case ISD::VASTART:
3236 return LowerVASTART(Op, DAG, VarArgsFrameIndex, VarArgsStackOffset,
3237 VarArgsNumGPR, VarArgsNumFPR, PPCSubTarget);
3238
3239 case ISD::VAARG:
3240 return LowerVAARG(Op, DAG, VarArgsFrameIndex, VarArgsStackOffset,
3241 VarArgsNumGPR, VarArgsNumFPR, PPCSubTarget);
3242
Chris Lattneref957102006-06-21 00:34:03 +00003243 case ISD::FORMAL_ARGUMENTS:
Nicolas Geoffray01119992007-04-03 13:59:52 +00003244 return LowerFORMAL_ARGUMENTS(Op, DAG, VarArgsFrameIndex,
3245 VarArgsStackOffset, VarArgsNumGPR,
3246 VarArgsNumFPR, PPCSubTarget);
3247
Chris Lattner9f0bc652007-02-25 05:34:32 +00003248 case ISD::CALL: return LowerCALL(Op, DAG, PPCSubTarget);
Chris Lattnerb9a7bea2007-03-06 00:59:59 +00003249 case ISD::RET: return LowerRET(Op, DAG, getTargetMachine());
Jim Laskeyefc7e522006-12-04 22:04:42 +00003250 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, PPCSubTarget);
Chris Lattner9f0bc652007-02-25 05:34:32 +00003251 case ISD::DYNAMIC_STACKALLOC:
3252 return LowerDYNAMIC_STACKALLOC(Op, DAG, PPCSubTarget);
Chris Lattner7c0d6642005-10-02 06:37:13 +00003253
Chris Lattner1a635d62006-04-14 06:01:58 +00003254 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
3255 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
3256 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003257 case ISD::FP_ROUND_INREG: return LowerFP_ROUND_INREG(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00003258 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00003259
Chris Lattner1a635d62006-04-14 06:01:58 +00003260 // Lower 64-bit shifts.
Chris Lattner3fe6c1d2006-09-20 03:47:40 +00003261 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG);
3262 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG);
3263 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00003264
Chris Lattner1a635d62006-04-14 06:01:58 +00003265 // Vector-related lowering.
3266 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
3267 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
3268 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
3269 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
Chris Lattnere7c768e2006-04-18 03:24:30 +00003270 case ISD::MUL: return LowerMUL(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00003271
Chris Lattner3fc027d2007-12-08 06:59:59 +00003272 // Frame & Return address.
3273 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00003274 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Chris Lattnerbc11c342005-08-31 20:23:54 +00003275 }
Chris Lattnere4bc9ea2005-08-26 00:52:45 +00003276 return SDOperand();
3277}
3278
Chris Lattner1f873002007-11-28 18:44:47 +00003279SDNode *PPCTargetLowering::ExpandOperationResult(SDNode *N, SelectionDAG &DAG) {
3280 switch (N->getOpcode()) {
3281 default: assert(0 && "Wasn't expecting to be able to lower this!");
3282 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(SDOperand(N, 0), DAG).Val;
3283 }
3284}
3285
3286
Chris Lattner1a635d62006-04-14 06:01:58 +00003287//===----------------------------------------------------------------------===//
3288// Other Lowering Code
3289//===----------------------------------------------------------------------===//
3290
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00003291MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00003292PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
3293 MachineBasicBlock *BB) {
Evan Chengc0f64ff2006-11-27 23:37:22 +00003294 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Chris Lattnerc08f9022006-06-27 00:04:13 +00003295 assert((MI->getOpcode() == PPC::SELECT_CC_I4 ||
3296 MI->getOpcode() == PPC::SELECT_CC_I8 ||
Chris Lattner919c0322005-10-01 01:35:02 +00003297 MI->getOpcode() == PPC::SELECT_CC_F4 ||
Chris Lattner710ff322006-04-08 22:45:08 +00003298 MI->getOpcode() == PPC::SELECT_CC_F8 ||
3299 MI->getOpcode() == PPC::SELECT_CC_VRRC) &&
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00003300 "Unexpected instr type to insert");
3301
3302 // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
3303 // control-flow pattern. The incoming instruction knows the destination vreg
3304 // to set, the condition code register to branch on, the true/false values to
3305 // select between, and a branch opcode to use.
3306 const BasicBlock *LLVM_BB = BB->getBasicBlock();
3307 ilist<MachineBasicBlock>::iterator It = BB;
3308 ++It;
3309
3310 // thisMBB:
3311 // ...
3312 // TrueVal = ...
3313 // cmpTY ccX, r1, r2
3314 // bCC copy1MBB
3315 // fallthrough --> copy0MBB
3316 MachineBasicBlock *thisMBB = BB;
3317 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
3318 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
Chris Lattnerdf4ed632006-11-17 22:10:59 +00003319 unsigned SelectPred = MI->getOperand(4).getImm();
Evan Chengc0f64ff2006-11-27 23:37:22 +00003320 BuildMI(BB, TII->get(PPC::BCC))
Chris Lattner18258c62006-11-17 22:37:34 +00003321 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00003322 MachineFunction *F = BB->getParent();
3323 F->getBasicBlockList().insert(It, copy0MBB);
3324 F->getBasicBlockList().insert(It, sinkMBB);
Nate Begemanf15485a2006-03-27 01:32:24 +00003325 // Update machine-CFG edges by first adding all successors of the current
3326 // block to the new block which will contain the Phi node for the select.
3327 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
3328 e = BB->succ_end(); i != e; ++i)
3329 sinkMBB->addSuccessor(*i);
3330 // Next, remove all successors of the current block, and add the true
3331 // and fallthrough blocks as its successors.
3332 while(!BB->succ_empty())
3333 BB->removeSuccessor(BB->succ_begin());
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00003334 BB->addSuccessor(copy0MBB);
3335 BB->addSuccessor(sinkMBB);
3336
3337 // copy0MBB:
3338 // %FalseValue = ...
3339 // # fallthrough to sinkMBB
3340 BB = copy0MBB;
3341
3342 // Update machine-CFG edges
3343 BB->addSuccessor(sinkMBB);
3344
3345 // sinkMBB:
3346 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
3347 // ...
3348 BB = sinkMBB;
Evan Chengc0f64ff2006-11-27 23:37:22 +00003349 BuildMI(BB, TII->get(PPC::PHI), MI->getOperand(0).getReg())
Chris Lattner8a2d3ca2005-08-26 21:23:58 +00003350 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
3351 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
3352
3353 delete MI; // The pseudo instruction is gone now.
3354 return BB;
3355}
3356
Chris Lattner1a635d62006-04-14 06:01:58 +00003357//===----------------------------------------------------------------------===//
3358// Target Optimization Hooks
3359//===----------------------------------------------------------------------===//
3360
Chris Lattner8c13d0a2006-03-01 04:57:39 +00003361SDOperand PPCTargetLowering::PerformDAGCombine(SDNode *N,
3362 DAGCombinerInfo &DCI) const {
3363 TargetMachine &TM = getTargetMachine();
3364 SelectionDAG &DAG = DCI.DAG;
3365 switch (N->getOpcode()) {
3366 default: break;
Chris Lattnercf9d0ac2006-09-19 05:22:59 +00003367 case PPCISD::SHL:
3368 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
3369 if (C->getValue() == 0) // 0 << V -> 0.
3370 return N->getOperand(0);
3371 }
3372 break;
3373 case PPCISD::SRL:
3374 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
3375 if (C->getValue() == 0) // 0 >>u V -> 0.
3376 return N->getOperand(0);
3377 }
3378 break;
3379 case PPCISD::SRA:
3380 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
3381 if (C->getValue() == 0 || // 0 >>s V -> 0.
3382 C->isAllOnesValue()) // -1 >>s V -> -1.
3383 return N->getOperand(0);
3384 }
3385 break;
3386
Chris Lattner8c13d0a2006-03-01 04:57:39 +00003387 case ISD::SINT_TO_FP:
Chris Lattnera7a58542006-06-16 17:34:12 +00003388 if (TM.getSubtarget<PPCSubtarget>().has64BitSupport()) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00003389 if (N->getOperand(0).getOpcode() == ISD::FP_TO_SINT) {
3390 // Turn (sint_to_fp (fp_to_sint X)) -> fctidz/fcfid without load/stores.
3391 // We allow the src/dst to be either f32/f64, but the intermediate
3392 // type must be i64.
Dale Johannesen79217062007-10-23 23:20:14 +00003393 if (N->getOperand(0).getValueType() == MVT::i64 &&
3394 N->getOperand(0).getOperand(0).getValueType() != MVT::ppcf128) {
Chris Lattnerecfe55e2006-03-22 05:30:33 +00003395 SDOperand Val = N->getOperand(0).getOperand(0);
3396 if (Val.getValueType() == MVT::f32) {
3397 Val = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Val);
3398 DCI.AddToWorklist(Val.Val);
3399 }
3400
3401 Val = DAG.getNode(PPCISD::FCTIDZ, MVT::f64, Val);
Chris Lattner8c13d0a2006-03-01 04:57:39 +00003402 DCI.AddToWorklist(Val.Val);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00003403 Val = DAG.getNode(PPCISD::FCFID, MVT::f64, Val);
Chris Lattner8c13d0a2006-03-01 04:57:39 +00003404 DCI.AddToWorklist(Val.Val);
Chris Lattnerecfe55e2006-03-22 05:30:33 +00003405 if (N->getValueType(0) == MVT::f32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003406 Val = DAG.getNode(ISD::FP_ROUND, MVT::f32, Val,
3407 DAG.getIntPtrConstant(0));
Chris Lattnerecfe55e2006-03-22 05:30:33 +00003408 DCI.AddToWorklist(Val.Val);
3409 }
3410 return Val;
3411 } else if (N->getOperand(0).getValueType() == MVT::i32) {
3412 // If the intermediate type is i32, we can avoid the load/store here
3413 // too.
Chris Lattner8c13d0a2006-03-01 04:57:39 +00003414 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00003415 }
3416 }
3417 break;
Chris Lattner51269842006-03-01 05:50:56 +00003418 case ISD::STORE:
3419 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
3420 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() &&
Chris Lattnera7a02fb2008-01-18 16:54:56 +00003421 !cast<StoreSDNode>(N)->isTruncatingStore() &&
Chris Lattner51269842006-03-01 05:50:56 +00003422 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
Dale Johannesen79217062007-10-23 23:20:14 +00003423 N->getOperand(1).getValueType() == MVT::i32 &&
3424 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
Chris Lattner51269842006-03-01 05:50:56 +00003425 SDOperand Val = N->getOperand(1).getOperand(0);
3426 if (Val.getValueType() == MVT::f32) {
3427 Val = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Val);
3428 DCI.AddToWorklist(Val.Val);
3429 }
3430 Val = DAG.getNode(PPCISD::FCTIWZ, MVT::f64, Val);
3431 DCI.AddToWorklist(Val.Val);
3432
3433 Val = DAG.getNode(PPCISD::STFIWX, MVT::Other, N->getOperand(0), Val,
3434 N->getOperand(2), N->getOperand(3));
3435 DCI.AddToWorklist(Val.Val);
3436 return Val;
3437 }
Chris Lattnerd9989382006-07-10 20:56:58 +00003438
3439 // Turn STORE (BSWAP) -> sthbrx/stwbrx.
3440 if (N->getOperand(1).getOpcode() == ISD::BSWAP &&
3441 N->getOperand(1).Val->hasOneUse() &&
3442 (N->getOperand(1).getValueType() == MVT::i32 ||
3443 N->getOperand(1).getValueType() == MVT::i16)) {
3444 SDOperand BSwapOp = N->getOperand(1).getOperand(0);
3445 // Do an any-extend to 32-bits if this is a half-word input.
3446 if (BSwapOp.getValueType() == MVT::i16)
3447 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, BSwapOp);
3448
3449 return DAG.getNode(PPCISD::STBRX, MVT::Other, N->getOperand(0), BSwapOp,
3450 N->getOperand(2), N->getOperand(3),
3451 DAG.getValueType(N->getOperand(1).getValueType()));
3452 }
3453 break;
3454 case ISD::BSWAP:
3455 // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
Evan Cheng466685d2006-10-09 20:57:25 +00003456 if (ISD::isNON_EXTLoad(N->getOperand(0).Val) &&
Chris Lattnerd9989382006-07-10 20:56:58 +00003457 N->getOperand(0).hasOneUse() &&
3458 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16)) {
3459 SDOperand Load = N->getOperand(0);
Evan Cheng466685d2006-10-09 20:57:25 +00003460 LoadSDNode *LD = cast<LoadSDNode>(Load);
Chris Lattnerd9989382006-07-10 20:56:58 +00003461 // Create the byte-swapping load.
3462 std::vector<MVT::ValueType> VTs;
3463 VTs.push_back(MVT::i32);
3464 VTs.push_back(MVT::Other);
Dan Gohman69de1932008-02-06 22:27:42 +00003465 SDOperand MO = DAG.getMemOperand(LD->getMemOperand());
Chris Lattner79e490a2006-08-11 17:18:05 +00003466 SDOperand Ops[] = {
Evan Cheng466685d2006-10-09 20:57:25 +00003467 LD->getChain(), // Chain
3468 LD->getBasePtr(), // Ptr
Dan Gohman69de1932008-02-06 22:27:42 +00003469 MO, // MemOperand
Chris Lattner79e490a2006-08-11 17:18:05 +00003470 DAG.getValueType(N->getValueType(0)) // VT
3471 };
3472 SDOperand BSLoad = DAG.getNode(PPCISD::LBRX, VTs, Ops, 4);
Chris Lattnerd9989382006-07-10 20:56:58 +00003473
3474 // If this is an i16 load, insert the truncate.
3475 SDOperand ResVal = BSLoad;
3476 if (N->getValueType(0) == MVT::i16)
3477 ResVal = DAG.getNode(ISD::TRUNCATE, MVT::i16, BSLoad);
3478
3479 // First, combine the bswap away. This makes the value produced by the
3480 // load dead.
3481 DCI.CombineTo(N, ResVal);
3482
3483 // Next, combine the load away, we give it a bogus result value but a real
3484 // chain result. The result value is dead because the bswap is dead.
3485 DCI.CombineTo(Load.Val, ResVal, BSLoad.getValue(1));
3486
3487 // Return N so it doesn't get rechecked!
3488 return SDOperand(N, 0);
3489 }
3490
Chris Lattner51269842006-03-01 05:50:56 +00003491 break;
Chris Lattner4468c222006-03-31 06:02:07 +00003492 case PPCISD::VCMP: {
3493 // If a VCMPo node already exists with exactly the same operands as this
3494 // node, use its result instead of this node (VCMPo computes both a CR6 and
3495 // a normal output).
3496 //
3497 if (!N->getOperand(0).hasOneUse() &&
3498 !N->getOperand(1).hasOneUse() &&
3499 !N->getOperand(2).hasOneUse()) {
3500
3501 // Scan all of the users of the LHS, looking for VCMPo's that match.
3502 SDNode *VCMPoNode = 0;
3503
3504 SDNode *LHSN = N->getOperand(0).Val;
3505 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
3506 UI != E; ++UI)
3507 if ((*UI)->getOpcode() == PPCISD::VCMPo &&
3508 (*UI)->getOperand(1) == N->getOperand(1) &&
3509 (*UI)->getOperand(2) == N->getOperand(2) &&
3510 (*UI)->getOperand(0) == N->getOperand(0)) {
3511 VCMPoNode = *UI;
3512 break;
3513 }
3514
Chris Lattner00901202006-04-18 18:28:22 +00003515 // If there is no VCMPo node, or if the flag value has a single use, don't
3516 // transform this.
3517 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
3518 break;
3519
3520 // Look at the (necessarily single) use of the flag value. If it has a
3521 // chain, this transformation is more complex. Note that multiple things
3522 // could use the value result, which we should ignore.
3523 SDNode *FlagUser = 0;
3524 for (SDNode::use_iterator UI = VCMPoNode->use_begin();
3525 FlagUser == 0; ++UI) {
3526 assert(UI != VCMPoNode->use_end() && "Didn't find user!");
3527 SDNode *User = *UI;
3528 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
3529 if (User->getOperand(i) == SDOperand(VCMPoNode, 1)) {
3530 FlagUser = User;
3531 break;
3532 }
3533 }
3534 }
3535
3536 // If the user is a MFCR instruction, we know this is safe. Otherwise we
3537 // give up for right now.
3538 if (FlagUser->getOpcode() == PPCISD::MFCR)
Chris Lattner4468c222006-03-31 06:02:07 +00003539 return SDOperand(VCMPoNode, 0);
3540 }
3541 break;
3542 }
Chris Lattner90564f22006-04-18 17:59:36 +00003543 case ISD::BR_CC: {
3544 // If this is a branch on an altivec predicate comparison, lower this so
3545 // that we don't have to do a MFCR: instead, branch directly on CR6. This
3546 // lowering is done pre-legalize, because the legalizer lowers the predicate
3547 // compare down to code that is difficult to reassemble.
3548 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
3549 SDOperand LHS = N->getOperand(2), RHS = N->getOperand(3);
3550 int CompareOpc;
3551 bool isDot;
3552
3553 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
3554 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
3555 getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
3556 assert(isDot && "Can't compare against a vector result!");
3557
3558 // If this is a comparison against something other than 0/1, then we know
3559 // that the condition is never/always true.
3560 unsigned Val = cast<ConstantSDNode>(RHS)->getValue();
3561 if (Val != 0 && Val != 1) {
3562 if (CC == ISD::SETEQ) // Cond never true, remove branch.
3563 return N->getOperand(0);
3564 // Always !=, turn it into an unconditional branch.
3565 return DAG.getNode(ISD::BR, MVT::Other,
3566 N->getOperand(0), N->getOperand(4));
3567 }
3568
3569 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
3570
3571 // Create the PPCISD altivec 'dot' comparison node.
Chris Lattner90564f22006-04-18 17:59:36 +00003572 std::vector<MVT::ValueType> VTs;
Chris Lattner79e490a2006-08-11 17:18:05 +00003573 SDOperand Ops[] = {
3574 LHS.getOperand(2), // LHS of compare
3575 LHS.getOperand(3), // RHS of compare
3576 DAG.getConstant(CompareOpc, MVT::i32)
3577 };
Chris Lattner90564f22006-04-18 17:59:36 +00003578 VTs.push_back(LHS.getOperand(2).getValueType());
3579 VTs.push_back(MVT::Flag);
Chris Lattner79e490a2006-08-11 17:18:05 +00003580 SDOperand CompNode = DAG.getNode(PPCISD::VCMPo, VTs, Ops, 3);
Chris Lattner90564f22006-04-18 17:59:36 +00003581
3582 // Unpack the result based on how the target uses it.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00003583 PPC::Predicate CompOpc;
Chris Lattner90564f22006-04-18 17:59:36 +00003584 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getValue()) {
3585 default: // Can't happen, don't crash on invalid number though.
3586 case 0: // Branch on the value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00003587 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
Chris Lattner90564f22006-04-18 17:59:36 +00003588 break;
3589 case 1: // Branch on the inverted value of the EQ bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00003590 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
Chris Lattner90564f22006-04-18 17:59:36 +00003591 break;
3592 case 2: // Branch on the value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00003593 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
Chris Lattner90564f22006-04-18 17:59:36 +00003594 break;
3595 case 3: // Branch on the inverted value of the LT bit of CR6.
Chris Lattnerdf4ed632006-11-17 22:10:59 +00003596 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
Chris Lattner90564f22006-04-18 17:59:36 +00003597 break;
3598 }
3599
3600 return DAG.getNode(PPCISD::COND_BRANCH, MVT::Other, N->getOperand(0),
Chris Lattner90564f22006-04-18 17:59:36 +00003601 DAG.getConstant(CompOpc, MVT::i32),
Chris Lattner18258c62006-11-17 22:37:34 +00003602 DAG.getRegister(PPC::CR6, MVT::i32),
Chris Lattner90564f22006-04-18 17:59:36 +00003603 N->getOperand(4), CompNode.getValue(1));
3604 }
3605 break;
3606 }
Chris Lattner8c13d0a2006-03-01 04:57:39 +00003607 }
3608
3609 return SDOperand();
3610}
3611
Chris Lattner1a635d62006-04-14 06:01:58 +00003612//===----------------------------------------------------------------------===//
3613// Inline Assembly Support
3614//===----------------------------------------------------------------------===//
3615
Chris Lattnerbbe77de2006-04-02 06:26:07 +00003616void PPCTargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00003617 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00003618 APInt &KnownZero,
3619 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00003620 const SelectionDAG &DAG,
Chris Lattnerbbe77de2006-04-02 06:26:07 +00003621 unsigned Depth) const {
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00003622 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
Chris Lattnerbbe77de2006-04-02 06:26:07 +00003623 switch (Op.getOpcode()) {
3624 default: break;
Chris Lattnerd9989382006-07-10 20:56:58 +00003625 case PPCISD::LBRX: {
3626 // lhbrx is known to have the top bits cleared out.
3627 if (cast<VTSDNode>(Op.getOperand(3))->getVT() == MVT::i16)
3628 KnownZero = 0xFFFF0000;
3629 break;
3630 }
Chris Lattnerbbe77de2006-04-02 06:26:07 +00003631 case ISD::INTRINSIC_WO_CHAIN: {
3632 switch (cast<ConstantSDNode>(Op.getOperand(0))->getValue()) {
3633 default: break;
3634 case Intrinsic::ppc_altivec_vcmpbfp_p:
3635 case Intrinsic::ppc_altivec_vcmpeqfp_p:
3636 case Intrinsic::ppc_altivec_vcmpequb_p:
3637 case Intrinsic::ppc_altivec_vcmpequh_p:
3638 case Intrinsic::ppc_altivec_vcmpequw_p:
3639 case Intrinsic::ppc_altivec_vcmpgefp_p:
3640 case Intrinsic::ppc_altivec_vcmpgtfp_p:
3641 case Intrinsic::ppc_altivec_vcmpgtsb_p:
3642 case Intrinsic::ppc_altivec_vcmpgtsh_p:
3643 case Intrinsic::ppc_altivec_vcmpgtsw_p:
3644 case Intrinsic::ppc_altivec_vcmpgtub_p:
3645 case Intrinsic::ppc_altivec_vcmpgtuh_p:
3646 case Intrinsic::ppc_altivec_vcmpgtuw_p:
3647 KnownZero = ~1U; // All bits but the low one are known to be zero.
3648 break;
3649 }
3650 }
3651 }
3652}
3653
3654
Chris Lattner4234f572007-03-25 02:14:49 +00003655/// getConstraintType - Given a constraint, return the type of
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00003656/// constraint it is for this target.
3657PPCTargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00003658PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
3659 if (Constraint.size() == 1) {
3660 switch (Constraint[0]) {
3661 default: break;
3662 case 'b':
3663 case 'r':
3664 case 'f':
3665 case 'v':
3666 case 'y':
3667 return C_RegisterClass;
3668 }
3669 }
3670 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerad3bc8d2006-02-07 20:16:30 +00003671}
3672
Chris Lattner331d1bc2006-11-02 01:44:04 +00003673std::pair<unsigned, const TargetRegisterClass*>
3674PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
3675 MVT::ValueType VT) const {
Chris Lattnerddc787d2006-01-31 19:20:21 +00003676 if (Constraint.size() == 1) {
Chris Lattner331d1bc2006-11-02 01:44:04 +00003677 // GCC RS6000 Constraint Letters
3678 switch (Constraint[0]) {
3679 case 'b': // R1-R31
3680 case 'r': // R0-R31
3681 if (VT == MVT::i64 && PPCSubTarget.isPPC64())
3682 return std::make_pair(0U, PPC::G8RCRegisterClass);
3683 return std::make_pair(0U, PPC::GPRCRegisterClass);
3684 case 'f':
3685 if (VT == MVT::f32)
3686 return std::make_pair(0U, PPC::F4RCRegisterClass);
3687 else if (VT == MVT::f64)
3688 return std::make_pair(0U, PPC::F8RCRegisterClass);
3689 break;
Chris Lattnerddc787d2006-01-31 19:20:21 +00003690 case 'v':
Chris Lattner331d1bc2006-11-02 01:44:04 +00003691 return std::make_pair(0U, PPC::VRRCRegisterClass);
3692 case 'y': // crrc
3693 return std::make_pair(0U, PPC::CRRCRegisterClass);
Chris Lattnerddc787d2006-01-31 19:20:21 +00003694 }
3695 }
3696
Chris Lattner331d1bc2006-11-02 01:44:04 +00003697 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattnerddc787d2006-01-31 19:20:21 +00003698}
Chris Lattner763317d2006-02-07 00:47:13 +00003699
Chris Lattner331d1bc2006-11-02 01:44:04 +00003700
Chris Lattner48884cd2007-08-25 00:47:38 +00003701/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
3702/// vector. If it is invalid, don't add anything to Ops.
3703void PPCTargetLowering::LowerAsmOperandForConstraint(SDOperand Op, char Letter,
3704 std::vector<SDOperand>&Ops,
3705 SelectionDAG &DAG) {
3706 SDOperand Result(0,0);
Chris Lattner763317d2006-02-07 00:47:13 +00003707 switch (Letter) {
3708 default: break;
3709 case 'I':
3710 case 'J':
3711 case 'K':
3712 case 'L':
3713 case 'M':
3714 case 'N':
3715 case 'O':
3716 case 'P': {
Chris Lattner9f5d5782007-05-15 01:31:05 +00003717 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
Chris Lattner48884cd2007-08-25 00:47:38 +00003718 if (!CST) return; // Must be an immediate to match.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003719 unsigned Value = CST->getValue();
Chris Lattner763317d2006-02-07 00:47:13 +00003720 switch (Letter) {
3721 default: assert(0 && "Unknown constraint letter!");
3722 case 'I': // "I" is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003723 if ((short)Value == (int)Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00003724 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00003725 break;
Chris Lattner763317d2006-02-07 00:47:13 +00003726 case 'J': // "J" is a constant with only the high-order 16 bits nonzero.
3727 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003728 if ((short)Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00003729 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00003730 break;
Chris Lattner763317d2006-02-07 00:47:13 +00003731 case 'K': // "K" is a constant with only the low-order 16 bits nonzero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003732 if ((Value >> 16) == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00003733 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00003734 break;
Chris Lattner763317d2006-02-07 00:47:13 +00003735 case 'M': // "M" is a constant that is greater than 31.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003736 if (Value > 31)
Chris Lattner48884cd2007-08-25 00:47:38 +00003737 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00003738 break;
Chris Lattner763317d2006-02-07 00:47:13 +00003739 case 'N': // "N" is a positive constant that is an exact power of two.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003740 if ((int)Value > 0 && isPowerOf2_32(Value))
Chris Lattner48884cd2007-08-25 00:47:38 +00003741 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00003742 break;
Chris Lattner763317d2006-02-07 00:47:13 +00003743 case 'O': // "O" is the constant zero.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003744 if (Value == 0)
Chris Lattner48884cd2007-08-25 00:47:38 +00003745 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00003746 break;
Chris Lattner763317d2006-02-07 00:47:13 +00003747 case 'P': // "P" is a constant whose negation is a signed 16-bit constant.
Chris Lattner9f5d5782007-05-15 01:31:05 +00003748 if ((short)-Value == (int)-Value)
Chris Lattner48884cd2007-08-25 00:47:38 +00003749 Result = DAG.getTargetConstant(Value, Op.getValueType());
Chris Lattnerdba1aee2006-10-31 19:40:43 +00003750 break;
Chris Lattner763317d2006-02-07 00:47:13 +00003751 }
3752 break;
3753 }
3754 }
3755
Chris Lattner48884cd2007-08-25 00:47:38 +00003756 if (Result.Val) {
3757 Ops.push_back(Result);
3758 return;
3759 }
3760
Chris Lattner763317d2006-02-07 00:47:13 +00003761 // Handle standard constraint letters.
Chris Lattner48884cd2007-08-25 00:47:38 +00003762 TargetLowering::LowerAsmOperandForConstraint(Op, Letter, Ops, DAG);
Chris Lattner763317d2006-02-07 00:47:13 +00003763}
Evan Chengc4c62572006-03-13 23:20:37 +00003764
Chris Lattnerc9addb72007-03-30 23:15:24 +00003765// isLegalAddressingMode - Return true if the addressing mode represented
3766// by AM is legal for this target, for a load/store of the specified type.
3767bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
3768 const Type *Ty) const {
3769 // FIXME: PPC does not allow r+i addressing modes for vectors!
3770
3771 // PPC allows a sign-extended 16-bit immediate field.
3772 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
3773 return false;
3774
3775 // No global is ever allowed as a base.
3776 if (AM.BaseGV)
3777 return false;
3778
3779 // PPC only support r+r,
3780 switch (AM.Scale) {
3781 case 0: // "r+i" or just "i", depending on HasBaseReg.
3782 break;
3783 case 1:
3784 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
3785 return false;
3786 // Otherwise we have r+r or r+i.
3787 break;
3788 case 2:
3789 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
3790 return false;
3791 // Allow 2*r as r+r.
3792 break;
Chris Lattner7c7ba9d2007-04-09 22:10:05 +00003793 default:
3794 // No other scales are supported.
3795 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00003796 }
3797
3798 return true;
3799}
3800
Evan Chengc4c62572006-03-13 23:20:37 +00003801/// isLegalAddressImmediate - Return true if the integer value can be used
Evan Cheng86193912007-03-12 23:29:01 +00003802/// as the offset of the target addressing mode for load / store of the
3803/// given type.
3804bool PPCTargetLowering::isLegalAddressImmediate(int64_t V,const Type *Ty) const{
Evan Chengc4c62572006-03-13 23:20:37 +00003805 // PPC allows a sign-extended 16-bit immediate field.
3806 return (V > -(1 << 16) && V < (1 << 16)-1);
3807}
Reid Spencer3a9ec242006-08-28 01:02:49 +00003808
3809bool PPCTargetLowering::isLegalAddressImmediate(llvm::GlobalValue* GV) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +00003810 return false;
Reid Spencer3a9ec242006-08-28 01:02:49 +00003811}
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00003812
Chris Lattner3fc027d2007-12-08 06:59:59 +00003813SDOperand PPCTargetLowering::LowerRETURNADDR(SDOperand Op, SelectionDAG &DAG) {
3814 // Depths > 0 not supported yet!
3815 if (cast<ConstantSDNode>(Op.getOperand(0))->getValue() > 0)
3816 return SDOperand();
3817
3818 MachineFunction &MF = DAG.getMachineFunction();
3819 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
3820 int RAIdx = FuncInfo->getReturnAddrSaveIndex();
3821 if (RAIdx == 0) {
3822 bool isPPC64 = PPCSubTarget.isPPC64();
3823 int Offset =
3824 PPCFrameInfo::getReturnSaveOffset(isPPC64, PPCSubTarget.isMachoABI());
3825
3826 // Set up a frame object for the return address.
3827 RAIdx = MF.getFrameInfo()->CreateFixedObject(isPPC64 ? 8 : 4, Offset);
3828
3829 // Remember it for next time.
3830 FuncInfo->setReturnAddrSaveIndex(RAIdx);
3831
3832 // Make sure the function really does not optimize away the store of the RA
3833 // to the stack.
3834 FuncInfo->setLRStoreRequired();
3835 }
3836
3837 // Just load the return address off the stack.
3838 SDOperand RetAddrFI = DAG.getFrameIndex(RAIdx, getPointerTy());
3839 return DAG.getLoad(getPointerTy(), DAG.getEntryNode(), RetAddrFI, NULL, 0);
3840}
3841
3842SDOperand PPCTargetLowering::LowerFRAMEADDR(SDOperand Op, SelectionDAG &DAG) {
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00003843 // Depths > 0 not supported yet!
3844 if (cast<ConstantSDNode>(Op.getOperand(0))->getValue() > 0)
3845 return SDOperand();
3846
3847 MVT::ValueType PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3848 bool isPPC64 = PtrVT == MVT::i64;
3849
3850 MachineFunction &MF = DAG.getMachineFunction();
3851 MachineFrameInfo *MFI = MF.getFrameInfo();
3852 bool is31 = (NoFramePointerElim || MFI->hasVarSizedObjects())
3853 && MFI->getStackSize();
3854
3855 if (isPPC64)
3856 return DAG.getCopyFromReg(DAG.getEntryNode(), is31 ? PPC::X31 : PPC::X1,
Bill Wendlingb8a80f02007-08-30 00:59:19 +00003857 MVT::i64);
Nicolas Geoffray43c6e7c2007-03-01 13:11:38 +00003858 else
3859 return DAG.getCopyFromReg(DAG.getEntryNode(), is31 ? PPC::R31 : PPC::R1,
3860 MVT::i32);
3861}