ed919f1e33b13693bf471eecc2fb90ff802f009b
[oota-llvm.git] / lib / Target / PowerPC / PPCISelLowering.cpp
1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the PPCISelLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PPCISelLowering.h"
15 #include "MCTargetDesc/PPCPredicates.h"
16 #include "PPCCallingConv.h"
17 #include "PPCMachineFunctionInfo.h"
18 #include "PPCPerfectShuffle.h"
19 #include "PPCTargetMachine.h"
20 #include "PPCTargetObjectFile.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/ADT/StringSwitch.h"
23 #include "llvm/ADT/Triple.h"
24 #include "llvm/CodeGen/CallingConvLower.h"
25 #include "llvm/CodeGen/MachineFrameInfo.h"
26 #include "llvm/CodeGen/MachineFunction.h"
27 #include "llvm/CodeGen/MachineInstrBuilder.h"
28 #include "llvm/CodeGen/MachineLoopInfo.h"
29 #include "llvm/CodeGen/MachineRegisterInfo.h"
30 #include "llvm/CodeGen/SelectionDAG.h"
31 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
32 #include "llvm/IR/CallingConv.h"
33 #include "llvm/IR/Constants.h"
34 #include "llvm/IR/DerivedTypes.h"
35 #include "llvm/IR/Function.h"
36 #include "llvm/IR/Intrinsics.h"
37 #include "llvm/Support/CommandLine.h"
38 #include "llvm/Support/ErrorHandling.h"
39 #include "llvm/Support/MathExtras.h"
40 #include "llvm/Support/raw_ostream.h"
41 #include "llvm/Target/TargetOptions.h"
42
43 using namespace llvm;
44
45 // FIXME: Remove this once soft-float is supported.
46 static cl::opt<bool> DisablePPCFloatInVariadic("disable-ppc-float-in-variadic",
47 cl::desc("disable saving float registers for va_start on PPC"), cl::Hidden);
48
49 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
50 cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
51
52 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
53 cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
54
55 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
56 cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
57
58 // FIXME: Remove this once the bug has been fixed!
59 extern cl::opt<bool> ANDIGlueBug;
60
61 PPCTargetLowering::PPCTargetLowering(const PPCTargetMachine &TM,
62                                      const PPCSubtarget &STI)
63     : TargetLowering(TM), Subtarget(STI) {
64   // Use _setjmp/_longjmp instead of setjmp/longjmp.
65   setUseUnderscoreSetJmp(true);
66   setUseUnderscoreLongJmp(true);
67
68   // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
69   // arguments are at least 4/8 bytes aligned.
70   bool isPPC64 = Subtarget.isPPC64();
71   setMinStackArgumentAlignment(isPPC64 ? 8:4);
72
73   // Set up the register classes.
74   addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
75   addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
76   addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
77
78   // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
79   for (MVT VT : MVT::integer_valuetypes()) {
80     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
81     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand);
82   }
83
84   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
85
86   // PowerPC has pre-inc load and store's.
87   setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
88   setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
89   setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
90   setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
91   setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
92   setIndexedLoadAction(ISD::PRE_INC, MVT::f32, Legal);
93   setIndexedLoadAction(ISD::PRE_INC, MVT::f64, Legal);
94   setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
95   setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
96   setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
97   setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
98   setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
99   setIndexedStoreAction(ISD::PRE_INC, MVT::f32, Legal);
100   setIndexedStoreAction(ISD::PRE_INC, MVT::f64, Legal);
101
102   if (Subtarget.useCRBits()) {
103     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
104
105     if (isPPC64 || Subtarget.hasFPCVT()) {
106       setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
107       AddPromotedToType (ISD::SINT_TO_FP, MVT::i1,
108                          isPPC64 ? MVT::i64 : MVT::i32);
109       setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
110       AddPromotedToType (ISD::UINT_TO_FP, MVT::i1, 
111                          isPPC64 ? MVT::i64 : MVT::i32);
112     } else {
113       setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom);
114       setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom);
115     }
116
117     // PowerPC does not support direct load / store of condition registers
118     setOperationAction(ISD::LOAD, MVT::i1, Custom);
119     setOperationAction(ISD::STORE, MVT::i1, Custom);
120
121     // FIXME: Remove this once the ANDI glue bug is fixed:
122     if (ANDIGlueBug)
123       setOperationAction(ISD::TRUNCATE, MVT::i1, Custom);
124
125     for (MVT VT : MVT::integer_valuetypes()) {
126       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
127       setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote);
128       setTruncStoreAction(VT, MVT::i1, Expand);
129     }
130
131     addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass);
132   }
133
134   // This is used in the ppcf128->int sequence.  Note it has different semantics
135   // from FP_ROUND:  that rounds to nearest, this rounds to zero.
136   setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
137
138   // We do not currently implement these libm ops for PowerPC.
139   setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
140   setOperationAction(ISD::FCEIL,  MVT::ppcf128, Expand);
141   setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
142   setOperationAction(ISD::FRINT,  MVT::ppcf128, Expand);
143   setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
144   setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
145
146   // PowerPC has no SREM/UREM instructions
147   setOperationAction(ISD::SREM, MVT::i32, Expand);
148   setOperationAction(ISD::UREM, MVT::i32, Expand);
149   setOperationAction(ISD::SREM, MVT::i64, Expand);
150   setOperationAction(ISD::UREM, MVT::i64, Expand);
151
152   // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
153   setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
154   setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
155   setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
156   setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
157   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
158   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
159   setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
160   setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
161
162   // We don't support sin/cos/sqrt/fmod/pow
163   setOperationAction(ISD::FSIN , MVT::f64, Expand);
164   setOperationAction(ISD::FCOS , MVT::f64, Expand);
165   setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
166   setOperationAction(ISD::FREM , MVT::f64, Expand);
167   setOperationAction(ISD::FPOW , MVT::f64, Expand);
168   setOperationAction(ISD::FMA  , MVT::f64, Legal);
169   setOperationAction(ISD::FSIN , MVT::f32, Expand);
170   setOperationAction(ISD::FCOS , MVT::f32, Expand);
171   setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
172   setOperationAction(ISD::FREM , MVT::f32, Expand);
173   setOperationAction(ISD::FPOW , MVT::f32, Expand);
174   setOperationAction(ISD::FMA  , MVT::f32, Legal);
175
176   setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
177
178   // If we're enabling GP optimizations, use hardware square root
179   if (!Subtarget.hasFSQRT() &&
180       !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTE() &&
181         Subtarget.hasFRE()))
182     setOperationAction(ISD::FSQRT, MVT::f64, Expand);
183
184   if (!Subtarget.hasFSQRT() &&
185       !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTES() &&
186         Subtarget.hasFRES()))
187     setOperationAction(ISD::FSQRT, MVT::f32, Expand);
188
189   if (Subtarget.hasFCPSGN()) {
190     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
191     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
192   } else {
193     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
194     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
195   }
196
197   if (Subtarget.hasFPRND()) {
198     setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
199     setOperationAction(ISD::FCEIL,  MVT::f64, Legal);
200     setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
201     setOperationAction(ISD::FROUND, MVT::f64, Legal);
202
203     setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
204     setOperationAction(ISD::FCEIL,  MVT::f32, Legal);
205     setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
206     setOperationAction(ISD::FROUND, MVT::f32, Legal);
207   }
208
209   // PowerPC does not have BSWAP, CTPOP or CTTZ
210   setOperationAction(ISD::BSWAP, MVT::i32  , Expand);
211   setOperationAction(ISD::CTTZ , MVT::i32  , Expand);
212   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
213   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
214   setOperationAction(ISD::BSWAP, MVT::i64  , Expand);
215   setOperationAction(ISD::CTTZ , MVT::i64  , Expand);
216   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
217   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
218
219   if (Subtarget.hasPOPCNTD()) {
220     setOperationAction(ISD::CTPOP, MVT::i32  , Legal);
221     setOperationAction(ISD::CTPOP, MVT::i64  , Legal);
222   } else {
223     setOperationAction(ISD::CTPOP, MVT::i32  , Expand);
224     setOperationAction(ISD::CTPOP, MVT::i64  , Expand);
225   }
226
227   // PowerPC does not have ROTR
228   setOperationAction(ISD::ROTR, MVT::i32   , Expand);
229   setOperationAction(ISD::ROTR, MVT::i64   , Expand);
230
231   if (!Subtarget.useCRBits()) {
232     // PowerPC does not have Select
233     setOperationAction(ISD::SELECT, MVT::i32, Expand);
234     setOperationAction(ISD::SELECT, MVT::i64, Expand);
235     setOperationAction(ISD::SELECT, MVT::f32, Expand);
236     setOperationAction(ISD::SELECT, MVT::f64, Expand);
237   }
238
239   // PowerPC wants to turn select_cc of FP into fsel when possible.
240   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
241   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
242
243   // PowerPC wants to optimize integer setcc a bit
244   if (!Subtarget.useCRBits())
245     setOperationAction(ISD::SETCC, MVT::i32, Custom);
246
247   // PowerPC does not have BRCOND which requires SetCC
248   if (!Subtarget.useCRBits())
249     setOperationAction(ISD::BRCOND, MVT::Other, Expand);
250
251   setOperationAction(ISD::BR_JT,  MVT::Other, Expand);
252
253   // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
254   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
255
256   // PowerPC does not have [U|S]INT_TO_FP
257   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
258   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
259
260   setOperationAction(ISD::BITCAST, MVT::f32, Expand);
261   setOperationAction(ISD::BITCAST, MVT::i32, Expand);
262   setOperationAction(ISD::BITCAST, MVT::i64, Expand);
263   setOperationAction(ISD::BITCAST, MVT::f64, Expand);
264
265   // We cannot sextinreg(i1).  Expand to shifts.
266   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
267
268   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
269   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
270   // support continuation, user-level threading, and etc.. As a result, no
271   // other SjLj exception interfaces are implemented and please don't build
272   // your own exception handling based on them.
273   // LLVM/Clang supports zero-cost DWARF exception handling.
274   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
275   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
276
277   // We want to legalize GlobalAddress and ConstantPool nodes into the
278   // appropriate instructions to materialize the address.
279   setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
280   setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
281   setOperationAction(ISD::BlockAddress,  MVT::i32, Custom);
282   setOperationAction(ISD::ConstantPool,  MVT::i32, Custom);
283   setOperationAction(ISD::JumpTable,     MVT::i32, Custom);
284   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
285   setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
286   setOperationAction(ISD::BlockAddress,  MVT::i64, Custom);
287   setOperationAction(ISD::ConstantPool,  MVT::i64, Custom);
288   setOperationAction(ISD::JumpTable,     MVT::i64, Custom);
289
290   // TRAP is legal.
291   setOperationAction(ISD::TRAP, MVT::Other, Legal);
292
293   // TRAMPOLINE is custom lowered.
294   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
295   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
296
297   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
298   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
299
300   if (Subtarget.isSVR4ABI()) {
301     if (isPPC64) {
302       // VAARG always uses double-word chunks, so promote anything smaller.
303       setOperationAction(ISD::VAARG, MVT::i1, Promote);
304       AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
305       setOperationAction(ISD::VAARG, MVT::i8, Promote);
306       AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
307       setOperationAction(ISD::VAARG, MVT::i16, Promote);
308       AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
309       setOperationAction(ISD::VAARG, MVT::i32, Promote);
310       AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
311       setOperationAction(ISD::VAARG, MVT::Other, Expand);
312     } else {
313       // VAARG is custom lowered with the 32-bit SVR4 ABI.
314       setOperationAction(ISD::VAARG, MVT::Other, Custom);
315       setOperationAction(ISD::VAARG, MVT::i64, Custom);
316     }
317   } else
318     setOperationAction(ISD::VAARG, MVT::Other, Expand);
319
320   if (Subtarget.isSVR4ABI() && !isPPC64)
321     // VACOPY is custom lowered with the 32-bit SVR4 ABI.
322     setOperationAction(ISD::VACOPY            , MVT::Other, Custom);
323   else
324     setOperationAction(ISD::VACOPY            , MVT::Other, Expand);
325
326   // Use the default implementation.
327   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
328   setOperationAction(ISD::STACKSAVE         , MVT::Other, Expand);
329   setOperationAction(ISD::STACKRESTORE      , MVT::Other, Custom);
330   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32  , Custom);
331   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64  , Custom);
332
333   // We want to custom lower some of our intrinsics.
334   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
335
336   // To handle counter-based loop conditions.
337   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
338
339   // Comparisons that require checking two conditions.
340   setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
341   setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
342   setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
343   setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
344   setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
345   setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
346   setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
347   setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
348   setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
349   setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
350   setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
351   setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
352
353   if (Subtarget.has64BitSupport()) {
354     // They also have instructions for converting between i64 and fp.
355     setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
356     setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
357     setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
358     setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
359     // This is just the low 32 bits of a (signed) fp->i64 conversion.
360     // We cannot do this with Promote because i64 is not a legal type.
361     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
362
363     if (Subtarget.hasLFIWAX() || Subtarget.isPPC64())
364       setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
365   } else {
366     // PowerPC does not have FP_TO_UINT on 32-bit implementations.
367     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
368   }
369
370   // With the instructions enabled under FPCVT, we can do everything.
371   if (Subtarget.hasFPCVT()) {
372     if (Subtarget.has64BitSupport()) {
373       setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
374       setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
375       setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
376       setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
377     }
378
379     setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
380     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
381     setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
382     setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
383   }
384
385   if (Subtarget.use64BitRegs()) {
386     // 64-bit PowerPC implementations can support i64 types directly
387     addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
388     // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
389     setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
390     // 64-bit PowerPC wants to expand i128 shifts itself.
391     setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
392     setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
393     setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
394   } else {
395     // 32-bit PowerPC wants to expand i64 shifts itself.
396     setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
397     setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
398     setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
399   }
400
401   if (Subtarget.hasAltivec()) {
402     // First set operation action for all vector types to expand. Then we
403     // will selectively turn on ones that can be effectively codegen'd.
404     for (MVT VT : MVT::vector_valuetypes()) {
405       // add/sub are legal for all supported vector VT's.
406       setOperationAction(ISD::ADD , VT, Legal);
407       setOperationAction(ISD::SUB , VT, Legal);
408       
409       // Vector instructions introduced in P8
410       if (Subtarget.hasP8Altivec() && (VT.SimpleTy != MVT::v1i128)) {
411         setOperationAction(ISD::CTPOP, VT, Legal);
412         setOperationAction(ISD::CTLZ, VT, Legal);
413       }
414       else {
415         setOperationAction(ISD::CTPOP, VT, Expand);
416         setOperationAction(ISD::CTLZ, VT, Expand);
417       }
418
419       // We promote all shuffles to v16i8.
420       setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
421       AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
422
423       // We promote all non-typed operations to v4i32.
424       setOperationAction(ISD::AND   , VT, Promote);
425       AddPromotedToType (ISD::AND   , VT, MVT::v4i32);
426       setOperationAction(ISD::OR    , VT, Promote);
427       AddPromotedToType (ISD::OR    , VT, MVT::v4i32);
428       setOperationAction(ISD::XOR   , VT, Promote);
429       AddPromotedToType (ISD::XOR   , VT, MVT::v4i32);
430       setOperationAction(ISD::LOAD  , VT, Promote);
431       AddPromotedToType (ISD::LOAD  , VT, MVT::v4i32);
432       setOperationAction(ISD::SELECT, VT, Promote);
433       AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
434       setOperationAction(ISD::STORE, VT, Promote);
435       AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
436
437       // No other operations are legal.
438       setOperationAction(ISD::MUL , VT, Expand);
439       setOperationAction(ISD::SDIV, VT, Expand);
440       setOperationAction(ISD::SREM, VT, Expand);
441       setOperationAction(ISD::UDIV, VT, Expand);
442       setOperationAction(ISD::UREM, VT, Expand);
443       setOperationAction(ISD::FDIV, VT, Expand);
444       setOperationAction(ISD::FREM, VT, Expand);
445       setOperationAction(ISD::FNEG, VT, Expand);
446       setOperationAction(ISD::FSQRT, VT, Expand);
447       setOperationAction(ISD::FLOG, VT, Expand);
448       setOperationAction(ISD::FLOG10, VT, Expand);
449       setOperationAction(ISD::FLOG2, VT, Expand);
450       setOperationAction(ISD::FEXP, VT, Expand);
451       setOperationAction(ISD::FEXP2, VT, Expand);
452       setOperationAction(ISD::FSIN, VT, Expand);
453       setOperationAction(ISD::FCOS, VT, Expand);
454       setOperationAction(ISD::FABS, VT, Expand);
455       setOperationAction(ISD::FPOWI, VT, Expand);
456       setOperationAction(ISD::FFLOOR, VT, Expand);
457       setOperationAction(ISD::FCEIL,  VT, Expand);
458       setOperationAction(ISD::FTRUNC, VT, Expand);
459       setOperationAction(ISD::FRINT,  VT, Expand);
460       setOperationAction(ISD::FNEARBYINT, VT, Expand);
461       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
462       setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
463       setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
464       setOperationAction(ISD::MULHU, VT, Expand);
465       setOperationAction(ISD::MULHS, VT, Expand);
466       setOperationAction(ISD::UMUL_LOHI, VT, Expand);
467       setOperationAction(ISD::SMUL_LOHI, VT, Expand);
468       setOperationAction(ISD::UDIVREM, VT, Expand);
469       setOperationAction(ISD::SDIVREM, VT, Expand);
470       setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
471       setOperationAction(ISD::FPOW, VT, Expand);
472       setOperationAction(ISD::BSWAP, VT, Expand);
473       setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
474       setOperationAction(ISD::CTTZ, VT, Expand);
475       setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
476       setOperationAction(ISD::VSELECT, VT, Expand);
477       setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
478
479       for (MVT InnerVT : MVT::vector_valuetypes()) {
480         setTruncStoreAction(VT, InnerVT, Expand);
481         setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
482         setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
483         setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
484       }
485     }
486
487     // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
488     // with merges, splats, etc.
489     setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
490
491     setOperationAction(ISD::AND   , MVT::v4i32, Legal);
492     setOperationAction(ISD::OR    , MVT::v4i32, Legal);
493     setOperationAction(ISD::XOR   , MVT::v4i32, Legal);
494     setOperationAction(ISD::LOAD  , MVT::v4i32, Legal);
495     setOperationAction(ISD::SELECT, MVT::v4i32,
496                        Subtarget.useCRBits() ? Legal : Expand);
497     setOperationAction(ISD::STORE , MVT::v4i32, Legal);
498     setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
499     setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
500     setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
501     setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
502     setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
503     setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
504     setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
505     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
506
507     addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
508     addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
509     addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
510     addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
511
512     setOperationAction(ISD::MUL, MVT::v4f32, Legal);
513     setOperationAction(ISD::FMA, MVT::v4f32, Legal);
514
515     if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) {
516       setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
517       setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
518     }
519
520     
521     if (Subtarget.hasP8Altivec()) 
522       setOperationAction(ISD::MUL, MVT::v4i32, Legal);
523     else
524       setOperationAction(ISD::MUL, MVT::v4i32, Custom);
525       
526     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
527     setOperationAction(ISD::MUL, MVT::v16i8, Custom);
528
529     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
530     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
531
532     setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
533     setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
534     setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
535     setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
536
537     // Altivec does not contain unordered floating-point compare instructions
538     setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
539     setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
540     setCondCodeAction(ISD::SETO,   MVT::v4f32, Expand);
541     setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
542
543     if (Subtarget.hasVSX()) {
544       setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal);
545       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
546
547       setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
548       setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
549       setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
550       setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
551       setOperationAction(ISD::FROUND, MVT::v2f64, Legal);
552
553       setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
554
555       setOperationAction(ISD::MUL, MVT::v2f64, Legal);
556       setOperationAction(ISD::FMA, MVT::v2f64, Legal);
557
558       setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
559       setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
560
561       setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
562       setOperationAction(ISD::VSELECT, MVT::v8i16, Legal);
563       setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
564       setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
565       setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
566
567       // Share the Altivec comparison restrictions.
568       setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand);
569       setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand);
570       setCondCodeAction(ISD::SETO,   MVT::v2f64, Expand);
571       setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand);
572
573       setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
574       setOperationAction(ISD::STORE, MVT::v2f64, Legal);
575
576       setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal);
577
578       if (Subtarget.hasP8Vector())
579         addRegisterClass(MVT::f32, &PPC::VSSRCRegClass);
580
581       addRegisterClass(MVT::f64, &PPC::VSFRCRegClass);
582
583       addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass);
584       addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass);
585
586       if (Subtarget.hasP8Altivec()) {
587         setOperationAction(ISD::SHL, MVT::v2i64, Legal);
588         setOperationAction(ISD::SRA, MVT::v2i64, Legal);
589         setOperationAction(ISD::SRL, MVT::v2i64, Legal);
590
591         setOperationAction(ISD::SETCC, MVT::v2i64, Legal);
592       }
593       else {
594         setOperationAction(ISD::SHL, MVT::v2i64, Expand);
595         setOperationAction(ISD::SRA, MVT::v2i64, Expand);
596         setOperationAction(ISD::SRL, MVT::v2i64, Expand);
597
598         setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
599
600         // VSX v2i64 only supports non-arithmetic operations.
601         setOperationAction(ISD::ADD, MVT::v2i64, Expand);
602         setOperationAction(ISD::SUB, MVT::v2i64, Expand);
603       }
604
605       setOperationAction(ISD::LOAD, MVT::v2i64, Promote);
606       AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64);
607       setOperationAction(ISD::STORE, MVT::v2i64, Promote);
608       AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64);
609
610       setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal);
611
612       setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal);
613       setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal);
614       setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal);
615       setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal);
616
617       // Vector operation legalization checks the result type of
618       // SIGN_EXTEND_INREG, overall legalization checks the inner type.
619       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal);
620       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal);
621       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
622       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
623
624       addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass);
625     }
626
627     if (Subtarget.hasP8Altivec()) {
628       addRegisterClass(MVT::v2i64, &PPC::VRRCRegClass);
629       addRegisterClass(MVT::v1i128, &PPC::VRRCRegClass);
630     }
631   }
632
633   if (Subtarget.hasQPX()) {
634     setOperationAction(ISD::FADD, MVT::v4f64, Legal);
635     setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
636     setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
637     setOperationAction(ISD::FREM, MVT::v4f64, Expand);
638
639     setOperationAction(ISD::FCOPYSIGN, MVT::v4f64, Legal);
640     setOperationAction(ISD::FGETSIGN, MVT::v4f64, Expand);
641
642     setOperationAction(ISD::LOAD  , MVT::v4f64, Custom);
643     setOperationAction(ISD::STORE , MVT::v4f64, Custom);
644
645     setTruncStoreAction(MVT::v4f64, MVT::v4f32, Custom);
646     setLoadExtAction(ISD::EXTLOAD, MVT::v4f64, MVT::v4f32, Custom);
647
648     if (!Subtarget.useCRBits())
649       setOperationAction(ISD::SELECT, MVT::v4f64, Expand);
650     setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
651
652     setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f64, Legal);
653     setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f64, Expand);
654     setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f64, Expand);
655     setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f64, Expand);
656     setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f64, Custom);
657     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f64, Legal);
658     setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
659
660     setOperationAction(ISD::FP_TO_SINT , MVT::v4f64, Legal);
661     setOperationAction(ISD::FP_TO_UINT , MVT::v4f64, Expand);
662
663     setOperationAction(ISD::FP_ROUND , MVT::v4f32, Legal);
664     setOperationAction(ISD::FP_ROUND_INREG , MVT::v4f32, Expand);
665     setOperationAction(ISD::FP_EXTEND, MVT::v4f64, Legal);
666
667     setOperationAction(ISD::FNEG , MVT::v4f64, Legal);
668     setOperationAction(ISD::FABS , MVT::v4f64, Legal);
669     setOperationAction(ISD::FSIN , MVT::v4f64, Expand);
670     setOperationAction(ISD::FCOS , MVT::v4f64, Expand);
671     setOperationAction(ISD::FPOWI , MVT::v4f64, Expand);
672     setOperationAction(ISD::FPOW , MVT::v4f64, Expand);
673     setOperationAction(ISD::FLOG , MVT::v4f64, Expand);
674     setOperationAction(ISD::FLOG2 , MVT::v4f64, Expand);
675     setOperationAction(ISD::FLOG10 , MVT::v4f64, Expand);
676     setOperationAction(ISD::FEXP , MVT::v4f64, Expand);
677     setOperationAction(ISD::FEXP2 , MVT::v4f64, Expand);
678
679     setOperationAction(ISD::FMINNUM, MVT::v4f64, Legal);
680     setOperationAction(ISD::FMAXNUM, MVT::v4f64, Legal);
681
682     setIndexedLoadAction(ISD::PRE_INC, MVT::v4f64, Legal);
683     setIndexedStoreAction(ISD::PRE_INC, MVT::v4f64, Legal);
684
685     addRegisterClass(MVT::v4f64, &PPC::QFRCRegClass);
686
687     setOperationAction(ISD::FADD, MVT::v4f32, Legal);
688     setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
689     setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
690     setOperationAction(ISD::FREM, MVT::v4f32, Expand);
691
692     setOperationAction(ISD::FCOPYSIGN, MVT::v4f32, Legal);
693     setOperationAction(ISD::FGETSIGN, MVT::v4f32, Expand);
694
695     setOperationAction(ISD::LOAD  , MVT::v4f32, Custom);
696     setOperationAction(ISD::STORE , MVT::v4f32, Custom);
697
698     if (!Subtarget.useCRBits())
699       setOperationAction(ISD::SELECT, MVT::v4f32, Expand);
700     setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
701
702     setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f32, Legal);
703     setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f32, Expand);
704     setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f32, Expand);
705     setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f32, Expand);
706     setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f32, Custom);
707     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Legal);
708     setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
709
710     setOperationAction(ISD::FP_TO_SINT , MVT::v4f32, Legal);
711     setOperationAction(ISD::FP_TO_UINT , MVT::v4f32, Expand);
712
713     setOperationAction(ISD::FNEG , MVT::v4f32, Legal);
714     setOperationAction(ISD::FABS , MVT::v4f32, Legal);
715     setOperationAction(ISD::FSIN , MVT::v4f32, Expand);
716     setOperationAction(ISD::FCOS , MVT::v4f32, Expand);
717     setOperationAction(ISD::FPOWI , MVT::v4f32, Expand);
718     setOperationAction(ISD::FPOW , MVT::v4f32, Expand);
719     setOperationAction(ISD::FLOG , MVT::v4f32, Expand);
720     setOperationAction(ISD::FLOG2 , MVT::v4f32, Expand);
721     setOperationAction(ISD::FLOG10 , MVT::v4f32, Expand);
722     setOperationAction(ISD::FEXP , MVT::v4f32, Expand);
723     setOperationAction(ISD::FEXP2 , MVT::v4f32, Expand);
724
725     setOperationAction(ISD::FMINNUM, MVT::v4f32, Legal);
726     setOperationAction(ISD::FMAXNUM, MVT::v4f32, Legal);
727
728     setIndexedLoadAction(ISD::PRE_INC, MVT::v4f32, Legal);
729     setIndexedStoreAction(ISD::PRE_INC, MVT::v4f32, Legal);
730
731     addRegisterClass(MVT::v4f32, &PPC::QSRCRegClass);
732
733     setOperationAction(ISD::AND , MVT::v4i1, Legal);
734     setOperationAction(ISD::OR , MVT::v4i1, Legal);
735     setOperationAction(ISD::XOR , MVT::v4i1, Legal);
736
737     if (!Subtarget.useCRBits())
738       setOperationAction(ISD::SELECT, MVT::v4i1, Expand);
739     setOperationAction(ISD::VSELECT, MVT::v4i1, Legal);
740
741     setOperationAction(ISD::LOAD  , MVT::v4i1, Custom);
742     setOperationAction(ISD::STORE , MVT::v4i1, Custom);
743
744     setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4i1, Custom);
745     setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4i1, Expand);
746     setOperationAction(ISD::CONCAT_VECTORS , MVT::v4i1, Expand);
747     setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4i1, Expand);
748     setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4i1, Custom);
749     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i1, Expand);
750     setOperationAction(ISD::BUILD_VECTOR, MVT::v4i1, Custom);
751
752     setOperationAction(ISD::SINT_TO_FP, MVT::v4i1, Custom);
753     setOperationAction(ISD::UINT_TO_FP, MVT::v4i1, Custom);
754
755     addRegisterClass(MVT::v4i1, &PPC::QBRCRegClass);
756
757     setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
758     setOperationAction(ISD::FCEIL,  MVT::v4f64, Legal);
759     setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
760     setOperationAction(ISD::FROUND, MVT::v4f64, Legal);
761
762     setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
763     setOperationAction(ISD::FCEIL,  MVT::v4f32, Legal);
764     setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
765     setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
766
767     setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Expand);
768     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
769
770     // These need to set FE_INEXACT, and so cannot be vectorized here.
771     setOperationAction(ISD::FRINT, MVT::v4f64, Expand);
772     setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
773
774     if (TM.Options.UnsafeFPMath) {
775       setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
776       setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
777
778       setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
779       setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
780     } else {
781       setOperationAction(ISD::FDIV, MVT::v4f64, Expand);
782       setOperationAction(ISD::FSQRT, MVT::v4f64, Expand);
783
784       setOperationAction(ISD::FDIV, MVT::v4f32, Expand);
785       setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
786     }
787   }
788
789   if (Subtarget.has64BitSupport())
790     setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
791
792   setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, isPPC64 ? Legal : Custom);
793
794   if (!isPPC64) {
795     setOperationAction(ISD::ATOMIC_LOAD,  MVT::i64, Expand);
796     setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
797   }
798
799   setBooleanContents(ZeroOrOneBooleanContent);
800
801   if (Subtarget.hasAltivec()) {
802     // Altivec instructions set fields to all zeros or all ones.
803     setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
804   }
805
806   if (!isPPC64) {
807     // These libcalls are not available in 32-bit.
808     setLibcallName(RTLIB::SHL_I128, nullptr);
809     setLibcallName(RTLIB::SRL_I128, nullptr);
810     setLibcallName(RTLIB::SRA_I128, nullptr);
811   }
812
813   if (isPPC64) {
814     setStackPointerRegisterToSaveRestore(PPC::X1);
815     setExceptionPointerRegister(PPC::X3);
816     setExceptionSelectorRegister(PPC::X4);
817   } else {
818     setStackPointerRegisterToSaveRestore(PPC::R1);
819     setExceptionPointerRegister(PPC::R3);
820     setExceptionSelectorRegister(PPC::R4);
821   }
822
823   // We have target-specific dag combine patterns for the following nodes:
824   setTargetDAGCombine(ISD::SINT_TO_FP);
825   if (Subtarget.hasFPCVT())
826     setTargetDAGCombine(ISD::UINT_TO_FP);
827   setTargetDAGCombine(ISD::LOAD);
828   setTargetDAGCombine(ISD::STORE);
829   setTargetDAGCombine(ISD::BR_CC);
830   if (Subtarget.useCRBits())
831     setTargetDAGCombine(ISD::BRCOND);
832   setTargetDAGCombine(ISD::BSWAP);
833   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
834   setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
835   setTargetDAGCombine(ISD::INTRINSIC_VOID);
836
837   setTargetDAGCombine(ISD::SIGN_EXTEND);
838   setTargetDAGCombine(ISD::ZERO_EXTEND);
839   setTargetDAGCombine(ISD::ANY_EXTEND);
840
841   if (Subtarget.useCRBits()) {
842     setTargetDAGCombine(ISD::TRUNCATE);
843     setTargetDAGCombine(ISD::SETCC);
844     setTargetDAGCombine(ISD::SELECT_CC);
845   }
846
847   // Use reciprocal estimates.
848   if (TM.Options.UnsafeFPMath) {
849     setTargetDAGCombine(ISD::FDIV);
850     setTargetDAGCombine(ISD::FSQRT);
851   }
852
853   // Darwin long double math library functions have $LDBL128 appended.
854   if (Subtarget.isDarwin()) {
855     setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
856     setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
857     setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
858     setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
859     setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
860     setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
861     setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
862     setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
863     setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
864     setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
865   }
866
867   // With 32 condition bits, we don't need to sink (and duplicate) compares
868   // aggressively in CodeGenPrep.
869   if (Subtarget.useCRBits()) {
870     setHasMultipleConditionRegisters();
871     setJumpIsExpensive();
872   }
873
874   setMinFunctionAlignment(2);
875   if (Subtarget.isDarwin())
876     setPrefFunctionAlignment(4);
877
878   switch (Subtarget.getDarwinDirective()) {
879   default: break;
880   case PPC::DIR_970:
881   case PPC::DIR_A2:
882   case PPC::DIR_E500mc:
883   case PPC::DIR_E5500:
884   case PPC::DIR_PWR4:
885   case PPC::DIR_PWR5:
886   case PPC::DIR_PWR5X:
887   case PPC::DIR_PWR6:
888   case PPC::DIR_PWR6X:
889   case PPC::DIR_PWR7:
890   case PPC::DIR_PWR8:
891     setPrefFunctionAlignment(4);
892     setPrefLoopAlignment(4);
893     break;
894   }
895
896   setInsertFencesForAtomic(true);
897
898   if (Subtarget.enableMachineScheduler())
899     setSchedulingPreference(Sched::Source);
900   else
901     setSchedulingPreference(Sched::Hybrid);
902
903   computeRegisterProperties(STI.getRegisterInfo());
904
905   // The Freescale cores do better with aggressive inlining of memcpy and
906   // friends. GCC uses same threshold of 128 bytes (= 32 word stores).
907   if (Subtarget.getDarwinDirective() == PPC::DIR_E500mc ||
908       Subtarget.getDarwinDirective() == PPC::DIR_E5500) {
909     MaxStoresPerMemset = 32;
910     MaxStoresPerMemsetOptSize = 16;
911     MaxStoresPerMemcpy = 32;
912     MaxStoresPerMemcpyOptSize = 8;
913     MaxStoresPerMemmove = 32;
914     MaxStoresPerMemmoveOptSize = 8;
915   } else if (Subtarget.getDarwinDirective() == PPC::DIR_A2) {
916     // The A2 also benefits from (very) aggressive inlining of memcpy and
917     // friends. The overhead of a the function call, even when warm, can be
918     // over one hundred cycles.
919     MaxStoresPerMemset = 128;
920     MaxStoresPerMemcpy = 128;
921     MaxStoresPerMemmove = 128;
922   }
923 }
924
925 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
926 /// the desired ByVal argument alignment.
927 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign,
928                              unsigned MaxMaxAlign) {
929   if (MaxAlign == MaxMaxAlign)
930     return;
931   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
932     if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256)
933       MaxAlign = 32;
934     else if (VTy->getBitWidth() >= 128 && MaxAlign < 16)
935       MaxAlign = 16;
936   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
937     unsigned EltAlign = 0;
938     getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign);
939     if (EltAlign > MaxAlign)
940       MaxAlign = EltAlign;
941   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
942     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
943       unsigned EltAlign = 0;
944       getMaxByValAlign(STy->getElementType(i), EltAlign, MaxMaxAlign);
945       if (EltAlign > MaxAlign)
946         MaxAlign = EltAlign;
947       if (MaxAlign == MaxMaxAlign)
948         break;
949     }
950   }
951 }
952
953 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
954 /// function arguments in the caller parameter area.
955 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
956   // Darwin passes everything on 4 byte boundary.
957   if (Subtarget.isDarwin())
958     return 4;
959
960   // 16byte and wider vectors are passed on 16byte boundary.
961   // The rest is 8 on PPC64 and 4 on PPC32 boundary.
962   unsigned Align = Subtarget.isPPC64() ? 8 : 4;
963   if (Subtarget.hasAltivec() || Subtarget.hasQPX())
964     getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16);
965   return Align;
966 }
967
968 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
969   switch ((PPCISD::NodeType)Opcode) {
970   case PPCISD::FIRST_NUMBER:    break;
971   case PPCISD::FSEL:            return "PPCISD::FSEL";
972   case PPCISD::FCFID:           return "PPCISD::FCFID";
973   case PPCISD::FCFIDU:          return "PPCISD::FCFIDU";
974   case PPCISD::FCFIDS:          return "PPCISD::FCFIDS";
975   case PPCISD::FCFIDUS:         return "PPCISD::FCFIDUS";
976   case PPCISD::FCTIDZ:          return "PPCISD::FCTIDZ";
977   case PPCISD::FCTIWZ:          return "PPCISD::FCTIWZ";
978   case PPCISD::FCTIDUZ:         return "PPCISD::FCTIDUZ";
979   case PPCISD::FCTIWUZ:         return "PPCISD::FCTIWUZ";
980   case PPCISD::FRE:             return "PPCISD::FRE";
981   case PPCISD::FRSQRTE:         return "PPCISD::FRSQRTE";
982   case PPCISD::STFIWX:          return "PPCISD::STFIWX";
983   case PPCISD::VMADDFP:         return "PPCISD::VMADDFP";
984   case PPCISD::VNMSUBFP:        return "PPCISD::VNMSUBFP";
985   case PPCISD::VPERM:           return "PPCISD::VPERM";
986   case PPCISD::CMPB:            return "PPCISD::CMPB";
987   case PPCISD::Hi:              return "PPCISD::Hi";
988   case PPCISD::Lo:              return "PPCISD::Lo";
989   case PPCISD::TOC_ENTRY:       return "PPCISD::TOC_ENTRY";
990   case PPCISD::DYNALLOC:        return "PPCISD::DYNALLOC";
991   case PPCISD::GlobalBaseReg:   return "PPCISD::GlobalBaseReg";
992   case PPCISD::SRL:             return "PPCISD::SRL";
993   case PPCISD::SRA:             return "PPCISD::SRA";
994   case PPCISD::SHL:             return "PPCISD::SHL";
995   case PPCISD::SRA_ADDZE:       return "PPCISD::SRA_ADDZE";
996   case PPCISD::CALL:            return "PPCISD::CALL";
997   case PPCISD::CALL_NOP:        return "PPCISD::CALL_NOP";
998   case PPCISD::MTCTR:           return "PPCISD::MTCTR";
999   case PPCISD::BCTRL:           return "PPCISD::BCTRL";
1000   case PPCISD::BCTRL_LOAD_TOC:  return "PPCISD::BCTRL_LOAD_TOC";
1001   case PPCISD::RET_FLAG:        return "PPCISD::RET_FLAG";
1002   case PPCISD::READ_TIME_BASE:  return "PPCISD::READ_TIME_BASE";
1003   case PPCISD::EH_SJLJ_SETJMP:  return "PPCISD::EH_SJLJ_SETJMP";
1004   case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
1005   case PPCISD::MFOCRF:          return "PPCISD::MFOCRF";
1006   case PPCISD::MFVSR:           return "PPCISD::MFVSR";
1007   case PPCISD::MTVSRA:          return "PPCISD::MTVSRA";
1008   case PPCISD::MTVSRZ:          return "PPCISD::MTVSRZ";
1009   case PPCISD::ANDIo_1_EQ_BIT:  return "PPCISD::ANDIo_1_EQ_BIT";
1010   case PPCISD::ANDIo_1_GT_BIT:  return "PPCISD::ANDIo_1_GT_BIT";
1011   case PPCISD::VCMP:            return "PPCISD::VCMP";
1012   case PPCISD::VCMPo:           return "PPCISD::VCMPo";
1013   case PPCISD::LBRX:            return "PPCISD::LBRX";
1014   case PPCISD::STBRX:           return "PPCISD::STBRX";
1015   case PPCISD::LFIWAX:          return "PPCISD::LFIWAX";
1016   case PPCISD::LFIWZX:          return "PPCISD::LFIWZX";
1017   case PPCISD::LXVD2X:          return "PPCISD::LXVD2X";
1018   case PPCISD::STXVD2X:         return "PPCISD::STXVD2X";
1019   case PPCISD::COND_BRANCH:     return "PPCISD::COND_BRANCH";
1020   case PPCISD::BDNZ:            return "PPCISD::BDNZ";
1021   case PPCISD::BDZ:             return "PPCISD::BDZ";
1022   case PPCISD::MFFS:            return "PPCISD::MFFS";
1023   case PPCISD::FADDRTZ:         return "PPCISD::FADDRTZ";
1024   case PPCISD::TC_RETURN:       return "PPCISD::TC_RETURN";
1025   case PPCISD::CR6SET:          return "PPCISD::CR6SET";
1026   case PPCISD::CR6UNSET:        return "PPCISD::CR6UNSET";
1027   case PPCISD::PPC32_GOT:       return "PPCISD::PPC32_GOT";
1028   case PPCISD::PPC32_PICGOT:    return "PPCISD::PPC32_PICGOT";
1029   case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
1030   case PPCISD::LD_GOT_TPREL_L:  return "PPCISD::LD_GOT_TPREL_L";
1031   case PPCISD::ADD_TLS:         return "PPCISD::ADD_TLS";
1032   case PPCISD::ADDIS_TLSGD_HA:  return "PPCISD::ADDIS_TLSGD_HA";
1033   case PPCISD::ADDI_TLSGD_L:    return "PPCISD::ADDI_TLSGD_L";
1034   case PPCISD::GET_TLS_ADDR:    return "PPCISD::GET_TLS_ADDR";
1035   case PPCISD::ADDI_TLSGD_L_ADDR: return "PPCISD::ADDI_TLSGD_L_ADDR";
1036   case PPCISD::ADDIS_TLSLD_HA:  return "PPCISD::ADDIS_TLSLD_HA";
1037   case PPCISD::ADDI_TLSLD_L:    return "PPCISD::ADDI_TLSLD_L";
1038   case PPCISD::GET_TLSLD_ADDR:  return "PPCISD::GET_TLSLD_ADDR";
1039   case PPCISD::ADDI_TLSLD_L_ADDR: return "PPCISD::ADDI_TLSLD_L_ADDR";
1040   case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
1041   case PPCISD::ADDI_DTPREL_L:   return "PPCISD::ADDI_DTPREL_L";
1042   case PPCISD::VADD_SPLAT:      return "PPCISD::VADD_SPLAT";
1043   case PPCISD::SC:              return "PPCISD::SC";
1044   case PPCISD::CLRBHRB:         return "PPCISD::CLRBHRB";
1045   case PPCISD::MFBHRBE:         return "PPCISD::MFBHRBE";
1046   case PPCISD::RFEBB:           return "PPCISD::RFEBB";
1047   case PPCISD::XXSWAPD:         return "PPCISD::XXSWAPD";
1048   case PPCISD::QVFPERM:         return "PPCISD::QVFPERM";
1049   case PPCISD::QVGPCI:          return "PPCISD::QVGPCI";
1050   case PPCISD::QVALIGNI:        return "PPCISD::QVALIGNI";
1051   case PPCISD::QVESPLATI:       return "PPCISD::QVESPLATI";
1052   case PPCISD::QBFLT:           return "PPCISD::QBFLT";
1053   case PPCISD::QVLFSb:          return "PPCISD::QVLFSb";
1054   }
1055   return nullptr;
1056 }
1057
1058 EVT PPCTargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &C,
1059                                           EVT VT) const {
1060   if (!VT.isVector())
1061     return Subtarget.useCRBits() ? MVT::i1 : MVT::i32;
1062
1063   if (Subtarget.hasQPX())
1064     return EVT::getVectorVT(C, MVT::i1, VT.getVectorNumElements());
1065
1066   return VT.changeVectorElementTypeToInteger();
1067 }
1068
1069 bool PPCTargetLowering::enableAggressiveFMAFusion(EVT VT) const {
1070   assert(VT.isFloatingPoint() && "Non-floating-point FMA?");
1071   return true;
1072 }
1073
1074 //===----------------------------------------------------------------------===//
1075 // Node matching predicates, for use by the tblgen matching code.
1076 //===----------------------------------------------------------------------===//
1077
1078 /// isFloatingPointZero - Return true if this is 0.0 or -0.0.
1079 static bool isFloatingPointZero(SDValue Op) {
1080   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
1081     return CFP->getValueAPF().isZero();
1082   else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
1083     // Maybe this has already been legalized into the constant pool?
1084     if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
1085       if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
1086         return CFP->getValueAPF().isZero();
1087   }
1088   return false;
1089 }
1090
1091 /// isConstantOrUndef - Op is either an undef node or a ConstantSDNode.  Return
1092 /// true if Op is undef or if it matches the specified value.
1093 static bool isConstantOrUndef(int Op, int Val) {
1094   return Op < 0 || Op == Val;
1095 }
1096
1097 /// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
1098 /// VPKUHUM instruction.
1099 /// The ShuffleKind distinguishes between big-endian operations with
1100 /// two different inputs (0), either-endian operations with two identical
1101 /// inputs (1), and little-endian operations with two different inputs (2).
1102 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1103 bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
1104                                SelectionDAG &DAG) {
1105   bool IsLE = DAG.getTarget().getDataLayout()->isLittleEndian();
1106   if (ShuffleKind == 0) {
1107     if (IsLE)
1108       return false;
1109     for (unsigned i = 0; i != 16; ++i)
1110       if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
1111         return false;
1112   } else if (ShuffleKind == 2) {
1113     if (!IsLE)
1114       return false;
1115     for (unsigned i = 0; i != 16; ++i)
1116       if (!isConstantOrUndef(N->getMaskElt(i), i*2))
1117         return false;
1118   } else if (ShuffleKind == 1) {
1119     unsigned j = IsLE ? 0 : 1;
1120     for (unsigned i = 0; i != 8; ++i)
1121       if (!isConstantOrUndef(N->getMaskElt(i),    i*2+j) ||
1122           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j))
1123         return false;
1124   }
1125   return true;
1126 }
1127
1128 /// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
1129 /// VPKUWUM instruction.
1130 /// The ShuffleKind distinguishes between big-endian operations with
1131 /// two different inputs (0), either-endian operations with two identical
1132 /// inputs (1), and little-endian operations with two different inputs (2).
1133 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1134 bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
1135                                SelectionDAG &DAG) {
1136   bool IsLE = DAG.getTarget().getDataLayout()->isLittleEndian();
1137   if (ShuffleKind == 0) {
1138     if (IsLE)
1139       return false;
1140     for (unsigned i = 0; i != 16; i += 2)
1141       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+2) ||
1142           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+3))
1143         return false;
1144   } else if (ShuffleKind == 2) {
1145     if (!IsLE)
1146       return false;
1147     for (unsigned i = 0; i != 16; i += 2)
1148       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2) ||
1149           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+1))
1150         return false;
1151   } else if (ShuffleKind == 1) {
1152     unsigned j = IsLE ? 0 : 2;
1153     for (unsigned i = 0; i != 8; i += 2)
1154       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+j)   ||
1155           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+j+1) ||
1156           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j)   ||
1157           !isConstantOrUndef(N->getMaskElt(i+9),  i*2+j+1))
1158         return false;
1159   }
1160   return true;
1161 }
1162
1163 /// isVPKUDUMShuffleMask - Return true if this is the shuffle mask for a
1164 /// VPKUDUM instruction, AND the VPKUDUM instruction exists for the
1165 /// current subtarget.
1166 ///
1167 /// The ShuffleKind distinguishes between big-endian operations with
1168 /// two different inputs (0), either-endian operations with two identical
1169 /// inputs (1), and little-endian operations with two different inputs (2).
1170 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1171 bool PPC::isVPKUDUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
1172                                SelectionDAG &DAG) {
1173   const PPCSubtarget& Subtarget =
1174     static_cast<const PPCSubtarget&>(DAG.getSubtarget());
1175   if (!Subtarget.hasP8Vector())
1176     return false;
1177
1178   bool IsLE = DAG.getTarget().getDataLayout()->isLittleEndian();
1179   if (ShuffleKind == 0) {
1180     if (IsLE)
1181       return false;
1182     for (unsigned i = 0; i != 16; i += 4)
1183       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+4) ||
1184           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+5) ||
1185           !isConstantOrUndef(N->getMaskElt(i+2),  i*2+6) ||
1186           !isConstantOrUndef(N->getMaskElt(i+3),  i*2+7))
1187         return false;
1188   } else if (ShuffleKind == 2) {
1189     if (!IsLE)
1190       return false;
1191     for (unsigned i = 0; i != 16; i += 4)
1192       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2) ||
1193           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+1) ||
1194           !isConstantOrUndef(N->getMaskElt(i+2),  i*2+2) ||
1195           !isConstantOrUndef(N->getMaskElt(i+3),  i*2+3))
1196         return false;
1197   } else if (ShuffleKind == 1) {
1198     unsigned j = IsLE ? 0 : 4;
1199     for (unsigned i = 0; i != 8; i += 4)
1200       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+j)   ||
1201           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+j+1) ||
1202           !isConstantOrUndef(N->getMaskElt(i+2),  i*2+j+2) ||
1203           !isConstantOrUndef(N->getMaskElt(i+3),  i*2+j+3) ||
1204           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j)   ||
1205           !isConstantOrUndef(N->getMaskElt(i+9),  i*2+j+1) ||
1206           !isConstantOrUndef(N->getMaskElt(i+10), i*2+j+2) ||
1207           !isConstantOrUndef(N->getMaskElt(i+11), i*2+j+3))
1208         return false;
1209   }
1210   return true;
1211 }
1212
1213 /// isVMerge - Common function, used to match vmrg* shuffles.
1214 ///
1215 static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
1216                      unsigned LHSStart, unsigned RHSStart) {
1217   if (N->getValueType(0) != MVT::v16i8)
1218     return false;
1219   assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
1220          "Unsupported merge size!");
1221
1222   for (unsigned i = 0; i != 8/UnitSize; ++i)     // Step over units
1223     for (unsigned j = 0; j != UnitSize; ++j) {   // Step over bytes within unit
1224       if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
1225                              LHSStart+j+i*UnitSize) ||
1226           !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
1227                              RHSStart+j+i*UnitSize))
1228         return false;
1229     }
1230   return true;
1231 }
1232
1233 /// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
1234 /// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes).
1235 /// The ShuffleKind distinguishes between big-endian merges with two 
1236 /// different inputs (0), either-endian merges with two identical inputs (1),
1237 /// and little-endian merges with two different inputs (2).  For the latter,
1238 /// the input operands are swapped (see PPCInstrAltivec.td).
1239 bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
1240                              unsigned ShuffleKind, SelectionDAG &DAG) {
1241   if (DAG.getTarget().getDataLayout()->isLittleEndian()) {
1242     if (ShuffleKind == 1) // unary
1243       return isVMerge(N, UnitSize, 0, 0);
1244     else if (ShuffleKind == 2) // swapped
1245       return isVMerge(N, UnitSize, 0, 16);
1246     else
1247       return false;
1248   } else {
1249     if (ShuffleKind == 1) // unary
1250       return isVMerge(N, UnitSize, 8, 8);
1251     else if (ShuffleKind == 0) // normal
1252       return isVMerge(N, UnitSize, 8, 24);
1253     else
1254       return false;
1255   }
1256 }
1257
1258 /// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
1259 /// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes).
1260 /// The ShuffleKind distinguishes between big-endian merges with two 
1261 /// different inputs (0), either-endian merges with two identical inputs (1),
1262 /// and little-endian merges with two different inputs (2).  For the latter,
1263 /// the input operands are swapped (see PPCInstrAltivec.td).
1264 bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
1265                              unsigned ShuffleKind, SelectionDAG &DAG) {
1266   if (DAG.getTarget().getDataLayout()->isLittleEndian()) {
1267     if (ShuffleKind == 1) // unary
1268       return isVMerge(N, UnitSize, 8, 8);
1269     else if (ShuffleKind == 2) // swapped
1270       return isVMerge(N, UnitSize, 8, 24);
1271     else
1272       return false;
1273   } else {
1274     if (ShuffleKind == 1) // unary
1275       return isVMerge(N, UnitSize, 0, 0);
1276     else if (ShuffleKind == 0) // normal
1277       return isVMerge(N, UnitSize, 0, 16);
1278     else
1279       return false;
1280   }
1281 }
1282
1283 /**
1284  * \brief Common function used to match vmrgew and vmrgow shuffles
1285  *
1286  * The indexOffset determines whether to look for even or odd words in
1287  * the shuffle mask. This is based on the of the endianness of the target
1288  * machine.
1289  *   - Little Endian:
1290  *     - Use offset of 0 to check for odd elements
1291  *     - Use offset of 4 to check for even elements
1292  *   - Big Endian:
1293  *     - Use offset of 0 to check for even elements
1294  *     - Use offset of 4 to check for odd elements
1295  * A detailed description of the vector element ordering for little endian and
1296  * big endian can be found at
1297  * http://www.ibm.com/developerworks/library/l-ibm-xl-c-cpp-compiler/index.html
1298  * Targeting your applications - what little endian and big endian IBM XL C/C++
1299  * compiler differences mean to you
1300  *
1301  * The mask to the shuffle vector instruction specifies the indices of the
1302  * elements from the two input vectors to place in the result. The elements are
1303  * numbered in array-access order, starting with the first vector. These vectors
1304  * are always of type v16i8, thus each vector will contain 16 elements of size
1305  * 8. More info on the shuffle vector can be found in the
1306  * http://llvm.org/docs/LangRef.html#shufflevector-instruction
1307  * Language Reference.
1308  *
1309  * The RHSStartValue indicates whether the same input vectors are used (unary)
1310  * or two different input vectors are used, based on the following:
1311  *   - If the instruction uses the same vector for both inputs, the range of the
1312  *     indices will be 0 to 15. In this case, the RHSStart value passed should
1313  *     be 0.
1314  *   - If the instruction has two different vectors then the range of the
1315  *     indices will be 0 to 31. In this case, the RHSStart value passed should
1316  *     be 16 (indices 0-15 specify elements in the first vector while indices 16
1317  *     to 31 specify elements in the second vector).
1318  *
1319  * \param[in] N The shuffle vector SD Node to analyze
1320  * \param[in] IndexOffset Specifies whether to look for even or odd elements
1321  * \param[in] RHSStartValue Specifies the starting index for the righthand input
1322  * vector to the shuffle_vector instruction
1323  * \return true iff this shuffle vector represents an even or odd word merge
1324  */
1325 static bool isVMerge(ShuffleVectorSDNode *N, unsigned IndexOffset,
1326                      unsigned RHSStartValue) {
1327   if (N->getValueType(0) != MVT::v16i8)
1328     return false;
1329
1330   for (unsigned i = 0; i < 2; ++i)
1331     for (unsigned j = 0; j < 4; ++j)
1332       if (!isConstantOrUndef(N->getMaskElt(i*4+j),
1333                              i*RHSStartValue+j+IndexOffset) ||
1334           !isConstantOrUndef(N->getMaskElt(i*4+j+8),
1335                              i*RHSStartValue+j+IndexOffset+8))
1336         return false;
1337   return true;
1338 }
1339
1340 /**
1341  * \brief Determine if the specified shuffle mask is suitable for the vmrgew or
1342  * vmrgow instructions.
1343  *
1344  * \param[in] N The shuffle vector SD Node to analyze
1345  * \param[in] CheckEven Check for an even merge (true) or an odd merge (false)
1346  * \param[in] ShuffleKind Identify the type of merge:
1347  *   - 0 = big-endian merge with two different inputs;
1348  *   - 1 = either-endian merge with two identical inputs;
1349  *   - 2 = little-endian merge with two different inputs (inputs are swapped for
1350  *     little-endian merges).
1351  * \param[in] DAG The current SelectionDAG
1352  * \return true iff this shuffle mask 
1353  */
1354 bool PPC::isVMRGEOShuffleMask(ShuffleVectorSDNode *N, bool CheckEven,
1355                               unsigned ShuffleKind, SelectionDAG &DAG) {
1356   if (DAG.getTarget().getDataLayout()->isLittleEndian()) {
1357     unsigned indexOffset = CheckEven ? 4 : 0;
1358     if (ShuffleKind == 1) // Unary
1359       return isVMerge(N, indexOffset, 0);
1360     else if (ShuffleKind == 2) // swapped
1361       return isVMerge(N, indexOffset, 16);
1362     else
1363       return false;
1364   }
1365   else {
1366     unsigned indexOffset = CheckEven ? 0 : 4;
1367     if (ShuffleKind == 1) // Unary
1368       return isVMerge(N, indexOffset, 0);
1369     else if (ShuffleKind == 0) // Normal
1370       return isVMerge(N, indexOffset, 16);
1371     else
1372       return false;
1373   }
1374   return false;
1375 }
1376
1377 /// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
1378 /// amount, otherwise return -1.
1379 /// The ShuffleKind distinguishes between big-endian operations with two 
1380 /// different inputs (0), either-endian operations with two identical inputs
1381 /// (1), and little-endian operations with two different inputs (2).  For the
1382 /// latter, the input operands are swapped (see PPCInstrAltivec.td).
1383 int PPC::isVSLDOIShuffleMask(SDNode *N, unsigned ShuffleKind,
1384                              SelectionDAG &DAG) {
1385   if (N->getValueType(0) != MVT::v16i8)
1386     return -1;
1387
1388   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1389
1390   // Find the first non-undef value in the shuffle mask.
1391   unsigned i;
1392   for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
1393     /*search*/;
1394
1395   if (i == 16) return -1;  // all undef.
1396
1397   // Otherwise, check to see if the rest of the elements are consecutively
1398   // numbered from this value.
1399   unsigned ShiftAmt = SVOp->getMaskElt(i);
1400   if (ShiftAmt < i) return -1;
1401
1402   ShiftAmt -= i;
1403   bool isLE = DAG.getTarget().getDataLayout()->isLittleEndian();
1404
1405   if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) {
1406     // Check the rest of the elements to see if they are consecutive.
1407     for (++i; i != 16; ++i)
1408       if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1409         return -1;
1410   } else if (ShuffleKind == 1) {
1411     // Check the rest of the elements to see if they are consecutive.
1412     for (++i; i != 16; ++i)
1413       if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
1414         return -1;
1415   } else
1416     return -1;
1417
1418   if (ShuffleKind == 2 && isLE)
1419     ShiftAmt = 16 - ShiftAmt;
1420
1421   return ShiftAmt;
1422 }
1423
1424 /// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
1425 /// specifies a splat of a single element that is suitable for input to
1426 /// VSPLTB/VSPLTH/VSPLTW.
1427 bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
1428   assert(N->getValueType(0) == MVT::v16i8 &&
1429          (EltSize == 1 || EltSize == 2 || EltSize == 4));
1430
1431   // This is a splat operation if each element of the permute is the same, and
1432   // if the value doesn't reference the second vector.
1433   unsigned ElementBase = N->getMaskElt(0);
1434
1435   // FIXME: Handle UNDEF elements too!
1436   if (ElementBase >= 16)
1437     return false;
1438
1439   // Check that the indices are consecutive, in the case of a multi-byte element
1440   // splatted with a v16i8 mask.
1441   for (unsigned i = 1; i != EltSize; ++i)
1442     if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
1443       return false;
1444
1445   for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
1446     if (N->getMaskElt(i) < 0) continue;
1447     for (unsigned j = 0; j != EltSize; ++j)
1448       if (N->getMaskElt(i+j) != N->getMaskElt(j))
1449         return false;
1450   }
1451   return true;
1452 }
1453
1454 /// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
1455 /// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
1456 unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize,
1457                                 SelectionDAG &DAG) {
1458   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1459   assert(isSplatShuffleMask(SVOp, EltSize));
1460   if (DAG.getTarget().getDataLayout()->isLittleEndian())
1461     return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize);
1462   else
1463     return SVOp->getMaskElt(0) / EltSize;
1464 }
1465
1466 /// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
1467 /// by using a vspltis[bhw] instruction of the specified element size, return
1468 /// the constant being splatted.  The ByteSize field indicates the number of
1469 /// bytes of each element [124] -> [bhw].
1470 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
1471   SDValue OpVal(nullptr, 0);
1472
1473   // If ByteSize of the splat is bigger than the element size of the
1474   // build_vector, then we have a case where we are checking for a splat where
1475   // multiple elements of the buildvector are folded together into a single
1476   // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
1477   unsigned EltSize = 16/N->getNumOperands();
1478   if (EltSize < ByteSize) {
1479     unsigned Multiple = ByteSize/EltSize;   // Number of BV entries per spltval.
1480     SDValue UniquedVals[4];
1481     assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
1482
1483     // See if all of the elements in the buildvector agree across.
1484     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1485       if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1486       // If the element isn't a constant, bail fully out.
1487       if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
1488
1489
1490       if (!UniquedVals[i&(Multiple-1)].getNode())
1491         UniquedVals[i&(Multiple-1)] = N->getOperand(i);
1492       else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
1493         return SDValue();  // no match.
1494     }
1495
1496     // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
1497     // either constant or undef values that are identical for each chunk.  See
1498     // if these chunks can form into a larger vspltis*.
1499
1500     // Check to see if all of the leading entries are either 0 or -1.  If
1501     // neither, then this won't fit into the immediate field.
1502     bool LeadingZero = true;
1503     bool LeadingOnes = true;
1504     for (unsigned i = 0; i != Multiple-1; ++i) {
1505       if (!UniquedVals[i].getNode()) continue;  // Must have been undefs.
1506
1507       LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
1508       LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
1509     }
1510     // Finally, check the least significant entry.
1511     if (LeadingZero) {
1512       if (!UniquedVals[Multiple-1].getNode())
1513         return DAG.getTargetConstant(0, SDLoc(N), MVT::i32);  // 0,0,0,undef
1514       int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
1515       if (Val < 16)                                   // 0,0,0,4 -> vspltisw(4)
1516         return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32);
1517     }
1518     if (LeadingOnes) {
1519       if (!UniquedVals[Multiple-1].getNode())
1520         return DAG.getTargetConstant(~0U, SDLoc(N), MVT::i32); // -1,-1,-1,undef
1521       int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
1522       if (Val >= -16)                            // -1,-1,-1,-2 -> vspltisw(-2)
1523         return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32);
1524     }
1525
1526     return SDValue();
1527   }
1528
1529   // Check to see if this buildvec has a single non-undef value in its elements.
1530   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1531     if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1532     if (!OpVal.getNode())
1533       OpVal = N->getOperand(i);
1534     else if (OpVal != N->getOperand(i))
1535       return SDValue();
1536   }
1537
1538   if (!OpVal.getNode()) return SDValue();  // All UNDEF: use implicit def.
1539
1540   unsigned ValSizeInBytes = EltSize;
1541   uint64_t Value = 0;
1542   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
1543     Value = CN->getZExtValue();
1544   } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
1545     assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
1546     Value = FloatToBits(CN->getValueAPF().convertToFloat());
1547   }
1548
1549   // If the splat value is larger than the element value, then we can never do
1550   // this splat.  The only case that we could fit the replicated bits into our
1551   // immediate field for would be zero, and we prefer to use vxor for it.
1552   if (ValSizeInBytes < ByteSize) return SDValue();
1553
1554   // If the element value is larger than the splat value, check if it consists
1555   // of a repeated bit pattern of size ByteSize.
1556   if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
1557     return SDValue();
1558
1559   // Properly sign extend the value.
1560   int MaskVal = SignExtend32(Value, ByteSize * 8);
1561
1562   // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
1563   if (MaskVal == 0) return SDValue();
1564
1565   // Finally, if this value fits in a 5 bit sext field, return it
1566   if (SignExtend32<5>(MaskVal) == MaskVal)
1567     return DAG.getTargetConstant(MaskVal, SDLoc(N), MVT::i32);
1568   return SDValue();
1569 }
1570
1571 /// isQVALIGNIShuffleMask - If this is a qvaligni shuffle mask, return the shift
1572 /// amount, otherwise return -1.
1573 int PPC::isQVALIGNIShuffleMask(SDNode *N) {
1574   EVT VT = N->getValueType(0);
1575   if (VT != MVT::v4f64 && VT != MVT::v4f32 && VT != MVT::v4i1)
1576     return -1;
1577
1578   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1579
1580   // Find the first non-undef value in the shuffle mask.
1581   unsigned i;
1582   for (i = 0; i != 4 && SVOp->getMaskElt(i) < 0; ++i)
1583     /*search*/;
1584
1585   if (i == 4) return -1;  // all undef.
1586
1587   // Otherwise, check to see if the rest of the elements are consecutively
1588   // numbered from this value.
1589   unsigned ShiftAmt = SVOp->getMaskElt(i);
1590   if (ShiftAmt < i) return -1;
1591   ShiftAmt -= i;
1592
1593   // Check the rest of the elements to see if they are consecutive.
1594   for (++i; i != 4; ++i)
1595     if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1596       return -1;
1597
1598   return ShiftAmt;
1599 }
1600
1601 //===----------------------------------------------------------------------===//
1602 //  Addressing Mode Selection
1603 //===----------------------------------------------------------------------===//
1604
1605 /// isIntS16Immediate - This method tests to see if the node is either a 32-bit
1606 /// or 64-bit immediate, and if the value can be accurately represented as a
1607 /// sign extension from a 16-bit value.  If so, this returns true and the
1608 /// immediate.
1609 static bool isIntS16Immediate(SDNode *N, short &Imm) {
1610   if (!isa<ConstantSDNode>(N))
1611     return false;
1612
1613   Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
1614   if (N->getValueType(0) == MVT::i32)
1615     return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
1616   else
1617     return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
1618 }
1619 static bool isIntS16Immediate(SDValue Op, short &Imm) {
1620   return isIntS16Immediate(Op.getNode(), Imm);
1621 }
1622
1623
1624 /// SelectAddressRegReg - Given the specified addressed, check to see if it
1625 /// can be represented as an indexed [r+r] operation.  Returns false if it
1626 /// can be more efficiently represented with [r+imm].
1627 bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1628                                             SDValue &Index,
1629                                             SelectionDAG &DAG) const {
1630   short imm = 0;
1631   if (N.getOpcode() == ISD::ADD) {
1632     if (isIntS16Immediate(N.getOperand(1), imm))
1633       return false;    // r+i
1634     if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1635       return false;    // r+i
1636
1637     Base = N.getOperand(0);
1638     Index = N.getOperand(1);
1639     return true;
1640   } else if (N.getOpcode() == ISD::OR) {
1641     if (isIntS16Immediate(N.getOperand(1), imm))
1642       return false;    // r+i can fold it if we can.
1643
1644     // If this is an or of disjoint bitfields, we can codegen this as an add
1645     // (for better address arithmetic) if the LHS and RHS of the OR are provably
1646     // disjoint.
1647     APInt LHSKnownZero, LHSKnownOne;
1648     APInt RHSKnownZero, RHSKnownOne;
1649     DAG.computeKnownBits(N.getOperand(0),
1650                          LHSKnownZero, LHSKnownOne);
1651
1652     if (LHSKnownZero.getBoolValue()) {
1653       DAG.computeKnownBits(N.getOperand(1),
1654                            RHSKnownZero, RHSKnownOne);
1655       // If all of the bits are known zero on the LHS or RHS, the add won't
1656       // carry.
1657       if (~(LHSKnownZero | RHSKnownZero) == 0) {
1658         Base = N.getOperand(0);
1659         Index = N.getOperand(1);
1660         return true;
1661       }
1662     }
1663   }
1664
1665   return false;
1666 }
1667
1668 // If we happen to be doing an i64 load or store into a stack slot that has
1669 // less than a 4-byte alignment, then the frame-index elimination may need to
1670 // use an indexed load or store instruction (because the offset may not be a
1671 // multiple of 4). The extra register needed to hold the offset comes from the
1672 // register scavenger, and it is possible that the scavenger will need to use
1673 // an emergency spill slot. As a result, we need to make sure that a spill slot
1674 // is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1675 // stack slot.
1676 static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1677   // FIXME: This does not handle the LWA case.
1678   if (VT != MVT::i64)
1679     return;
1680
1681   // NOTE: We'll exclude negative FIs here, which come from argument
1682   // lowering, because there are no known test cases triggering this problem
1683   // using packed structures (or similar). We can remove this exclusion if
1684   // we find such a test case. The reason why this is so test-case driven is
1685   // because this entire 'fixup' is only to prevent crashes (from the
1686   // register scavenger) on not-really-valid inputs. For example, if we have:
1687   //   %a = alloca i1
1688   //   %b = bitcast i1* %a to i64*
1689   //   store i64* a, i64 b
1690   // then the store should really be marked as 'align 1', but is not. If it
1691   // were marked as 'align 1' then the indexed form would have been
1692   // instruction-selected initially, and the problem this 'fixup' is preventing
1693   // won't happen regardless.
1694   if (FrameIdx < 0)
1695     return;
1696
1697   MachineFunction &MF = DAG.getMachineFunction();
1698   MachineFrameInfo *MFI = MF.getFrameInfo();
1699
1700   unsigned Align = MFI->getObjectAlignment(FrameIdx);
1701   if (Align >= 4)
1702     return;
1703
1704   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1705   FuncInfo->setHasNonRISpills();
1706 }
1707
1708 /// Returns true if the address N can be represented by a base register plus
1709 /// a signed 16-bit displacement [r+imm], and if it is not better
1710 /// represented as reg+reg.  If Aligned is true, only accept displacements
1711 /// suitable for STD and friends, i.e. multiples of 4.
1712 bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
1713                                             SDValue &Base,
1714                                             SelectionDAG &DAG,
1715                                             bool Aligned) const {
1716   // FIXME dl should come from parent load or store, not from address
1717   SDLoc dl(N);
1718   // If this can be more profitably realized as r+r, fail.
1719   if (SelectAddressRegReg(N, Disp, Base, DAG))
1720     return false;
1721
1722   if (N.getOpcode() == ISD::ADD) {
1723     short imm = 0;
1724     if (isIntS16Immediate(N.getOperand(1), imm) &&
1725         (!Aligned || (imm & 3) == 0)) {
1726       Disp = DAG.getTargetConstant(imm, dl, N.getValueType());
1727       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1728         Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1729         fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1730       } else {
1731         Base = N.getOperand(0);
1732       }
1733       return true; // [r+i]
1734     } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1735       // Match LOAD (ADD (X, Lo(G))).
1736       assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
1737              && "Cannot handle constant offsets yet!");
1738       Disp = N.getOperand(1).getOperand(0);  // The global address.
1739       assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
1740              Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
1741              Disp.getOpcode() == ISD::TargetConstantPool ||
1742              Disp.getOpcode() == ISD::TargetJumpTable);
1743       Base = N.getOperand(0);
1744       return true;  // [&g+r]
1745     }
1746   } else if (N.getOpcode() == ISD::OR) {
1747     short imm = 0;
1748     if (isIntS16Immediate(N.getOperand(1), imm) &&
1749         (!Aligned || (imm & 3) == 0)) {
1750       // If this is an or of disjoint bitfields, we can codegen this as an add
1751       // (for better address arithmetic) if the LHS and RHS of the OR are
1752       // provably disjoint.
1753       APInt LHSKnownZero, LHSKnownOne;
1754       DAG.computeKnownBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
1755
1756       if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
1757         // If all of the bits are known zero on the LHS or RHS, the add won't
1758         // carry.
1759         if (FrameIndexSDNode *FI =
1760               dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1761           Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1762           fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1763         } else {
1764           Base = N.getOperand(0);
1765         }
1766         Disp = DAG.getTargetConstant(imm, dl, N.getValueType());
1767         return true;
1768       }
1769     }
1770   } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1771     // Loading from a constant address.
1772
1773     // If this address fits entirely in a 16-bit sext immediate field, codegen
1774     // this as "d, 0"
1775     short Imm;
1776     if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
1777       Disp = DAG.getTargetConstant(Imm, dl, CN->getValueType(0));
1778       Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1779                              CN->getValueType(0));
1780       return true;
1781     }
1782
1783     // Handle 32-bit sext immediates with LIS + addr mode.
1784     if ((CN->getValueType(0) == MVT::i32 ||
1785          (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1786         (!Aligned || (CN->getZExtValue() & 3) == 0)) {
1787       int Addr = (int)CN->getZExtValue();
1788
1789       // Otherwise, break this down into an LIS + disp.
1790       Disp = DAG.getTargetConstant((short)Addr, dl, MVT::i32);
1791
1792       Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, dl,
1793                                    MVT::i32);
1794       unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
1795       Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
1796       return true;
1797     }
1798   }
1799
1800   Disp = DAG.getTargetConstant(0, dl, getPointerTy(DAG.getDataLayout()));
1801   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
1802     Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1803     fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1804   } else
1805     Base = N;
1806   return true;      // [r+0]
1807 }
1808
1809 /// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1810 /// represented as an indexed [r+r] operation.
1811 bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1812                                                 SDValue &Index,
1813                                                 SelectionDAG &DAG) const {
1814   // Check to see if we can easily represent this as an [r+r] address.  This
1815   // will fail if it thinks that the address is more profitably represented as
1816   // reg+imm, e.g. where imm = 0.
1817   if (SelectAddressRegReg(N, Base, Index, DAG))
1818     return true;
1819
1820   // If the operand is an addition, always emit this as [r+r], since this is
1821   // better (for code size, and execution, as the memop does the add for free)
1822   // than emitting an explicit add.
1823   if (N.getOpcode() == ISD::ADD) {
1824     Base = N.getOperand(0);
1825     Index = N.getOperand(1);
1826     return true;
1827   }
1828
1829   // Otherwise, do it the hard way, using R0 as the base register.
1830   Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1831                          N.getValueType());
1832   Index = N;
1833   return true;
1834 }
1835
1836 /// getPreIndexedAddressParts - returns true by value, base pointer and
1837 /// offset pointer and addressing mode by reference if the node's address
1838 /// can be legally represented as pre-indexed load / store address.
1839 bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1840                                                   SDValue &Offset,
1841                                                   ISD::MemIndexedMode &AM,
1842                                                   SelectionDAG &DAG) const {
1843   if (DisablePPCPreinc) return false;
1844
1845   bool isLoad = true;
1846   SDValue Ptr;
1847   EVT VT;
1848   unsigned Alignment;
1849   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1850     Ptr = LD->getBasePtr();
1851     VT = LD->getMemoryVT();
1852     Alignment = LD->getAlignment();
1853   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1854     Ptr = ST->getBasePtr();
1855     VT  = ST->getMemoryVT();
1856     Alignment = ST->getAlignment();
1857     isLoad = false;
1858   } else
1859     return false;
1860
1861   // PowerPC doesn't have preinc load/store instructions for vectors (except
1862   // for QPX, which does have preinc r+r forms).
1863   if (VT.isVector()) {
1864     if (!Subtarget.hasQPX() || (VT != MVT::v4f64 && VT != MVT::v4f32)) {
1865       return false;
1866     } else if (SelectAddressRegRegOnly(Ptr, Offset, Base, DAG)) {
1867       AM = ISD::PRE_INC;
1868       return true;
1869     }
1870   }
1871
1872   if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1873
1874     // Common code will reject creating a pre-inc form if the base pointer
1875     // is a frame index, or if N is a store and the base pointer is either
1876     // the same as or a predecessor of the value being stored.  Check for
1877     // those situations here, and try with swapped Base/Offset instead.
1878     bool Swap = false;
1879
1880     if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1881       Swap = true;
1882     else if (!isLoad) {
1883       SDValue Val = cast<StoreSDNode>(N)->getValue();
1884       if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1885         Swap = true;
1886     }
1887
1888     if (Swap)
1889       std::swap(Base, Offset);
1890
1891     AM = ISD::PRE_INC;
1892     return true;
1893   }
1894
1895   // LDU/STU can only handle immediates that are a multiple of 4.
1896   if (VT != MVT::i64) {
1897     if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
1898       return false;
1899   } else {
1900     // LDU/STU need an address with at least 4-byte alignment.
1901     if (Alignment < 4)
1902       return false;
1903
1904     if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
1905       return false;
1906   }
1907
1908   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1909     // PPC64 doesn't have lwau, but it does have lwaux.  Reject preinc load of
1910     // sext i32 to i64 when addr mode is r+i.
1911     if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
1912         LD->getExtensionType() == ISD::SEXTLOAD &&
1913         isa<ConstantSDNode>(Offset))
1914       return false;
1915   }
1916
1917   AM = ISD::PRE_INC;
1918   return true;
1919 }
1920
1921 //===----------------------------------------------------------------------===//
1922 //  LowerOperation implementation
1923 //===----------------------------------------------------------------------===//
1924
1925 /// GetLabelAccessInfo - Return true if we should reference labels using a
1926 /// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1927 static bool GetLabelAccessInfo(const TargetMachine &TM,
1928                                const PPCSubtarget &Subtarget,
1929                                unsigned &HiOpFlags, unsigned &LoOpFlags,
1930                                const GlobalValue *GV = nullptr) {
1931   HiOpFlags = PPCII::MO_HA;
1932   LoOpFlags = PPCII::MO_LO;
1933
1934   // Don't use the pic base if not in PIC relocation model.
1935   bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
1936
1937   if (isPIC) {
1938     HiOpFlags |= PPCII::MO_PIC_FLAG;
1939     LoOpFlags |= PPCII::MO_PIC_FLAG;
1940   }
1941
1942   // If this is a reference to a global value that requires a non-lazy-ptr, make
1943   // sure that instruction lowering adds it.
1944   if (GV && Subtarget.hasLazyResolverStub(GV)) {
1945     HiOpFlags |= PPCII::MO_NLP_FLAG;
1946     LoOpFlags |= PPCII::MO_NLP_FLAG;
1947
1948     if (GV->hasHiddenVisibility()) {
1949       HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1950       LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1951     }
1952   }
1953
1954   return isPIC;
1955 }
1956
1957 static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1958                              SelectionDAG &DAG) {
1959   SDLoc DL(HiPart);
1960   EVT PtrVT = HiPart.getValueType();
1961   SDValue Zero = DAG.getConstant(0, DL, PtrVT);
1962
1963   SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1964   SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
1965
1966   // With PIC, the first instruction is actually "GR+hi(&G)".
1967   if (isPIC)
1968     Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1969                      DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
1970
1971   // Generate non-pic code that has direct accesses to the constant pool.
1972   // The address of the global is just (hi(&g)+lo(&g)).
1973   return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1974 }
1975
1976 static void setUsesTOCBasePtr(MachineFunction &MF) {
1977   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1978   FuncInfo->setUsesTOCBasePtr();
1979 }
1980
1981 static void setUsesTOCBasePtr(SelectionDAG &DAG) {
1982   setUsesTOCBasePtr(DAG.getMachineFunction());
1983 }
1984
1985 static SDValue getTOCEntry(SelectionDAG &DAG, SDLoc dl, bool Is64Bit,
1986                            SDValue GA) {
1987   EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
1988   SDValue Reg = Is64Bit ? DAG.getRegister(PPC::X2, VT) :
1989                 DAG.getNode(PPCISD::GlobalBaseReg, dl, VT);
1990
1991   SDValue Ops[] = { GA, Reg };
1992   return DAG.getMemIntrinsicNode(PPCISD::TOC_ENTRY, dl,
1993                                  DAG.getVTList(VT, MVT::Other), Ops, VT,
1994                                  MachinePointerInfo::getGOT(), 0, false, true,
1995                                  false, 0);
1996 }
1997
1998 SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
1999                                              SelectionDAG &DAG) const {
2000   EVT PtrVT = Op.getValueType();
2001   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
2002   const Constant *C = CP->getConstVal();
2003
2004   // 64-bit SVR4 ABI code is always position-independent.
2005   // The actual address of the GlobalValue is stored in the TOC.
2006   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2007     setUsesTOCBasePtr(DAG);
2008     SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
2009     return getTOCEntry(DAG, SDLoc(CP), true, GA);
2010   }
2011
2012   unsigned MOHiFlag, MOLoFlag;
2013   bool isPIC =
2014       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
2015
2016   if (isPIC && Subtarget.isSVR4ABI()) {
2017     SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(),
2018                                            PPCII::MO_PIC_FLAG);
2019     return getTOCEntry(DAG, SDLoc(CP), false, GA);
2020   }
2021
2022   SDValue CPIHi =
2023     DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
2024   SDValue CPILo =
2025     DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
2026   return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
2027 }
2028
2029 SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
2030   EVT PtrVT = Op.getValueType();
2031   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
2032
2033   // 64-bit SVR4 ABI code is always position-independent.
2034   // The actual address of the GlobalValue is stored in the TOC.
2035   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2036     setUsesTOCBasePtr(DAG);
2037     SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
2038     return getTOCEntry(DAG, SDLoc(JT), true, GA);
2039   }
2040
2041   unsigned MOHiFlag, MOLoFlag;
2042   bool isPIC =
2043       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
2044
2045   if (isPIC && Subtarget.isSVR4ABI()) {
2046     SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
2047                                         PPCII::MO_PIC_FLAG);
2048     return getTOCEntry(DAG, SDLoc(GA), false, GA);
2049   }
2050
2051   SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
2052   SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
2053   return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
2054 }
2055
2056 SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
2057                                              SelectionDAG &DAG) const {
2058   EVT PtrVT = Op.getValueType();
2059   BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op);
2060   const BlockAddress *BA = BASDN->getBlockAddress();
2061
2062   // 64-bit SVR4 ABI code is always position-independent.
2063   // The actual BlockAddress is stored in the TOC.
2064   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2065     setUsesTOCBasePtr(DAG);
2066     SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset());
2067     return getTOCEntry(DAG, SDLoc(BASDN), true, GA);
2068   }
2069
2070   unsigned MOHiFlag, MOLoFlag;
2071   bool isPIC =
2072       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
2073   SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
2074   SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
2075   return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
2076 }
2077
2078 SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
2079                                               SelectionDAG &DAG) const {
2080
2081   // FIXME: TLS addresses currently use medium model code sequences,
2082   // which is the most useful form.  Eventually support for small and
2083   // large models could be added if users need it, at the cost of
2084   // additional complexity.
2085   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2086   SDLoc dl(GA);
2087   const GlobalValue *GV = GA->getGlobal();
2088   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2089   bool is64bit = Subtarget.isPPC64();
2090   const Module *M = DAG.getMachineFunction().getFunction()->getParent();
2091   PICLevel::Level picLevel = M->getPICLevel();
2092
2093   TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
2094
2095   if (Model == TLSModel::LocalExec) {
2096     SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
2097                                                PPCII::MO_TPREL_HA);
2098     SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
2099                                                PPCII::MO_TPREL_LO);
2100     SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
2101                                      is64bit ? MVT::i64 : MVT::i32);
2102     SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
2103     return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
2104   }
2105
2106   if (Model == TLSModel::InitialExec) {
2107     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
2108     SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
2109                                                 PPCII::MO_TLS);
2110     SDValue GOTPtr;
2111     if (is64bit) {
2112       setUsesTOCBasePtr(DAG);
2113       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2114       GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
2115                            PtrVT, GOTReg, TGA);
2116     } else
2117       GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
2118     SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
2119                                    PtrVT, TGA, GOTPtr);
2120     return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
2121   }
2122
2123   if (Model == TLSModel::GeneralDynamic) {
2124     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
2125     SDValue GOTPtr;
2126     if (is64bit) {
2127       setUsesTOCBasePtr(DAG);
2128       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2129       GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
2130                                    GOTReg, TGA);
2131     } else {
2132       if (picLevel == PICLevel::Small)
2133         GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
2134       else
2135         GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
2136     }
2137     return DAG.getNode(PPCISD::ADDI_TLSGD_L_ADDR, dl, PtrVT,
2138                        GOTPtr, TGA, TGA);
2139   }
2140
2141   if (Model == TLSModel::LocalDynamic) {
2142     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
2143     SDValue GOTPtr;
2144     if (is64bit) {
2145       setUsesTOCBasePtr(DAG);
2146       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2147       GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
2148                            GOTReg, TGA);
2149     } else {
2150       if (picLevel == PICLevel::Small)
2151         GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
2152       else
2153         GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
2154     }
2155     SDValue TLSAddr = DAG.getNode(PPCISD::ADDI_TLSLD_L_ADDR, dl,
2156                                   PtrVT, GOTPtr, TGA, TGA);
2157     SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl,
2158                                       PtrVT, TLSAddr, TGA);
2159     return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
2160   }
2161
2162   llvm_unreachable("Unknown TLS model!");
2163 }
2164
2165 SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
2166                                               SelectionDAG &DAG) const {
2167   EVT PtrVT = Op.getValueType();
2168   GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
2169   SDLoc DL(GSDN);
2170   const GlobalValue *GV = GSDN->getGlobal();
2171
2172   // 64-bit SVR4 ABI code is always position-independent.
2173   // The actual address of the GlobalValue is stored in the TOC.
2174   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2175     setUsesTOCBasePtr(DAG);
2176     SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
2177     return getTOCEntry(DAG, DL, true, GA);
2178   }
2179
2180   unsigned MOHiFlag, MOLoFlag;
2181   bool isPIC =
2182       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag, GV);
2183
2184   if (isPIC && Subtarget.isSVR4ABI()) {
2185     SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT,
2186                                             GSDN->getOffset(),
2187                                             PPCII::MO_PIC_FLAG);
2188     return getTOCEntry(DAG, DL, false, GA);
2189   }
2190
2191   SDValue GAHi =
2192     DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
2193   SDValue GALo =
2194     DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
2195
2196   SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
2197
2198   // If the global reference is actually to a non-lazy-pointer, we have to do an
2199   // extra load to get the address of the global.
2200   if (MOHiFlag & PPCII::MO_NLP_FLAG)
2201     Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
2202                       false, false, false, 0);
2203   return Ptr;
2204 }
2205
2206 SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
2207   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
2208   SDLoc dl(Op);
2209
2210   if (Op.getValueType() == MVT::v2i64) {
2211     // When the operands themselves are v2i64 values, we need to do something
2212     // special because VSX has no underlying comparison operations for these.
2213     if (Op.getOperand(0).getValueType() == MVT::v2i64) {
2214       // Equality can be handled by casting to the legal type for Altivec
2215       // comparisons, everything else needs to be expanded.
2216       if (CC == ISD::SETEQ || CC == ISD::SETNE) {
2217         return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
2218                  DAG.getSetCC(dl, MVT::v4i32,
2219                    DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)),
2220                    DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)),
2221                    CC));
2222       }
2223
2224       return SDValue();
2225     }
2226
2227     // We handle most of these in the usual way.
2228     return Op;
2229   }
2230
2231   // If we're comparing for equality to zero, expose the fact that this is
2232   // implented as a ctlz/srl pair on ppc, so that the dag combiner can
2233   // fold the new nodes.
2234   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2235     if (C->isNullValue() && CC == ISD::SETEQ) {
2236       EVT VT = Op.getOperand(0).getValueType();
2237       SDValue Zext = Op.getOperand(0);
2238       if (VT.bitsLT(MVT::i32)) {
2239         VT = MVT::i32;
2240         Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
2241       }
2242       unsigned Log2b = Log2_32(VT.getSizeInBits());
2243       SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
2244       SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
2245                                 DAG.getConstant(Log2b, dl, MVT::i32));
2246       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
2247     }
2248     // Leave comparisons against 0 and -1 alone for now, since they're usually
2249     // optimized.  FIXME: revisit this when we can custom lower all setcc
2250     // optimizations.
2251     if (C->isAllOnesValue() || C->isNullValue())
2252       return SDValue();
2253   }
2254
2255   // If we have an integer seteq/setne, turn it into a compare against zero
2256   // by xor'ing the rhs with the lhs, which is faster than setting a
2257   // condition register, reading it back out, and masking the correct bit.  The
2258   // normal approach here uses sub to do this instead of xor.  Using xor exposes
2259   // the result to other bit-twiddling opportunities.
2260   EVT LHSVT = Op.getOperand(0).getValueType();
2261   if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
2262     EVT VT = Op.getValueType();
2263     SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
2264                                 Op.getOperand(1));
2265     return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, dl, LHSVT), CC);
2266   }
2267   return SDValue();
2268 }
2269
2270 SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
2271                                       const PPCSubtarget &Subtarget) const {
2272   SDNode *Node = Op.getNode();
2273   EVT VT = Node->getValueType(0);
2274   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
2275   SDValue InChain = Node->getOperand(0);
2276   SDValue VAListPtr = Node->getOperand(1);
2277   const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
2278   SDLoc dl(Node);
2279
2280   assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
2281
2282   // gpr_index
2283   SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
2284                                     VAListPtr, MachinePointerInfo(SV), MVT::i8,
2285                                     false, false, false, 0);
2286   InChain = GprIndex.getValue(1);
2287
2288   if (VT == MVT::i64) {
2289     // Check if GprIndex is even
2290     SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
2291                                  DAG.getConstant(1, dl, MVT::i32));
2292     SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
2293                                 DAG.getConstant(0, dl, MVT::i32), ISD::SETNE);
2294     SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
2295                                           DAG.getConstant(1, dl, MVT::i32));
2296     // Align GprIndex to be even if it isn't
2297     GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
2298                            GprIndex);
2299   }
2300
2301   // fpr index is 1 byte after gpr
2302   SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
2303                                DAG.getConstant(1, dl, MVT::i32));
2304
2305   // fpr
2306   SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
2307                                     FprPtr, MachinePointerInfo(SV), MVT::i8,
2308                                     false, false, false, 0);
2309   InChain = FprIndex.getValue(1);
2310
2311   SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
2312                                        DAG.getConstant(8, dl, MVT::i32));
2313
2314   SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
2315                                         DAG.getConstant(4, dl, MVT::i32));
2316
2317   // areas
2318   SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
2319                                      MachinePointerInfo(), false, false,
2320                                      false, 0);
2321   InChain = OverflowArea.getValue(1);
2322
2323   SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
2324                                     MachinePointerInfo(), false, false,
2325                                     false, 0);
2326   InChain = RegSaveArea.getValue(1);
2327
2328   // select overflow_area if index > 8
2329   SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
2330                             DAG.getConstant(8, dl, MVT::i32), ISD::SETLT);
2331
2332   // adjustment constant gpr_index * 4/8
2333   SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
2334                                     VT.isInteger() ? GprIndex : FprIndex,
2335                                     DAG.getConstant(VT.isInteger() ? 4 : 8, dl,
2336                                                     MVT::i32));
2337
2338   // OurReg = RegSaveArea + RegConstant
2339   SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
2340                                RegConstant);
2341
2342   // Floating types are 32 bytes into RegSaveArea
2343   if (VT.isFloatingPoint())
2344     OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
2345                          DAG.getConstant(32, dl, MVT::i32));
2346
2347   // increase {f,g}pr_index by 1 (or 2 if VT is i64)
2348   SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
2349                                    VT.isInteger() ? GprIndex : FprIndex,
2350                                    DAG.getConstant(VT == MVT::i64 ? 2 : 1, dl,
2351                                                    MVT::i32));
2352
2353   InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
2354                               VT.isInteger() ? VAListPtr : FprPtr,
2355                               MachinePointerInfo(SV),
2356                               MVT::i8, false, false, 0);
2357
2358   // determine if we should load from reg_save_area or overflow_area
2359   SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
2360
2361   // increase overflow_area by 4/8 if gpr/fpr > 8
2362   SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
2363                                           DAG.getConstant(VT.isInteger() ? 4 : 8,
2364                                           dl, MVT::i32));
2365
2366   OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
2367                              OverflowAreaPlusN);
2368
2369   InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
2370                               OverflowAreaPtr,
2371                               MachinePointerInfo(),
2372                               MVT::i32, false, false, 0);
2373
2374   return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
2375                      false, false, false, 0);
2376 }
2377
2378 SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
2379                                        const PPCSubtarget &Subtarget) const {
2380   assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
2381
2382   // We have to copy the entire va_list struct:
2383   // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
2384   return DAG.getMemcpy(Op.getOperand(0), Op,
2385                        Op.getOperand(1), Op.getOperand(2),
2386                        DAG.getConstant(12, SDLoc(Op), MVT::i32), 8, false, true,
2387                        false, MachinePointerInfo(), MachinePointerInfo());
2388 }
2389
2390 SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
2391                                                   SelectionDAG &DAG) const {
2392   return Op.getOperand(0);
2393 }
2394
2395 SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
2396                                                 SelectionDAG &DAG) const {
2397   SDValue Chain = Op.getOperand(0);
2398   SDValue Trmp = Op.getOperand(1); // trampoline
2399   SDValue FPtr = Op.getOperand(2); // nested function
2400   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
2401   SDLoc dl(Op);
2402
2403   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
2404   bool isPPC64 = (PtrVT == MVT::i64);
2405   Type *IntPtrTy =
2406     DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
2407                                                              *DAG.getContext());
2408
2409   TargetLowering::ArgListTy Args;
2410   TargetLowering::ArgListEntry Entry;
2411
2412   Entry.Ty = IntPtrTy;
2413   Entry.Node = Trmp; Args.push_back(Entry);
2414
2415   // TrampSize == (isPPC64 ? 48 : 40);
2416   Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40, dl,
2417                                isPPC64 ? MVT::i64 : MVT::i32);
2418   Args.push_back(Entry);
2419
2420   Entry.Node = FPtr; Args.push_back(Entry);
2421   Entry.Node = Nest; Args.push_back(Entry);
2422
2423   // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
2424   TargetLowering::CallLoweringInfo CLI(DAG);
2425   CLI.setDebugLoc(dl).setChain(Chain)
2426     .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
2427                DAG.getExternalSymbol("__trampoline_setup", PtrVT),
2428                std::move(Args), 0);
2429
2430   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2431   return CallResult.second;
2432 }
2433
2434 SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
2435                                         const PPCSubtarget &Subtarget) const {
2436   MachineFunction &MF = DAG.getMachineFunction();
2437   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2438
2439   SDLoc dl(Op);
2440
2441   if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
2442     // vastart just stores the address of the VarArgsFrameIndex slot into the
2443     // memory location argument.
2444     EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
2445     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2446     const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2447     return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2448                         MachinePointerInfo(SV),
2449                         false, false, 0);
2450   }
2451
2452   // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
2453   // We suppose the given va_list is already allocated.
2454   //
2455   // typedef struct {
2456   //  char gpr;     /* index into the array of 8 GPRs
2457   //                 * stored in the register save area
2458   //                 * gpr=0 corresponds to r3,
2459   //                 * gpr=1 to r4, etc.
2460   //                 */
2461   //  char fpr;     /* index into the array of 8 FPRs
2462   //                 * stored in the register save area
2463   //                 * fpr=0 corresponds to f1,
2464   //                 * fpr=1 to f2, etc.
2465   //                 */
2466   //  char *overflow_arg_area;
2467   //                /* location on stack that holds
2468   //                 * the next overflow argument
2469   //                 */
2470   //  char *reg_save_area;
2471   //               /* where r3:r10 and f1:f8 (if saved)
2472   //                * are stored
2473   //                */
2474   // } va_list[1];
2475
2476
2477   SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), dl, MVT::i32);
2478   SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), dl, MVT::i32);
2479
2480   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
2481
2482   SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
2483                                             PtrVT);
2484   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
2485                                  PtrVT);
2486
2487   uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
2488   SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, dl, PtrVT);
2489
2490   uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
2491   SDValue ConstStackOffset = DAG.getConstant(StackOffset, dl, PtrVT);
2492
2493   uint64_t FPROffset = 1;
2494   SDValue ConstFPROffset = DAG.getConstant(FPROffset, dl, PtrVT);
2495
2496   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2497
2498   // Store first byte : number of int regs
2499   SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
2500                                          Op.getOperand(1),
2501                                          MachinePointerInfo(SV),
2502                                          MVT::i8, false, false, 0);
2503   uint64_t nextOffset = FPROffset;
2504   SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
2505                                   ConstFPROffset);
2506
2507   // Store second byte : number of float regs
2508   SDValue secondStore =
2509     DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
2510                       MachinePointerInfo(SV, nextOffset), MVT::i8,
2511                       false, false, 0);
2512   nextOffset += StackOffset;
2513   nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
2514
2515   // Store second word : arguments given on stack
2516   SDValue thirdStore =
2517     DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
2518                  MachinePointerInfo(SV, nextOffset),
2519                  false, false, 0);
2520   nextOffset += FrameOffset;
2521   nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
2522
2523   // Store third word : arguments given in registers
2524   return DAG.getStore(thirdStore, dl, FR, nextPtr,
2525                       MachinePointerInfo(SV, nextOffset),
2526                       false, false, 0);
2527
2528 }
2529
2530 #include "PPCGenCallingConv.inc"
2531
2532 // Function whose sole purpose is to kill compiler warnings 
2533 // stemming from unused functions included from PPCGenCallingConv.inc.
2534 CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
2535   return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
2536 }
2537
2538 bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
2539                                       CCValAssign::LocInfo &LocInfo,
2540                                       ISD::ArgFlagsTy &ArgFlags,
2541                                       CCState &State) {
2542   return true;
2543 }
2544
2545 bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
2546                                              MVT &LocVT,
2547                                              CCValAssign::LocInfo &LocInfo,
2548                                              ISD::ArgFlagsTy &ArgFlags,
2549                                              CCState &State) {
2550   static const MCPhysReg ArgRegs[] = {
2551     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2552     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2553   };
2554   const unsigned NumArgRegs = array_lengthof(ArgRegs);
2555
2556   unsigned RegNum = State.getFirstUnallocated(ArgRegs);
2557
2558   // Skip one register if the first unallocated register has an even register
2559   // number and there are still argument registers available which have not been
2560   // allocated yet. RegNum is actually an index into ArgRegs, which means we
2561   // need to skip a register if RegNum is odd.
2562   if (RegNum != NumArgRegs && RegNum % 2 == 1) {
2563     State.AllocateReg(ArgRegs[RegNum]);
2564   }
2565
2566   // Always return false here, as this function only makes sure that the first
2567   // unallocated register has an odd register number and does not actually
2568   // allocate a register for the current argument.
2569   return false;
2570 }
2571
2572 bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
2573                                                MVT &LocVT,
2574                                                CCValAssign::LocInfo &LocInfo,
2575                                                ISD::ArgFlagsTy &ArgFlags,
2576                                                CCState &State) {
2577   static const MCPhysReg ArgRegs[] = {
2578     PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2579     PPC::F8
2580   };
2581
2582   const unsigned NumArgRegs = array_lengthof(ArgRegs);
2583
2584   unsigned RegNum = State.getFirstUnallocated(ArgRegs);
2585
2586   // If there is only one Floating-point register left we need to put both f64
2587   // values of a split ppc_fp128 value on the stack.
2588   if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
2589     State.AllocateReg(ArgRegs[RegNum]);
2590   }
2591
2592   // Always return false here, as this function only makes sure that the two f64
2593   // values a ppc_fp128 value is split into are both passed in registers or both
2594   // passed on the stack and does not actually allocate a register for the
2595   // current argument.
2596   return false;
2597 }
2598
2599 /// FPR - The set of FP registers that should be allocated for arguments,
2600 /// on Darwin.
2601 static const MCPhysReg FPR[] = {PPC::F1,  PPC::F2,  PPC::F3, PPC::F4, PPC::F5,
2602                                 PPC::F6,  PPC::F7,  PPC::F8, PPC::F9, PPC::F10,
2603                                 PPC::F11, PPC::F12, PPC::F13};
2604
2605 /// QFPR - The set of QPX registers that should be allocated for arguments.
2606 static const MCPhysReg QFPR[] = {
2607     PPC::QF1, PPC::QF2, PPC::QF3,  PPC::QF4,  PPC::QF5,  PPC::QF6, PPC::QF7,
2608     PPC::QF8, PPC::QF9, PPC::QF10, PPC::QF11, PPC::QF12, PPC::QF13};
2609
2610 /// CalculateStackSlotSize - Calculates the size reserved for this argument on
2611 /// the stack.
2612 static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
2613                                        unsigned PtrByteSize) {
2614   unsigned ArgSize = ArgVT.getStoreSize();
2615   if (Flags.isByVal())
2616     ArgSize = Flags.getByValSize();
2617
2618   // Round up to multiples of the pointer size, except for array members,
2619   // which are always packed.
2620   if (!Flags.isInConsecutiveRegs())
2621     ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2622
2623   return ArgSize;
2624 }
2625
2626 /// CalculateStackSlotAlignment - Calculates the alignment of this argument
2627 /// on the stack.
2628 static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT,
2629                                             ISD::ArgFlagsTy Flags,
2630                                             unsigned PtrByteSize) {
2631   unsigned Align = PtrByteSize;
2632
2633   // Altivec parameters are padded to a 16 byte boundary.
2634   if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2635       ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2636       ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 ||
2637       ArgVT == MVT::v1i128)
2638     Align = 16;
2639   // QPX vector types stored in double-precision are padded to a 32 byte
2640   // boundary.
2641   else if (ArgVT == MVT::v4f64 || ArgVT == MVT::v4i1)
2642     Align = 32;
2643
2644   // ByVal parameters are aligned as requested.
2645   if (Flags.isByVal()) {
2646     unsigned BVAlign = Flags.getByValAlign();
2647     if (BVAlign > PtrByteSize) {
2648       if (BVAlign % PtrByteSize != 0)
2649           llvm_unreachable(
2650             "ByVal alignment is not a multiple of the pointer size");
2651
2652       Align = BVAlign;
2653     }
2654   }
2655
2656   // Array members are always packed to their original alignment.
2657   if (Flags.isInConsecutiveRegs()) {
2658     // If the array member was split into multiple registers, the first
2659     // needs to be aligned to the size of the full type.  (Except for
2660     // ppcf128, which is only aligned as its f64 components.)
2661     if (Flags.isSplit() && OrigVT != MVT::ppcf128)
2662       Align = OrigVT.getStoreSize();
2663     else
2664       Align = ArgVT.getStoreSize();
2665   }
2666
2667   return Align;
2668 }
2669
2670 /// CalculateStackSlotUsed - Return whether this argument will use its
2671 /// stack slot (instead of being passed in registers).  ArgOffset,
2672 /// AvailableFPRs, and AvailableVRs must hold the current argument
2673 /// position, and will be updated to account for this argument.
2674 static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT,
2675                                    ISD::ArgFlagsTy Flags,
2676                                    unsigned PtrByteSize,
2677                                    unsigned LinkageSize,
2678                                    unsigned ParamAreaSize,
2679                                    unsigned &ArgOffset,
2680                                    unsigned &AvailableFPRs,
2681                                    unsigned &AvailableVRs, bool HasQPX) {
2682   bool UseMemory = false;
2683
2684   // Respect alignment of argument on the stack.
2685   unsigned Align =
2686     CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
2687   ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2688   // If there's no space left in the argument save area, we must
2689   // use memory (this check also catches zero-sized arguments).
2690   if (ArgOffset >= LinkageSize + ParamAreaSize)
2691     UseMemory = true;
2692
2693   // Allocate argument on the stack.
2694   ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
2695   if (Flags.isInConsecutiveRegsLast())
2696     ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2697   // If we overran the argument save area, we must use memory
2698   // (this check catches arguments passed partially in memory)
2699   if (ArgOffset > LinkageSize + ParamAreaSize)
2700     UseMemory = true;
2701
2702   // However, if the argument is actually passed in an FPR or a VR,
2703   // we don't use memory after all.
2704   if (!Flags.isByVal()) {
2705     if (ArgVT == MVT::f32 || ArgVT == MVT::f64 ||
2706         // QPX registers overlap with the scalar FP registers.
2707         (HasQPX && (ArgVT == MVT::v4f32 ||
2708                     ArgVT == MVT::v4f64 ||
2709                     ArgVT == MVT::v4i1)))
2710       if (AvailableFPRs > 0) {
2711         --AvailableFPRs;
2712         return false;
2713       }
2714     if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2715         ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2716         ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 ||
2717         ArgVT == MVT::v1i128)
2718       if (AvailableVRs > 0) {
2719         --AvailableVRs;
2720         return false;
2721       }
2722   }
2723
2724   return UseMemory;
2725 }
2726
2727 /// EnsureStackAlignment - Round stack frame size up from NumBytes to
2728 /// ensure minimum alignment required for target.
2729 static unsigned EnsureStackAlignment(const PPCFrameLowering *Lowering,
2730                                      unsigned NumBytes) {
2731   unsigned TargetAlign = Lowering->getStackAlignment();
2732   unsigned AlignMask = TargetAlign - 1;
2733   NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2734   return NumBytes;
2735 }
2736
2737 SDValue
2738 PPCTargetLowering::LowerFormalArguments(SDValue Chain,
2739                                         CallingConv::ID CallConv, bool isVarArg,
2740                                         const SmallVectorImpl<ISD::InputArg>
2741                                           &Ins,
2742                                         SDLoc dl, SelectionDAG &DAG,
2743                                         SmallVectorImpl<SDValue> &InVals)
2744                                           const {
2745   if (Subtarget.isSVR4ABI()) {
2746     if (Subtarget.isPPC64())
2747       return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
2748                                          dl, DAG, InVals);
2749     else
2750       return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
2751                                          dl, DAG, InVals);
2752   } else {
2753     return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
2754                                        dl, DAG, InVals);
2755   }
2756 }
2757
2758 SDValue
2759 PPCTargetLowering::LowerFormalArguments_32SVR4(
2760                                       SDValue Chain,
2761                                       CallingConv::ID CallConv, bool isVarArg,
2762                                       const SmallVectorImpl<ISD::InputArg>
2763                                         &Ins,
2764                                       SDLoc dl, SelectionDAG &DAG,
2765                                       SmallVectorImpl<SDValue> &InVals) const {
2766
2767   // 32-bit SVR4 ABI Stack Frame Layout:
2768   //              +-----------------------------------+
2769   //        +-->  |            Back chain             |
2770   //        |     +-----------------------------------+
2771   //        |     | Floating-point register save area |
2772   //        |     +-----------------------------------+
2773   //        |     |    General register save area     |
2774   //        |     +-----------------------------------+
2775   //        |     |          CR save word             |
2776   //        |     +-----------------------------------+
2777   //        |     |         VRSAVE save word          |
2778   //        |     +-----------------------------------+
2779   //        |     |         Alignment padding         |
2780   //        |     +-----------------------------------+
2781   //        |     |     Vector register save area     |
2782   //        |     +-----------------------------------+
2783   //        |     |       Local variable space        |
2784   //        |     +-----------------------------------+
2785   //        |     |        Parameter list area        |
2786   //        |     +-----------------------------------+
2787   //        |     |           LR save word            |
2788   //        |     +-----------------------------------+
2789   // SP-->  +---  |            Back chain             |
2790   //              +-----------------------------------+
2791   //
2792   // Specifications:
2793   //   System V Application Binary Interface PowerPC Processor Supplement
2794   //   AltiVec Technology Programming Interface Manual
2795
2796   MachineFunction &MF = DAG.getMachineFunction();
2797   MachineFrameInfo *MFI = MF.getFrameInfo();
2798   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2799
2800   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
2801   // Potential tail calls could cause overwriting of argument stack slots.
2802   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2803                        (CallConv == CallingConv::Fast));
2804   unsigned PtrByteSize = 4;
2805
2806   // Assign locations to all of the incoming arguments.
2807   SmallVector<CCValAssign, 16> ArgLocs;
2808   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2809                  *DAG.getContext());
2810
2811   // Reserve space for the linkage area on the stack.
2812   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
2813   CCInfo.AllocateStack(LinkageSize, PtrByteSize);
2814
2815   CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
2816
2817   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2818     CCValAssign &VA = ArgLocs[i];
2819
2820     // Arguments stored in registers.
2821     if (VA.isRegLoc()) {
2822       const TargetRegisterClass *RC;
2823       EVT ValVT = VA.getValVT();
2824
2825       switch (ValVT.getSimpleVT().SimpleTy) {
2826         default:
2827           llvm_unreachable("ValVT not supported by formal arguments Lowering");
2828         case MVT::i1:
2829         case MVT::i32:
2830           RC = &PPC::GPRCRegClass;
2831           break;
2832         case MVT::f32:
2833           if (Subtarget.hasP8Vector())
2834             RC = &PPC::VSSRCRegClass;
2835           else
2836             RC = &PPC::F4RCRegClass;
2837           break;
2838         case MVT::f64:
2839           if (Subtarget.hasVSX())
2840             RC = &PPC::VSFRCRegClass;
2841           else
2842             RC = &PPC::F8RCRegClass;
2843           break;
2844         case MVT::v16i8:
2845         case MVT::v8i16:
2846         case MVT::v4i32:
2847           RC = &PPC::VRRCRegClass;
2848           break;
2849         case MVT::v4f32:
2850           RC = Subtarget.hasQPX() ? &PPC::QSRCRegClass : &PPC::VRRCRegClass;
2851           break;
2852         case MVT::v2f64:
2853         case MVT::v2i64:
2854           RC = &PPC::VSHRCRegClass;
2855           break;
2856         case MVT::v4f64:
2857           RC = &PPC::QFRCRegClass;
2858           break;
2859         case MVT::v4i1:
2860           RC = &PPC::QBRCRegClass;
2861           break;
2862       }
2863
2864       // Transform the arguments stored in physical registers into virtual ones.
2865       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2866       SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg,
2867                                             ValVT == MVT::i1 ? MVT::i32 : ValVT);
2868
2869       if (ValVT == MVT::i1)
2870         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue);
2871
2872       InVals.push_back(ArgValue);
2873     } else {
2874       // Argument stored in memory.
2875       assert(VA.isMemLoc());
2876
2877       unsigned ArgSize = VA.getLocVT().getStoreSize();
2878       int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
2879                                       isImmutable);
2880
2881       // Create load nodes to retrieve arguments from the stack.
2882       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2883       InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2884                                    MachinePointerInfo(),
2885                                    false, false, false, 0));
2886     }
2887   }
2888
2889   // Assign locations to all of the incoming aggregate by value arguments.
2890   // Aggregates passed by value are stored in the local variable space of the
2891   // caller's stack frame, right above the parameter list area.
2892   SmallVector<CCValAssign, 16> ByValArgLocs;
2893   CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2894                       ByValArgLocs, *DAG.getContext());
2895
2896   // Reserve stack space for the allocations in CCInfo.
2897   CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2898
2899   CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
2900
2901   // Area that is at least reserved in the caller of this function.
2902   unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
2903   MinReservedArea = std::max(MinReservedArea, LinkageSize);
2904
2905   // Set the size that is at least reserved in caller of this function.  Tail
2906   // call optimized function's reserved stack space needs to be aligned so that
2907   // taking the difference between two stack areas will result in an aligned
2908   // stack.
2909   MinReservedArea =
2910       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
2911   FuncInfo->setMinReservedArea(MinReservedArea);
2912
2913   SmallVector<SDValue, 8> MemOps;
2914
2915   // If the function takes variable number of arguments, make a frame index for
2916   // the start of the first vararg value... for expansion of llvm.va_start.
2917   if (isVarArg) {
2918     static const MCPhysReg GPArgRegs[] = {
2919       PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2920       PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2921     };
2922     const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2923
2924     static const MCPhysReg FPArgRegs[] = {
2925       PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2926       PPC::F8
2927     };
2928     unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2929     if (DisablePPCFloatInVariadic)
2930       NumFPArgRegs = 0;
2931
2932     FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs));
2933     FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs));
2934
2935     // Make room for NumGPArgRegs and NumFPArgRegs.
2936     int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
2937                 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8;
2938
2939     FuncInfo->setVarArgsStackOffset(
2940       MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
2941                              CCInfo.getNextStackOffset(), true));
2942
2943     FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2944     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2945
2946     // The fixed integer arguments of a variadic function are stored to the
2947     // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2948     // the result of va_next.
2949     for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2950       // Get an existing live-in vreg, or add a new one.
2951       unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2952       if (!VReg)
2953         VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
2954
2955       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2956       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2957                                    MachinePointerInfo(), false, false, 0);
2958       MemOps.push_back(Store);
2959       // Increment the address by four for the next argument to store
2960       SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT);
2961       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2962     }
2963
2964     // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2965     // is set.
2966     // The double arguments are stored to the VarArgsFrameIndex
2967     // on the stack.
2968     for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2969       // Get an existing live-in vreg, or add a new one.
2970       unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2971       if (!VReg)
2972         VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
2973
2974       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
2975       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2976                                    MachinePointerInfo(), false, false, 0);
2977       MemOps.push_back(Store);
2978       // Increment the address by eight for the next argument to store
2979       SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8, dl,
2980                                          PtrVT);
2981       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2982     }
2983   }
2984
2985   if (!MemOps.empty())
2986     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2987
2988   return Chain;
2989 }
2990
2991 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2992 // value to MVT::i64 and then truncate to the correct register size.
2993 SDValue
2994 PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2995                                      SelectionDAG &DAG, SDValue ArgVal,
2996                                      SDLoc dl) const {
2997   if (Flags.isSExt())
2998     ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2999                          DAG.getValueType(ObjectVT));
3000   else if (Flags.isZExt())
3001     ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
3002                          DAG.getValueType(ObjectVT));
3003
3004   return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal);
3005 }
3006
3007 SDValue
3008 PPCTargetLowering::LowerFormalArguments_64SVR4(
3009                                       SDValue Chain,
3010                                       CallingConv::ID CallConv, bool isVarArg,
3011                                       const SmallVectorImpl<ISD::InputArg>
3012                                         &Ins,
3013                                       SDLoc dl, SelectionDAG &DAG,
3014                                       SmallVectorImpl<SDValue> &InVals) const {
3015   // TODO: add description of PPC stack frame format, or at least some docs.
3016   //
3017   bool isELFv2ABI = Subtarget.isELFv2ABI();
3018   bool isLittleEndian = Subtarget.isLittleEndian();
3019   MachineFunction &MF = DAG.getMachineFunction();
3020   MachineFrameInfo *MFI = MF.getFrameInfo();
3021   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
3022
3023   assert(!(CallConv == CallingConv::Fast && isVarArg) &&
3024          "fastcc not supported on varargs functions");
3025
3026   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
3027   // Potential tail calls could cause overwriting of argument stack slots.
3028   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3029                        (CallConv == CallingConv::Fast));
3030   unsigned PtrByteSize = 8;
3031   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
3032
3033   static const MCPhysReg GPR[] = {
3034     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3035     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3036   };
3037   static const MCPhysReg VR[] = {
3038     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3039     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3040   };
3041   static const MCPhysReg VSRH[] = {
3042     PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
3043     PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
3044   };
3045
3046   const unsigned Num_GPR_Regs = array_lengthof(GPR);
3047   const unsigned Num_FPR_Regs = 13;
3048   const unsigned Num_VR_Regs  = array_lengthof(VR);
3049   const unsigned Num_QFPR_Regs = Num_FPR_Regs;
3050
3051   // Do a first pass over the arguments to determine whether the ABI
3052   // guarantees that our caller has allocated the parameter save area
3053   // on its stack frame.  In the ELFv1 ABI, this is always the case;
3054   // in the ELFv2 ABI, it is true if this is a vararg function or if
3055   // any parameter is located in a stack slot.
3056
3057   bool HasParameterArea = !isELFv2ABI || isVarArg;
3058   unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize;
3059   unsigned NumBytes = LinkageSize;
3060   unsigned AvailableFPRs = Num_FPR_Regs;
3061   unsigned AvailableVRs = Num_VR_Regs;
3062   for (unsigned i = 0, e = Ins.size(); i != e; ++i)
3063     if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags,
3064                                PtrByteSize, LinkageSize, ParamAreaSize,
3065                                NumBytes, AvailableFPRs, AvailableVRs,
3066                                Subtarget.hasQPX()))
3067       HasParameterArea = true;
3068
3069   // Add DAG nodes to load the arguments or copy them out of registers.  On
3070   // entry to a function on PPC, the arguments start after the linkage area,
3071   // although the first ones are often in registers.
3072
3073   unsigned ArgOffset = LinkageSize;
3074   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3075   unsigned &QFPR_idx = FPR_idx;
3076   SmallVector<SDValue, 8> MemOps;
3077   Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
3078   unsigned CurArgIdx = 0;
3079   for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
3080     SDValue ArgVal;
3081     bool needsLoad = false;
3082     EVT ObjectVT = Ins[ArgNo].VT;
3083     EVT OrigVT = Ins[ArgNo].ArgVT;
3084     unsigned ObjSize = ObjectVT.getStoreSize();
3085     unsigned ArgSize = ObjSize;
3086     ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3087     if (Ins[ArgNo].isOrigArg()) {
3088       std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx);
3089       CurArgIdx = Ins[ArgNo].getOrigArgIndex();
3090     }
3091     // We re-align the argument offset for each argument, except when using the
3092     // fast calling convention, when we need to make sure we do that only when
3093     // we'll actually use a stack slot.
3094     unsigned CurArgOffset, Align;
3095     auto ComputeArgOffset = [&]() {
3096       /* Respect alignment of argument on the stack.  */
3097       Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize);
3098       ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
3099       CurArgOffset = ArgOffset;
3100     };
3101
3102     if (CallConv != CallingConv::Fast) {
3103       ComputeArgOffset();
3104
3105       /* Compute GPR index associated with argument offset.  */
3106       GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
3107       GPR_idx = std::min(GPR_idx, Num_GPR_Regs);
3108     }
3109
3110     // FIXME the codegen can be much improved in some cases.
3111     // We do not have to keep everything in memory.
3112     if (Flags.isByVal()) {
3113       assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit");
3114
3115       if (CallConv == CallingConv::Fast)
3116         ComputeArgOffset();
3117
3118       // ObjSize is the true size, ArgSize rounded up to multiple of registers.
3119       ObjSize = Flags.getByValSize();
3120       ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3121       // Empty aggregate parameters do not take up registers.  Examples:
3122       //   struct { } a;
3123       //   union  { } b;
3124       //   int c[0];
3125       // etc.  However, we have to provide a place-holder in InVals, so
3126       // pretend we have an 8-byte item at the current address for that
3127       // purpose.
3128       if (!ObjSize) {
3129         int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
3130         SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3131         InVals.push_back(FIN);
3132         continue;
3133       }
3134
3135       // Create a stack object covering all stack doublewords occupied
3136       // by the argument.  If the argument is (fully or partially) on
3137       // the stack, or if the argument is fully in registers but the
3138       // caller has allocated the parameter save anyway, we can refer
3139       // directly to the caller's stack frame.  Otherwise, create a
3140       // local copy in our own frame.
3141       int FI;
3142       if (HasParameterArea ||
3143           ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize)
3144         FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false, true);
3145       else
3146         FI = MFI->CreateStackObject(ArgSize, Align, false);
3147       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3148
3149       // Handle aggregates smaller than 8 bytes.
3150       if (ObjSize < PtrByteSize) {
3151         // The value of the object is its address, which differs from the
3152         // address of the enclosing doubleword on big-endian systems.
3153         SDValue Arg = FIN;
3154         if (!isLittleEndian) {
3155           SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, dl, PtrVT);
3156           Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff);
3157         }
3158         InVals.push_back(Arg);
3159
3160         if (GPR_idx != Num_GPR_Regs) {
3161           unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
3162           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3163           SDValue Store;
3164
3165           if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
3166             EVT ObjType = (ObjSize == 1 ? MVT::i8 :
3167                            (ObjSize == 2 ? MVT::i16 : MVT::i32));
3168             Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg,
3169                                       MachinePointerInfo(FuncArg),
3170                                       ObjType, false, false, 0);
3171           } else {
3172             // For sizes that don't fit a truncating store (3, 5, 6, 7),
3173             // store the whole register as-is to the parameter save area
3174             // slot.
3175             Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3176                                  MachinePointerInfo(FuncArg),
3177                                  false, false, 0);
3178           }
3179
3180           MemOps.push_back(Store);
3181         }
3182         // Whether we copied from a register or not, advance the offset
3183         // into the parameter save area by a full doubleword.
3184         ArgOffset += PtrByteSize;
3185         continue;
3186       }
3187
3188       // The value of the object is its address, which is the address of
3189       // its first stack doubleword.
3190       InVals.push_back(FIN);
3191
3192       // Store whatever pieces of the object are in registers to memory.
3193       for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3194         if (GPR_idx == Num_GPR_Regs)
3195           break;
3196
3197         unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3198         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3199         SDValue Addr = FIN;
3200         if (j) {
3201           SDValue Off = DAG.getConstant(j, dl, PtrVT);
3202           Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off);
3203         }
3204         SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, Addr,
3205                                      MachinePointerInfo(FuncArg, j),
3206                                      false, false, 0);
3207         MemOps.push_back(Store);
3208         ++GPR_idx;
3209       }
3210       ArgOffset += ArgSize;
3211       continue;
3212     }
3213
3214     switch (ObjectVT.getSimpleVT().SimpleTy) {
3215     default: llvm_unreachable("Unhandled argument type!");
3216     case MVT::i1:
3217     case MVT::i32:
3218     case MVT::i64:
3219       // These can be scalar arguments or elements of an integer array type
3220       // passed directly.  Clang may use those instead of "byval" aggregate
3221       // types to avoid forcing arguments to memory unnecessarily.
3222       if (GPR_idx != Num_GPR_Regs) {
3223         unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
3224         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3225
3226         if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
3227           // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3228           // value to MVT::i64 and then truncate to the correct register size.
3229           ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
3230       } else {
3231         if (CallConv == CallingConv::Fast)
3232           ComputeArgOffset();
3233
3234         needsLoad = true;
3235         ArgSize = PtrByteSize;
3236       }
3237       if (CallConv != CallingConv::Fast || needsLoad)
3238         ArgOffset += 8;
3239       break;
3240
3241     case MVT::f32:
3242     case MVT::f64:
3243       // These can be scalar arguments or elements of a float array type
3244       // passed directly.  The latter are used to implement ELFv2 homogenous
3245       // float aggregates.
3246       if (FPR_idx != Num_FPR_Regs) {
3247         unsigned VReg;
3248
3249         if (ObjectVT == MVT::f32)
3250           VReg = MF.addLiveIn(FPR[FPR_idx],
3251                               Subtarget.hasP8Vector()
3252                                   ? &PPC::VSSRCRegClass
3253                                   : &PPC::F4RCRegClass);
3254         else
3255           VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX()
3256                                                 ? &PPC::VSFRCRegClass
3257                                                 : &PPC::F8RCRegClass);
3258
3259         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3260         ++FPR_idx;
3261       } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) {
3262         // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
3263         // once we support fp <-> gpr moves.
3264
3265         // This can only ever happen in the presence of f32 array types,
3266         // since otherwise we never run out of FPRs before running out
3267         // of GPRs.
3268         unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
3269         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3270
3271         if (ObjectVT == MVT::f32) {
3272           if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0))
3273             ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal,
3274                                  DAG.getConstant(32, dl, MVT::i32));
3275           ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
3276         }
3277
3278         ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal);
3279       } else {
3280         if (CallConv == CallingConv::Fast)
3281           ComputeArgOffset();
3282
3283         needsLoad = true;
3284       }
3285
3286       // When passing an array of floats, the array occupies consecutive
3287       // space in the argument area; only round up to the next doubleword
3288       // at the end of the array.  Otherwise, each float takes 8 bytes.
3289       if (CallConv != CallingConv::Fast || needsLoad) {
3290         ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize;
3291         ArgOffset += ArgSize;
3292         if (Flags.isInConsecutiveRegsLast())
3293           ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3294       }
3295       break;
3296     case MVT::v4f32:
3297     case MVT::v4i32:
3298     case MVT::v8i16:
3299     case MVT::v16i8:
3300     case MVT::v2f64:
3301     case MVT::v2i64:
3302     case MVT::v1i128:
3303       if (!Subtarget.hasQPX()) {
3304       // These can be scalar arguments or elements of a vector array type
3305       // passed directly.  The latter are used to implement ELFv2 homogenous
3306       // vector aggregates.
3307       if (VR_idx != Num_VR_Regs) {
3308         unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ?
3309                         MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) :
3310                         MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
3311         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3312         ++VR_idx;
3313       } else {
3314         if (CallConv == CallingConv::Fast)
3315           ComputeArgOffset();
3316
3317         needsLoad = true;
3318       }
3319       if (CallConv != CallingConv::Fast || needsLoad)
3320         ArgOffset += 16;
3321       break;
3322       } // not QPX
3323
3324       assert(ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 &&
3325              "Invalid QPX parameter type");
3326       /* fall through */
3327
3328     case MVT::v4f64:
3329     case MVT::v4i1:
3330       // QPX vectors are treated like their scalar floating-point subregisters
3331       // (except that they're larger).
3332       unsigned Sz = ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 ? 16 : 32;
3333       if (QFPR_idx != Num_QFPR_Regs) {
3334         const TargetRegisterClass *RC;
3335         switch (ObjectVT.getSimpleVT().SimpleTy) {
3336         case MVT::v4f64: RC = &PPC::QFRCRegClass; break;
3337         case MVT::v4f32: RC = &PPC::QSRCRegClass; break;
3338         default:         RC = &PPC::QBRCRegClass; break;
3339         }
3340
3341         unsigned VReg = MF.addLiveIn(QFPR[QFPR_idx], RC);
3342         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3343         ++QFPR_idx;
3344       } else {
3345         if (CallConv == CallingConv::Fast)
3346           ComputeArgOffset();
3347         needsLoad = true;
3348       }
3349       if (CallConv != CallingConv::Fast || needsLoad)
3350         ArgOffset += Sz;
3351       break;
3352     }
3353
3354     // We need to load the argument to a virtual register if we determined
3355     // above that we ran out of physical registers of the appropriate type.
3356     if (needsLoad) {
3357       if (ObjSize < ArgSize && !isLittleEndian)
3358         CurArgOffset += ArgSize - ObjSize;
3359       int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable);
3360       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3361       ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
3362                            false, false, false, 0);
3363     }
3364
3365     InVals.push_back(ArgVal);
3366   }
3367
3368   // Area that is at least reserved in the caller of this function.
3369   unsigned MinReservedArea;
3370   if (HasParameterArea)
3371     MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize);
3372   else
3373     MinReservedArea = LinkageSize;
3374
3375   // Set the size that is at least reserved in caller of this function.  Tail
3376   // call optimized functions' reserved stack space needs to be aligned so that
3377   // taking the difference between two stack areas will result in an aligned
3378   // stack.
3379   MinReservedArea =
3380       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
3381   FuncInfo->setMinReservedArea(MinReservedArea);
3382
3383   // If the function takes variable number of arguments, make a frame index for
3384   // the start of the first vararg value... for expansion of llvm.va_start.
3385   if (isVarArg) {
3386     int Depth = ArgOffset;
3387
3388     FuncInfo->setVarArgsFrameIndex(
3389       MFI->CreateFixedObject(PtrByteSize, Depth, true));
3390     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
3391
3392     // If this function is vararg, store any remaining integer argument regs
3393     // to their spots on the stack so that they may be loaded by deferencing the
3394     // result of va_next.
3395     for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
3396          GPR_idx < Num_GPR_Regs; ++GPR_idx) {
3397       unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3398       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3399       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3400                                    MachinePointerInfo(), false, false, 0);
3401       MemOps.push_back(Store);
3402       // Increment the address by four for the next argument to store
3403       SDValue PtrOff = DAG.getConstant(PtrByteSize, dl, PtrVT);
3404       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3405     }
3406   }
3407
3408   if (!MemOps.empty())
3409     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
3410
3411   return Chain;
3412 }
3413
3414 SDValue
3415 PPCTargetLowering::LowerFormalArguments_Darwin(
3416                                       SDValue Chain,
3417                                       CallingConv::ID CallConv, bool isVarArg,
3418                                       const SmallVectorImpl<ISD::InputArg>
3419                                         &Ins,
3420                                       SDLoc dl, SelectionDAG &DAG,
3421                                       SmallVectorImpl<SDValue> &InVals) const {
3422   // TODO: add description of PPC stack frame format, or at least some docs.
3423   //
3424   MachineFunction &MF = DAG.getMachineFunction();
3425   MachineFrameInfo *MFI = MF.getFrameInfo();
3426   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
3427
3428   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
3429   bool isPPC64 = PtrVT == MVT::i64;
3430   // Potential tail calls could cause overwriting of argument stack slots.
3431   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3432                        (CallConv == CallingConv::Fast));
3433   unsigned PtrByteSize = isPPC64 ? 8 : 4;
3434   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
3435   unsigned ArgOffset = LinkageSize;
3436   // Area that is at least reserved in caller of this function.
3437   unsigned MinReservedArea = ArgOffset;
3438
3439   static const MCPhysReg GPR_32[] = {           // 32-bit registers.
3440     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
3441     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
3442   };
3443   static const MCPhysReg GPR_64[] = {           // 64-bit registers.
3444     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3445     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3446   };
3447   static const MCPhysReg VR[] = {
3448     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3449     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3450   };
3451
3452   const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
3453   const unsigned Num_FPR_Regs = 13;
3454   const unsigned Num_VR_Regs  = array_lengthof( VR);
3455
3456   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3457
3458   const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
3459
3460   // In 32-bit non-varargs functions, the stack space for vectors is after the
3461   // stack space for non-vectors.  We do not use this space unless we have
3462   // too many vectors to fit in registers, something that only occurs in
3463   // constructed examples:), but we have to walk the arglist to figure
3464   // that out...for the pathological case, compute VecArgOffset as the
3465   // start of the vector parameter area.  Computing VecArgOffset is the
3466   // entire point of the following loop.
3467   unsigned VecArgOffset = ArgOffset;
3468   if (!isVarArg && !isPPC64) {
3469     for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
3470          ++ArgNo) {
3471       EVT ObjectVT = Ins[ArgNo].VT;
3472       ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3473
3474       if (Flags.isByVal()) {
3475         // ObjSize is the true size, ArgSize rounded up to multiple of regs.
3476         unsigned ObjSize = Flags.getByValSize();
3477         unsigned ArgSize =
3478                 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3479         VecArgOffset += ArgSize;
3480         continue;
3481       }
3482
3483       switch(ObjectVT.getSimpleVT().SimpleTy) {
3484       default: llvm_unreachable("Unhandled argument type!");
3485       case MVT::i1:
3486       case MVT::i32:
3487       case MVT::f32:
3488         VecArgOffset += 4;
3489         break;
3490       case MVT::i64:  // PPC64
3491       case MVT::f64:
3492         // FIXME: We are guaranteed to be !isPPC64 at this point.
3493         // Does MVT::i64 apply?
3494         VecArgOffset += 8;
3495         break;
3496       case MVT::v4f32:
3497       case MVT::v4i32:
3498       case MVT::v8i16:
3499       case MVT::v16i8:
3500         // Nothing to do, we're only looking at Nonvector args here.
3501         break;
3502       }
3503     }
3504   }
3505   // We've found where the vector parameter area in memory is.  Skip the
3506   // first 12 parameters; these don't use that memory.
3507   VecArgOffset = ((VecArgOffset+15)/16)*16;
3508   VecArgOffset += 12*16;
3509
3510   // Add DAG nodes to load the arguments or copy them out of registers.  On
3511   // entry to a function on PPC, the arguments start after the linkage area,
3512   // although the first ones are often in registers.
3513
3514   SmallVector<SDValue, 8> MemOps;
3515   unsigned nAltivecParamsAtEnd = 0;
3516   Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
3517   unsigned CurArgIdx = 0;
3518   for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
3519     SDValue ArgVal;
3520     bool needsLoad = false;
3521     EVT ObjectVT = Ins[ArgNo].VT;
3522     unsigned ObjSize = ObjectVT.getSizeInBits()/8;
3523     unsigned ArgSize = ObjSize;
3524     ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3525     if (Ins[ArgNo].isOrigArg()) {
3526       std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx);
3527       CurArgIdx = Ins[ArgNo].getOrigArgIndex();
3528     }
3529     unsigned CurArgOffset = ArgOffset;
3530
3531     // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
3532     if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
3533         ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
3534       if (isVarArg || isPPC64) {
3535         MinReservedArea = ((MinReservedArea+15)/16)*16;
3536         MinReservedArea += CalculateStackSlotSize(ObjectVT,
3537                                                   Flags,
3538                                                   PtrByteSize);
3539       } else  nAltivecParamsAtEnd++;
3540     } else
3541       // Calculate min reserved area.
3542       MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
3543                                                 Flags,
3544                                                 PtrByteSize);
3545
3546     // FIXME the codegen can be much improved in some cases.
3547     // We do not have to keep everything in memory.
3548     if (Flags.isByVal()) {
3549       assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit");
3550
3551       // ObjSize is the true size, ArgSize rounded up to multiple of registers.
3552       ObjSize = Flags.getByValSize();
3553       ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3554       // Objects of size 1 and 2 are right justified, everything else is
3555       // left justified.  This means the memory address is adjusted forwards.
3556       if (ObjSize==1 || ObjSize==2) {
3557         CurArgOffset = CurArgOffset + (4 - ObjSize);
3558       }
3559       // The value of the object is its address.
3560       int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, false, true);
3561       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3562       InVals.push_back(FIN);
3563       if (ObjSize==1 || ObjSize==2) {
3564         if (GPR_idx != Num_GPR_Regs) {
3565           unsigned VReg;
3566           if (isPPC64)
3567             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3568           else
3569             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3570           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3571           EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
3572           SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
3573                                             MachinePointerInfo(FuncArg),
3574                                             ObjType, false, false, 0);
3575           MemOps.push_back(Store);
3576           ++GPR_idx;
3577         }
3578
3579         ArgOffset += PtrByteSize;
3580
3581         continue;
3582       }
3583       for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3584         // Store whatever pieces of the object are in registers
3585         // to memory.  ArgOffset will be the address of the beginning
3586         // of the object.
3587         if (GPR_idx != Num_GPR_Regs) {
3588           unsigned VReg;
3589           if (isPPC64)
3590             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3591           else
3592             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3593           int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
3594           SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3595           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3596           SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3597                                        MachinePointerInfo(FuncArg, j),
3598                                        false, false, 0);
3599           MemOps.push_back(Store);
3600           ++GPR_idx;
3601           ArgOffset += PtrByteSize;
3602         } else {
3603           ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
3604           break;
3605         }
3606       }
3607       continue;
3608     }
3609
3610     switch (ObjectVT.getSimpleVT().SimpleTy) {
3611     default: llvm_unreachable("Unhandled argument type!");
3612     case MVT::i1:
3613     case MVT::i32:
3614       if (!isPPC64) {
3615         if (GPR_idx != Num_GPR_Regs) {
3616           unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3617           ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
3618
3619           if (ObjectVT == MVT::i1)
3620             ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal);
3621
3622           ++GPR_idx;
3623         } else {
3624           needsLoad = true;
3625           ArgSize = PtrByteSize;
3626         }
3627         // All int arguments reserve stack space in the Darwin ABI.
3628         ArgOffset += PtrByteSize;
3629         break;
3630       }
3631       // FALLTHROUGH
3632     case MVT::i64:  // PPC64
3633       if (GPR_idx != Num_GPR_Regs) {
3634         unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3635         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3636
3637         if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
3638           // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3639           // value to MVT::i64 and then truncate to the correct register size.
3640           ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
3641
3642         ++GPR_idx;
3643       } else {
3644         needsLoad = true;
3645         ArgSize = PtrByteSize;
3646       }
3647       // All int arguments reserve stack space in the Darwin ABI.
3648       ArgOffset += 8;
3649       break;
3650
3651     case MVT::f32:
3652     case MVT::f64:
3653       // Every 4 bytes of argument space consumes one of the GPRs available for
3654       // argument passing.
3655       if (GPR_idx != Num_GPR_Regs) {
3656         ++GPR_idx;
3657         if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
3658           ++GPR_idx;
3659       }
3660       if (FPR_idx != Num_FPR_Regs) {
3661         unsigned VReg;
3662
3663         if (ObjectVT == MVT::f32)
3664           VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
3665         else
3666           VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
3667
3668         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3669         ++FPR_idx;
3670       } else {
3671         needsLoad = true;
3672       }
3673
3674       // All FP arguments reserve stack space in the Darwin ABI.
3675       ArgOffset += isPPC64 ? 8 : ObjSize;
3676       break;
3677     case MVT::v4f32:
3678     case MVT::v4i32:
3679     case MVT::v8i16:
3680     case MVT::v16i8:
3681       // Note that vector arguments in registers don't reserve stack space,
3682       // except in varargs functions.
3683       if (VR_idx != Num_VR_Regs) {
3684         unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
3685         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3686         if (isVarArg) {
3687           while ((ArgOffset % 16) != 0) {
3688             ArgOffset += PtrByteSize;
3689             if (GPR_idx != Num_GPR_Regs)
3690               GPR_idx++;
3691           }
3692           ArgOffset += 16;
3693           GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
3694         }
3695         ++VR_idx;
3696       } else {
3697         if (!isVarArg && !isPPC64) {
3698           // Vectors go after all the nonvectors.
3699           CurArgOffset = VecArgOffset;
3700           VecArgOffset += 16;
3701         } else {
3702           // Vectors are aligned.
3703           ArgOffset = ((ArgOffset+15)/16)*16;
3704           CurArgOffset = ArgOffset;
3705           ArgOffset += 16;
3706         }
3707         needsLoad = true;
3708       }
3709       break;
3710     }
3711
3712     // We need to load the argument to a virtual register if we determined above
3713     // that we ran out of physical registers of the appropriate type.
3714     if (needsLoad) {
3715       int FI = MFI->CreateFixedObject(ObjSize,
3716                                       CurArgOffset + (ArgSize - ObjSize),
3717                                       isImmutable);
3718       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3719       ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
3720                            false, false, false, 0);
3721     }
3722
3723     InVals.push_back(ArgVal);
3724   }
3725
3726   // Allow for Altivec parameters at the end, if needed.
3727   if (nAltivecParamsAtEnd) {
3728     MinReservedArea = ((MinReservedArea+15)/16)*16;
3729     MinReservedArea += 16*nAltivecParamsAtEnd;
3730   }
3731
3732   // Area that is at least reserved in the caller of this function.
3733   MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize);
3734
3735   // Set the size that is at least reserved in caller of this function.  Tail
3736   // call optimized functions' reserved stack space needs to be aligned so that
3737   // taking the difference between two stack areas will result in an aligned
3738   // stack.
3739   MinReservedArea =
3740       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
3741   FuncInfo->setMinReservedArea(MinReservedArea);
3742
3743   // If the function takes variable number of arguments, make a frame index for
3744   // the start of the first vararg value... for expansion of llvm.va_start.
3745   if (isVarArg) {
3746     int Depth = ArgOffset;
3747
3748     FuncInfo->setVarArgsFrameIndex(
3749       MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
3750                              Depth, true));
3751     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
3752
3753     // If this function is vararg, store any remaining integer argument regs
3754     // to their spots on the stack so that they may be loaded by deferencing the
3755     // result of va_next.
3756     for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
3757       unsigned VReg;
3758
3759       if (isPPC64)
3760         VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3761       else
3762         VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3763
3764       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3765       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3766                                    MachinePointerInfo(), false, false, 0);
3767       MemOps.push_back(Store);
3768       // Increment the address by four for the next argument to store
3769       SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT);
3770       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3771     }
3772   }
3773
3774   if (!MemOps.empty())
3775     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
3776
3777   return Chain;
3778 }
3779
3780 /// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
3781 /// adjusted to accommodate the arguments for the tailcall.
3782 static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
3783                                    unsigned ParamSize) {
3784
3785   if (!isTailCall) return 0;
3786
3787   PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
3788   unsigned CallerMinReservedArea = FI->getMinReservedArea();
3789   int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
3790   // Remember only if the new adjustement is bigger.
3791   if (SPDiff < FI->getTailCallSPDelta())
3792     FI->setTailCallSPDelta(SPDiff);
3793
3794   return SPDiff;
3795 }
3796
3797 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3798 /// for tail call optimization. Targets which want to do tail call
3799 /// optimization should implement this function.
3800 bool
3801 PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3802                                                      CallingConv::ID CalleeCC,
3803                                                      bool isVarArg,
3804                                       const SmallVectorImpl<ISD::InputArg> &Ins,
3805                                                      SelectionDAG& DAG) const {
3806   if (!getTargetMachine().Options.GuaranteedTailCallOpt)
3807     return false;
3808
3809   // Variable argument functions are not supported.
3810   if (isVarArg)
3811     return false;
3812
3813   MachineFunction &MF = DAG.getMachineFunction();
3814   CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
3815   if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
3816     // Functions containing by val parameters are not supported.
3817     for (unsigned i = 0; i != Ins.size(); i++) {
3818        ISD::ArgFlagsTy Flags = Ins[i].Flags;
3819        if (Flags.isByVal()) return false;
3820     }
3821
3822     // Non-PIC/GOT tail calls are supported.
3823     if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
3824       return true;
3825
3826     // At the moment we can only do local tail calls (in same module, hidden
3827     // or protected) if we are generating PIC.
3828     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3829       return G->getGlobal()->hasHiddenVisibility()
3830           || G->getGlobal()->hasProtectedVisibility();
3831   }
3832
3833   return false;
3834 }
3835
3836 /// isCallCompatibleAddress - Return the immediate to use if the specified
3837 /// 32-bit value is representable in the immediate field of a BxA instruction.
3838 static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
3839   ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
3840   if (!C) return nullptr;
3841
3842   int Addr = C->getZExtValue();
3843   if ((Addr & 3) != 0 ||  // Low 2 bits are implicitly zero.
3844       SignExtend32<26>(Addr) != Addr)
3845     return nullptr;  // Top 6 bits have to be sext of immediate.
3846
3847   return DAG.getConstant((int)C->getZExtValue() >> 2, SDLoc(Op),
3848                          DAG.getTargetLoweringInfo().getPointerTy(
3849                              DAG.getDataLayout())).getNode();
3850 }
3851
3852 namespace {
3853
3854 struct TailCallArgumentInfo {
3855   SDValue Arg;
3856   SDValue FrameIdxOp;
3857   int       FrameIdx;
3858
3859   TailCallArgumentInfo() : FrameIdx(0) {}
3860 };
3861
3862 }
3863
3864 /// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
3865 static void
3866 StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
3867                                            SDValue Chain,
3868                    const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
3869                    SmallVectorImpl<SDValue> &MemOpChains,
3870                    SDLoc dl) {
3871   for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
3872     SDValue Arg = TailCallArgs[i].Arg;
3873     SDValue FIN = TailCallArgs[i].FrameIdxOp;
3874     int FI = TailCallArgs[i].FrameIdx;
3875     // Store relative to framepointer.
3876     MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
3877                                        MachinePointerInfo::getFixedStack(FI),
3878                                        false, false, 0));
3879   }
3880 }
3881
3882 /// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
3883 /// the appropriate stack slot for the tail call optimized function call.
3884 static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
3885                                                MachineFunction &MF,
3886                                                SDValue Chain,
3887                                                SDValue OldRetAddr,
3888                                                SDValue OldFP,
3889                                                int SPDiff,
3890                                                bool isPPC64,
3891                                                bool isDarwinABI,
3892                                                SDLoc dl) {
3893   if (SPDiff) {
3894     // Calculate the new stack slot for the return address.
3895     int SlotSize = isPPC64 ? 8 : 4;
3896     const PPCFrameLowering *FL =
3897         MF.getSubtarget<PPCSubtarget>().getFrameLowering();
3898     int NewRetAddrLoc = SPDiff + FL->getReturnSaveOffset();
3899     int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3900                                                           NewRetAddrLoc, true);
3901     EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
3902     SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
3903     Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
3904                          MachinePointerInfo::getFixedStack(NewRetAddr),
3905                          false, false, 0);
3906
3907     // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3908     // slot as the FP is never overwritten.
3909     if (isDarwinABI) {
3910       int NewFPLoc = SPDiff + FL->getFramePointerSaveOffset();
3911       int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
3912                                                           true);
3913       SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3914       Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
3915                            MachinePointerInfo::getFixedStack(NewFPIdx),
3916                            false, false, 0);
3917     }
3918   }
3919   return Chain;
3920 }
3921
3922 /// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3923 /// the position of the argument.
3924 static void
3925 CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
3926                          SDValue Arg, int SPDiff, unsigned ArgOffset,
3927                      SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
3928   int Offset = ArgOffset + SPDiff;
3929   uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
3930   int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
3931   EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
3932   SDValue FIN = DAG.getFrameIndex(FI, VT);
3933   TailCallArgumentInfo Info;
3934   Info.Arg = Arg;
3935   Info.FrameIdxOp = FIN;
3936   Info.FrameIdx = FI;
3937   TailCallArguments.push_back(Info);
3938 }
3939
3940 /// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3941 /// stack slot. Returns the chain as result and the loaded frame pointers in
3942 /// LROpOut/FPOpout. Used when tail calling.
3943 SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
3944                                                         int SPDiff,
3945                                                         SDValue Chain,
3946                                                         SDValue &LROpOut,
3947                                                         SDValue &FPOpOut,
3948                                                         bool isDarwinABI,
3949                                                         SDLoc dl) const {
3950   if (SPDiff) {
3951     // Load the LR and FP stack slot for later adjusting.
3952     EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32;
3953     LROpOut = getReturnAddrFrameIndex(DAG);
3954     LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
3955                           false, false, false, 0);
3956     Chain = SDValue(LROpOut.getNode(), 1);
3957
3958     // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3959     // slot as the FP is never overwritten.
3960     if (isDarwinABI) {
3961       FPOpOut = getFramePointerFrameIndex(DAG);
3962       FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
3963                             false, false, false, 0);
3964       Chain = SDValue(FPOpOut.getNode(), 1);
3965     }
3966   }
3967   return Chain;
3968 }
3969
3970 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
3971 /// by "Src" to address "Dst" of size "Size".  Alignment information is
3972 /// specified by the specific parameter attribute. The copy will be passed as
3973 /// a byval function parameter.
3974 /// Sometimes what we are copying is the end of a larger object, the part that
3975 /// does not fit in registers.
3976 static SDValue
3977 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
3978                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
3979                           SDLoc dl) {
3980   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
3981   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
3982                        false, false, false, MachinePointerInfo(),
3983                        MachinePointerInfo());
3984 }
3985
3986 /// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3987 /// tail calls.
3988 static void
3989 LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3990                  SDValue Arg, SDValue PtrOff, int SPDiff,
3991                  unsigned ArgOffset, bool isPPC64, bool isTailCall,
3992                  bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3993                  SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
3994                  SDLoc dl) {
3995   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
3996   if (!isTailCall) {
3997     if (isVector) {
3998       SDValue StackPtr;
3999       if (isPPC64)
4000         StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4001       else
4002         StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
4003       PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
4004                            DAG.getConstant(ArgOffset, dl, PtrVT));
4005     }
4006     MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
4007                                        MachinePointerInfo(), false, false, 0));
4008   // Calculate and remember argument location.
4009   } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
4010                                   TailCallArguments);
4011 }
4012
4013 static
4014 void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
4015                      SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
4016                      SDValue LROp, SDValue FPOp, bool isDarwinABI,
4017                      SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
4018   MachineFunction &MF = DAG.getMachineFunction();
4019
4020   // Emit a sequence of copyto/copyfrom virtual registers for arguments that
4021   // might overwrite each other in case of tail call optimization.
4022   SmallVector<SDValue, 8> MemOpChains2;
4023   // Do not flag preceding copytoreg stuff together with the following stuff.
4024   InFlag = SDValue();
4025   StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
4026                                     MemOpChains2, dl);
4027   if (!MemOpChains2.empty())
4028     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
4029
4030   // Store the return address to the appropriate stack slot.
4031   Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
4032                                         isPPC64, isDarwinABI, dl);
4033
4034   // Emit callseq_end just before tailcall node.
4035   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4036                              DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
4037   InFlag = Chain.getValue(1);
4038 }
4039
4040 // Is this global address that of a function that can be called by name? (as
4041 // opposed to something that must hold a descriptor for an indirect call).
4042 static bool isFunctionGlobalAddress(SDValue Callee) {
4043   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
4044     if (Callee.getOpcode() == ISD::GlobalTLSAddress ||
4045         Callee.getOpcode() == ISD::TargetGlobalTLSAddress)
4046       return false;
4047
4048     return G->getGlobal()->getType()->getElementType()->isFunctionTy();
4049   }
4050
4051   return false;
4052 }
4053
4054 static
4055 unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
4056                      SDValue &Chain, SDValue CallSeqStart, SDLoc dl, int SPDiff,
4057                      bool isTailCall, bool IsPatchPoint,
4058                      SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
4059                      SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
4060                      ImmutableCallSite *CS, const PPCSubtarget &Subtarget) {
4061
4062   bool isPPC64 = Subtarget.isPPC64();
4063   bool isSVR4ABI = Subtarget.isSVR4ABI();
4064   bool isELFv2ABI = Subtarget.isELFv2ABI();
4065
4066   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
4067   NodeTys.push_back(MVT::Other);   // Returns a chain
4068   NodeTys.push_back(MVT::Glue);    // Returns a flag for retval copy to use.
4069
4070   unsigned CallOpc = PPCISD::CALL;
4071
4072   bool needIndirectCall = true;
4073   if (!isSVR4ABI || !isPPC64)
4074     if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
4075       // If this is an absolute destination address, use the munged value.
4076       Callee = SDValue(Dest, 0);
4077       needIndirectCall = false;
4078     }
4079
4080   if (isFunctionGlobalAddress(Callee)) {
4081     GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee);
4082     // A call to a TLS address is actually an indirect call to a
4083     // thread-specific pointer.
4084     unsigned OpFlags = 0;
4085     if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
4086          (Subtarget.getTargetTriple().isMacOSX() &&
4087           Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
4088          !G->getGlobal()->isStrongDefinitionForLinker()) ||
4089         (Subtarget.isTargetELF() && !isPPC64 &&
4090          !G->getGlobal()->hasLocalLinkage() &&
4091          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
4092       // PC-relative references to external symbols should go through $stub,
4093       // unless we're building with the leopard linker or later, which
4094       // automatically synthesizes these stubs.
4095       OpFlags = PPCII::MO_PLT_OR_STUB;
4096     }
4097
4098     // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
4099     // every direct call is) turn it into a TargetGlobalAddress /
4100     // TargetExternalSymbol node so that legalize doesn't hack it.
4101     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
4102                                         Callee.getValueType(), 0, OpFlags);
4103     needIndirectCall = false;
4104   }
4105
4106   if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
4107     unsigned char OpFlags = 0;
4108
4109     if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
4110          (Subtarget.getTargetTriple().isMacOSX() &&
4111           Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) ||
4112         (Subtarget.isTargetELF() && !isPPC64 &&
4113          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
4114       // PC-relative references to external symbols should go through $stub,
4115       // unless we're building with the leopard linker or later, which
4116       // automatically synthesizes these stubs.
4117       OpFlags = PPCII::MO_PLT_OR_STUB;
4118     }
4119
4120     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
4121                                          OpFlags);
4122     needIndirectCall = false;
4123   }
4124
4125   if (IsPatchPoint) {
4126     // We'll form an invalid direct call when lowering a patchpoint; the full
4127     // sequence for an indirect call is complicated, and many of the
4128     // instructions introduced might have side effects (and, thus, can't be
4129     // removed later). The call itself will be removed as soon as the
4130     // argument/return lowering is complete, so the fact that it has the wrong
4131     // kind of operands should not really matter.
4132     needIndirectCall = false;
4133   }
4134
4135   if (needIndirectCall) {
4136     // Otherwise, this is an indirect call.  We have to use a MTCTR/BCTRL pair
4137     // to do the call, we can't use PPCISD::CALL.
4138     SDValue MTCTROps[] = {Chain, Callee, InFlag};
4139
4140     if (isSVR4ABI && isPPC64 && !isELFv2ABI) {
4141       // Function pointers in the 64-bit SVR4 ABI do not point to the function
4142       // entry point, but to the function descriptor (the function entry point
4143       // address is part of the function descriptor though).
4144       // The function descriptor is a three doubleword structure with the
4145       // following fields: function entry point, TOC base address and
4146       // environment pointer.
4147       // Thus for a call through a function pointer, the following actions need
4148       // to be performed:
4149       //   1. Save the TOC of the caller in the TOC save area of its stack
4150       //      frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
4151       //   2. Load the address of the function entry point from the function
4152       //      descriptor.
4153       //   3. Load the TOC of the callee from the function descriptor into r2.
4154       //   4. Load the environment pointer from the function descriptor into
4155       //      r11.
4156       //   5. Branch to the function entry point address.
4157       //   6. On return of the callee, the TOC of the caller needs to be
4158       //      restored (this is done in FinishCall()).
4159       //
4160       // The loads are scheduled at the beginning of the call sequence, and the
4161       // register copies are flagged together to ensure that no other
4162       // operations can be scheduled in between. E.g. without flagging the
4163       // copies together, a TOC access in the caller could be scheduled between
4164       // the assignment of the callee TOC and the branch to the callee, which
4165       // results in the TOC access going through the TOC of the callee instead
4166       // of going through the TOC of the caller, which leads to incorrect code.
4167
4168       // Load the address of the function entry point from the function
4169       // descriptor.
4170       SDValue LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-1);
4171       if (LDChain.getValueType() == MVT::Glue)
4172         LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-2);
4173
4174       bool LoadsInv = Subtarget.hasInvariantFunctionDescriptors();
4175
4176       MachinePointerInfo MPI(CS ? CS->getCalledValue() : nullptr);
4177       SDValue LoadFuncPtr = DAG.getLoad(MVT::i64, dl, LDChain, Callee, MPI,
4178                                         false, false, LoadsInv, 8);
4179
4180       // Load environment pointer into r11.
4181       SDValue PtrOff = DAG.getIntPtrConstant(16, dl);
4182       SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
4183       SDValue LoadEnvPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddPtr,
4184                                        MPI.getWithOffset(16), false, false,
4185                                        LoadsInv, 8);
4186
4187       SDValue TOCOff = DAG.getIntPtrConstant(8, dl);
4188       SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff);
4189       SDValue TOCPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddTOC,
4190                                    MPI.getWithOffset(8), false, false,
4191                                    LoadsInv, 8);
4192
4193       setUsesTOCBasePtr(DAG);
4194       SDValue TOCVal = DAG.getCopyToReg(Chain, dl, PPC::X2, TOCPtr,
4195                                         InFlag);
4196       Chain = TOCVal.getValue(0);
4197       InFlag = TOCVal.getValue(1);
4198
4199       SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
4200                                         InFlag);
4201
4202       Chain = EnvVal.getValue(0);
4203       InFlag = EnvVal.getValue(1);
4204
4205       MTCTROps[0] = Chain;
4206       MTCTROps[1] = LoadFuncPtr;
4207       MTCTROps[2] = InFlag;
4208     }
4209
4210     Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys,
4211                         makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
4212     InFlag = Chain.getValue(1);
4213
4214     NodeTys.clear();
4215     NodeTys.push_back(MVT::Other);
4216     NodeTys.push_back(MVT::Glue);
4217     Ops.push_back(Chain);
4218     CallOpc = PPCISD::BCTRL;
4219     Callee.setNode(nullptr);
4220     // Add use of X11 (holding environment pointer)
4221     if (isSVR4ABI && isPPC64 && !isELFv2ABI)
4222       Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
4223     // Add CTR register as callee so a bctr can be emitted later.
4224     if (isTailCall)
4225       Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
4226   }
4227
4228   // If this is a direct call, pass the chain and the callee.
4229   if (Callee.getNode()) {
4230     Ops.push_back(Chain);
4231     Ops.push_back(Callee);
4232   }
4233   // If this is a tail call add stack pointer delta.
4234   if (isTailCall)
4235     Ops.push_back(DAG.getConstant(SPDiff, dl, MVT::i32));
4236
4237   // Add argument registers to the end of the list so that they are known live
4238   // into the call.
4239   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
4240     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
4241                                   RegsToPass[i].second.getValueType()));
4242
4243   // All calls, in both the ELF V1 and V2 ABIs, need the TOC register live
4244   // into the call.
4245   if (isSVR4ABI && isPPC64 && !IsPatchPoint) {
4246     setUsesTOCBasePtr(DAG);
4247     Ops.push_back(DAG.getRegister(PPC::X2, PtrVT));
4248   }
4249
4250   return CallOpc;
4251 }
4252
4253 static
4254 bool isLocalCall(const SDValue &Callee)
4255 {
4256   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
4257     return G->getGlobal()->isStrongDefinitionForLinker();
4258   return false;
4259 }
4260
4261 SDValue
4262 PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
4263                                    CallingConv::ID CallConv, bool isVarArg,
4264                                    const SmallVectorImpl<ISD::InputArg> &Ins,
4265                                    SDLoc dl, SelectionDAG &DAG,
4266                                    SmallVectorImpl<SDValue> &InVals) const {
4267
4268   SmallVector<CCValAssign, 16> RVLocs;
4269   CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
4270                     *DAG.getContext());
4271   CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
4272
4273   // Copy all of the result registers out of their specified physreg.
4274   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
4275     CCValAssign &VA = RVLocs[i];
4276     assert(VA.isRegLoc() && "Can only return in registers!");
4277
4278     SDValue Val = DAG.getCopyFromReg(Chain, dl,
4279                                      VA.getLocReg(), VA.getLocVT(), InFlag);
4280     Chain = Val.getValue(1);
4281     InFlag = Val.getValue(2);
4282
4283     switch (VA.getLocInfo()) {
4284     default: llvm_unreachable("Unknown loc info!");
4285     case CCValAssign::Full: break;
4286     case CCValAssign::AExt:
4287       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4288       break;
4289     case CCValAssign::ZExt:
4290       Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
4291                         DAG.getValueType(VA.getValVT()));
4292       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4293       break;
4294     case CCValAssign::SExt:
4295       Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
4296                         DAG.getValueType(VA.getValVT()));
4297       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4298       break;
4299     }
4300
4301     InVals.push_back(Val);
4302   }
4303
4304   return Chain;
4305 }
4306
4307 SDValue
4308 PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
4309                               bool isTailCall, bool isVarArg, bool IsPatchPoint,
4310                               SelectionDAG &DAG,
4311                               SmallVector<std::pair<unsigned, SDValue>, 8>
4312                                 &RegsToPass,
4313                               SDValue InFlag, SDValue Chain,
4314                               SDValue CallSeqStart, SDValue &Callee,
4315                               int SPDiff, unsigned NumBytes,
4316                               const SmallVectorImpl<ISD::InputArg> &Ins,
4317                               SmallVectorImpl<SDValue> &InVals,
4318                               ImmutableCallSite *CS) const {
4319
4320   std::vector<EVT> NodeTys;
4321   SmallVector<SDValue, 8> Ops;
4322   unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, CallSeqStart, dl,
4323                                  SPDiff, isTailCall, IsPatchPoint, RegsToPass,
4324                                  Ops, NodeTys, CS, Subtarget);
4325
4326   // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
4327   if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64())
4328     Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
4329
4330   // When performing tail call optimization the callee pops its arguments off
4331   // the stack. Account for this here so these bytes can be pushed back on in
4332   // PPCFrameLowering::eliminateCallFramePseudoInstr.
4333   int BytesCalleePops =
4334     (CallConv == CallingConv::Fast &&
4335      getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
4336
4337   // Add a register mask operand representing the call-preserved registers.
4338   const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
4339   const uint32_t *Mask =
4340       TRI->getCallPreservedMask(DAG.getMachineFunction(), CallConv);
4341   assert(Mask && "Missing call preserved mask for calling convention");
4342   Ops.push_back(DAG.getRegisterMask(Mask));
4343
4344   if (InFlag.getNode())
4345     Ops.push_back(InFlag);
4346
4347   // Emit tail call.
4348   if (isTailCall) {
4349     assert(((Callee.getOpcode() == ISD::Register &&
4350              cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
4351             Callee.getOpcode() == ISD::TargetExternalSymbol ||
4352             Callee.getOpcode() == ISD::TargetGlobalAddress ||
4353             isa<ConstantSDNode>(Callee)) &&
4354     "Expecting an global address, external symbol, absolute value or register");
4355
4356     DAG.getMachineFunction().getFrameInfo()->setHasTailCall();
4357     return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops);
4358   }
4359
4360   // Add a NOP immediately after the branch instruction when using the 64-bit
4361   // SVR4 ABI. At link time, if caller and callee are in a different module and
4362   // thus have a different TOC, the call will be replaced with a call to a stub
4363   // function which saves the current TOC, loads the TOC of the callee and
4364   // branches to the callee. The NOP will be replaced with a load instruction
4365   // which restores the TOC of the caller from the TOC save slot of the current
4366   // stack frame. If caller and callee belong to the same module (and have the
4367   // same TOC), the NOP will remain unchanged.
4368
4369   if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64() &&
4370       !IsPatchPoint) {
4371     if (CallOpc == PPCISD::BCTRL) {
4372       // This is a call through a function pointer.
4373       // Restore the caller TOC from the save area into R2.
4374       // See PrepareCall() for more information about calls through function
4375       // pointers in the 64-bit SVR4 ABI.
4376       // We are using a target-specific load with r2 hard coded, because the
4377       // result of a target-independent load would never go directly into r2,
4378       // since r2 is a reserved register (which prevents the register allocator
4379       // from allocating it), resulting in an additional register being
4380       // allocated and an unnecessary move instruction being generated.
4381       CallOpc = PPCISD::BCTRL_LOAD_TOC;
4382
4383       EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
4384       SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT);
4385       unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
4386       SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset, dl);
4387       SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff);
4388
4389       // The address needs to go after the chain input but before the flag (or
4390       // any other variadic arguments).
4391       Ops.insert(std::next(Ops.begin()), AddTOC);
4392     } else if ((CallOpc == PPCISD::CALL) &&
4393                (!isLocalCall(Callee) ||
4394                 DAG.getTarget().getRelocationModel() == Reloc::PIC_))
4395       // Otherwise insert NOP for non-local calls.
4396       CallOpc = PPCISD::CALL_NOP;
4397   }
4398
4399   Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
4400   InFlag = Chain.getValue(1);
4401
4402   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4403                              DAG.getIntPtrConstant(BytesCalleePops, dl, true),
4404                              InFlag, dl);
4405   if (!Ins.empty())
4406     InFlag = Chain.getValue(1);
4407
4408   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
4409                          Ins, dl, DAG, InVals);
4410 }
4411
4412 SDValue
4413 PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
4414                              SmallVectorImpl<SDValue> &InVals) const {
4415   SelectionDAG &DAG                     = CLI.DAG;
4416   SDLoc &dl                             = CLI.DL;
4417   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
4418   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
4419   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
4420   SDValue Chain                         = CLI.Chain;
4421   SDValue Callee                        = CLI.Callee;
4422   bool &isTailCall                      = CLI.IsTailCall;
4423   CallingConv::ID CallConv              = CLI.CallConv;
4424   bool isVarArg                         = CLI.IsVarArg;
4425   bool IsPatchPoint                     = CLI.IsPatchPoint;
4426   ImmutableCallSite *CS                 = CLI.CS;
4427
4428   if (isTailCall)
4429     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
4430                                                    Ins, DAG);
4431
4432   if (!isTailCall && CS && CS->isMustTailCall())
4433     report_fatal_error("failed to perform tail call elimination on a call "
4434                        "site marked musttail");
4435
4436   if (Subtarget.isSVR4ABI()) {
4437     if (Subtarget.isPPC64())
4438       return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
4439                               isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4440                               dl, DAG, InVals, CS);
4441     else
4442       return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
4443                               isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4444                               dl, DAG, InVals, CS);
4445   }
4446
4447   return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
4448                           isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4449                           dl, DAG, InVals, CS);
4450 }
4451
4452 SDValue
4453 PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
4454                                     CallingConv::ID CallConv, bool isVarArg,
4455                                     bool isTailCall, bool IsPatchPoint,
4456                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
4457                                     const SmallVectorImpl<SDValue> &OutVals,
4458                                     const SmallVectorImpl<ISD::InputArg> &Ins,
4459                                     SDLoc dl, SelectionDAG &DAG,
4460                                     SmallVectorImpl<SDValue> &InVals,
4461                                     ImmutableCallSite *CS) const {
4462   // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
4463   // of the 32-bit SVR4 ABI stack frame layout.
4464
4465   assert((CallConv == CallingConv::C ||
4466           CallConv == CallingConv::Fast) && "Unknown calling convention!");
4467
4468   unsigned PtrByteSize = 4;
4469
4470   MachineFunction &MF = DAG.getMachineFunction();
4471
4472   // Mark this function as potentially containing a function that contains a
4473   // tail call. As a consequence the frame pointer will be used for dynamicalloc
4474   // and restoring the callers stack pointer in this functions epilog. This is
4475   // done because by tail calling the called function might overwrite the value
4476   // in this function's (MF) stack pointer stack slot 0(SP).
4477   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4478       CallConv == CallingConv::Fast)
4479     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4480
4481   // Count how many bytes are to be pushed on the stack, including the linkage
4482   // area, parameter list area and the part of the local variable space which
4483   // contains copies of aggregates which are passed by value.
4484
4485   // Assign locations to all of the outgoing arguments.
4486   SmallVector<CCValAssign, 16> ArgLocs;
4487   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
4488                  *DAG.getContext());
4489
4490   // Reserve space for the linkage area on the stack.
4491   CCInfo.AllocateStack(Subtarget.getFrameLowering()->getLinkageSize(),
4492                        PtrByteSize);
4493
4494   if (isVarArg) {
4495     // Handle fixed and variable vector arguments differently.
4496     // Fixed vector arguments go into registers as long as registers are
4497     // available. Variable vector arguments always go into memory.
4498     unsigned NumArgs = Outs.size();
4499
4500     for (unsigned i = 0; i != NumArgs; ++i) {
4501       MVT ArgVT = Outs[i].VT;
4502       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
4503       bool Result;
4504
4505       if (Outs[i].IsFixed) {
4506         Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
4507                                CCInfo);
4508       } else {
4509         Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
4510                                       ArgFlags, CCInfo);
4511       }
4512
4513       if (Result) {
4514 #ifndef NDEBUG
4515         errs() << "Call operand #" << i << " has unhandled type "
4516              << EVT(ArgVT).getEVTString() << "\n";
4517 #endif
4518         llvm_unreachable(nullptr);
4519       }
4520     }
4521   } else {
4522     // All arguments are treated the same.
4523     CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
4524   }
4525
4526   // Assign locations to all of the outgoing aggregate by value arguments.
4527   SmallVector<CCValAssign, 16> ByValArgLocs;
4528   CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
4529                       ByValArgLocs, *DAG.getContext());
4530
4531   // Reserve stack space for the allocations in CCInfo.
4532   CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
4533
4534   CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
4535
4536   // Size of the linkage area, parameter list area and the part of the local
4537   // space variable where copies of aggregates which are passed by value are
4538   // stored.
4539   unsigned NumBytes = CCByValInfo.getNextStackOffset();
4540
4541   // Calculate by how many bytes the stack has to be adjusted in case of tail
4542   // call optimization.
4543   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4544
4545   // Adjust the stack pointer for the new arguments...
4546   // These operations are automatically eliminated by the prolog/epilog pass
4547   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4548                                dl);
4549   SDValue CallSeqStart = Chain;
4550
4551   // Load the return address and frame pointer so it can be moved somewhere else
4552   // later.
4553   SDValue LROp, FPOp;
4554   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
4555                                        dl);
4556
4557   // Set up a copy of the stack pointer for use loading and storing any
4558   // arguments that may not fit in the registers available for argument
4559   // passing.
4560   SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
4561
4562   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4563   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4564   SmallVector<SDValue, 8> MemOpChains;
4565
4566   bool seenFloatArg = false;
4567   // Walk the register/memloc assignments, inserting copies/loads.
4568   for (unsigned i = 0, j = 0, e = ArgLocs.size();
4569        i != e;
4570        ++i) {
4571     CCValAssign &VA = ArgLocs[i];
4572     SDValue Arg = OutVals[i];
4573     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4574
4575     if (Flags.isByVal()) {
4576       // Argument is an aggregate which is passed by value, thus we need to
4577       // create a copy of it in the local variable space of the current stack
4578       // frame (which is the stack frame of the caller) and pass the address of
4579       // this copy to the callee.
4580       assert((j < ByValArgLocs.size()) && "Index out of bounds!");
4581       CCValAssign &ByValVA = ByValArgLocs[j++];
4582       assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
4583
4584       // Memory reserved in the local variable space of the callers stack frame.
4585       unsigned LocMemOffset = ByValVA.getLocMemOffset();
4586
4587       SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
4588       PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()),
4589                            StackPtr, PtrOff);
4590
4591       // Create a copy of the argument in the local area of the current
4592       // stack frame.
4593       SDValue MemcpyCall =
4594         CreateCopyOfByValArgument(Arg, PtrOff,
4595                                   CallSeqStart.getNode()->getOperand(0),
4596                                   Flags, DAG, dl);
4597
4598       // This must go outside the CALLSEQ_START..END.
4599       SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
4600                            CallSeqStart.getNode()->getOperand(1),
4601                            SDLoc(MemcpyCall));
4602       DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4603                              NewCallSeqStart.getNode());
4604       Chain = CallSeqStart = NewCallSeqStart;
4605
4606       // Pass the address of the aggregate copy on the stack either in a
4607       // physical register or in the parameter list area of the current stack
4608       // frame to the callee.
4609       Arg = PtrOff;
4610     }
4611
4612     if (VA.isRegLoc()) {
4613       if (Arg.getValueType() == MVT::i1)
4614         Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg);
4615
4616       seenFloatArg |= VA.getLocVT().isFloatingPoint();
4617       // Put argument in a physical register.
4618       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
4619     } else {
4620       // Put argument in the parameter list area of the current stack frame.
4621       assert(VA.isMemLoc());
4622       unsigned LocMemOffset = VA.getLocMemOffset();
4623
4624       if (!isTailCall) {
4625         SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
4626         PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()),
4627                              StackPtr, PtrOff);
4628
4629         MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
4630                                            MachinePointerInfo(),
4631                                            false, false, 0));
4632       } else {
4633         // Calculate and remember argument location.
4634         CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
4635                                  TailCallArguments);
4636       }
4637     }
4638   }
4639
4640   if (!MemOpChains.empty())
4641     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
4642
4643   // Build a sequence of copy-to-reg nodes chained together with token chain
4644   // and flag operands which copy the outgoing args into the appropriate regs.
4645   SDValue InFlag;
4646   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4647     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4648                              RegsToPass[i].second, InFlag);
4649     InFlag = Chain.getValue(1);
4650   }
4651
4652   // Set CR bit 6 to true if this is a vararg call with floating args passed in
4653   // registers.
4654   if (isVarArg) {
4655     SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
4656     SDValue Ops[] = { Chain, InFlag };
4657
4658     Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
4659                         dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1));
4660
4661     InFlag = Chain.getValue(1);
4662   }
4663
4664   if (isTailCall)
4665     PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
4666                     false, TailCallArguments);
4667
4668   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
4669                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4670                     NumBytes, Ins, InVals, CS);
4671 }
4672
4673 // Copy an argument into memory, being careful to do this outside the
4674 // call sequence for the call to which the argument belongs.
4675 SDValue
4676 PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
4677                                               SDValue CallSeqStart,
4678                                               ISD::ArgFlagsTy Flags,
4679                                               SelectionDAG &DAG,
4680                                               SDLoc dl) const {
4681   SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
4682                         CallSeqStart.getNode()->getOperand(0),
4683                         Flags, DAG, dl);
4684   // The MEMCPY must go outside the CALLSEQ_START..END.
4685   SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
4686                              CallSeqStart.getNode()->getOperand(1),
4687                              SDLoc(MemcpyCall));
4688   DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4689                          NewCallSeqStart.getNode());
4690   return NewCallSeqStart;
4691 }
4692
4693 SDValue
4694 PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
4695                                     CallingConv::ID CallConv, bool isVarArg,
4696                                     bool isTailCall, bool IsPatchPoint,
4697                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
4698                                     const SmallVectorImpl<SDValue> &OutVals,
4699                                     const SmallVectorImpl<ISD::InputArg> &Ins,
4700                                     SDLoc dl, SelectionDAG &DAG,
4701                                     SmallVectorImpl<SDValue> &InVals,
4702                                     ImmutableCallSite *CS) const {
4703
4704   bool isELFv2ABI = Subtarget.isELFv2ABI();
4705   bool isLittleEndian = Subtarget.isLittleEndian();
4706   unsigned NumOps = Outs.size();
4707
4708   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
4709   unsigned PtrByteSize = 8;
4710
4711   MachineFunction &MF = DAG.getMachineFunction();
4712
4713   // Mark this function as potentially containing a function that contains a
4714   // tail call. As a consequence the frame pointer will be used for dynamicalloc
4715   // and restoring the callers stack pointer in this functions epilog. This is
4716   // done because by tail calling the called function might overwrite the value
4717   // in this function's (MF) stack pointer stack slot 0(SP).
4718   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4719       CallConv == CallingConv::Fast)
4720     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4721
4722   assert(!(CallConv == CallingConv::Fast && isVarArg) &&
4723          "fastcc not supported on varargs functions");
4724
4725   // Count how many bytes are to be pushed on the stack, including the linkage
4726   // area, and parameter passing area.  On ELFv1, the linkage area is 48 bytes
4727   // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage
4728   // area is 32 bytes reserved space for [SP][CR][LR][TOC].
4729   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
4730   unsigned NumBytes = LinkageSize;
4731   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
4732   unsigned &QFPR_idx = FPR_idx;
4733
4734   static const MCPhysReg GPR[] = {
4735     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4736     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4737   };
4738   static const MCPhysReg VR[] = {
4739     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4740     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4741   };
4742   static const MCPhysReg VSRH[] = {
4743     PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
4744     PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
4745   };
4746
4747   const unsigned NumGPRs = array_lengthof(GPR);
4748   const unsigned NumFPRs = 13;
4749   const unsigned NumVRs  = array_lengthof(VR);
4750   const unsigned NumQFPRs = NumFPRs;
4751
4752   // When using the fast calling convention, we don't provide backing for
4753   // arguments that will be in registers.
4754   unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0;
4755
4756   // Add up all the space actually used.
4757   for (unsigned i = 0; i != NumOps; ++i) {
4758     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4759     EVT ArgVT = Outs[i].VT;
4760     EVT OrigVT = Outs[i].ArgVT;
4761
4762     if (CallConv == CallingConv::Fast) {
4763       if (Flags.isByVal())
4764         NumGPRsUsed += (Flags.getByValSize()+7)/8;
4765       else
4766         switch (ArgVT.getSimpleVT().SimpleTy) {
4767         default: llvm_unreachable("Unexpected ValueType for argument!");
4768         case MVT::i1:
4769         case MVT::i32:
4770         case MVT::i64:
4771           if (++NumGPRsUsed <= NumGPRs)
4772             continue;
4773           break;
4774         case MVT::v4i32:
4775         case MVT::v8i16:
4776         case MVT::v16i8:
4777         case MVT::v2f64:
4778         case MVT::v2i64:
4779         case MVT::v1i128:
4780           if (++NumVRsUsed <= NumVRs)
4781             continue;
4782           break;
4783         case MVT::v4f32:
4784           // When using QPX, this is handled like a FP register, otherwise, it
4785           // is an Altivec register.
4786           if (Subtarget.hasQPX()) {
4787             if (++NumFPRsUsed <= NumFPRs)
4788               continue;
4789           } else {
4790             if (++NumVRsUsed <= NumVRs)
4791               continue;
4792           }
4793           break;
4794         case MVT::f32:
4795         case MVT::f64:
4796         case MVT::v4f64: // QPX
4797         case MVT::v4i1:  // QPX
4798           if (++NumFPRsUsed <= NumFPRs)
4799             continue;
4800           break;
4801         }
4802     }
4803
4804     /* Respect alignment of argument on the stack.  */
4805     unsigned Align =
4806       CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4807     NumBytes = ((NumBytes + Align - 1) / Align) * Align;
4808
4809     NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
4810     if (Flags.isInConsecutiveRegsLast())
4811       NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
4812   }
4813
4814   unsigned NumBytesActuallyUsed = NumBytes;
4815
4816   // The prolog code of the callee may store up to 8 GPR argument registers to
4817   // the stack, allowing va_start to index over them in memory if its varargs.
4818   // Because we cannot tell if this is needed on the caller side, we have to
4819   // conservatively assume that it is needed.  As such, make sure we have at
4820   // least enough stack space for the caller to store the 8 GPRs.
4821   // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
4822   NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
4823
4824   // Tail call needs the stack to be aligned.
4825   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4826       CallConv == CallingConv::Fast)
4827     NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
4828
4829   // Calculate by how many bytes the stack has to be adjusted in case of tail
4830   // call optimization.
4831   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4832
4833   // To protect arguments on the stack from being clobbered in a tail call,
4834   // force all the loads to happen before doing any other lowering.
4835   if (isTailCall)
4836     Chain = DAG.getStackArgumentTokenFactor(Chain);
4837
4838   // Adjust the stack pointer for the new arguments...
4839   // These operations are automatically eliminated by the prolog/epilog pass
4840   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4841                                dl);
4842   SDValue CallSeqStart = Chain;
4843
4844   // Load the return address and frame pointer so it can be move somewhere else
4845   // later.
4846   SDValue LROp, FPOp;
4847   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4848                                        dl);
4849
4850   // Set up a copy of the stack pointer for use loading and storing any
4851   // arguments that may not fit in the registers available for argument
4852   // passing.
4853   SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4854
4855   // Figure out which arguments are going to go in registers, and which in
4856   // memory.  Also, if this is a vararg function, floating point operations
4857   // must be stored to our stack, and loaded into integer regs as well, if
4858   // any integer regs are available for argument passing.
4859   unsigned ArgOffset = LinkageSize;
4860
4861   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4862   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4863
4864   SmallVector<SDValue, 8> MemOpChains;
4865   for (unsigned i = 0; i != NumOps; ++i) {
4866     SDValue Arg = OutVals[i];
4867     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4868     EVT ArgVT = Outs[i].VT;
4869     EVT OrigVT = Outs[i].ArgVT;
4870
4871     // PtrOff will be used to store the current argument to the stack if a
4872     // register cannot be found for it.
4873     SDValue PtrOff;
4874
4875     // We re-align the argument offset for each argument, except when using the
4876     // fast calling convention, when we need to make sure we do that only when
4877     // we'll actually use a stack slot.
4878     auto ComputePtrOff = [&]() {
4879       /* Respect alignment of argument on the stack.  */
4880       unsigned Align =
4881         CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4882       ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
4883
4884       PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType());
4885
4886       PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4887     };
4888
4889     if (CallConv != CallingConv::Fast) {
4890       ComputePtrOff();
4891
4892       /* Compute GPR index associated with argument offset.  */
4893       GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
4894       GPR_idx = std::min(GPR_idx, NumGPRs);
4895     }
4896
4897     // Promote integers to 64-bit values.
4898     if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) {
4899       // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4900       unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4901       Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
4902     }
4903
4904     // FIXME memcpy is used way more than necessary.  Correctness first.
4905     // Note: "by value" is code for passing a structure by value, not
4906     // basic types.
4907     if (Flags.isByVal()) {
4908       // Note: Size includes alignment padding, so
4909       //   struct x { short a; char b; }
4910       // will have Size = 4.  With #pragma pack(1), it will have Size = 3.
4911       // These are the proper values we need for right-justifying the
4912       // aggregate in a parameter register.
4913       unsigned Size = Flags.getByValSize();
4914
4915       // An empty aggregate parameter takes up no storage and no
4916       // registers.
4917       if (Size == 0)
4918         continue;
4919
4920       if (CallConv == CallingConv::Fast)
4921         ComputePtrOff();
4922
4923       // All aggregates smaller than 8 bytes must be passed right-justified.
4924       if (Size==1 || Size==2 || Size==4) {
4925         EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
4926         if (GPR_idx != NumGPRs) {
4927           SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
4928                                         MachinePointerInfo(), VT,
4929                                         false, false, false, 0);
4930           MemOpChains.push_back(Load.getValue(1));
4931           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4932
4933           ArgOffset += PtrByteSize;
4934           continue;
4935         }
4936       }
4937
4938       if (GPR_idx == NumGPRs && Size < 8) {
4939         SDValue AddPtr = PtrOff;
4940         if (!isLittleEndian) {
4941           SDValue Const = DAG.getConstant(PtrByteSize - Size, dl,
4942                                           PtrOff.getValueType());
4943           AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4944         }
4945         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4946                                                           CallSeqStart,
4947                                                           Flags, DAG, dl);
4948         ArgOffset += PtrByteSize;
4949         continue;
4950       }
4951       // Copy entire object into memory.  There are cases where gcc-generated
4952       // code assumes it is there, even if it could be put entirely into
4953       // registers.  (This is not what the doc says.)
4954
4955       // FIXME: The above statement is likely due to a misunderstanding of the
4956       // documents.  All arguments must be copied into the parameter area BY
4957       // THE CALLEE in the event that the callee takes the address of any
4958       // formal argument.  That has not yet been implemented.  However, it is
4959       // reasonable to use the stack area as a staging area for the register
4960       // load.
4961
4962       // Skip this for small aggregates, as we will use the same slot for a
4963       // right-justified copy, below.
4964       if (Size >= 8)
4965         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4966                                                           CallSeqStart,
4967                                                           Flags, DAG, dl);
4968
4969       // When a register is available, pass a small aggregate right-justified.
4970       if (Size < 8 && GPR_idx != NumGPRs) {
4971         // The easiest way to get this right-justified in a register
4972         // is to copy the structure into the rightmost portion of a
4973         // local variable slot, then load the whole slot into the
4974         // register.
4975         // FIXME: The memcpy seems to produce pretty awful code for
4976         // small aggregates, particularly for packed ones.
4977         // FIXME: It would be preferable to use the slot in the
4978         // parameter save area instead of a new local variable.
4979         SDValue AddPtr = PtrOff;
4980         if (!isLittleEndian) {
4981           SDValue Const = DAG.getConstant(8 - Size, dl, PtrOff.getValueType());
4982           AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4983         }
4984         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4985                                                           CallSeqStart,
4986                                                           Flags, DAG, dl);
4987
4988         // Load the slot into the register.
4989         SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
4990                                    MachinePointerInfo(),
4991                                    false, false, false, 0);
4992         MemOpChains.push_back(Load.getValue(1));
4993         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4994
4995         // Done with this argument.
4996         ArgOffset += PtrByteSize;
4997         continue;
4998       }
4999
5000       // For aggregates larger than PtrByteSize, copy the pieces of the
5001       // object that fit into registers from the parameter save area.
5002       for (unsigned j=0; j<Size; j+=PtrByteSize) {
5003         SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType());
5004         SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
5005         if (GPR_idx != NumGPRs) {
5006           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5007                                      MachinePointerInfo(),
5008                                      false, false, false, 0);
5009           MemOpChains.push_back(Load.getValue(1));
5010           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5011           ArgOffset += PtrByteSize;
5012         } else {
5013           ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
5014           break;
5015         }
5016       }
5017       continue;
5018     }
5019
5020     switch (Arg.getSimpleValueType().SimpleTy) {
5021     default: llvm_unreachable("Unexpected ValueType for argument!");
5022     case MVT::i1:
5023     case MVT::i32:
5024     case MVT::i64:
5025       // These can be scalar arguments or elements of an integer array type
5026       // passed directly.  Clang may use those instead of "byval" aggregate
5027       // types to avoid forcing arguments to memory unnecessarily.
5028       if (GPR_idx != NumGPRs) {
5029         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
5030       } else {
5031         if (CallConv == CallingConv::Fast)
5032           ComputePtrOff();
5033
5034         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5035                          true, isTailCall, false, MemOpChains,
5036                          TailCallArguments, dl);
5037         if (CallConv == CallingConv::Fast)
5038           ArgOffset += PtrByteSize;
5039       }
5040       if (CallConv != CallingConv::Fast)
5041         ArgOffset += PtrByteSize;
5042       break;
5043     case MVT::f32:
5044     case MVT::f64: {
5045       // These can be scalar arguments or elements of a float array type
5046       // passed directly.  The latter are used to implement ELFv2 homogenous
5047       // float aggregates.
5048
5049       // Named arguments go into FPRs first, and once they overflow, the
5050       // remaining arguments go into GPRs and then the parameter save area.
5051       // Unnamed arguments for vararg functions always go to GPRs and
5052       // then the parameter save area.  For now, put all arguments to vararg
5053       // routines always in both locations (FPR *and* GPR or stack slot).
5054       bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs;
5055       bool NeededLoad = false;
5056
5057       // First load the argument into the next available FPR.
5058       if (FPR_idx != NumFPRs)
5059         RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5060
5061       // Next, load the argument into GPR or stack slot if needed.
5062       if (!NeedGPROrStack)
5063         ;
5064       else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) {
5065         // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
5066         // once we support fp <-> gpr moves.
5067
5068         // In the non-vararg case, this can only ever happen in the
5069         // presence of f32 array types, since otherwise we never run
5070         // out of FPRs before running out of GPRs.
5071         SDValue ArgVal;
5072
5073         // Double values are always passed in a single GPR.
5074         if (Arg.getValueType() != MVT::f32) {
5075           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
5076
5077         // Non-array float values are extended and passed in a GPR.
5078         } else if (!Flags.isInConsecutiveRegs()) {
5079           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5080           ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
5081
5082         // If we have an array of floats, we collect every odd element
5083         // together with its predecessor into one GPR.
5084         } else if (ArgOffset % PtrByteSize != 0) {
5085           SDValue Lo, Hi;
5086           Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]);
5087           Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5088           if (!isLittleEndian)
5089             std::swap(Lo, Hi);
5090           ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
5091
5092         // The final element, if even, goes into the first half of a GPR.
5093         } else if (Flags.isInConsecutiveRegsLast()) {
5094           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5095           ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
5096           if (!isLittleEndian)
5097             ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal,
5098                                  DAG.getConstant(32, dl, MVT::i32));
5099
5100         // Non-final even elements are skipped; they will be handled
5101         // together the with subsequent argument on the next go-around.
5102         } else
5103           ArgVal = SDValue();
5104
5105         if (ArgVal.getNode())
5106           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal));
5107       } else {
5108         if (CallConv == CallingConv::Fast)
5109           ComputePtrOff();
5110
5111         // Single-precision floating-point values are mapped to the
5112         // second (rightmost) word of the stack doubleword.
5113         if (Arg.getValueType() == MVT::f32 &&
5114             !isLittleEndian && !Flags.isInConsecutiveRegs()) {
5115           SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType());
5116           PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
5117         }
5118
5119         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5120                          true, isTailCall, false, MemOpChains,
5121                          TailCallArguments, dl);
5122
5123         NeededLoad = true;
5124       }
5125       // When passing an array of floats, the array occupies consecutive
5126       // space in the argument area; only round up to the next doubleword
5127       // at the end of the array.  Otherwise, each float takes 8 bytes.
5128       if (CallConv != CallingConv::Fast || NeededLoad) {
5129         ArgOffset += (Arg.getValueType() == MVT::f32 &&
5130                       Flags.isInConsecutiveRegs()) ? 4 : 8;
5131         if (Flags.isInConsecutiveRegsLast())
5132           ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
5133       }
5134       break;
5135     }
5136     case MVT::v4f32:
5137     case MVT::v4i32:
5138     case MVT::v8i16:
5139     case MVT::v16i8:
5140     case MVT::v2f64:
5141     case MVT::v2i64:
5142     case MVT::v1i128:
5143       if (!Subtarget.hasQPX()) {
5144       // These can be scalar arguments or elements of a vector array type
5145       // passed directly.  The latter are used to implement ELFv2 homogenous
5146       // vector aggregates.
5147
5148       // For a varargs call, named arguments go into VRs or on the stack as
5149       // usual; unnamed arguments always go to the stack or the corresponding
5150       // GPRs when within range.  For now, we always put the value in both
5151       // locations (or even all three).
5152       if (isVarArg) {
5153         // We could elide this store in the case where the object fits
5154         // entirely in R registers.  Maybe later.
5155         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5156                                      MachinePointerInfo(), false, false, 0);
5157         MemOpChains.push_back(Store);
5158         if (VR_idx != NumVRs) {
5159           SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
5160                                      MachinePointerInfo(),
5161                                      false, false, false, 0);
5162           MemOpChains.push_back(Load.getValue(1));
5163
5164           unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
5165                            Arg.getSimpleValueType() == MVT::v2i64) ?
5166                           VSRH[VR_idx] : VR[VR_idx];
5167           ++VR_idx;
5168
5169           RegsToPass.push_back(std::make_pair(VReg, Load));
5170         }
5171         ArgOffset += 16;
5172         for (unsigned i=0; i<16; i+=PtrByteSize) {
5173           if (GPR_idx == NumGPRs)
5174             break;
5175           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
5176                                    DAG.getConstant(i, dl, PtrVT));
5177           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5178                                      false, false, false, 0);
5179           MemOpChains.push_back(Load.getValue(1));
5180           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5181         }
5182         break;
5183       }
5184
5185       // Non-varargs Altivec params go into VRs or on the stack.
5186       if (VR_idx != NumVRs) {
5187         unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
5188                          Arg.getSimpleValueType() == MVT::v2i64) ?
5189                         VSRH[VR_idx] : VR[VR_idx];
5190         ++VR_idx;
5191
5192         RegsToPass.push_back(std::make_pair(VReg, Arg));
5193       } else {
5194         if (CallConv == CallingConv::Fast)
5195           ComputePtrOff();
5196
5197         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5198                          true, isTailCall, true, MemOpChains,
5199                          TailCallArguments, dl);
5200         if (CallConv == CallingConv::Fast)
5201           ArgOffset += 16;
5202       }
5203
5204       if (CallConv != CallingConv::Fast)
5205         ArgOffset += 16;
5206       break;
5207       } // not QPX
5208
5209       assert(Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32 &&
5210              "Invalid QPX parameter type");
5211
5212       /* fall through */
5213     case MVT::v4f64:
5214     case MVT::v4i1: {
5215       bool IsF32 = Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32;
5216       if (isVarArg) {
5217         // We could elide this store in the case where the object fits
5218         // entirely in R registers.  Maybe later.
5219         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5220                                      MachinePointerInfo(), false, false, 0);
5221         MemOpChains.push_back(Store);
5222         if (QFPR_idx != NumQFPRs) {
5223           SDValue Load = DAG.getLoad(IsF32 ? MVT::v4f32 : MVT::v4f64, dl,
5224                                      Store, PtrOff, MachinePointerInfo(),
5225                                      false, false, false, 0);
5226           MemOpChains.push_back(Load.getValue(1));
5227           RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Load));
5228         }
5229         ArgOffset += (IsF32 ? 16 : 32);
5230         for (unsigned i = 0; i < (IsF32 ? 16U : 32U); i += PtrByteSize) {
5231           if (GPR_idx == NumGPRs)
5232             break;
5233           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
5234                                    DAG.getConstant(i, dl, PtrVT));
5235           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5236                                      false, false, false, 0);
5237           MemOpChains.push_back(Load.getValue(1));
5238           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5239         }
5240         break;
5241       }
5242
5243       // Non-varargs QPX params go into registers or on the stack.
5244       if (QFPR_idx != NumQFPRs) {
5245         RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Arg));
5246       } else {
5247         if (CallConv == CallingConv::Fast)
5248           ComputePtrOff();
5249
5250         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5251                          true, isTailCall, true, MemOpChains,
5252                          TailCallArguments, dl);
5253         if (CallConv == CallingConv::Fast)
5254           ArgOffset += (IsF32 ? 16 : 32);
5255       }
5256
5257       if (CallConv != CallingConv::Fast)
5258         ArgOffset += (IsF32 ? 16 : 32);
5259       break;
5260       }
5261     }
5262   }
5263
5264   assert(NumBytesActuallyUsed == ArgOffset);
5265   (void)NumBytesActuallyUsed;
5266
5267   if (!MemOpChains.empty())
5268     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
5269
5270   // Check if this is an indirect call (MTCTR/BCTRL).
5271   // See PrepareCall() for more information about calls through function
5272   // pointers in the 64-bit SVR4 ABI.
5273   if (!isTailCall && !IsPatchPoint &&
5274       !isFunctionGlobalAddress(Callee) &&
5275       !isa<ExternalSymbolSDNode>(Callee)) {
5276     // Load r2 into a virtual register and store it to the TOC save area.
5277     setUsesTOCBasePtr(DAG);
5278     SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
5279     // TOC save area offset.
5280     unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
5281     SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset, dl);
5282     SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
5283     Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr,
5284                          MachinePointerInfo::getStack(TOCSaveOffset),
5285                          false, false, 0);
5286     // In the ELFv2 ABI, R12 must contain the address of an indirect callee.
5287     // This does not mean the MTCTR instruction must use R12; it's easier
5288     // to model this as an extra parameter, so do that.
5289     if (isELFv2ABI && !IsPatchPoint)
5290       RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
5291   }
5292
5293   // Build a sequence of copy-to-reg nodes chained together with token chain
5294   // and flag operands which copy the outgoing args into the appropriate regs.
5295   SDValue InFlag;
5296   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
5297     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
5298                              RegsToPass[i].second, InFlag);
5299     InFlag = Chain.getValue(1);
5300   }
5301
5302   if (isTailCall)
5303     PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
5304                     FPOp, true, TailCallArguments);
5305
5306   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
5307                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
5308                     NumBytes, Ins, InVals, CS);
5309 }
5310
5311 SDValue
5312 PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
5313                                     CallingConv::ID CallConv, bool isVarArg,
5314                                     bool isTailCall, bool IsPatchPoint,
5315                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
5316                                     const SmallVectorImpl<SDValue> &OutVals,
5317                                     const SmallVectorImpl<ISD::InputArg> &Ins,
5318                                     SDLoc dl, SelectionDAG &DAG,
5319                                     SmallVectorImpl<SDValue> &InVals,
5320                                     ImmutableCallSite *CS) const {
5321
5322   unsigned NumOps = Outs.size();
5323
5324   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
5325   bool isPPC64 = PtrVT == MVT::i64;
5326   unsigned PtrByteSize = isPPC64 ? 8 : 4;
5327
5328   MachineFunction &MF = DAG.getMachineFunction();
5329
5330   // Mark this function as potentially containing a function that contains a
5331   // tail call. As a consequence the frame pointer will be used for dynamicalloc
5332   // and restoring the callers stack pointer in this functions epilog. This is
5333   // done because by tail calling the called function might overwrite the value
5334   // in this function's (MF) stack pointer stack slot 0(SP).
5335   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
5336       CallConv == CallingConv::Fast)
5337     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
5338
5339   // Count how many bytes are to be pushed on the stack, including the linkage
5340   // area, and parameter passing area.  We start with 24/48 bytes, which is
5341   // prereserved space for [SP][CR][LR][3 x unused].
5342   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
5343   unsigned NumBytes = LinkageSize;
5344
5345   // Add up all the space actually used.
5346   // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
5347   // they all go in registers, but we must reserve stack space for them for
5348   // possible use by the caller.  In varargs or 64-bit calls, parameters are
5349   // assigned stack space in order, with padding so Altivec parameters are
5350   // 16-byte aligned.
5351   unsigned nAltivecParamsAtEnd = 0;
5352   for (unsigned i = 0; i != NumOps; ++i) {
5353     ISD::ArgFlagsTy Flags = Outs[i].Flags;
5354     EVT ArgVT = Outs[i].VT;
5355     // Varargs Altivec parameters are padded to a 16 byte boundary.
5356     if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
5357         ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
5358         ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) {
5359       if (!isVarArg && !isPPC64) {
5360         // Non-varargs Altivec parameters go after all the non-Altivec
5361         // parameters; handle those later so we know how much padding we need.
5362         nAltivecParamsAtEnd++;
5363         continue;
5364       }
5365       // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
5366       NumBytes = ((NumBytes+15)/16)*16;
5367     }
5368     NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
5369   }
5370
5371   // Allow for Altivec parameters at the end, if needed.
5372   if (nAltivecParamsAtEnd) {
5373     NumBytes = ((NumBytes+15)/16)*16;
5374     NumBytes += 16*nAltivecParamsAtEnd;
5375   }
5376
5377   // The prolog code of the callee may store up to 8 GPR argument registers to
5378   // the stack, allowing va_start to index over them in memory if its varargs.
5379   // Because we cannot tell if this is needed on the caller side, we have to
5380   // conservatively assume that it is needed.  As such, make sure we have at
5381   // least enough stack space for the caller to store the 8 GPRs.
5382   NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
5383
5384   // Tail call needs the stack to be aligned.
5385   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
5386       CallConv == CallingConv::Fast)
5387     NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
5388
5389   // Calculate by how many bytes the stack has to be adjusted in case of tail
5390   // call optimization.
5391   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
5392
5393   // To protect arguments on the stack from being clobbered in a tail call,
5394   // force all the loads to happen before doing any other lowering.
5395   if (isTailCall)
5396     Chain = DAG.getStackArgumentTokenFactor(Chain);
5397
5398   // Adjust the stack pointer for the new arguments...
5399   // These operations are automatically eliminated by the prolog/epilog pass
5400   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
5401                                dl);
5402   SDValue CallSeqStart = Chain;
5403
5404   // Load the return address and frame pointer so it can be move somewhere else
5405   // later.
5406   SDValue LROp, FPOp;
5407   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
5408                                        dl);
5409
5410   // Set up a copy of the stack pointer for use loading and storing any
5411   // arguments that may not fit in the registers available for argument
5412   // passing.
5413   SDValue StackPtr;
5414   if (isPPC64)
5415     StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
5416   else
5417     StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
5418
5419   // Figure out which arguments are going to go in registers, and which in
5420   // memory.  Also, if this is a vararg function, floating point operations
5421   // must be stored to our stack, and loaded into integer regs as well, if
5422   // any integer regs are available for argument passing.
5423   unsigned ArgOffset = LinkageSize;
5424   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
5425
5426   static const MCPhysReg GPR_32[] = {           // 32-bit registers.
5427     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
5428     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
5429   };
5430   static const MCPhysReg GPR_64[] = {           // 64-bit registers.
5431     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
5432     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
5433   };
5434   static const MCPhysReg VR[] = {
5435     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
5436     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
5437   };
5438   const unsigned NumGPRs = array_lengthof(GPR_32);
5439   const unsigned NumFPRs = 13;
5440   const unsigned NumVRs  = array_lengthof(VR);
5441
5442   const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
5443
5444   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
5445   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
5446
5447   SmallVector<SDValue, 8> MemOpChains;
5448   for (unsigned i = 0; i != NumOps; ++i) {
5449     SDValue Arg = OutVals[i];
5450     ISD::ArgFlagsTy Flags = Outs[i].Flags;
5451
5452     // PtrOff will be used to store the current argument to the stack if a
5453     // register cannot be found for it.
5454     SDValue PtrOff;
5455
5456     PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType());
5457
5458     PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
5459
5460     // On PPC64, promote integers to 64-bit values.
5461     if (isPPC64 && Arg.getValueType() == MVT::i32) {
5462       // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
5463       unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
5464       Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
5465     }
5466
5467     // FIXME memcpy is used way more than necessary.  Correctness first.
5468     // Note: "by value" is code for passing a structure by value, not
5469     // basic types.
5470     if (Flags.isByVal()) {
5471       unsigned Size = Flags.getByValSize();
5472       // Very small objects are passed right-justified.  Everything else is
5473       // passed left-justified.
5474       if (Size==1 || Size==2) {
5475         EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
5476         if (GPR_idx != NumGPRs) {
5477           SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
5478                                         MachinePointerInfo(), VT,
5479                                         false, false, false, 0);
5480           MemOpChains.push_back(Load.getValue(1));
5481           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5482
5483           ArgOffset += PtrByteSize;
5484         } else {
5485           SDValue Const = DAG.getConstant(PtrByteSize - Size, dl,
5486                                           PtrOff.getValueType());
5487           SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
5488           Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5489                                                             CallSeqStart,
5490                                                             Flags, DAG, dl);
5491           ArgOffset += PtrByteSize;
5492         }
5493         continue;
5494       }
5495       // Copy entire object into memory.  There are cases where gcc-generated
5496       // code assumes it is there, even if it could be put entirely into
5497       // registers.  (This is not what the doc says.)
5498       Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
5499                                                         CallSeqStart,
5500                                                         Flags, DAG, dl);
5501
5502       // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
5503       // copy the pieces of the object that fit into registers from the
5504       // parameter save area.
5505       for (unsigned j=0; j<Size; j+=PtrByteSize) {
5506         SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType());
5507         SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
5508         if (GPR_idx != NumGPRs) {
5509           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5510                                      MachinePointerInfo(),
5511                                      false, false, false, 0);
5512           MemOpChains.push_back(Load.getValue(1));
5513           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5514           ArgOffset += PtrByteSize;
5515         } else {
5516           ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
5517           break;
5518         }
5519       }
5520       continue;
5521     }
5522
5523     switch (Arg.getSimpleValueType().SimpleTy) {
5524     default: llvm_unreachable("Unexpected ValueType for argument!");
5525     case MVT::i1:
5526     case MVT::i32:
5527     case MVT::i64:
5528       if (GPR_idx != NumGPRs) {
5529         if (Arg.getValueType() == MVT::i1)
5530           Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg);
5531
5532         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
5533       } else {
5534         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5535                          isPPC64, isTailCall, false, MemOpChains,
5536                          TailCallArguments, dl);
5537       }
5538       ArgOffset += PtrByteSize;
5539       break;
5540     case MVT::f32:
5541     case MVT::f64:
5542       if (FPR_idx != NumFPRs) {
5543         RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5544
5545         if (isVarArg) {
5546           SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5547                                        MachinePointerInfo(), false, false, 0);
5548           MemOpChains.push_back(Store);
5549
5550           // Float varargs are always shadowed in available integer registers
5551           if (GPR_idx != NumGPRs) {
5552             SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5553                                        MachinePointerInfo(), false, false,
5554                                        false, 0);
5555             MemOpChains.push_back(Load.getValue(1));
5556             RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5557           }
5558           if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
5559             SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType());
5560             PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
5561             SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5562                                        MachinePointerInfo(),
5563                                        false, false, false, 0);
5564             MemOpChains.push_back(Load.getValue(1));
5565             RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5566           }
5567         } else {
5568           // If we have any FPRs remaining, we may also have GPRs remaining.
5569           // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
5570           // GPRs.
5571           if (GPR_idx != NumGPRs)
5572             ++GPR_idx;
5573           if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
5574               !isPPC64)  // PPC64 has 64-bit GPR's obviously :)
5575             ++GPR_idx;
5576         }
5577       } else
5578         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5579                          isPPC64, isTailCall, false, MemOpChains,
5580                          TailCallArguments, dl);
5581       if (isPPC64)
5582         ArgOffset += 8;
5583       else
5584         ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
5585       break;
5586     case MVT::v4f32:
5587     case MVT::v4i32:
5588     case MVT::v8i16:
5589     case MVT::v16i8:
5590       if (isVarArg) {
5591         // These go aligned on the stack, or in the corresponding R registers
5592         // when within range.  The Darwin PPC ABI doc claims they also go in
5593         // V registers; in fact gcc does this only for arguments that are
5594         // prototyped, not for those that match the ...  We do it for all
5595         // arguments, seems to work.
5596         while (ArgOffset % 16 !=0) {
5597           ArgOffset += PtrByteSize;
5598           if (GPR_idx != NumGPRs)
5599             GPR_idx++;
5600         }
5601         // We could elide this store in the case where the object fits
5602         // entirely in R registers.  Maybe later.
5603         PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
5604                              DAG.getConstant(ArgOffset, dl, PtrVT));
5605         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5606                                      MachinePointerInfo(), false, false, 0);
5607         MemOpChains.push_back(Store);
5608         if (VR_idx != NumVRs) {
5609           SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
5610                                      MachinePointerInfo(),
5611                                      false, false, false, 0);
5612           MemOpChains.push_back(Load.getValue(1));
5613           RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
5614         }
5615         ArgOffset += 16;
5616         for (unsigned i=0; i<16; i+=PtrByteSize) {
5617           if (GPR_idx == NumGPRs)
5618             break;
5619           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
5620                                    DAG.getConstant(i, dl, PtrVT));
5621           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5622                                      false, false, false, 0);
5623           MemOpChains.push_back(Load.getValue(1));
5624           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5625         }
5626         break;
5627       }
5628
5629       // Non-varargs Altivec params generally go in registers, but have
5630       // stack space allocated at the end.
5631       if (VR_idx != NumVRs) {
5632         // Doesn't have GPR space allocated.
5633         RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
5634       } else if (nAltivecParamsAtEnd==0) {
5635         // We are emitting Altivec params in order.
5636         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5637                          isPPC64, isTailCall, true, MemOpChains,
5638                          TailCallArguments, dl);
5639         ArgOffset += 16;
5640       }
5641       break;
5642     }
5643   }
5644   // If all Altivec parameters fit in registers, as they usually do,
5645   // they get stack space following the non-Altivec parameters.  We
5646   // don't track this here because nobody below needs it.
5647   // If there are more Altivec parameters than fit in registers emit
5648   // the stores here.
5649   if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
5650     unsigned j = 0;
5651     // Offset is aligned; skip 1st 12 params which go in V registers.
5652     ArgOffset = ((ArgOffset+15)/16)*16;
5653     ArgOffset += 12*16;
5654     for (unsigned i = 0; i != NumOps; ++i) {
5655       SDValue Arg = OutVals[i];
5656       EVT ArgType = Outs[i].VT;
5657       if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
5658           ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
5659         if (++j > NumVRs) {
5660           SDValue PtrOff;
5661           // We are emitting Altivec params in order.
5662           LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5663                            isPPC64, isTailCall, true, MemOpChains,
5664                            TailCallArguments, dl);
5665           ArgOffset += 16;
5666         }
5667       }
5668     }
5669   }
5670
5671   if (!MemOpChains.empty())
5672     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
5673
5674   // On Darwin, R12 must contain the address of an indirect callee.  This does
5675   // not mean the MTCTR instruction must use R12; it's easier to model this as
5676   // an extra parameter, so do that.
5677   if (!isTailCall &&
5678       !isFunctionGlobalAddress(Callee) &&
5679       !isa<ExternalSymbolSDNode>(Callee) &&
5680       !isBLACompatibleAddress(Callee, DAG))
5681     RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
5682                                                    PPC::R12), Callee));
5683
5684   // Build a sequence of copy-to-reg nodes chained together with token chain
5685   // and flag operands which copy the outgoing args into the appropriate regs.
5686   SDValue InFlag;
5687   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
5688     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
5689                              RegsToPass[i].second, InFlag);
5690     InFlag = Chain.getValue(1);
5691   }
5692
5693   if (isTailCall)
5694     PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
5695                     FPOp, true, TailCallArguments);
5696
5697   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
5698                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
5699                     NumBytes, Ins, InVals, CS);
5700 }
5701
5702 bool
5703 PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
5704                                   MachineFunction &MF, bool isVarArg,
5705                                   const SmallVectorImpl<ISD::OutputArg> &Outs,
5706                                   LLVMContext &Context) const {
5707   SmallVector<CCValAssign, 16> RVLocs;
5708   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
5709   return CCInfo.CheckReturn(Outs, RetCC_PPC);
5710 }
5711
5712 SDValue
5713 PPCTargetLowering::LowerReturn(SDValue Chain,
5714                                CallingConv::ID CallConv, bool isVarArg,
5715                                const SmallVectorImpl<ISD::OutputArg> &Outs,
5716                                const SmallVectorImpl<SDValue> &OutVals,
5717                                SDLoc dl, SelectionDAG &DAG) const {
5718
5719   SmallVector<CCValAssign, 16> RVLocs;
5720   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
5721                  *DAG.getContext());
5722   CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
5723
5724   SDValue Flag;
5725   SmallVector<SDValue, 4> RetOps(1, Chain);
5726
5727   // Copy the result values into the output registers.
5728   for (unsigned i = 0; i != RVLocs.size(); ++i) {
5729     CCValAssign &VA = RVLocs[i];
5730     assert(VA.isRegLoc() && "Can only return in registers!");
5731
5732     SDValue Arg = OutVals[i];
5733
5734     switch (VA.getLocInfo()) {
5735     default: llvm_unreachable("Unknown loc info!");
5736     case CCValAssign::Full: break;
5737     case CCValAssign::AExt:
5738       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
5739       break;
5740     case CCValAssign::ZExt:
5741       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
5742       break;
5743     case CCValAssign::SExt:
5744       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
5745       break;
5746     }
5747
5748     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
5749     Flag = Chain.getValue(1);
5750     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
5751   }
5752
5753   RetOps[0] = Chain;  // Update chain.
5754
5755   // Add the flag if we have it.
5756   if (Flag.getNode())
5757     RetOps.push_back(Flag);
5758
5759   return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps);
5760 }
5761
5762 SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
5763                                    const PPCSubtarget &Subtarget) const {
5764   // When we pop the dynamic allocation we need to restore the SP link.
5765   SDLoc dl(Op);
5766
5767   // Get the corect type for pointers.
5768   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
5769
5770   // Construct the stack pointer operand.
5771   bool isPPC64 = Subtarget.isPPC64();
5772   unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
5773   SDValue StackPtr = DAG.getRegister(SP, PtrVT);
5774
5775   // Get the operands for the STACKRESTORE.
5776   SDValue Chain = Op.getOperand(0);
5777   SDValue SaveSP = Op.getOperand(1);
5778
5779   // Load the old link SP.
5780   SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
5781                                    MachinePointerInfo(),
5782                                    false, false, false, 0);
5783
5784   // Restore the stack pointer.
5785   Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
5786
5787   // Store the old link SP.
5788   return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
5789                       false, false, 0);
5790 }
5791
5792
5793
5794 SDValue
5795 PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
5796   MachineFunction &MF = DAG.getMachineFunction();
5797   bool isPPC64 = Subtarget.isPPC64();
5798   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
5799
5800   // Get current frame pointer save index.  The users of this index will be
5801   // primarily DYNALLOC instructions.
5802   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5803   int RASI = FI->getReturnAddrSaveIndex();
5804
5805   // If the frame pointer save index hasn't been defined yet.
5806   if (!RASI) {
5807     // Find out what the fix offset of the frame pointer save area.
5808     int LROffset = Subtarget.getFrameLowering()->getReturnSaveOffset();
5809     // Allocate the frame index for frame pointer save area.
5810     RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, false);
5811     // Save the result.
5812     FI->setReturnAddrSaveIndex(RASI);
5813   }
5814   return DAG.getFrameIndex(RASI, PtrVT);
5815 }
5816
5817 SDValue
5818 PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
5819   MachineFunction &MF = DAG.getMachineFunction();
5820   bool isPPC64 = Subtarget.isPPC64();
5821   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
5822
5823   // Get current frame pointer save index.  The users of this index will be
5824   // primarily DYNALLOC instructions.
5825   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5826   int FPSI = FI->getFramePointerSaveIndex();
5827
5828   // If the frame pointer save index hasn't been defined yet.
5829   if (!FPSI) {
5830     // Find out what the fix offset of the frame pointer save area.
5831     int FPOffset = Subtarget.getFrameLowering()->getFramePointerSaveOffset();
5832     // Allocate the frame index for frame pointer save area.
5833     FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
5834     // Save the result.
5835     FI->setFramePointerSaveIndex(FPSI);
5836   }
5837   return DAG.getFrameIndex(FPSI, PtrVT);
5838 }
5839
5840 SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
5841                                          SelectionDAG &DAG,
5842                                          const PPCSubtarget &Subtarget) const {
5843   // Get the inputs.
5844   SDValue Chain = Op.getOperand(0);
5845   SDValue Size  = Op.getOperand(1);
5846   SDLoc dl(Op);
5847
5848   // Get the corect type for pointers.
5849   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
5850   // Negate the size.
5851   SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
5852                                 DAG.getConstant(0, dl, PtrVT), Size);
5853   // Construct a node for the frame pointer save index.
5854   SDValue FPSIdx = getFramePointerFrameIndex(DAG);
5855   // Build a DYNALLOC node.
5856   SDValue Ops[3] = { Chain, NegSize, FPSIdx };
5857   SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
5858   return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops);
5859 }
5860
5861 SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
5862                                                SelectionDAG &DAG) const {
5863   SDLoc DL(Op);
5864   return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
5865                      DAG.getVTList(MVT::i32, MVT::Other),
5866                      Op.getOperand(0), Op.getOperand(1));
5867 }
5868
5869 SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
5870                                                 SelectionDAG &DAG) const {
5871   SDLoc DL(Op);
5872   return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
5873                      Op.getOperand(0), Op.getOperand(1));
5874 }
5875
5876 SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
5877   if (Op.getValueType().isVector())
5878     return LowerVectorLoad(Op, DAG);
5879
5880   assert(Op.getValueType() == MVT::i1 &&
5881          "Custom lowering only for i1 loads");
5882
5883   // First, load 8 bits into 32 bits, then truncate to 1 bit.
5884
5885   SDLoc dl(Op);
5886   LoadSDNode *LD = cast<LoadSDNode>(Op);
5887
5888   SDValue Chain = LD->getChain();
5889   SDValue BasePtr = LD->getBasePtr();
5890   MachineMemOperand *MMO = LD->getMemOperand();
5891
5892   SDValue NewLD =
5893       DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(DAG.getDataLayout()), Chain,
5894                      BasePtr, MVT::i8, MMO);
5895   SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD);
5896
5897   SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) };
5898   return DAG.getMergeValues(Ops, dl);
5899 }
5900
5901 SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
5902   if (Op.getOperand(1).getValueType().isVector())
5903     return LowerVectorStore(Op, DAG);
5904
5905   assert(Op.getOperand(1).getValueType() == MVT::i1 &&
5906          "Custom lowering only for i1 stores");
5907
5908   // First, zero extend to 32 bits, then use a truncating store to 8 bits.
5909
5910   SDLoc dl(Op);
5911   StoreSDNode *ST = cast<StoreSDNode>(Op);
5912
5913   SDValue Chain = ST->getChain();
5914   SDValue BasePtr = ST->getBasePtr();
5915   SDValue Value = ST->getValue();
5916   MachineMemOperand *MMO = ST->getMemOperand();
5917
5918   Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(DAG.getDataLayout()),
5919                       Value);
5920   return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO);
5921 }
5922
5923 // FIXME: Remove this once the ANDI glue bug is fixed:
5924 SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
5925   assert(Op.getValueType() == MVT::i1 &&
5926          "Custom lowering only for i1 results");
5927
5928   SDLoc DL(Op);
5929   return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1,
5930                      Op.getOperand(0));
5931 }
5932
5933 /// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
5934 /// possible.
5935 SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
5936   // Not FP? Not a fsel.
5937   if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
5938       !Op.getOperand(2).getValueType().isFloatingPoint())
5939     return Op;
5940
5941   // We might be able to do better than this under some circumstances, but in
5942   // general, fsel-based lowering of select is a finite-math-only optimization.
5943   // For more information, see section F.3 of the 2.06 ISA specification.
5944   if (!DAG.getTarget().Options.NoInfsFPMath ||
5945       !DAG.getTarget().Options.NoNaNsFPMath)
5946     return Op;
5947
5948   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
5949
5950   EVT ResVT = Op.getValueType();
5951   EVT CmpVT = Op.getOperand(0).getValueType();
5952   SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
5953   SDValue TV  = Op.getOperand(2), FV  = Op.getOperand(3);
5954   SDLoc dl(Op);
5955
5956   // If the RHS of the comparison is a 0.0, we don't need to do the
5957   // subtraction at all.
5958   SDValue Sel1;
5959   if (isFloatingPointZero(RHS))
5960     switch (CC) {
5961     default: break;       // SETUO etc aren't handled by fsel.
5962     case ISD::SETNE:
5963       std::swap(TV, FV);
5964     case ISD::SETEQ:
5965       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
5966         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5967       Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
5968       if (Sel1.getValueType() == MVT::f32)   // Comparison is always 64-bits
5969         Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5970       return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5971                          DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
5972     case ISD::SETULT:
5973     case ISD::SETLT:
5974       std::swap(TV, FV);  // fsel is natively setge, swap operands for setlt
5975     case ISD::SETOGE:
5976     case ISD::SETGE:
5977       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
5978         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5979       return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
5980     case ISD::SETUGT:
5981     case ISD::SETGT:
5982       std::swap(TV, FV);  // fsel is natively setge, swap operands for setlt
5983     case ISD::SETOLE:
5984     case ISD::SETLE:
5985       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
5986         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5987       return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5988                          DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
5989     }
5990
5991   SDValue Cmp;
5992   switch (CC) {
5993   default: break;       // SETUO etc aren't handled by fsel.
5994   case ISD::SETNE:
5995     std::swap(TV, FV);
5996   case ISD::SETEQ:
5997     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
5998     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
5999       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6000     Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
6001     if (Sel1.getValueType() == MVT::f32)   // Comparison is always 64-bits
6002       Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
6003     return DAG.getNode(PPCISD::FSEL, dl, ResVT,
6004                        DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
6005   case ISD::SETULT:
6006   case ISD::SETLT:
6007     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
6008     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6009       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6010     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
6011   case ISD::SETOGE:
6012   case ISD::SETGE:
6013     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
6014     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6015       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6016     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
6017   case ISD::SETUGT:
6018   case ISD::SETGT:
6019     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
6020     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6021       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6022     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
6023   case ISD::SETOLE:
6024   case ISD::SETLE:
6025     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
6026     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6027       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6028     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
6029   }
6030   return Op;
6031 }
6032
6033 void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI,
6034                                                SelectionDAG &DAG,
6035                                                SDLoc dl) const {
6036   assert(Op.getOperand(0).getValueType().isFloatingPoint());
6037   SDValue Src = Op.getOperand(0);
6038   if (Src.getValueType() == MVT::f32)
6039     Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
6040
6041   SDValue Tmp;
6042   switch (Op.getSimpleValueType().SimpleTy) {
6043   default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
6044   case MVT::i32:
6045     Tmp = DAG.getNode(
6046         Op.getOpcode() == ISD::FP_TO_SINT
6047             ? PPCISD::FCTIWZ
6048             : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
6049         dl, MVT::f64, Src);
6050     break;
6051   case MVT::i64:
6052     assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
6053            "i64 FP_TO_UINT is supported only with FPCVT");
6054     Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
6055                                                         PPCISD::FCTIDUZ,
6056                       dl, MVT::f64, Src);
6057     break;
6058   }
6059
6060   // Convert the FP value to an int value through memory.
6061   bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() &&
6062     (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT());
6063   SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
6064   int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
6065   MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
6066
6067   // Emit a store to the stack slot.
6068   SDValue Chain;
6069   if (i32Stack) {
6070     MachineFunction &MF = DAG.getMachineFunction();
6071     MachineMemOperand *MMO =
6072       MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
6073     SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
6074     Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
6075               DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO);
6076   } else
6077     Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
6078                          MPI, false, false, 0);
6079
6080   // Result is a load from the stack slot.  If loading 4 bytes, make sure to
6081   // add in a bias.
6082   if (Op.getValueType() == MVT::i32 && !i32Stack) {
6083     FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
6084                         DAG.getConstant(4, dl, FIPtr.getValueType()));
6085     MPI = MPI.getWithOffset(4);
6086   }
6087
6088   RLI.Chain = Chain;
6089   RLI.Ptr = FIPtr;
6090   RLI.MPI = MPI;
6091 }
6092
6093 /// \brief Custom lowers floating point to integer conversions to use
6094 /// the direct move instructions available in ISA 2.07 to avoid the
6095 /// need for load/store combinations.
6096 SDValue PPCTargetLowering::LowerFP_TO_INTDirectMove(SDValue Op,
6097                                                     SelectionDAG &DAG,
6098                                                     SDLoc dl) const {
6099   assert(Op.getOperand(0).getValueType().isFloatingPoint());
6100   SDValue Src = Op.getOperand(0);
6101
6102   if (Src.getValueType() == MVT::f32)
6103     Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
6104
6105   SDValue Tmp;
6106   switch (Op.getSimpleValueType().SimpleTy) {
6107   default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
6108   case MVT::i32:
6109     Tmp = DAG.getNode(
6110         Op.getOpcode() == ISD::FP_TO_SINT
6111             ? PPCISD::FCTIWZ
6112             : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
6113         dl, MVT::f64, Src);
6114     Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i32, Tmp);
6115     break;
6116   case MVT::i64:
6117     assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
6118            "i64 FP_TO_UINT is supported only with FPCVT");
6119     Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
6120                                                         PPCISD::FCTIDUZ,
6121                       dl, MVT::f64, Src);
6122     Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i64, Tmp);
6123     break;
6124   }
6125   return Tmp;
6126 }
6127
6128 SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
6129                                           SDLoc dl) const {
6130   if (Subtarget.hasDirectMove() && Subtarget.isPPC64())
6131     return LowerFP_TO_INTDirectMove(Op, DAG, dl);
6132
6133   ReuseLoadInfo RLI;
6134   LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
6135
6136   return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
6137                      false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
6138                      RLI.Ranges);
6139 }
6140
6141 // We're trying to insert a regular store, S, and then a load, L. If the
6142 // incoming value, O, is a load, we might just be able to have our load use the
6143 // address used by O. However, we don't know if anything else will store to
6144 // that address before we can load from it. To prevent this situation, we need
6145 // to insert our load, L, into the chain as a peer of O. To do this, we give L
6146 // the same chain operand as O, we create a token factor from the chain results
6147 // of O and L, and we replace all uses of O's chain result with that token
6148 // factor (see spliceIntoChain below for this last part).
6149 bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT,
6150                                             ReuseLoadInfo &RLI,
6151                                             SelectionDAG &DAG,
6152                                             ISD::LoadExtType ET) const {
6153   SDLoc dl(Op);
6154   if (ET == ISD::NON_EXTLOAD &&
6155       (Op.getOpcode() == ISD::FP_TO_UINT ||
6156        Op.getOpcode() == ISD::FP_TO_SINT) &&
6157       isOperationLegalOrCustom(Op.getOpcode(),
6158                                Op.getOperand(0).getValueType())) {
6159
6160     LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
6161     return true;
6162   }
6163
6164   LoadSDNode *LD = dyn_cast<LoadSDNode>(Op);
6165   if (!LD || LD->getExtensionType() != ET || LD->isVolatile() ||
6166       LD->isNonTemporal())
6167     return false;
6168   if (LD->getMemoryVT() != MemVT)
6169     return false;
6170
6171   RLI.Ptr = LD->getBasePtr();
6172   if (LD->isIndexed() && LD->getOffset().getOpcode() != ISD::UNDEF) {
6173     assert(LD->getAddressingMode() == ISD::PRE_INC &&
6174            "Non-pre-inc AM on PPC?");
6175     RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr,
6176                           LD->getOffset());
6177   }
6178
6179   RLI.Chain = LD->getChain();
6180   RLI.MPI = LD->getPointerInfo();
6181   RLI.IsInvariant = LD->isInvariant();
6182   RLI.Alignment = LD->getAlignment();
6183   RLI.AAInfo = LD->getAAInfo();
6184   RLI.Ranges = LD->getRanges();
6185
6186   RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1);
6187   return true;
6188 }
6189
6190 // Given the head of the old chain, ResChain, insert a token factor containing
6191 // it and NewResChain, and make users of ResChain now be users of that token
6192 // factor.
6193 void PPCTargetLowering::spliceIntoChain(SDValue ResChain,
6194                                         SDValue NewResChain,
6195                                         SelectionDAG &DAG) const {
6196   if (!ResChain)
6197     return;
6198
6199   SDLoc dl(NewResChain);
6200
6201   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
6202                            NewResChain, DAG.getUNDEF(MVT::Other));
6203   assert(TF.getNode() != NewResChain.getNode() &&
6204          "A new TF really is required here");
6205
6206   DAG.ReplaceAllUsesOfValueWith(ResChain, TF);
6207   DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain);
6208 }
6209
6210 /// \brief Custom lowers integer to floating point conversions to use
6211 /// the direct move instructions available in ISA 2.07 to avoid the
6212 /// need for load/store combinations.
6213 SDValue PPCTargetLowering::LowerINT_TO_FPDirectMove(SDValue Op,
6214                                                     SelectionDAG &DAG,
6215                                                     SDLoc dl) const {
6216   assert((Op.getValueType() == MVT::f32 ||
6217           Op.getValueType() == MVT::f64) &&
6218          "Invalid floating point type as target of conversion");
6219   assert(Subtarget.hasFPCVT() &&
6220          "Int to FP conversions with direct moves require FPCVT");
6221   SDValue FP;
6222   SDValue Src = Op.getOperand(0);
6223   bool SinglePrec = Op.getValueType() == MVT::f32;
6224   bool WordInt = Src.getSimpleValueType().SimpleTy == MVT::i32;
6225   bool Signed = Op.getOpcode() == ISD::SINT_TO_FP;
6226   unsigned ConvOp = Signed ? (SinglePrec ? PPCISD::FCFIDS : PPCISD::FCFID) :
6227                              (SinglePrec ? PPCISD::FCFIDUS : PPCISD::FCFIDU);
6228
6229   if (WordInt) {
6230     FP = DAG.getNode(Signed ? PPCISD::MTVSRA : PPCISD::MTVSRZ,
6231                      dl, MVT::f64, Src);
6232     FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP);
6233   }
6234   else {
6235     FP = DAG.getNode(PPCISD::MTVSRA, dl, MVT::f64, Src);
6236     FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP);
6237   }
6238
6239   return FP;
6240 }
6241
6242 SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
6243                                           SelectionDAG &DAG) const {
6244   SDLoc dl(Op);
6245
6246   if (Subtarget.hasQPX() && Op.getOperand(0).getValueType() == MVT::v4i1) {
6247     if (Op.getValueType() != MVT::v4f32 && Op.getValueType() != MVT::v4f64)
6248       return SDValue();
6249
6250     SDValue Value = Op.getOperand(0);
6251     // The values are now known to be -1 (false) or 1 (true). To convert this
6252     // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
6253     // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
6254     Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
6255   
6256     SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::f64);
6257     FPHalfs = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f64,
6258                           FPHalfs, FPHalfs, FPHalfs, FPHalfs);
6259   
6260     Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs);
6261
6262     if (Op.getValueType() != MVT::v4f64)
6263       Value = DAG.getNode(ISD::FP_ROUND, dl,
6264                           Op.getValueType(), Value,
6265                           DAG.getIntPtrConstant(1, dl));
6266     return Value;
6267   }
6268
6269   // Don't handle ppc_fp128 here; let it be lowered to a libcall.
6270   if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
6271     return SDValue();
6272
6273   if (Op.getOperand(0).getValueType() == MVT::i1)
6274     return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0),
6275                        DAG.getConstantFP(1.0, dl, Op.getValueType()),
6276                        DAG.getConstantFP(0.0, dl, Op.getValueType()));
6277
6278   // If we have direct moves, we can do all the conversion, skip the store/load
6279   // however, without FPCVT we can't do most conversions.
6280   if (Subtarget.hasDirectMove() && Subtarget.isPPC64() && Subtarget.hasFPCVT())
6281     return LowerINT_TO_FPDirectMove(Op, DAG, dl);
6282
6283   assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
6284          "UINT_TO_FP is supported only with FPCVT");
6285
6286   // If we have FCFIDS, then use it when converting to single-precision.
6287   // Otherwise, convert to double-precision and then round.
6288   unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
6289                        ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
6290                                                             : PPCISD::FCFIDS)
6291                        : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
6292                                                             : PPCISD::FCFID);
6293   MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
6294                   ? MVT::f32
6295                   : MVT::f64;
6296
6297   if (Op.getOperand(0).getValueType() == MVT::i64) {
6298     SDValue SINT = Op.getOperand(0);
6299     // When converting to single-precision, we actually need to convert
6300     // to double-precision first and then round to single-precision.
6301     // To avoid double-rounding effects during that operation, we have
6302     // to prepare the input operand.  Bits that might be truncated when
6303     // converting to double-precision are replaced by a bit that won't
6304     // be lost at this stage, but is below the single-precision rounding
6305     // position.
6306     //
6307     // However, if -enable-unsafe-fp-math is in effect, accept double
6308     // rounding to avoid the extra overhead.
6309     if (Op.getValueType() == MVT::f32 &&
6310         !Subtarget.hasFPCVT() &&
6311         !DAG.getTarget().Options.UnsafeFPMath) {
6312
6313       // Twiddle input to make sure the low 11 bits are zero.  (If this
6314       // is the case, we are guaranteed the value will fit into the 53 bit
6315       // mantissa of an IEEE double-precision value without rounding.)
6316       // If any of those low 11 bits were not zero originally, make sure
6317       // bit 12 (value 2048) is set instead, so that the final rounding
6318       // to single-precision gets the correct result.
6319       SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
6320                                   SINT, DAG.getConstant(2047, dl, MVT::i64));
6321       Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
6322                           Round, DAG.getConstant(2047, dl, MVT::i64));
6323       Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
6324       Round = DAG.getNode(ISD::AND, dl, MVT::i64,
6325                           Round, DAG.getConstant(-2048, dl, MVT::i64));
6326
6327       // However, we cannot use that value unconditionally: if the magnitude
6328       // of the input value is small, the bit-twiddling we did above might
6329       // end up visibly changing the output.  Fortunately, in that case, we
6330       // don't need to twiddle bits since the original input will convert
6331       // exactly to double-precision floating-point already.  Therefore,
6332       // construct a conditional to use the original value if the top 11
6333       // bits are all sign-bit copies, and use the rounded value computed
6334       // above otherwise.
6335       SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
6336                                  SINT, DAG.getConstant(53, dl, MVT::i32));
6337       Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
6338                          Cond, DAG.getConstant(1, dl, MVT::i64));
6339       Cond = DAG.getSetCC(dl, MVT::i32,
6340                           Cond, DAG.getConstant(1, dl, MVT::i64), ISD::SETUGT);
6341
6342       SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
6343     }
6344
6345     ReuseLoadInfo RLI;
6346     SDValue Bits;
6347
6348     MachineFunction &MF = DAG.getMachineFunction();
6349     if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) {
6350       Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
6351                          false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
6352                          RLI.Ranges);
6353       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6354     } else if (Subtarget.hasLFIWAX() &&
6355                canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) {
6356       MachineMemOperand *MMO =
6357         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6358                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6359       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6360       Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl,
6361                                      DAG.getVTList(MVT::f64, MVT::Other),
6362                                      Ops, MVT::i32, MMO);
6363       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6364     } else if (Subtarget.hasFPCVT() &&
6365                canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) {
6366       MachineMemOperand *MMO =
6367         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6368                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6369       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6370       Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl,
6371                                      DAG.getVTList(MVT::f64, MVT::Other),
6372                                      Ops, MVT::i32, MMO);
6373       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6374     } else if (((Subtarget.hasLFIWAX() &&
6375                  SINT.getOpcode() == ISD::SIGN_EXTEND) ||
6376                 (Subtarget.hasFPCVT() &&
6377                  SINT.getOpcode() == ISD::ZERO_EXTEND)) &&
6378                SINT.getOperand(0).getValueType() == MVT::i32) {
6379       MachineFrameInfo *FrameInfo = MF.getFrameInfo();
6380       EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
6381
6382       int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
6383       SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6384
6385       SDValue Store =
6386         DAG.getStore(DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx,
6387                      MachinePointerInfo::getFixedStack(FrameIdx),
6388                      false, false, 0);
6389
6390       assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
6391              "Expected an i32 store");
6392
6393       RLI.Ptr = FIdx;
6394       RLI.Chain = Store;
6395       RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
6396       RLI.Alignment = 4;
6397
6398       MachineMemOperand *MMO =
6399         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6400                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6401       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6402       Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ?
6403                                      PPCISD::LFIWZX : PPCISD::LFIWAX,
6404                                      dl, DAG.getVTList(MVT::f64, MVT::Other),
6405                                      Ops, MVT::i32, MMO);
6406     } else
6407       Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
6408
6409     SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
6410
6411     if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
6412       FP = DAG.getNode(ISD::FP_ROUND, dl,
6413                        MVT::f32, FP, DAG.getIntPtrConstant(0, dl));
6414     return FP;
6415   }
6416
6417   assert(Op.getOperand(0).getValueType() == MVT::i32 &&
6418          "Unhandled INT_TO_FP type in custom expander!");
6419   // Since we only generate this in 64-bit mode, we can take advantage of
6420   // 64-bit registers.  In particular, sign extend the input value into the
6421   // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
6422   // then lfd it and fcfid it.
6423   MachineFunction &MF = DAG.getMachineFunction();
6424   MachineFrameInfo *FrameInfo = MF.getFrameInfo();
6425   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
6426
6427   SDValue Ld;
6428   if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) {
6429     ReuseLoadInfo RLI;
6430     bool ReusingLoad;
6431     if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI,
6432                                             DAG))) {
6433       int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
6434       SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6435
6436       SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
6437                                    MachinePointerInfo::getFixedStack(FrameIdx),
6438                                    false, false, 0);
6439
6440       assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
6441              "Expected an i32 store");
6442
6443       RLI.Ptr = FIdx;
6444       RLI.Chain = Store;
6445       RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
6446       RLI.Alignment = 4;
6447     }
6448
6449     MachineMemOperand *MMO =
6450       MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6451                               RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6452     SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6453     Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
6454                                    PPCISD::LFIWZX : PPCISD::LFIWAX,
6455                                  dl, DAG.getVTList(MVT::f64, MVT::Other),
6456                                  Ops, MVT::i32, MMO);
6457     if (ReusingLoad)
6458       spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG);
6459   } else {
6460     assert(Subtarget.isPPC64() &&
6461            "i32->FP without LFIWAX supported only on PPC64");
6462
6463     int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
6464     SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6465
6466     SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
6467                                 Op.getOperand(0));
6468
6469     // STD the extended value into the stack slot.
6470     SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
6471                                  MachinePointerInfo::getFixedStack(FrameIdx),
6472                                  false, false, 0);
6473
6474     // Load the value as a double.
6475     Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
6476                      MachinePointerInfo::getFixedStack(FrameIdx),
6477                      false, false, false, 0);
6478   }
6479
6480   // FCFID it and return it.
6481   SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
6482   if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
6483     FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP,
6484                      DAG.getIntPtrConstant(0, dl));
6485   return FP;
6486 }
6487
6488 SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
6489                                             SelectionDAG &DAG) const {
6490   SDLoc dl(Op);
6491   /*
6492    The rounding mode is in bits 30:31 of FPSR, and has the following
6493    settings:
6494      00 Round to nearest
6495      01 Round to 0
6496      10 Round to +inf
6497      11 Round to -inf
6498
6499   FLT_ROUNDS, on the other hand, expects the following:
6500     -1 Undefined
6501      0 Round to 0
6502      1 Round to nearest
6503      2 Round to +inf
6504      3 Round to -inf
6505
6506   To perform the conversion, we do:
6507     ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
6508   */
6509
6510   MachineFunction &MF = DAG.getMachineFunction();
6511   EVT VT = Op.getValueType();
6512   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
6513
6514   // Save FP Control Word to register
6515   EVT NodeTys[] = {
6516     MVT::f64,    // return register
6517     MVT::Glue    // unused in this context
6518   };
6519   SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None);
6520
6521   // Save FP register to stack slot
6522   int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
6523   SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
6524   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
6525                                StackSlot, MachinePointerInfo(), false, false,0);
6526
6527   // Load FP Control Word from low 32 bits of stack slot.
6528   SDValue Four = DAG.getConstant(4, dl, PtrVT);
6529   SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
6530   SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
6531                             false, false, false, 0);
6532
6533   // Transform as necessary
6534   SDValue CWD1 =
6535     DAG.getNode(ISD::AND, dl, MVT::i32,
6536                 CWD, DAG.getConstant(3, dl, MVT::i32));
6537   SDValue CWD2 =
6538     DAG.getNode(ISD::SRL, dl, MVT::i32,
6539                 DAG.getNode(ISD::AND, dl, MVT::i32,
6540                             DAG.getNode(ISD::XOR, dl, MVT::i32,
6541                                         CWD, DAG.getConstant(3, dl, MVT::i32)),
6542                             DAG.getConstant(3, dl, MVT::i32)),
6543                 DAG.getConstant(1, dl, MVT::i32));
6544
6545   SDValue RetVal =
6546     DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
6547
6548   return DAG.getNode((VT.getSizeInBits() < 16 ?
6549                       ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
6550 }
6551
6552 SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
6553   EVT VT = Op.getValueType();
6554   unsigned BitWidth = VT.getSizeInBits();
6555   SDLoc dl(Op);
6556   assert(Op.getNumOperands() == 3 &&
6557          VT == Op.getOperand(1).getValueType() &&
6558          "Unexpected SHL!");
6559
6560   // Expand into a bunch of logical ops.  Note that these ops
6561   // depend on the PPC behavior for oversized shift amounts.
6562   SDValue Lo = Op.getOperand(0);
6563   SDValue Hi = Op.getOperand(1);
6564   SDValue Amt = Op.getOperand(2);
6565   EVT AmtVT = Amt.getValueType();
6566
6567   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
6568                              DAG.getConstant(BitWidth, dl, AmtVT), Amt);
6569   SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
6570   SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
6571   SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
6572   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6573                              DAG.getConstant(-BitWidth, dl, AmtVT));
6574   SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
6575   SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6576   SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
6577   SDValue OutOps[] = { OutLo, OutHi };
6578   return DAG.getMergeValues(OutOps, dl);
6579 }
6580
6581 SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
6582   EVT VT = Op.getValueType();
6583   SDLoc dl(Op);
6584   unsigned BitWidth = VT.getSizeInBits();
6585   assert(Op.getNumOperands() == 3 &&
6586          VT == Op.getOperand(1).getValueType() &&
6587          "Unexpected SRL!");
6588
6589   // Expand into a bunch of logical ops.  Note that these ops
6590   // depend on the PPC behavior for oversized shift amounts.
6591   SDValue Lo = Op.getOperand(0);
6592   SDValue Hi = Op.getOperand(1);
6593   SDValue Amt = Op.getOperand(2);
6594   EVT AmtVT = Amt.getValueType();
6595
6596   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
6597                              DAG.getConstant(BitWidth, dl, AmtVT), Amt);
6598   SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6599   SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6600   SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6601   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6602                              DAG.getConstant(-BitWidth, dl, AmtVT));
6603   SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
6604   SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6605   SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
6606   SDValue OutOps[] = { OutLo, OutHi };
6607   return DAG.getMergeValues(OutOps, dl);
6608 }
6609
6610 SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
6611   SDLoc dl(Op);
6612   EVT VT = Op.getValueType();
6613   unsigned BitWidth = VT.getSizeInBits();
6614   assert(Op.getNumOperands() == 3 &&
6615          VT == Op.getOperand(1).getValueType() &&
6616          "Unexpected SRA!");
6617
6618   // Expand into a bunch of logical ops, followed by a select_cc.
6619   SDValue Lo = Op.getOperand(0);
6620   SDValue Hi = Op.getOperand(1);
6621   SDValue Amt = Op.getOperand(2);
6622   EVT AmtVT = Amt.getValueType();
6623
6624   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
6625                              DAG.getConstant(BitWidth, dl, AmtVT), Amt);
6626   SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6627   SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6628   SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6629   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6630                              DAG.getConstant(-BitWidth, dl, AmtVT));
6631   SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
6632   SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
6633   SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, dl, AmtVT),
6634                                   Tmp4, Tmp6, ISD::SETLE);
6635   SDValue OutOps[] = { OutLo, OutHi };
6636   return DAG.getMergeValues(OutOps, dl);
6637 }
6638
6639 //===----------------------------------------------------------------------===//
6640 // Vector related lowering.
6641 //
6642
6643 /// BuildSplatI - Build a canonical splati of Val with an element size of
6644 /// SplatSize.  Cast the result to VT.
6645 static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
6646                              SelectionDAG &DAG, SDLoc dl) {
6647   assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
6648
6649   static const MVT VTys[] = { // canonical VT to use for each size.
6650     MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
6651   };
6652
6653   EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
6654
6655   // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
6656   if (Val == -1)
6657     SplatSize = 1;
6658
6659   EVT CanonicalVT = VTys[SplatSize-1];
6660
6661   // Build a canonical splat for this value.
6662   SDValue Elt = DAG.getConstant(Val, dl, MVT::i32);
6663   SmallVector<SDValue, 8> Ops;
6664   Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
6665   SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT, Ops);
6666   return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
6667 }
6668
6669 /// BuildIntrinsicOp - Return a unary operator intrinsic node with the
6670 /// specified intrinsic ID.
6671 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
6672                                 SelectionDAG &DAG, SDLoc dl,
6673                                 EVT DestVT = MVT::Other) {
6674   if (DestVT == MVT::Other) DestVT = Op.getValueType();
6675   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6676                      DAG.getConstant(IID, dl, MVT::i32), Op);
6677 }
6678
6679 /// BuildIntrinsicOp - Return a binary operator intrinsic node with the
6680 /// specified intrinsic ID.
6681 static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
6682                                 SelectionDAG &DAG, SDLoc dl,
6683                                 EVT DestVT = MVT::Other) {
6684   if (DestVT == MVT::Other) DestVT = LHS.getValueType();
6685   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6686                      DAG.getConstant(IID, dl, MVT::i32), LHS, RHS);
6687 }
6688
6689 /// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
6690 /// specified intrinsic ID.
6691 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
6692                                 SDValue Op2, SelectionDAG &DAG,
6693                                 SDLoc dl, EVT DestVT = MVT::Other) {
6694   if (DestVT == MVT::Other) DestVT = Op0.getValueType();
6695   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6696                      DAG.getConstant(IID, dl, MVT::i32), Op0, Op1, Op2);
6697 }
6698
6699
6700 /// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
6701 /// amount.  The result has the specified value type.
6702 static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
6703                              EVT VT, SelectionDAG &DAG, SDLoc dl) {
6704   // Force LHS/RHS to be the right type.
6705   LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
6706   RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
6707
6708   int Ops[16];
6709   for (unsigned i = 0; i != 16; ++i)
6710     Ops[i] = i + Amt;
6711   SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
6712   return DAG.getNode(ISD::BITCAST, dl, VT, T);
6713 }
6714
6715 // If this is a case we can't handle, return null and let the default
6716 // expansion code take care of it.  If we CAN select this case, and if it
6717 // selects to a single instruction, return Op.  Otherwise, if we can codegen
6718 // this case more efficiently than a constant pool load, lower it to the
6719 // sequence of ops that should be used.
6720 SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
6721                                              SelectionDAG &DAG) const {
6722   SDLoc dl(Op);
6723   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
6724   assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
6725
6726   if (Subtarget.hasQPX() && Op.getValueType() == MVT::v4i1) {
6727     // We first build an i32 vector, load it into a QPX register,
6728     // then convert it to a floating-point vector and compare it
6729     // to a zero vector to get the boolean result.
6730     MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
6731     int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
6732     MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FrameIdx);
6733     EVT PtrVT = getPointerTy(DAG.getDataLayout());
6734     SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6735
6736     assert(BVN->getNumOperands() == 4 &&
6737       "BUILD_VECTOR for v4i1 does not have 4 operands");
6738
6739     bool IsConst = true;
6740     for (unsigned i = 0; i < 4; ++i) {
6741       if (BVN->getOperand(i).getOpcode() == ISD::UNDEF) continue;
6742       if (!isa<ConstantSDNode>(BVN->getOperand(i))) {
6743         IsConst = false;
6744         break;
6745       }
6746     }
6747
6748     if (IsConst) {
6749       Constant *One =
6750         ConstantFP::get(Type::getFloatTy(*DAG.getContext()), 1.0);
6751       Constant *NegOne =
6752         ConstantFP::get(Type::getFloatTy(*DAG.getContext()), -1.0);
6753
6754       SmallVector<Constant*, 4> CV(4, NegOne);
6755       for (unsigned i = 0; i < 4; ++i) {
6756         if (BVN->getOperand(i).getOpcode() == ISD::UNDEF)
6757           CV[i] = UndefValue::get(Type::getFloatTy(*DAG.getContext()));
6758         else if (cast<ConstantSDNode>(BVN->getOperand(i))->
6759                    getConstantIntValue()->isZero())
6760           continue;
6761         else
6762           CV[i] = One;
6763       }
6764
6765       Constant *CP = ConstantVector::get(CV);
6766       SDValue CPIdx = DAG.getConstantPool(CP, getPointerTy(DAG.getDataLayout()),
6767                                           16 /* alignment */);
6768
6769       SmallVector<SDValue, 2> Ops;
6770       Ops.push_back(DAG.getEntryNode());
6771       Ops.push_back(CPIdx);
6772
6773       SmallVector<EVT, 2> ValueVTs;
6774       ValueVTs.push_back(MVT::v4i1);
6775       ValueVTs.push_back(MVT::Other); // chain
6776       SDVTList VTs = DAG.getVTList(ValueVTs);
6777
6778       return DAG.getMemIntrinsicNode(PPCISD::QVLFSb,
6779         dl, VTs, Ops, MVT::v4f32,
6780         MachinePointerInfo::getConstantPool());
6781     }
6782
6783     SmallVector<SDValue, 4> Stores;
6784     for (unsigned i = 0; i < 4; ++i) {
6785       if (BVN->getOperand(i).getOpcode() == ISD::UNDEF) continue;
6786
6787       unsigned Offset = 4*i;
6788       SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
6789       Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
6790
6791       unsigned StoreSize = BVN->getOperand(i).getValueType().getStoreSize();
6792       if (StoreSize > 4) {
6793         Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
6794                                            BVN->getOperand(i), Idx,
6795                                            PtrInfo.getWithOffset(Offset),
6796                                            MVT::i32, false, false, 0));
6797       } else {
6798         SDValue StoreValue = BVN->getOperand(i);
6799         if (StoreSize < 4)
6800           StoreValue = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, StoreValue);
6801
6802         Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
6803                                       StoreValue, Idx,
6804                                       PtrInfo.getWithOffset(Offset),
6805                                       false, false, 0));
6806       }
6807     }
6808
6809     SDValue StoreChain;
6810     if (!Stores.empty())
6811       StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
6812     else
6813       StoreChain = DAG.getEntryNode();
6814
6815     // Now load from v4i32 into the QPX register; this will extend it to
6816     // v4i64 but not yet convert it to a floating point. Nevertheless, this
6817     // is typed as v4f64 because the QPX register integer states are not
6818     // explicitly represented.
6819
6820     SmallVector<SDValue, 2> Ops;
6821     Ops.push_back(StoreChain);
6822     Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvlfiwz, dl, MVT::i32));
6823     Ops.push_back(FIdx);
6824
6825     SmallVector<EVT, 2> ValueVTs;
6826     ValueVTs.push_back(MVT::v4f64);
6827     ValueVTs.push_back(MVT::Other); // chain
6828     SDVTList VTs = DAG.getVTList(ValueVTs);
6829
6830     SDValue LoadedVect = DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN,
6831       dl, VTs, Ops, MVT::v4i32, PtrInfo);
6832     LoadedVect = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
6833       DAG.getConstant(Intrinsic::ppc_qpx_qvfcfidu, dl, MVT::i32),
6834       LoadedVect);
6835
6836     SDValue FPZeros = DAG.getConstantFP(0.0, dl, MVT::f64);
6837     FPZeros = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f64,
6838                           FPZeros, FPZeros, FPZeros, FPZeros);
6839
6840     return DAG.getSetCC(dl, MVT::v4i1, LoadedVect, FPZeros, ISD::SETEQ);
6841   }
6842
6843   // All other QPX vectors are handled by generic code.
6844   if (Subtarget.hasQPX())
6845     return SDValue();
6846
6847   // Check if this is a splat of a constant value.
6848   APInt APSplatBits, APSplatUndef;
6849   unsigned SplatBitSize;
6850   bool HasAnyUndefs;
6851   if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
6852                              HasAnyUndefs, 0, !Subtarget.isLittleEndian()) ||
6853       SplatBitSize > 32)
6854     return SDValue();
6855
6856   unsigned SplatBits = APSplatBits.getZExtValue();
6857   unsigned SplatUndef = APSplatUndef.getZExtValue();
6858   unsigned SplatSize = SplatBitSize / 8;
6859
6860   // First, handle single instruction cases.
6861
6862   // All zeros?
6863   if (SplatBits == 0) {
6864     // Canonicalize all zero vectors to be v4i32.
6865     if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
6866       SDValue Z = DAG.getConstant(0, dl, MVT::i32);
6867       Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
6868       Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
6869     }
6870     return Op;
6871   }
6872
6873   // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
6874   int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
6875                     (32-SplatBitSize));
6876   if (SextVal >= -16 && SextVal <= 15)
6877     return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
6878
6879
6880   // Two instruction sequences.
6881
6882   // If this value is in the range [-32,30] and is even, use:
6883   //     VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
6884   // If this value is in the range [17,31] and is odd, use:
6885   //     VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
6886   // If this value is in the range [-31,-17] and is odd, use:
6887   //     VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
6888   // Note the last two are three-instruction sequences.
6889   if (SextVal >= -32 && SextVal <= 31) {
6890     // To avoid having these optimizations undone by constant folding,
6891     // we convert to a pseudo that will be expanded later into one of
6892     // the above forms.
6893     SDValue Elt = DAG.getConstant(SextVal, dl, MVT::i32);
6894     EVT VT = (SplatSize == 1 ? MVT::v16i8 :
6895               (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32));
6896     SDValue EltSize = DAG.getConstant(SplatSize, dl, MVT::i32);
6897     SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
6898     if (VT == Op.getValueType())
6899       return RetVal;
6900     else
6901       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal);
6902   }
6903
6904   // If this is 0x8000_0000 x 4, turn into vspltisw + vslw.  If it is
6905   // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000).  This is important
6906   // for fneg/fabs.
6907   if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
6908     // Make -1 and vspltisw -1:
6909     SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
6910
6911     // Make the VSLW intrinsic, computing 0x8000_0000.
6912     SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
6913                                    OnesV, DAG, dl);
6914
6915     // xor by OnesV to invert it.
6916     Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
6917     return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6918   }
6919
6920   // Check to see if this is a wide variety of vsplti*, binop self cases.
6921   static const signed char SplatCsts[] = {
6922     -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
6923     -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
6924   };
6925
6926   for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
6927     // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
6928     // cases which are ambiguous (e.g. formation of 0x8000_0000).  'vsplti -1'
6929     int i = SplatCsts[idx];
6930
6931     // Figure out what shift amount will be used by altivec if shifted by i in
6932     // this splat size.
6933     unsigned TypeShiftAmt = i & (SplatBitSize-1);
6934
6935     // vsplti + shl self.
6936     if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
6937       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6938       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6939         Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
6940         Intrinsic::ppc_altivec_vslw
6941       };
6942       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6943       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6944     }
6945
6946     // vsplti + srl self.
6947     if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
6948       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6949       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6950         Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
6951         Intrinsic::ppc_altivec_vsrw
6952       };
6953       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6954       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6955     }
6956
6957     // vsplti + sra self.
6958     if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
6959       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6960       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6961         Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
6962         Intrinsic::ppc_altivec_vsraw
6963       };
6964       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6965       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6966     }
6967
6968     // vsplti + rol self.
6969     if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
6970                          ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
6971       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6972       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6973         Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
6974         Intrinsic::ppc_altivec_vrlw
6975       };
6976       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6977       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6978     }
6979
6980     // t = vsplti c, result = vsldoi t, t, 1
6981     if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
6982       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
6983       return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
6984     }
6985     // t = vsplti c, result = vsldoi t, t, 2
6986     if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
6987       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
6988       return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
6989     }
6990     // t = vsplti c, result = vsldoi t, t, 3
6991     if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
6992       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
6993       return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
6994     }
6995   }
6996
6997   return SDValue();
6998 }
6999
7000 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
7001 /// the specified operations to build the shuffle.
7002 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
7003                                       SDValue RHS, SelectionDAG &DAG,
7004                                       SDLoc dl) {
7005   unsigned OpNum = (PFEntry >> 26) & 0x0F;
7006   unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
7007   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
7008
7009   enum {
7010     OP_COPY = 0,  // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
7011     OP_VMRGHW,
7012     OP_VMRGLW,
7013     OP_VSPLTISW0,
7014     OP_VSPLTISW1,
7015     OP_VSPLTISW2,
7016     OP_VSPLTISW3,
7017     OP_VSLDOI4,
7018     OP_VSLDOI8,
7019     OP_VSLDOI12
7020   };
7021
7022   if (OpNum == OP_COPY) {
7023     if (LHSID == (1*9+2)*9+3) return LHS;
7024     assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
7025     return RHS;
7026   }
7027
7028   SDValue OpLHS, OpRHS;
7029   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
7030   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
7031
7032   int ShufIdxs[16];
7033   switch (OpNum) {
7034   default: llvm_unreachable("Unknown i32 permute!");
7035   case OP_VMRGHW:
7036     ShufIdxs[ 0] =  0; ShufIdxs[ 1] =  1; ShufIdxs[ 2] =  2; ShufIdxs[ 3] =  3;
7037     ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
7038     ShufIdxs[ 8] =  4; ShufIdxs[ 9] =  5; ShufIdxs[10] =  6; ShufIdxs[11] =  7;
7039     ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
7040     break;
7041   case OP_VMRGLW:
7042     ShufIdxs[ 0] =  8; ShufIdxs[ 1] =  9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
7043     ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
7044     ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
7045     ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
7046     break;
7047   case OP_VSPLTISW0:
7048     for (unsigned i = 0; i != 16; ++i)
7049       ShufIdxs[i] = (i&3)+0;
7050     break;
7051   case OP_VSPLTISW1:
7052     for (unsigned i = 0; i != 16; ++i)
7053       ShufIdxs[i] = (i&3)+4;
7054     break;
7055   case OP_VSPLTISW2:
7056     for (unsigned i = 0; i != 16; ++i)
7057       ShufIdxs[i] = (i&3)+8;
7058     break;
7059   case OP_VSPLTISW3:
7060     for (unsigned i = 0; i != 16; ++i)
7061       ShufIdxs[i] = (i&3)+12;
7062     break;
7063   case OP_VSLDOI4:
7064     return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
7065   case OP_VSLDOI8:
7066     return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
7067   case OP_VSLDOI12:
7068     return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
7069   }
7070   EVT VT = OpLHS.getValueType();
7071   OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
7072   OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
7073   SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
7074   return DAG.getNode(ISD::BITCAST, dl, VT, T);
7075 }
7076
7077 /// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE.  If this
7078 /// is a shuffle we can handle in a single instruction, return it.  Otherwise,
7079 /// return the code it can be lowered into.  Worst case, it can always be
7080 /// lowered into a vperm.
7081 SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
7082                                                SelectionDAG &DAG) const {
7083   SDLoc dl(Op);
7084   SDValue V1 = Op.getOperand(0);
7085   SDValue V2 = Op.getOperand(1);
7086   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7087   EVT VT = Op.getValueType();
7088   bool isLittleEndian = Subtarget.isLittleEndian();
7089
7090   if (Subtarget.hasQPX()) {
7091     if (VT.getVectorNumElements() != 4)
7092       return SDValue();
7093
7094     if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
7095
7096     int AlignIdx = PPC::isQVALIGNIShuffleMask(SVOp);
7097     if (AlignIdx != -1) {
7098       return DAG.getNode(PPCISD::QVALIGNI, dl, VT, V1, V2,
7099                          DAG.getConstant(AlignIdx, dl, MVT::i32));
7100     } else if (SVOp->isSplat()) {
7101       int SplatIdx = SVOp->getSplatIndex();
7102       if (SplatIdx >= 4) {
7103         std::swap(V1, V2);
7104         SplatIdx -= 4;
7105       }
7106
7107       // FIXME: If SplatIdx == 0 and the input came from a load, then there is
7108       // nothing to do.
7109
7110       return DAG.getNode(PPCISD::QVESPLATI, dl, VT, V1,
7111                          DAG.getConstant(SplatIdx, dl, MVT::i32));
7112     }
7113
7114     // Lower this into a qvgpci/qvfperm pair.
7115
7116     // Compute the qvgpci literal
7117     unsigned idx = 0;
7118     for (unsigned i = 0; i < 4; ++i) {
7119       int m = SVOp->getMaskElt(i);
7120       unsigned mm = m >= 0 ? (unsigned) m : i;
7121       idx |= mm << (3-i)*3;
7122     }
7123
7124     SDValue V3 = DAG.getNode(PPCISD::QVGPCI, dl, MVT::v4f64,
7125                              DAG.getConstant(idx, dl, MVT::i32));
7126     return DAG.getNode(PPCISD::QVFPERM, dl, VT, V1, V2, V3);
7127   }
7128
7129   // Cases that are handled by instructions that take permute immediates
7130   // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
7131   // selected by the instruction selector.
7132   if (V2.getOpcode() == ISD::UNDEF) {
7133     if (PPC::isSplatShuffleMask(SVOp, 1) ||
7134         PPC::isSplatShuffleMask(SVOp, 2) ||
7135         PPC::isSplatShuffleMask(SVOp, 4) ||
7136         PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) ||
7137         PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) ||
7138         PPC::isVPKUDUMShuffleMask(SVOp, 1, DAG) ||
7139         PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 ||
7140         PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) ||
7141         PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) ||
7142         PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) ||
7143         PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) ||
7144         PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) ||
7145         PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG) ||
7146         PPC::isVMRGEOShuffleMask(SVOp, true, 1, DAG)   ||
7147         PPC::isVMRGEOShuffleMask(SVOp, false, 1, DAG)) {
7148       return Op;
7149     }
7150   }
7151
7152   // Altivec has a variety of "shuffle immediates" that take two vector inputs
7153   // and produce a fixed permutation.  If any of these match, do not lower to
7154   // VPERM.
7155   unsigned int ShuffleKind = isLittleEndian ? 2 : 0;
7156   if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7157       PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7158       PPC::isVPKUDUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7159       PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 ||
7160       PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
7161       PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
7162       PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
7163       PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
7164       PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
7165       PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
7166       PPC::isVMRGEOShuffleMask(SVOp, true, ShuffleKind, DAG)             ||
7167       PPC::isVMRGEOShuffleMask(SVOp, false, ShuffleKind, DAG))
7168     return Op;
7169
7170   // Check to see if this is a shuffle of 4-byte values.  If so, we can use our
7171   // perfect shuffle table to emit an optimal matching sequence.
7172   ArrayRef<int> PermMask = SVOp->getMask();
7173
7174   unsigned PFIndexes[4];
7175   bool isFourElementShuffle = true;
7176   for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
7177     unsigned EltNo = 8;   // Start out undef.
7178     for (unsigned j = 0; j != 4; ++j) {  // Intra-element byte.
7179       if (PermMask[i*4+j] < 0)
7180         continue;   // Undef, ignore it.
7181
7182       unsigned ByteSource = PermMask[i*4+j];
7183       if ((ByteSource & 3) != j) {
7184         isFourElementShuffle = false;
7185         break;
7186       }
7187
7188       if (EltNo == 8) {
7189         EltNo = ByteSource/4;
7190       } else if (EltNo != ByteSource/4) {
7191         isFourElementShuffle = false;
7192         break;
7193       }
7194     }
7195     PFIndexes[i] = EltNo;
7196   }
7197
7198   // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
7199   // perfect shuffle vector to determine if it is cost effective to do this as
7200   // discrete instructions, or whether we should use a vperm.
7201   // For now, we skip this for little endian until such time as we have a
7202   // little-endian perfect shuffle table.
7203   if (isFourElementShuffle && !isLittleEndian) {
7204     // Compute the index in the perfect shuffle table.
7205     unsigned PFTableIndex =
7206       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
7207
7208     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
7209     unsigned Cost  = (PFEntry >> 30);
7210
7211     // Determining when to avoid vperm is tricky.  Many things affect the cost
7212     // of vperm, particularly how many times the perm mask needs to be computed.
7213     // For example, if the perm mask can be hoisted out of a loop or is already
7214     // used (perhaps because there are multiple permutes with the same shuffle
7215     // mask?) the vperm has a cost of 1.  OTOH, hoisting the permute mask out of
7216     // the loop requires an extra register.
7217     //
7218     // As a compromise, we only emit discrete instructions if the shuffle can be
7219     // generated in 3 or fewer operations.  When we have loop information
7220     // available, if this block is within a loop, we should avoid using vperm
7221     // for 3-operation perms and use a constant pool load instead.
7222     if (Cost < 3)
7223       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
7224   }
7225
7226   // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
7227   // vector that will get spilled to the constant pool.
7228   if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
7229
7230   // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
7231   // that it is in input element units, not in bytes.  Convert now.
7232
7233   // For little endian, the order of the input vectors is reversed, and
7234   // the permutation mask is complemented with respect to 31.  This is
7235   // necessary to produce proper semantics with the big-endian-biased vperm
7236   // instruction.
7237   EVT EltVT = V1.getValueType().getVectorElementType();
7238   unsigned BytesPerElement = EltVT.getSizeInBits()/8;
7239
7240   SmallVector<SDValue, 16> ResultMask;
7241   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
7242     unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
7243
7244     for (unsigned j = 0; j != BytesPerElement; ++j)
7245       if (isLittleEndian)
7246         ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement + j),
7247                                              dl, MVT::i32));
7248       else
7249         ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement + j, dl,
7250                                              MVT::i32));
7251   }
7252
7253   SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
7254                                   ResultMask);
7255   if (isLittleEndian)
7256     return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
7257                        V2, V1, VPermMask);
7258   else
7259     return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
7260                        V1, V2, VPermMask);
7261 }
7262
7263 /// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
7264 /// altivec comparison.  If it is, return true and fill in Opc/isDot with
7265 /// information about the intrinsic.
7266 static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
7267                                   bool &isDot, const PPCSubtarget &Subtarget) {
7268   unsigned IntrinsicID =
7269     cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
7270   CompareOpc = -1;
7271   isDot = false;
7272   switch (IntrinsicID) {
7273   default: return false;
7274     // Comparison predicates.
7275   case Intrinsic::ppc_altivec_vcmpbfp_p:  CompareOpc = 966; isDot = 1; break;
7276   case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
7277   case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc =   6; isDot = 1; break;
7278   case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc =  70; isDot = 1; break;
7279   case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
7280   case Intrinsic::ppc_altivec_vcmpequd_p: 
7281     if (Subtarget.hasP8Altivec()) {
7282       CompareOpc = 199; 
7283       isDot = 1; 
7284     }
7285     else 
7286       return false;
7287
7288     break;
7289   case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
7290   case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
7291   case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
7292   case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
7293   case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
7294   case Intrinsic::ppc_altivec_vcmpgtsd_p: 
7295     if (Subtarget.hasP8Altivec()) {
7296       CompareOpc = 967; 
7297       isDot = 1; 
7298     }
7299     else 
7300       return false;
7301
7302     break;
7303   case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
7304   case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
7305   case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
7306   case Intrinsic::ppc_altivec_vcmpgtud_p: 
7307     if (Subtarget.hasP8Altivec()) {
7308       CompareOpc = 711; 
7309       isDot = 1; 
7310     }
7311     else 
7312       return false;
7313
7314     break;
7315       
7316     // Normal Comparisons.
7317   case Intrinsic::ppc_altivec_vcmpbfp:    CompareOpc = 966; isDot = 0; break;
7318   case Intrinsic::ppc_altivec_vcmpeqfp:   CompareOpc = 198; isDot = 0; break;
7319   case Intrinsic::ppc_altivec_vcmpequb:   CompareOpc =   6; isDot = 0; break;
7320   case Intrinsic::ppc_altivec_vcmpequh:   CompareOpc =  70; isDot = 0; break;
7321   case Intrinsic::ppc_altivec_vcmpequw:   CompareOpc = 134; isDot = 0; break;
7322   case Intrinsic::ppc_altivec_vcmpequd:
7323     if (Subtarget.hasP8Altivec()) {
7324       CompareOpc = 199; 
7325       isDot = 0; 
7326     }
7327     else
7328       return false;
7329
7330     break;
7331   case Intrinsic::ppc_altivec_vcmpgefp:   CompareOpc = 454; isDot = 0; break;
7332   case Intrinsic::ppc_altivec_vcmpgtfp:   CompareOpc = 710; isDot = 0; break;
7333   case Intrinsic::ppc_altivec_vcmpgtsb:   CompareOpc = 774; isDot = 0; break;
7334   case Intrinsic::ppc_altivec_vcmpgtsh:   CompareOpc = 838; isDot = 0; break;
7335   case Intrinsic::ppc_altivec_vcmpgtsw:   CompareOpc = 902; isDot = 0; break;
7336   case Intrinsic::ppc_altivec_vcmpgtsd:   
7337     if (Subtarget.hasP8Altivec()) {
7338       CompareOpc = 967; 
7339       isDot = 0; 
7340     }
7341     else
7342       return false;
7343
7344     break;
7345   case Intrinsic::ppc_altivec_vcmpgtub:   CompareOpc = 518; isDot = 0; break;
7346   case Intrinsic::ppc_altivec_vcmpgtuh:   CompareOpc = 582; isDot = 0; break;
7347   case Intrinsic::ppc_altivec_vcmpgtuw:   CompareOpc = 646; isDot = 0; break;
7348   case Intrinsic::ppc_altivec_vcmpgtud:   
7349     if (Subtarget.hasP8Altivec()) {
7350       CompareOpc = 711; 
7351       isDot = 0; 
7352     }
7353     else
7354       return false;
7355
7356     break;
7357   }
7358   return true;
7359 }
7360
7361 /// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
7362 /// lower, do it, otherwise return null.
7363 SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
7364                                                    SelectionDAG &DAG) const {
7365   // If this is a lowered altivec predicate compare, CompareOpc is set to the
7366   // opcode number of the comparison.
7367   SDLoc dl(Op);
7368   int CompareOpc;
7369   bool isDot;
7370   if (!getAltivecCompareInfo(Op, CompareOpc, isDot, Subtarget))
7371     return SDValue();    // Don't custom lower most intrinsics.
7372
7373   // If this is a non-dot comparison, make the VCMP node and we are done.
7374   if (!isDot) {
7375     SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
7376                               Op.getOperand(1), Op.getOperand(2),
7377                               DAG.getConstant(CompareOpc, dl, MVT::i32));
7378     return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
7379   }
7380
7381   // Create the PPCISD altivec 'dot' comparison node.
7382   SDValue Ops[] = {
7383     Op.getOperand(2),  // LHS
7384     Op.getOperand(3),  // RHS
7385     DAG.getConstant(CompareOpc, dl, MVT::i32)
7386   };
7387   EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
7388   SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
7389
7390   // Now that we have the comparison, emit a copy from the CR to a GPR.
7391   // This is flagged to the above dot comparison.
7392   SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
7393                                 DAG.getRegister(PPC::CR6, MVT::i32),
7394                                 CompNode.getValue(1));
7395
7396   // Unpack the result based on how the target uses it.
7397   unsigned BitNo;   // Bit # of CR6.
7398   bool InvertBit;   // Invert result?
7399   switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
7400   default:  // Can't happen, don't crash on invalid number though.
7401   case 0:   // Return the value of the EQ bit of CR6.
7402     BitNo = 0; InvertBit = false;
7403     break;
7404   case 1:   // Return the inverted value of the EQ bit of CR6.
7405     BitNo = 0; InvertBit = true;
7406     break;
7407   case 2:   // Return the value of the LT bit of CR6.
7408     BitNo = 2; InvertBit = false;
7409     break;
7410   case 3:   // Return the inverted value of the LT bit of CR6.
7411     BitNo = 2; InvertBit = true;
7412     break;
7413   }
7414
7415   // Shift the bit into the low position.
7416   Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
7417                       DAG.getConstant(8 - (3 - BitNo), dl, MVT::i32));
7418   // Isolate the bit.
7419   Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
7420                       DAG.getConstant(1, dl, MVT::i32));
7421
7422   // If we are supposed to, toggle the bit.
7423   if (InvertBit)
7424     Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
7425                         DAG.getConstant(1, dl, MVT::i32));
7426   return Flags;
7427 }
7428
7429 SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
7430                                                   SelectionDAG &DAG) const {
7431   SDLoc dl(Op);
7432   // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int
7433   // instructions), but for smaller types, we need to first extend up to v2i32
7434   // before doing going farther.
7435   if (Op.getValueType() == MVT::v2i64) {
7436     EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
7437     if (ExtVT != MVT::v2i32) {
7438       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0));
7439       Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op,
7440                        DAG.getValueType(EVT::getVectorVT(*DAG.getContext(),
7441                                         ExtVT.getVectorElementType(), 4)));
7442       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op);
7443       Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op,
7444                        DAG.getValueType(MVT::v2i32));
7445     }
7446
7447     return Op;
7448   }
7449
7450   return SDValue();
7451 }
7452
7453 SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
7454                                                    SelectionDAG &DAG) const {
7455   SDLoc dl(Op);
7456   // Create a stack slot that is 16-byte aligned.
7457   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7458   int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
7459   EVT PtrVT = getPointerTy(DAG.getDataLayout());
7460   SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7461
7462   // Store the input value into Value#0 of the stack slot.
7463   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
7464                                Op.getOperand(0), FIdx, MachinePointerInfo(),
7465                                false, false, 0);
7466   // Load it out.
7467   return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
7468                      false, false, false, 0);
7469 }
7470
7471 SDValue PPCTargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7472                                                    SelectionDAG &DAG) const {
7473   SDLoc dl(Op);
7474   SDNode *N = Op.getNode();
7475
7476   assert(N->getOperand(0).getValueType() == MVT::v4i1 &&
7477          "Unknown extract_vector_elt type");
7478
7479   SDValue Value = N->getOperand(0);
7480
7481   // The first part of this is like the store lowering except that we don't
7482   // need to track the chain.
7483
7484   // The values are now known to be -1 (false) or 1 (true). To convert this
7485   // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
7486   // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
7487   Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
7488
7489   // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to
7490   // understand how to form the extending load.
7491   SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::f64);
7492   FPHalfs = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f64,
7493                         FPHalfs, FPHalfs, FPHalfs, FPHalfs);
7494
7495   Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs); 
7496
7497   // Now convert to an integer and store.
7498   Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
7499     DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32),
7500     Value);
7501
7502   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7503   int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
7504   MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FrameIdx);
7505   EVT PtrVT = getPointerTy(DAG.getDataLayout());
7506   SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7507
7508   SDValue StoreChain = DAG.getEntryNode();
7509   SmallVector<SDValue, 2> Ops;
7510   Ops.push_back(StoreChain);
7511   Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32));
7512   Ops.push_back(Value);
7513   Ops.push_back(FIdx);
7514
7515   SmallVector<EVT, 2> ValueVTs;
7516   ValueVTs.push_back(MVT::Other); // chain
7517   SDVTList VTs = DAG.getVTList(ValueVTs);
7518
7519   StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID,
7520     dl, VTs, Ops, MVT::v4i32, PtrInfo);
7521
7522   // Extract the value requested.
7523   unsigned Offset = 4*cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
7524   SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
7525   Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
7526
7527   SDValue IntVal = DAG.getLoad(MVT::i32, dl, StoreChain, Idx,
7528                                PtrInfo.getWithOffset(Offset),
7529                                false, false, false, 0);
7530
7531   if (!Subtarget.useCRBits())
7532     return IntVal;
7533
7534   return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, IntVal);
7535 }
7536
7537 /// Lowering for QPX v4i1 loads
7538 SDValue PPCTargetLowering::LowerVectorLoad(SDValue Op,
7539                                            SelectionDAG &DAG) const {
7540   SDLoc dl(Op);
7541   LoadSDNode *LN = cast<LoadSDNode>(Op.getNode());
7542   SDValue LoadChain = LN->getChain();
7543   SDValue BasePtr = LN->getBasePtr();
7544
7545   if (Op.getValueType() == MVT::v4f64 ||
7546       Op.getValueType() == MVT::v4f32) {
7547     EVT MemVT = LN->getMemoryVT();
7548     unsigned Alignment = LN->getAlignment();
7549
7550     // If this load is properly aligned, then it is legal.
7551     if (Alignment >= MemVT.getStoreSize())
7552       return Op;
7553
7554     EVT ScalarVT = Op.getValueType().getScalarType(),
7555         ScalarMemVT = MemVT.getScalarType();
7556     unsigned Stride = ScalarMemVT.getStoreSize();
7557
7558     SmallVector<SDValue, 8> Vals, LoadChains;
7559     for (unsigned Idx = 0; Idx < 4; ++Idx) {
7560       SDValue Load;
7561       if (ScalarVT != ScalarMemVT)
7562         Load =
7563           DAG.getExtLoad(LN->getExtensionType(), dl, ScalarVT, LoadChain,
7564                          BasePtr,
7565                          LN->getPointerInfo().getWithOffset(Idx*Stride),
7566                          ScalarMemVT, LN->isVolatile(), LN->isNonTemporal(),
7567                          LN->isInvariant(), MinAlign(Alignment, Idx*Stride),
7568                          LN->getAAInfo());
7569       else
7570         Load =
7571           DAG.getLoad(ScalarVT, dl, LoadChain, BasePtr,
7572                        LN->getPointerInfo().getWithOffset(Idx*Stride),
7573                        LN->isVolatile(), LN->isNonTemporal(),
7574                        LN->isInvariant(), MinAlign(Alignment, Idx*Stride),
7575                        LN->getAAInfo());
7576
7577       if (Idx == 0 && LN->isIndexed()) {
7578         assert(LN->getAddressingMode() == ISD::PRE_INC &&
7579                "Unknown addressing mode on vector load");
7580         Load = DAG.getIndexedLoad(Load, dl, BasePtr, LN->getOffset(),
7581                                   LN->getAddressingMode());
7582       }
7583
7584       Vals.push_back(Load);
7585       LoadChains.push_back(Load.getValue(1));
7586
7587       BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
7588                             DAG.getConstant(Stride, dl,
7589                                             BasePtr.getValueType()));
7590     }
7591
7592     SDValue TF =  DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
7593     SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
7594                                 Op.getValueType(), Vals);
7595
7596     if (LN->isIndexed()) {
7597       SDValue RetOps[] = { Value, Vals[0].getValue(1), TF };
7598       return DAG.getMergeValues(RetOps, dl);
7599     }
7600
7601     SDValue RetOps[] = { Value, TF };
7602     return DAG.getMergeValues(RetOps, dl);
7603   }
7604
7605   assert(Op.getValueType() == MVT::v4i1 && "Unknown load to lower");
7606   assert(LN->isUnindexed() && "Indexed v4i1 loads are not supported");
7607
7608   // To lower v4i1 from a byte array, we load the byte elements of the
7609   // vector and then reuse the BUILD_VECTOR logic.
7610
7611   SmallVector<SDValue, 4> VectElmts, VectElmtChains;
7612   for (unsigned i = 0; i < 4; ++i) {
7613     SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType());
7614     Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx);
7615
7616     VectElmts.push_back(DAG.getExtLoad(ISD::EXTLOAD,
7617                         dl, MVT::i32, LoadChain, Idx,
7618                         LN->getPointerInfo().getWithOffset(i),
7619                         MVT::i8 /* memory type */,
7620                         LN->isVolatile(), LN->isNonTemporal(),
7621                         LN->isInvariant(),
7622                         1 /* alignment */, LN->getAAInfo()));
7623     VectElmtChains.push_back(VectElmts[i].getValue(1));
7624   }
7625
7626   LoadChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, VectElmtChains);
7627   SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i1, VectElmts);
7628
7629   SDValue RVals[] = { Value, LoadChain };
7630   return DAG.getMergeValues(RVals, dl);
7631 }
7632
7633 /// Lowering for QPX v4i1 stores
7634 SDValue PPCTargetLowering::LowerVectorStore(SDValue Op,
7635                                             SelectionDAG &DAG) const {
7636   SDLoc dl(Op);
7637   StoreSDNode *SN = cast<StoreSDNode>(Op.getNode());
7638   SDValue StoreChain = SN->getChain();
7639   SDValue BasePtr = SN->getBasePtr();
7640   SDValue Value = SN->getValue();
7641
7642   if (Value.getValueType() == MVT::v4f64 ||
7643       Value.getValueType() == MVT::v4f32) {
7644     EVT MemVT = SN->getMemoryVT();
7645     unsigned Alignment = SN->getAlignment();
7646
7647     // If this store is properly aligned, then it is legal.
7648     if (Alignment >= MemVT.getStoreSize())
7649       return Op;
7650
7651     EVT ScalarVT = Value.getValueType().getScalarType(),
7652         ScalarMemVT = MemVT.getScalarType();
7653     unsigned Stride = ScalarMemVT.getStoreSize();
7654
7655     SmallVector<SDValue, 8> Stores;
7656     for (unsigned Idx = 0; Idx < 4; ++Idx) {
7657       SDValue Ex = DAG.getNode(
7658           ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, Value,
7659           DAG.getConstant(Idx, dl, getVectorIdxTy(DAG.getDataLayout())));
7660       SDValue Store;
7661       if (ScalarVT != ScalarMemVT)
7662         Store =
7663           DAG.getTruncStore(StoreChain, dl, Ex, BasePtr,
7664                             SN->getPointerInfo().getWithOffset(Idx*Stride),
7665                             ScalarMemVT, SN->isVolatile(), SN->isNonTemporal(),
7666                             MinAlign(Alignment, Idx*Stride), SN->getAAInfo());
7667       else
7668         Store =
7669           DAG.getStore(StoreChain, dl, Ex, BasePtr,
7670                        SN->getPointerInfo().getWithOffset(Idx*Stride),
7671                        SN->isVolatile(), SN->isNonTemporal(),
7672                        MinAlign(Alignment, Idx*Stride), SN->getAAInfo());
7673
7674       if (Idx == 0 && SN->isIndexed()) {
7675         assert(SN->getAddressingMode() == ISD::PRE_INC &&
7676                "Unknown addressing mode on vector store");
7677         Store = DAG.getIndexedStore(Store, dl, BasePtr, SN->getOffset(),
7678                                     SN->getAddressingMode());
7679       }
7680
7681       BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
7682                             DAG.getConstant(Stride, dl,
7683                                             BasePtr.getValueType()));
7684       Stores.push_back(Store);
7685     }
7686
7687     SDValue TF =  DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
7688
7689     if (SN->isIndexed()) {
7690       SDValue RetOps[] = { TF, Stores[0].getValue(1) };
7691       return DAG.getMergeValues(RetOps, dl);
7692     }
7693
7694     return TF;
7695   }
7696
7697   assert(SN->isUnindexed() && "Indexed v4i1 stores are not supported");
7698   assert(Value.getValueType() == MVT::v4i1 && "Unknown store to lower");
7699
7700   // The values are now known to be -1 (false) or 1 (true). To convert this
7701   // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
7702   // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
7703   Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
7704
7705   // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to
7706   // understand how to form the extending load.
7707   SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::f64);
7708   FPHalfs = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f64,
7709                         FPHalfs, FPHalfs, FPHalfs, FPHalfs);
7710
7711   Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs); 
7712
7713   // Now convert to an integer and store.
7714   Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
7715     DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32),
7716     Value);
7717
7718   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7719   int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
7720   MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FrameIdx);
7721   EVT PtrVT = getPointerTy(DAG.getDataLayout());
7722   SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7723
7724   SmallVector<SDValue, 2> Ops;
7725   Ops.push_back(StoreChain);
7726   Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32));
7727   Ops.push_back(Value);
7728   Ops.push_back(FIdx);
7729
7730   SmallVector<EVT, 2> ValueVTs;
7731   ValueVTs.push_back(MVT::Other); // chain
7732   SDVTList VTs = DAG.getVTList(ValueVTs);
7733
7734   StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID,
7735     dl, VTs, Ops, MVT::v4i32, PtrInfo);
7736
7737   // Move data into the byte array.
7738   SmallVector<SDValue, 4> Loads, LoadChains;
7739   for (unsigned i = 0; i < 4; ++i) {
7740     unsigned Offset = 4*i;
7741     SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
7742     Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
7743
7744     Loads.push_back(DAG.getLoad(MVT::i32, dl, StoreChain, Idx,
7745                                    PtrInfo.getWithOffset(Offset),
7746                                    false, false, false, 0));
7747     LoadChains.push_back(Loads[i].getValue(1));
7748   }
7749
7750   StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
7751
7752   SmallVector<SDValue, 4> Stores;
7753   for (unsigned i = 0; i < 4; ++i) {
7754     SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType());
7755     Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx);
7756
7757     Stores.push_back(DAG.getTruncStore(StoreChain, dl, Loads[i], Idx,
7758                                        SN->getPointerInfo().getWithOffset(i),
7759                                        MVT::i8 /* memory type */,
7760                                        SN->isNonTemporal(), SN->isVolatile(), 
7761                                        1 /* alignment */, SN->getAAInfo()));
7762   }
7763
7764   StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
7765
7766   return StoreChain;
7767 }
7768
7769 SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
7770   SDLoc dl(Op);
7771   if (Op.getValueType() == MVT::v4i32) {
7772     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
7773
7774     SDValue Zero  = BuildSplatI(  0, 1, MVT::v4i32, DAG, dl);
7775     SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
7776
7777     SDValue RHSSwap =   // = vrlw RHS, 16
7778       BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
7779
7780     // Shrinkify inputs to v8i16.
7781     LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
7782     RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
7783     RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
7784
7785     // Low parts multiplied together, generating 32-bit results (we ignore the
7786     // top parts).
7787     SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
7788                                         LHS, RHS, DAG, dl, MVT::v4i32);
7789
7790     SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
7791                                       LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
7792     // Shift the high parts up 16 bits.
7793     HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
7794                               Neg16, DAG, dl);
7795     return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
7796   } else if (Op.getValueType() == MVT::v8i16) {
7797     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
7798
7799     SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
7800
7801     return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
7802                             LHS, RHS, Zero, DAG, dl);
7803   } else if (Op.getValueType() == MVT::v16i8) {
7804     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
7805     bool isLittleEndian = Subtarget.isLittleEndian();
7806
7807     // Multiply the even 8-bit parts, producing 16-bit sums.
7808     SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
7809                                            LHS, RHS, DAG, dl, MVT::v8i16);
7810     EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
7811
7812     // Multiply the odd 8-bit parts, producing 16-bit sums.
7813     SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
7814                                           LHS, RHS, DAG, dl, MVT::v8i16);
7815     OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
7816
7817     // Merge the results together.  Because vmuleub and vmuloub are
7818     // instructions with a big-endian bias, we must reverse the
7819     // element numbering and reverse the meaning of "odd" and "even"
7820     // when generating little endian code.
7821     int Ops[16];
7822     for (unsigned i = 0; i != 8; ++i) {
7823       if (isLittleEndian) {
7824         Ops[i*2  ] = 2*i;
7825         Ops[i*2+1] = 2*i+16;
7826       } else {
7827         Ops[i*2  ] = 2*i+1;
7828         Ops[i*2+1] = 2*i+1+16;
7829       }
7830     }
7831     if (isLittleEndian)
7832       return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops);
7833     else
7834       return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
7835   } else {
7836     llvm_unreachable("Unknown mul to lower!");
7837   }
7838 }
7839
7840 /// LowerOperation - Provide custom lowering hooks for some operations.
7841 ///
7842 SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
7843   switch (Op.getOpcode()) {
7844   default: llvm_unreachable("Wasn't expecting to be able to lower this!");
7845   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
7846   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
7847   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
7848   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
7849   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
7850   case ISD::SETCC:              return LowerSETCC(Op, DAG);
7851   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
7852   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
7853   case ISD::VASTART:
7854     return LowerVASTART(Op, DAG, Subtarget);
7855
7856   case ISD::VAARG:
7857     return LowerVAARG(Op, DAG, Subtarget);
7858
7859   case ISD::VACOPY:
7860     return LowerVACOPY(Op, DAG, Subtarget);
7861
7862   case ISD::STACKRESTORE:       return LowerSTACKRESTORE(Op, DAG, Subtarget);
7863   case ISD::DYNAMIC_STACKALLOC:
7864     return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget);
7865
7866   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
7867   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
7868
7869   case ISD::LOAD:               return LowerLOAD(Op, DAG);
7870   case ISD::STORE:              return LowerSTORE(Op, DAG);
7871   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
7872   case ISD::SELECT_CC:          return LowerSELECT_CC(Op, DAG);
7873   case ISD::FP_TO_UINT:
7874   case ISD::FP_TO_SINT:         return LowerFP_TO_INT(Op, DAG,
7875                                                       SDLoc(Op));
7876   case ISD::UINT_TO_FP:
7877   case ISD::SINT_TO_FP:         return LowerINT_TO_FP(Op, DAG);
7878   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
7879
7880   // Lower 64-bit shifts.
7881   case ISD::SHL_PARTS:          return LowerSHL_PARTS(Op, DAG);
7882   case ISD::SRL_PARTS:          return LowerSRL_PARTS(Op, DAG);
7883   case ISD::SRA_PARTS:          return LowerSRA_PARTS(Op, DAG);
7884
7885   // Vector-related lowering.
7886   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
7887   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
7888   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
7889   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
7890   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op, DAG);
7891   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
7892   case ISD::MUL:                return LowerMUL(Op, DAG);
7893
7894   // For counter-based loop handling.
7895   case ISD::INTRINSIC_W_CHAIN:  return SDValue();
7896
7897   // Frame & Return address.
7898   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
7899   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
7900   }
7901 }
7902
7903 void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
7904                                            SmallVectorImpl<SDValue>&Results,
7905                                            SelectionDAG &DAG) const {
7906   SDLoc dl(N);
7907   switch (N->getOpcode()) {
7908   default:
7909     llvm_unreachable("Do not know how to custom type legalize this operation!");
7910   case ISD::READCYCLECOUNTER: {
7911     SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
7912     SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0));
7913
7914     Results.push_back(RTB);
7915     Results.push_back(RTB.getValue(1));
7916     Results.push_back(RTB.getValue(2));
7917     break;
7918   }
7919   case ISD::INTRINSIC_W_CHAIN: {
7920     if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
7921         Intrinsic::ppc_is_decremented_ctr_nonzero)
7922       break;
7923
7924     assert(N->getValueType(0) == MVT::i1 &&
7925            "Unexpected result type for CTR decrement intrinsic");
7926     EVT SVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
7927                                  N->getValueType(0));
7928     SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
7929     SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
7930                                  N->getOperand(1)); 
7931
7932     Results.push_back(NewInt);
7933     Results.push_back(NewInt.getValue(1));
7934     break;
7935   }
7936   case ISD::VAARG: {
7937     if (!Subtarget.isSVR4ABI() || Subtarget.isPPC64())
7938       return;
7939
7940     EVT VT = N->getValueType(0);
7941
7942     if (VT == MVT::i64) {
7943       SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget);
7944
7945       Results.push_back(NewNode);
7946       Results.push_back(NewNode.getValue(1));
7947     }
7948     return;
7949   }
7950   case ISD::FP_ROUND_INREG: {
7951     assert(N->getValueType(0) == MVT::ppcf128);
7952     assert(N->getOperand(0).getValueType() == MVT::ppcf128);
7953     SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
7954                              MVT::f64, N->getOperand(0),
7955                              DAG.getIntPtrConstant(0, dl));
7956     SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
7957                              MVT::f64, N->getOperand(0),
7958                              DAG.getIntPtrConstant(1, dl));
7959
7960     // Add the two halves of the long double in round-to-zero mode.
7961     SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
7962
7963     // We know the low half is about to be thrown away, so just use something
7964     // convenient.
7965     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
7966                                 FPreg, FPreg));
7967     return;
7968   }
7969   case ISD::FP_TO_SINT:
7970   case ISD::FP_TO_UINT:
7971     // LowerFP_TO_INT() can only handle f32 and f64.
7972     if (N->getOperand(0).getValueType() == MVT::ppcf128)
7973       return;
7974     Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
7975     return;
7976   }
7977 }
7978
7979
7980 //===----------------------------------------------------------------------===//
7981 //  Other Lowering Code
7982 //===----------------------------------------------------------------------===//
7983
7984 static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) {
7985   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
7986   Function *Func = Intrinsic::getDeclaration(M, Id);
7987   return Builder.CreateCall(Func, {});
7988 }
7989
7990 // The mappings for emitLeading/TrailingFence is taken from
7991 // http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
7992 Instruction* PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
7993                                          AtomicOrdering Ord, bool IsStore,
7994                                          bool IsLoad) const {
7995   if (Ord == SequentiallyConsistent)
7996     return callIntrinsic(Builder, Intrinsic::ppc_sync);
7997   if (isAtLeastRelease(Ord))
7998     return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
7999   return nullptr;
8000 }
8001
8002 Instruction* PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
8003                                           AtomicOrdering Ord, bool IsStore,
8004                                           bool IsLoad) const {
8005   if (IsLoad && isAtLeastAcquire(Ord))
8006     return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
8007   // FIXME: this is too conservative, a dependent branch + isync is enough.
8008   // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and
8009   // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
8010   // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification.
8011   return nullptr;
8012 }
8013
8014 MachineBasicBlock *
8015 PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
8016                                     unsigned AtomicSize,
8017                                     unsigned BinOpcode) const {
8018   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
8019   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8020
8021   auto LoadMnemonic = PPC::LDARX;
8022   auto StoreMnemonic = PPC::STDCX;
8023   switch (AtomicSize) {
8024   default:
8025     llvm_unreachable("Unexpected size of atomic entity");
8026   case 1:
8027     LoadMnemonic = PPC::LBARX;
8028     StoreMnemonic = PPC::STBCX;
8029     assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4");
8030     break;
8031   case 2:
8032     LoadMnemonic = PPC::LHARX;
8033     StoreMnemonic = PPC::STHCX;
8034     assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4");
8035     break;
8036   case 4:
8037     LoadMnemonic = PPC::LWARX;
8038     StoreMnemonic = PPC::STWCX;
8039     break;
8040   case 8:
8041     LoadMnemonic = PPC::LDARX;
8042     StoreMnemonic = PPC::STDCX;
8043     break;
8044   }
8045
8046   const BasicBlock *LLVM_BB = BB->getBasicBlock();
8047   MachineFunction *F = BB->getParent();
8048   MachineFunction::iterator It = BB;
8049   ++It;
8050
8051   unsigned dest = MI->getOperand(0).getReg();
8052   unsigned ptrA = MI->getOperand(1).getReg();
8053   unsigned ptrB = MI->getOperand(2).getReg();
8054   unsigned incr = MI->getOperand(3).getReg();
8055   DebugLoc dl = MI->getDebugLoc();
8056
8057   MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
8058   MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8059   F->insert(It, loopMBB);
8060   F->insert(It, exitMBB);
8061   exitMBB->splice(exitMBB->begin(), BB,
8062                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
8063   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8064
8065   MachineRegisterInfo &RegInfo = F->getRegInfo();
8066   unsigned TmpReg = (!BinOpcode) ? incr :
8067     RegInfo.createVirtualRegister( AtomicSize == 8 ? &PPC::G8RCRegClass
8068                                            : &PPC::GPRCRegClass);
8069
8070   //  thisMBB:
8071   //   ...
8072   //   fallthrough --> loopMBB
8073   BB->addSuccessor(loopMBB);
8074
8075   //  loopMBB:
8076   //   l[wd]arx dest, ptr
8077   //   add r0, dest, incr
8078   //   st[wd]cx. r0, ptr
8079   //   bne- loopMBB
8080   //   fallthrough --> exitMBB
8081   BB = loopMBB;
8082   BuildMI(BB, dl, TII->get(LoadMnemonic), dest)
8083     .addReg(ptrA).addReg(ptrB);
8084   if (BinOpcode)
8085     BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
8086   BuildMI(BB, dl, TII->get(StoreMnemonic))
8087     .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
8088   BuildMI(BB, dl, TII->get(PPC::BCC))
8089     .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
8090   BB->addSuccessor(loopMBB);
8091   BB->addSuccessor(exitMBB);
8092
8093   //  exitMBB:
8094   //   ...
8095   BB = exitMBB;
8096   return BB;
8097 }
8098
8099 MachineBasicBlock *
8100 PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
8101                                             MachineBasicBlock *BB,
8102                                             bool is8bit,    // operation
8103                                             unsigned BinOpcode) const {
8104   // If we support part-word atomic mnemonics, just use them
8105   if (Subtarget.hasPartwordAtomics())
8106     return EmitAtomicBinary(MI, BB, is8bit ? 1 : 2, BinOpcode);
8107
8108   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
8109   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8110   // In 64 bit mode we have to use 64 bits for addresses, even though the
8111   // lwarx/stwcx are 32 bits.  With the 32-bit atomics we can use address
8112   // registers without caring whether they're 32 or 64, but here we're
8113   // doing actual arithmetic on the addresses.
8114   bool is64bit = Subtarget.isPPC64();
8115   unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
8116
8117   const BasicBlock *LLVM_BB = BB->getBasicBlock();
8118   MachineFunction *F = BB->getParent();
8119   MachineFunction::iterator It = BB;
8120   ++It;
8121
8122   unsigned dest = MI->getOperand(0).getReg();
8123   unsigned ptrA = MI->getOperand(1).getReg();
8124   unsigned ptrB = MI->getOperand(2).getReg();
8125   unsigned incr = MI->getOperand(3).getReg();
8126   DebugLoc dl = MI->getDebugLoc();
8127
8128   MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
8129   MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8130   F->insert(It, loopMBB);
8131   F->insert(It, exitMBB);
8132   exitMBB->splice(exitMBB->begin(), BB,
8133                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
8134   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8135
8136   MachineRegisterInfo &RegInfo = F->getRegInfo();
8137   const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
8138                                           : &PPC::GPRCRegClass;
8139   unsigned PtrReg = RegInfo.createVirtualRegister(RC);
8140   unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
8141   unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
8142   unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
8143   unsigned MaskReg = RegInfo.createVirtualRegister(RC);
8144   unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
8145   unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
8146   unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
8147   unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
8148   unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
8149   unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
8150   unsigned Ptr1Reg;
8151   unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
8152
8153   //  thisMBB:
8154   //   ...
8155   //   fallthrough --> loopMBB
8156   BB->addSuccessor(loopMBB);
8157
8158   // The 4-byte load must be aligned, while a char or short may be
8159   // anywhere in the word.  Hence all this nasty bookkeeping code.
8160   //   add ptr1, ptrA, ptrB [copy if ptrA==0]
8161   //   rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
8162   //   xori shift, shift1, 24 [16]
8163   //   rlwinm ptr, ptr1, 0, 0, 29
8164   //   slw incr2, incr, shift
8165   //   li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
8166   //   slw mask, mask2, shift
8167   //  loopMBB:
8168   //   lwarx tmpDest, ptr
8169   //   add tmp, tmpDest, incr2
8170   //   andc tmp2, tmpDest, mask
8171   //   and tmp3, tmp, mask
8172   //   or tmp4, tmp3, tmp2
8173   //   stwcx. tmp4, ptr
8174   //   bne- loopMBB
8175   //   fallthrough --> exitMBB
8176   //   srw dest, tmpDest, shift
8177   if (ptrA != ZeroReg) {
8178     Ptr1Reg = RegInfo.createVirtualRegister(RC);
8179     BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
8180       .addReg(ptrA).addReg(ptrB);
8181   } else {
8182     Ptr1Reg = ptrB;
8183   }
8184   BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
8185       .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
8186   BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
8187       .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
8188   if (is64bit)
8189     BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
8190       .addReg(Ptr1Reg).addImm(0).addImm(61);
8191   else
8192     BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
8193       .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
8194   BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
8195       .addReg(incr).addReg(ShiftReg);
8196   if (is8bit)
8197     BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
8198   else {
8199     BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
8200     BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
8201   }
8202   BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
8203       .addReg(Mask2Reg).addReg(ShiftReg);
8204
8205   BB = loopMBB;
8206   BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
8207     .addReg(ZeroReg).addReg(PtrReg);
8208   if (BinOpcode)
8209     BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
8210       .addReg(Incr2Reg).addReg(TmpDestReg);
8211   BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
8212     .addReg(TmpDestReg).addReg(MaskReg);
8213   BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
8214     .addReg(TmpReg).addReg(MaskReg);
8215   BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
8216     .addReg(Tmp3Reg).addReg(Tmp2Reg);
8217   BuildMI(BB, dl, TII->get(PPC::STWCX))
8218     .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
8219   BuildMI(BB, dl, TII->get(PPC::BCC))
8220     .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
8221   BB->addSuccessor(loopMBB);
8222   BB->addSuccessor(exitMBB);
8223
8224   //  exitMBB:
8225   //   ...
8226   BB = exitMBB;
8227   BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
8228     .addReg(ShiftReg);
8229   return BB;
8230 }
8231
8232 llvm::MachineBasicBlock*
8233 PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
8234                                     MachineBasicBlock *MBB) const {
8235   DebugLoc DL = MI->getDebugLoc();
8236   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8237
8238   MachineFunction *MF = MBB->getParent();
8239   MachineRegisterInfo &MRI = MF->getRegInfo();
8240
8241   const BasicBlock *BB = MBB->getBasicBlock();
8242   MachineFunction::iterator I = MBB;
8243   ++I;
8244
8245   // Memory Reference
8246   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
8247   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
8248
8249   unsigned DstReg = MI->getOperand(0).getReg();
8250   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
8251   assert(RC->hasType(MVT::i32) && "Invalid destination!");
8252   unsigned mainDstReg = MRI.createVirtualRegister(RC);
8253   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
8254
8255   MVT PVT = getPointerTy(MF->getDataLayout());
8256   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
8257          "Invalid Pointer Size!");
8258   // For v = setjmp(buf), we generate
8259   //
8260   // thisMBB:
8261   //  SjLjSetup mainMBB
8262   //  bl mainMBB
8263   //  v_restore = 1
8264   //  b sinkMBB
8265   //
8266   // mainMBB:
8267   //  buf[LabelOffset] = LR
8268   //  v_main = 0
8269   //
8270   // sinkMBB:
8271   //  v = phi(main, restore)
8272   //
8273
8274   MachineBasicBlock *thisMBB = MBB;
8275   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
8276   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
8277   MF->insert(I, mainMBB);
8278   MF->insert(I, sinkMBB);
8279
8280   MachineInstrBuilder MIB;
8281
8282   // Transfer the remainder of BB and its successor edges to sinkMBB.
8283   sinkMBB->splice(sinkMBB->begin(), MBB,
8284                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
8285   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
8286
8287   // Note that the structure of the jmp_buf used here is not compatible
8288   // with that used by libc, and is not designed to be. Specifically, it
8289   // stores only those 'reserved' registers that LLVM does not otherwise
8290   // understand how to spill. Also, by convention, by the time this
8291   // intrinsic is called, Clang has already stored the frame address in the
8292   // first slot of the buffer and stack address in the third. Following the
8293   // X86 target code, we'll store the jump address in the second slot. We also
8294   // need to save the TOC pointer (R2) to handle jumps between shared
8295   // libraries, and that will be stored in the fourth slot. The thread
8296   // identifier (R13) is not affected.
8297
8298   // thisMBB:
8299   const int64_t LabelOffset = 1 * PVT.getStoreSize();
8300   const int64_t TOCOffset   = 3 * PVT.getStoreSize();
8301   const int64_t BPOffset    = 4 * PVT.getStoreSize();
8302
8303   // Prepare IP either in reg.
8304   const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
8305   unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
8306   unsigned BufReg = MI->getOperand(1).getReg();
8307
8308   if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) {
8309     setUsesTOCBasePtr(*MBB->getParent());
8310     MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
8311             .addReg(PPC::X2)
8312             .addImm(TOCOffset)
8313             .addReg(BufReg);
8314     MIB.setMemRefs(MMOBegin, MMOEnd);
8315   }
8316
8317   // Naked functions never have a base pointer, and so we use r1. For all
8318   // other functions, this decision must be delayed until during PEI.
8319   unsigned BaseReg;
8320   if (MF->getFunction()->hasFnAttribute(Attribute::Naked))
8321     BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
8322   else
8323     BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP;
8324
8325   MIB = BuildMI(*thisMBB, MI, DL,
8326                 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW))
8327             .addReg(BaseReg)
8328             .addImm(BPOffset)
8329             .addReg(BufReg);
8330   MIB.setMemRefs(MMOBegin, MMOEnd);
8331
8332   // Setup
8333   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
8334   const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo();
8335   MIB.addRegMask(TRI->getNoPreservedMask());
8336
8337   BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
8338
8339   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
8340           .addMBB(mainMBB);
8341   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
8342
8343   thisMBB->addSuccessor(mainMBB, /* weight */ 0);
8344   thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
8345
8346   // mainMBB:
8347   //  mainDstReg = 0
8348   MIB =
8349       BuildMI(mainMBB, DL,
8350               TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
8351
8352   // Store IP
8353   if (Subtarget.isPPC64()) {
8354     MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
8355             .addReg(LabelReg)
8356             .addImm(LabelOffset)
8357             .addReg(BufReg);
8358   } else {
8359     MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
8360             .addReg(LabelReg)
8361             .addImm(LabelOffset)
8362             .addReg(BufReg);
8363   }
8364
8365   MIB.setMemRefs(MMOBegin, MMOEnd);
8366
8367   BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
8368   mainMBB->addSuccessor(sinkMBB);
8369
8370   // sinkMBB:
8371   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
8372           TII->get(PPC::PHI), DstReg)
8373     .addReg(mainDstReg).addMBB(mainMBB)
8374     .addReg(restoreDstReg).addMBB(thisMBB);
8375
8376   MI->eraseFromParent();
8377   return sinkMBB;
8378 }
8379
8380 MachineBasicBlock *
8381 PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
8382                                      MachineBasicBlock *MBB) const {
8383   DebugLoc DL = MI->getDebugLoc();
8384   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8385
8386   MachineFunction *MF = MBB->getParent();
8387   MachineRegisterInfo &MRI = MF->getRegInfo();
8388
8389   // Memory Reference
8390   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
8391   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
8392
8393   MVT PVT = getPointerTy(MF->getDataLayout());
8394   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
8395          "Invalid Pointer Size!");
8396
8397   const TargetRegisterClass *RC =
8398     (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
8399   unsigned Tmp = MRI.createVirtualRegister(RC);
8400   // Since FP is only updated here but NOT referenced, it's treated as GPR.
8401   unsigned FP  = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
8402   unsigned SP  = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
8403   unsigned BP =
8404       (PVT == MVT::i64)
8405           ? PPC::X30
8406           : (Subtarget.isSVR4ABI() &&
8407                      MF->getTarget().getRelocationModel() == Reloc::PIC_
8408                  ? PPC::R29
8409                  : PPC::R30);
8410
8411   MachineInstrBuilder MIB;
8412
8413   const int64_t LabelOffset = 1 * PVT.getStoreSize();
8414   const int64_t SPOffset    = 2 * PVT.getStoreSize();
8415   const int64_t TOCOffset   = 3 * PVT.getStoreSize();
8416   const int64_t BPOffset    = 4 * PVT.getStoreSize();
8417
8418   unsigned BufReg = MI->getOperand(0).getReg();
8419
8420   // Reload FP (the jumped-to function may not have had a
8421   // frame pointer, and if so, then its r31 will be restored
8422   // as necessary).
8423   if (PVT == MVT::i64) {
8424     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
8425             .addImm(0)
8426             .addReg(BufReg);
8427   } else {
8428     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
8429             .addImm(0)
8430             .addReg(BufReg);
8431   }
8432   MIB.setMemRefs(MMOBegin, MMOEnd);
8433
8434   // Reload IP
8435   if (PVT == MVT::i64) {
8436     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
8437             .addImm(LabelOffset)
8438             .addReg(BufReg);
8439   } else {
8440     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
8441             .addImm(LabelOffset)
8442             .addReg(BufReg);
8443   }
8444   MIB.setMemRefs(MMOBegin, MMOEnd);
8445
8446   // Reload SP
8447   if (PVT == MVT::i64) {
8448     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
8449             .addImm(SPOffset)
8450             .addReg(BufReg);
8451   } else {
8452     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
8453             .addImm(SPOffset)
8454             .addReg(BufReg);
8455   }
8456   MIB.setMemRefs(MMOBegin, MMOEnd);
8457
8458   // Reload BP
8459   if (PVT == MVT::i64) {
8460     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
8461             .addImm(BPOffset)
8462             .addReg(BufReg);
8463   } else {
8464     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
8465             .addImm(BPOffset)
8466             .addReg(BufReg);
8467   }
8468   MIB.setMemRefs(MMOBegin, MMOEnd);
8469
8470   // Reload TOC
8471   if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) {
8472     setUsesTOCBasePtr(*MBB->getParent());
8473     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
8474             .addImm(TOCOffset)
8475             .addReg(BufReg);
8476
8477     MIB.setMemRefs(MMOBegin, MMOEnd);
8478   }
8479
8480   // Jump
8481   BuildMI(*MBB, MI, DL,
8482           TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
8483   BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
8484
8485   MI->eraseFromParent();
8486   return MBB;
8487 }
8488
8489 MachineBasicBlock *
8490 PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
8491                                                MachineBasicBlock *BB) const {
8492   if (MI->getOpcode() == TargetOpcode::STACKMAP ||
8493       MI->getOpcode() == TargetOpcode::PATCHPOINT) {
8494     if (Subtarget.isPPC64() && Subtarget.isSVR4ABI() &&
8495         MI->getOpcode() == TargetOpcode::PATCHPOINT) {
8496       // Call lowering should have added an r2 operand to indicate a dependence
8497       // on the TOC base pointer value. It can't however, because there is no
8498       // way to mark the dependence as implicit there, and so the stackmap code
8499       // will confuse it with a regular operand. Instead, add the dependence
8500       // here.
8501       setUsesTOCBasePtr(*BB->getParent());
8502       MI->addOperand(MachineOperand::CreateReg(PPC::X2, false, true));
8503     }
8504
8505     return emitPatchPoint(MI, BB);
8506   }
8507
8508   if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
8509       MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
8510     return emitEHSjLjSetJmp(MI, BB);
8511   } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
8512              MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
8513     return emitEHSjLjLongJmp(MI, BB);
8514   }
8515
8516   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8517
8518   // To "insert" these instructions we actually have to insert their
8519   // control-flow patterns.
8520   const BasicBlock *LLVM_BB = BB->getBasicBlock();
8521   MachineFunction::iterator It = BB;
8522   ++It;
8523
8524   MachineFunction *F = BB->getParent();
8525
8526   if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8527                               MI->getOpcode() == PPC::SELECT_CC_I8 ||
8528                               MI->getOpcode() == PPC::SELECT_I4 ||
8529                               MI->getOpcode() == PPC::SELECT_I8)) {
8530     SmallVector<MachineOperand, 2> Cond;
8531     if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8532         MI->getOpcode() == PPC::SELECT_CC_I8)
8533       Cond.push_back(MI->getOperand(4));
8534     else
8535       Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
8536     Cond.push_back(MI->getOperand(1));
8537
8538     DebugLoc dl = MI->getDebugLoc();
8539     TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
8540                       Cond, MI->getOperand(2).getReg(),
8541                       MI->getOperand(3).getReg());
8542   } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8543              MI->getOpcode() == PPC::SELECT_CC_I8 ||
8544              MI->getOpcode() == PPC::SELECT_CC_F4 ||
8545              MI->getOpcode() == PPC::SELECT_CC_F8 ||
8546              MI->getOpcode() == PPC::SELECT_CC_QFRC ||
8547              MI->getOpcode() == PPC::SELECT_CC_QSRC ||
8548              MI->getOpcode() == PPC::SELECT_CC_QBRC ||
8549              MI->getOpcode() == PPC::SELECT_CC_VRRC ||
8550              MI->getOpcode() == PPC::SELECT_CC_VSFRC ||
8551              MI->getOpcode() == PPC::SELECT_CC_VSSRC ||
8552              MI->getOpcode() == PPC::SELECT_CC_VSRC ||
8553              MI->getOpcode() == PPC::SELECT_I4 ||
8554              MI->getOpcode() == PPC::SELECT_I8 ||
8555              MI->getOpcode() == PPC::SELECT_F4 ||
8556              MI->getOpcode() == PPC::SELECT_F8 ||
8557              MI->getOpcode() == PPC::SELECT_QFRC ||
8558              MI->getOpcode() == PPC::SELECT_QSRC ||
8559              MI->getOpcode() == PPC::SELECT_QBRC ||
8560              MI->getOpcode() == PPC::SELECT_VRRC ||
8561              MI->getOpcode() == PPC::SELECT_VSFRC ||
8562              MI->getOpcode() == PPC::SELECT_VSSRC ||
8563              MI->getOpcode() == PPC::SELECT_VSRC) {
8564     // The incoming instruction knows the destination vreg to set, the
8565     // condition code register to branch on, the true/false values to
8566     // select between, and a branch opcode to use.
8567
8568     //  thisMBB:
8569     //  ...
8570     //   TrueVal = ...
8571     //   cmpTY ccX, r1, r2
8572     //   bCC copy1MBB
8573     //   fallthrough --> copy0MBB
8574     MachineBasicBlock *thisMBB = BB;
8575     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
8576     MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
8577     DebugLoc dl = MI->getDebugLoc();
8578     F->insert(It, copy0MBB);
8579     F->insert(It, sinkMBB);
8580
8581     // Transfer the remainder of BB and its successor edges to sinkMBB.
8582     sinkMBB->splice(sinkMBB->begin(), BB,
8583                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8584     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
8585
8586     // Next, add the true and fallthrough blocks as its successors.
8587     BB->addSuccessor(copy0MBB);
8588     BB->addSuccessor(sinkMBB);
8589
8590     if (MI->getOpcode() == PPC::SELECT_I4 ||
8591         MI->getOpcode() == PPC::SELECT_I8 ||
8592         MI->getOpcode() == PPC::SELECT_F4 ||
8593         MI->getOpcode() == PPC::SELECT_F8 ||
8594         MI->getOpcode() == PPC::SELECT_QFRC ||
8595         MI->getOpcode() == PPC::SELECT_QSRC ||
8596         MI->getOpcode() == PPC::SELECT_QBRC ||
8597         MI->getOpcode() == PPC::SELECT_VRRC ||
8598         MI->getOpcode() == PPC::SELECT_VSFRC ||
8599         MI->getOpcode() == PPC::SELECT_VSSRC ||
8600         MI->getOpcode() == PPC::SELECT_VSRC) {
8601       BuildMI(BB, dl, TII->get(PPC::BC))
8602         .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
8603     } else {
8604       unsigned SelectPred = MI->getOperand(4).getImm();
8605       BuildMI(BB, dl, TII->get(PPC::BCC))
8606         .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
8607     }
8608
8609     //  copy0MBB:
8610     //   %FalseValue = ...
8611     //   # fallthrough to sinkMBB
8612     BB = copy0MBB;
8613
8614     // Update machine-CFG edges
8615     BB->addSuccessor(sinkMBB);
8616
8617     //  sinkMBB:
8618     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
8619     //  ...
8620     BB = sinkMBB;
8621     BuildMI(*BB, BB->begin(), dl,
8622             TII->get(PPC::PHI), MI->getOperand(0).getReg())
8623       .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
8624       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
8625   } else if (MI->getOpcode() == PPC::ReadTB) {
8626     // To read the 64-bit time-base register on a 32-bit target, we read the
8627     // two halves. Should the counter have wrapped while it was being read, we
8628     // need to try again.
8629     // ...
8630     // readLoop:
8631     // mfspr Rx,TBU # load from TBU
8632     // mfspr Ry,TB  # load from TB
8633     // mfspr Rz,TBU # load from TBU
8634     // cmpw crX,Rx,Rz # check if â€˜old’=’new’
8635     // bne readLoop   # branch if they're not equal
8636     // ...
8637
8638     MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB);
8639     MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
8640     DebugLoc dl = MI->getDebugLoc();
8641     F->insert(It, readMBB);
8642     F->insert(It, sinkMBB);
8643
8644     // Transfer the remainder of BB and its successor edges to sinkMBB.
8645     sinkMBB->splice(sinkMBB->begin(), BB,
8646                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8647     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
8648
8649     BB->addSuccessor(readMBB);
8650     BB = readMBB;
8651
8652     MachineRegisterInfo &RegInfo = F->getRegInfo();
8653     unsigned ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
8654     unsigned LoReg = MI->getOperand(0).getReg();
8655     unsigned HiReg = MI->getOperand(1).getReg();
8656
8657     BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269);
8658     BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268);
8659     BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269);
8660
8661     unsigned CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
8662
8663     BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg)
8664       .addReg(HiReg).addReg(ReadAgainReg);
8665     BuildMI(BB, dl, TII->get(PPC::BCC))
8666       .addImm(PPC::PRED_NE).addReg(CmpReg).addMBB(readMBB);
8667
8668     BB->addSuccessor(readMBB);
8669     BB->addSuccessor(sinkMBB);
8670   }
8671   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
8672     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
8673   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
8674     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
8675   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
8676     BB = EmitAtomicBinary(MI, BB, 4, PPC::ADD4);
8677   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
8678     BB = EmitAtomicBinary(MI, BB, 8, PPC::ADD8);
8679
8680   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
8681     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
8682   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
8683     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
8684   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
8685     BB = EmitAtomicBinary(MI, BB, 4, PPC::AND);
8686   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
8687     BB = EmitAtomicBinary(MI, BB, 8, PPC::AND8);
8688
8689   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
8690     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
8691   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
8692     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
8693   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
8694     BB = EmitAtomicBinary(MI, BB, 4, PPC::OR);
8695   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
8696     BB = EmitAtomicBinary(MI, BB, 8, PPC::OR8);
8697
8698   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
8699     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
8700   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
8701     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
8702   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
8703     BB = EmitAtomicBinary(MI, BB, 4, PPC::XOR);
8704   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
8705     BB = EmitAtomicBinary(MI, BB, 8, PPC::XOR8);
8706
8707   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
8708     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND);
8709   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
8710     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND);
8711   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
8712     BB = EmitAtomicBinary(MI, BB, 4, PPC::NAND);
8713   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
8714     BB = EmitAtomicBinary(MI, BB, 8, PPC::NAND8);
8715
8716   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
8717     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
8718   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
8719     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
8720   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
8721     BB = EmitAtomicBinary(MI, BB, 4, PPC::SUBF);
8722   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
8723     BB = EmitAtomicBinary(MI, BB, 8, PPC::SUBF8);
8724
8725   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
8726     BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
8727   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
8728     BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
8729   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
8730     BB = EmitAtomicBinary(MI, BB, 4, 0);
8731   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
8732     BB = EmitAtomicBinary(MI, BB, 8, 0);
8733
8734   else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
8735            MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64 ||
8736            (Subtarget.hasPartwordAtomics() &&
8737             MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8) ||
8738            (Subtarget.hasPartwordAtomics() &&
8739             MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16)) {
8740     bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
8741
8742     auto LoadMnemonic = PPC::LDARX;
8743     auto StoreMnemonic = PPC::STDCX;
8744     switch(MI->getOpcode()) {
8745     default:
8746       llvm_unreachable("Compare and swap of unknown size");
8747     case PPC::ATOMIC_CMP_SWAP_I8:
8748       LoadMnemonic = PPC::LBARX;
8749       StoreMnemonic = PPC::STBCX;
8750       assert(Subtarget.hasPartwordAtomics() && "No support partword atomics.");
8751       break;
8752     case PPC::ATOMIC_CMP_SWAP_I16:
8753       LoadMnemonic = PPC::LHARX;
8754       StoreMnemonic = PPC::STHCX;
8755       assert(Subtarget.hasPartwordAtomics() && "No support partword atomics.");
8756       break;
8757     case PPC::ATOMIC_CMP_SWAP_I32:
8758       LoadMnemonic = PPC::LWARX;
8759       StoreMnemonic = PPC::STWCX;
8760       break;
8761     case PPC::ATOMIC_CMP_SWAP_I64:
8762       LoadMnemonic = PPC::LDARX;
8763       StoreMnemonic = PPC::STDCX;
8764       break;
8765     }
8766     unsigned dest   = MI->getOperand(0).getReg();
8767     unsigned ptrA   = MI->getOperand(1).getReg();
8768     unsigned ptrB   = MI->getOperand(2).getReg();
8769     unsigned oldval = MI->getOperand(3).getReg();
8770     unsigned newval = MI->getOperand(4).getReg();
8771     DebugLoc dl     = MI->getDebugLoc();
8772
8773     MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
8774     MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
8775     MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
8776     MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8777     F->insert(It, loop1MBB);
8778     F->insert(It, loop2MBB);
8779     F->insert(It, midMBB);
8780     F->insert(It, exitMBB);
8781     exitMBB->splice(exitMBB->begin(), BB,
8782                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8783     exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8784
8785     //  thisMBB:
8786     //   ...
8787     //   fallthrough --> loopMBB
8788     BB->addSuccessor(loop1MBB);
8789
8790     // loop1MBB:
8791     //   l[bhwd]arx dest, ptr
8792     //   cmp[wd] dest, oldval
8793     //   bne- midMBB
8794     // loop2MBB:
8795     //   st[bhwd]cx. newval, ptr
8796     //   bne- loopMBB
8797     //   b exitBB
8798     // midMBB:
8799     //   st[bhwd]cx. dest, ptr
8800     // exitBB:
8801     BB = loop1MBB;
8802     BuildMI(BB, dl, TII->get(LoadMnemonic), dest)
8803       .addReg(ptrA).addReg(ptrB);
8804     BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
8805       .addReg(oldval).addReg(dest);
8806     BuildMI(BB, dl, TII->get(PPC::BCC))
8807       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
8808     BB->addSuccessor(loop2MBB);
8809     BB->addSuccessor(midMBB);
8810
8811     BB = loop2MBB;
8812     BuildMI(BB, dl, TII->get(StoreMnemonic))
8813       .addReg(newval).addReg(ptrA).addReg(ptrB);
8814     BuildMI(BB, dl, TII->get(PPC::BCC))
8815       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
8816     BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
8817     BB->addSuccessor(loop1MBB);
8818     BB->addSuccessor(exitMBB);
8819
8820     BB = midMBB;
8821     BuildMI(BB, dl, TII->get(StoreMnemonic))
8822       .addReg(dest).addReg(ptrA).addReg(ptrB);
8823     BB->addSuccessor(exitMBB);
8824
8825     //  exitMBB:
8826     //   ...
8827     BB = exitMBB;
8828   } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
8829              MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
8830     // We must use 64-bit registers for addresses when targeting 64-bit,
8831     // since we're actually doing arithmetic on them.  Other registers
8832     // can be 32-bit.
8833     bool is64bit = Subtarget.isPPC64();
8834     bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
8835
8836     unsigned dest   = MI->getOperand(0).getReg();
8837     unsigned ptrA   = MI->getOperand(1).getReg();
8838     unsigned ptrB   = MI->getOperand(2).getReg();
8839     unsigned oldval = MI->getOperand(3).getReg();
8840     unsigned newval = MI->getOperand(4).getReg();
8841     DebugLoc dl     = MI->getDebugLoc();
8842
8843     MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
8844     MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
8845     MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
8846     MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8847     F->insert(It, loop1MBB);
8848     F->insert(It, loop2MBB);
8849     F->insert(It, midMBB);
8850     F->insert(It, exitMBB);
8851     exitMBB->splice(exitMBB->begin(), BB,
8852                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8853     exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8854
8855     MachineRegisterInfo &RegInfo = F->getRegInfo();
8856     const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
8857                                             : &PPC::GPRCRegClass;
8858     unsigned PtrReg = RegInfo.createVirtualRegister(RC);
8859     unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
8860     unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
8861     unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
8862     unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
8863     unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
8864     unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
8865     unsigned MaskReg = RegInfo.createVirtualRegister(RC);
8866     unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
8867     unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
8868     unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
8869     unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
8870     unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
8871     unsigned Ptr1Reg;
8872     unsigned TmpReg = RegInfo.createVirtualRegister(RC);
8873     unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
8874     //  thisMBB:
8875     //   ...
8876     //   fallthrough --> loopMBB
8877     BB->addSuccessor(loop1MBB);
8878
8879     // The 4-byte load must be aligned, while a char or short may be
8880     // anywhere in the word.  Hence all this nasty bookkeeping code.
8881     //   add ptr1, ptrA, ptrB [copy if ptrA==0]
8882     //   rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
8883     //   xori shift, shift1, 24 [16]
8884     //   rlwinm ptr, ptr1, 0, 0, 29
8885     //   slw newval2, newval, shift
8886     //   slw oldval2, oldval,shift
8887     //   li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
8888     //   slw mask, mask2, shift
8889     //   and newval3, newval2, mask
8890     //   and oldval3, oldval2, mask
8891     // loop1MBB:
8892     //   lwarx tmpDest, ptr
8893     //   and tmp, tmpDest, mask
8894     //   cmpw tmp, oldval3
8895     //   bne- midMBB
8896     // loop2MBB:
8897     //   andc tmp2, tmpDest, mask
8898     //   or tmp4, tmp2, newval3
8899     //   stwcx. tmp4, ptr
8900     //   bne- loop1MBB
8901     //   b exitBB
8902     // midMBB:
8903     //   stwcx. tmpDest, ptr
8904     // exitBB:
8905     //   srw dest, tmpDest, shift
8906     if (ptrA != ZeroReg) {
8907       Ptr1Reg = RegInfo.createVirtualRegister(RC);
8908       BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
8909         .addReg(ptrA).addReg(ptrB);
8910     } else {
8911       Ptr1Reg = ptrB;
8912     }
8913     BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
8914         .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
8915     BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
8916         .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
8917     if (is64bit)
8918       BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
8919         .addReg(Ptr1Reg).addImm(0).addImm(61);
8920     else
8921       BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
8922         .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
8923     BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
8924         .addReg(newval).addReg(ShiftReg);
8925     BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
8926         .addReg(oldval).addReg(ShiftReg);
8927     if (is8bit)
8928       BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
8929     else {
8930       BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
8931       BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
8932         .addReg(Mask3Reg).addImm(65535);
8933     }
8934     BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
8935         .addReg(Mask2Reg).addReg(ShiftReg);
8936     BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
8937         .addReg(NewVal2Reg).addReg(MaskReg);
8938     BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
8939         .addReg(OldVal2Reg).addReg(MaskReg);
8940
8941     BB = loop1MBB;
8942     BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
8943         .addReg(ZeroReg).addReg(PtrReg);
8944     BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
8945         .addReg(TmpDestReg).addReg(MaskReg);
8946     BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
8947         .addReg(TmpReg).addReg(OldVal3Reg);
8948     BuildMI(BB, dl, TII->get(PPC::BCC))
8949         .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
8950     BB->addSuccessor(loop2MBB);
8951     BB->addSuccessor(midMBB);
8952
8953     BB = loop2MBB;
8954     BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
8955         .addReg(TmpDestReg).addReg(MaskReg);
8956     BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
8957         .addReg(Tmp2Reg).addReg(NewVal3Reg);
8958     BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
8959         .addReg(ZeroReg).addReg(PtrReg);
8960     BuildMI(BB, dl, TII->get(PPC::BCC))
8961       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
8962     BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
8963     BB->addSuccessor(loop1MBB);
8964     BB->addSuccessor(exitMBB);
8965
8966     BB = midMBB;
8967     BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
8968       .addReg(ZeroReg).addReg(PtrReg);
8969     BB->addSuccessor(exitMBB);
8970
8971     //  exitMBB:
8972     //   ...
8973     BB = exitMBB;
8974     BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
8975       .addReg(ShiftReg);
8976   } else if (MI->getOpcode() == PPC::FADDrtz) {
8977     // This pseudo performs an FADD with rounding mode temporarily forced
8978     // to round-to-zero.  We emit this via custom inserter since the FPSCR
8979     // is not modeled at the SelectionDAG level.
8980     unsigned Dest = MI->getOperand(0).getReg();
8981     unsigned Src1 = MI->getOperand(1).getReg();
8982     unsigned Src2 = MI->getOperand(2).getReg();
8983     DebugLoc dl   = MI->getDebugLoc();
8984
8985     MachineRegisterInfo &RegInfo = F->getRegInfo();
8986     unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
8987
8988     // Save FPSCR value.
8989     BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
8990
8991     // Set rounding mode to round-to-zero.
8992     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
8993     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
8994
8995     // Perform addition.
8996     BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
8997
8998     // Restore FPSCR value.
8999     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg);
9000   } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
9001              MI->getOpcode() == PPC::ANDIo_1_GT_BIT ||
9002              MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
9003              MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) {
9004     unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
9005                        MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ?
9006                       PPC::ANDIo8 : PPC::ANDIo;
9007     bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
9008                  MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8);
9009
9010     MachineRegisterInfo &RegInfo = F->getRegInfo();
9011     unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ?
9012                                                   &PPC::GPRCRegClass :
9013                                                   &PPC::G8RCRegClass);
9014
9015     DebugLoc dl   = MI->getDebugLoc();
9016     BuildMI(*BB, MI, dl, TII->get(Opcode), Dest)
9017       .addReg(MI->getOperand(1).getReg()).addImm(1);
9018     BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY),
9019             MI->getOperand(0).getReg())
9020       .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT);
9021   } else if (MI->getOpcode() == PPC::TCHECK_RET) {
9022     DebugLoc Dl = MI->getDebugLoc();
9023     MachineRegisterInfo &RegInfo = F->getRegInfo();
9024     unsigned CRReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
9025     BuildMI(*BB, MI, Dl, TII->get(PPC::TCHECK), CRReg);
9026     return BB;
9027   } else {
9028     llvm_unreachable("Unexpected instr type to insert");
9029   }
9030
9031   MI->eraseFromParent();   // The pseudo instruction is gone now.
9032   return BB;
9033 }
9034
9035 //===----------------------------------------------------------------------===//
9036 // Target Optimization Hooks
9037 //===----------------------------------------------------------------------===//
9038
9039 SDValue PPCTargetLowering::getRsqrtEstimate(SDValue Operand,
9040                                             DAGCombinerInfo &DCI,
9041                                             unsigned &RefinementSteps,
9042                                             bool &UseOneConstNR) const {
9043   EVT VT = Operand.getValueType();
9044   if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) ||
9045       (VT == MVT::f64 && Subtarget.hasFRSQRTE()) ||
9046       (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
9047       (VT == MVT::v2f64 && Subtarget.hasVSX()) ||
9048       (VT == MVT::v4f32 && Subtarget.hasQPX()) ||
9049       (VT == MVT::v4f64 && Subtarget.hasQPX())) {
9050     // Convergence is quadratic, so we essentially double the number of digits
9051     // correct after every iteration. For both FRE and FRSQRTE, the minimum
9052     // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
9053     // 2^-14. IEEE float has 23 digits and double has 52 digits.
9054     RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
9055     if (VT.getScalarType() == MVT::f64)
9056       ++RefinementSteps;
9057     UseOneConstNR = true;
9058     return DCI.DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand);
9059   }
9060   return SDValue();
9061 }
9062
9063 SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand,
9064                                             DAGCombinerInfo &DCI,
9065                                             unsigned &RefinementSteps) const {
9066   EVT VT = Operand.getValueType();
9067   if ((VT == MVT::f32 && Subtarget.hasFRES()) ||
9068       (VT == MVT::f64 && Subtarget.hasFRE()) ||
9069       (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
9070       (VT == MVT::v2f64 && Subtarget.hasVSX()) ||
9071       (VT == MVT::v4f32 && Subtarget.hasQPX()) ||
9072       (VT == MVT::v4f64 && Subtarget.hasQPX())) {
9073     // Convergence is quadratic, so we essentially double the number of digits
9074     // correct after every iteration. For both FRE and FRSQRTE, the minimum
9075     // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
9076     // 2^-14. IEEE float has 23 digits and double has 52 digits.
9077     RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
9078     if (VT.getScalarType() == MVT::f64)
9079       ++RefinementSteps;
9080     return DCI.DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand);
9081   }
9082   return SDValue();
9083 }
9084
9085 bool PPCTargetLowering::combineRepeatedFPDivisors(unsigned NumUsers) const {
9086   // Note: This functionality is used only when unsafe-fp-math is enabled, and
9087   // on cores with reciprocal estimates (which are used when unsafe-fp-math is
9088   // enabled for division), this functionality is redundant with the default
9089   // combiner logic (once the division -> reciprocal/multiply transformation
9090   // has taken place). As a result, this matters more for older cores than for
9091   // newer ones.
9092
9093   // Combine multiple FDIVs with the same divisor into multiple FMULs by the
9094   // reciprocal if there are two or more FDIVs (for embedded cores with only
9095   // one FP pipeline) for three or more FDIVs (for generic OOO cores).
9096   switch (Subtarget.getDarwinDirective()) {
9097   default:
9098     return NumUsers > 2;
9099   case PPC::DIR_440:
9100   case PPC::DIR_A2:
9101   case PPC::DIR_E500mc:
9102   case PPC::DIR_E5500:
9103     return NumUsers > 1;
9104   }
9105 }
9106
9107 static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base,
9108                             unsigned Bytes, int Dist,
9109                             SelectionDAG &DAG) {
9110   if (VT.getSizeInBits() / 8 != Bytes)
9111     return false;
9112
9113   SDValue BaseLoc = Base->getBasePtr();
9114   if (Loc.getOpcode() == ISD::FrameIndex) {
9115     if (BaseLoc.getOpcode() != ISD::FrameIndex)
9116       return false;
9117     const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9118     int FI  = cast<FrameIndexSDNode>(Loc)->getIndex();
9119     int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
9120     int FS  = MFI->getObjectSize(FI);
9121     int BFS = MFI->getObjectSize(BFI);
9122     if (FS != BFS || FS != (int)Bytes) return false;
9123     return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
9124   }
9125
9126   // Handle X+C
9127   if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
9128       cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
9129     return true;
9130
9131   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9132   const GlobalValue *GV1 = nullptr;
9133   const GlobalValue *GV2 = nullptr;
9134   int64_t Offset1 = 0;
9135   int64_t Offset2 = 0;
9136   bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
9137   bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
9138   if (isGA1 && isGA2 && GV1 == GV2)
9139     return Offset1 == (Offset2 + Dist*Bytes);
9140   return false;
9141 }
9142
9143 // Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
9144 // not enforce equality of the chain operands.
9145 static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base,
9146                             unsigned Bytes, int Dist,
9147                             SelectionDAG &DAG) {
9148   if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) {
9149     EVT VT = LS->getMemoryVT();
9150     SDValue Loc = LS->getBasePtr();
9151     return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG);
9152   }
9153
9154   if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
9155     EVT VT;
9156     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9157     default: return false;
9158     case Intrinsic::ppc_qpx_qvlfd:
9159     case Intrinsic::ppc_qpx_qvlfda:
9160       VT = MVT::v4f64;
9161       break;
9162     case Intrinsic::ppc_qpx_qvlfs:
9163     case Intrinsic::ppc_qpx_qvlfsa:
9164       VT = MVT::v4f32;
9165       break;
9166     case Intrinsic::ppc_qpx_qvlfcd:
9167     case Intrinsic::ppc_qpx_qvlfcda:
9168       VT = MVT::v2f64;
9169       break;
9170     case Intrinsic::ppc_qpx_qvlfcs:
9171     case Intrinsic::ppc_qpx_qvlfcsa:
9172       VT = MVT::v2f32;
9173       break;
9174     case Intrinsic::ppc_qpx_qvlfiwa:
9175     case Intrinsic::ppc_qpx_qvlfiwz:
9176     case Intrinsic::ppc_altivec_lvx:
9177     case Intrinsic::ppc_altivec_lvxl:
9178     case Intrinsic::ppc_vsx_lxvw4x:
9179       VT = MVT::v4i32;
9180       break;
9181     case Intrinsic::ppc_vsx_lxvd2x:
9182       VT = MVT::v2f64;
9183       break;
9184     case Intrinsic::ppc_altivec_lvebx:
9185       VT = MVT::i8;
9186       break;
9187     case Intrinsic::ppc_altivec_lvehx:
9188       VT = MVT::i16;
9189       break;
9190     case Intrinsic::ppc_altivec_lvewx:
9191       VT = MVT::i32;
9192       break;
9193     }
9194
9195     return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG);
9196   }
9197
9198   if (N->getOpcode() == ISD::INTRINSIC_VOID) {
9199     EVT VT;
9200     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9201     default: return false;
9202     case Intrinsic::ppc_qpx_qvstfd:
9203     case Intrinsic::ppc_qpx_qvstfda:
9204       VT = MVT::v4f64;
9205       break;
9206     case Intrinsic::ppc_qpx_qvstfs:
9207     case Intrinsic::ppc_qpx_qvstfsa:
9208       VT = MVT::v4f32;
9209       break;
9210     case Intrinsic::ppc_qpx_qvstfcd:
9211     case Intrinsic::ppc_qpx_qvstfcda:
9212       VT = MVT::v2f64;
9213       break;
9214     case Intrinsic::ppc_qpx_qvstfcs:
9215     case Intrinsic::ppc_qpx_qvstfcsa:
9216       VT = MVT::v2f32;
9217       break;
9218     case Intrinsic::ppc_qpx_qvstfiw:
9219     case Intrinsic::ppc_qpx_qvstfiwa:
9220     case Intrinsic::ppc_altivec_stvx:
9221     case Intrinsic::ppc_altivec_stvxl:
9222     case Intrinsic::ppc_vsx_stxvw4x:
9223       VT = MVT::v4i32;
9224       break;
9225     case Intrinsic::ppc_vsx_stxvd2x:
9226       VT = MVT::v2f64;
9227       break;
9228     case Intrinsic::ppc_altivec_stvebx:
9229       VT = MVT::i8;
9230       break;
9231     case Intrinsic::ppc_altivec_stvehx:
9232       VT = MVT::i16;
9233       break;
9234     case Intrinsic::ppc_altivec_stvewx:
9235       VT = MVT::i32;
9236       break;
9237     }
9238
9239     return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG);
9240   }
9241
9242   return false;
9243 }
9244
9245 // Return true is there is a nearyby consecutive load to the one provided
9246 // (regardless of alignment). We search up and down the chain, looking though
9247 // token factors and other loads (but nothing else). As a result, a true result
9248 // indicates that it is safe to create a new consecutive load adjacent to the
9249 // load provided.
9250 static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
9251   SDValue Chain = LD->getChain();
9252   EVT VT = LD->getMemoryVT();
9253
9254   SmallSet<SDNode *, 16> LoadRoots;
9255   SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
9256   SmallSet<SDNode *, 16> Visited;
9257
9258   // First, search up the chain, branching to follow all token-factor operands.
9259   // If we find a consecutive load, then we're done, otherwise, record all
9260   // nodes just above the top-level loads and token factors.
9261   while (!Queue.empty()) {
9262     SDNode *ChainNext = Queue.pop_back_val();
9263     if (!Visited.insert(ChainNext).second)
9264       continue;
9265
9266     if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) {
9267       if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
9268         return true;
9269
9270       if (!Visited.count(ChainLD->getChain().getNode()))
9271         Queue.push_back(ChainLD->getChain().getNode());
9272     } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
9273       for (const SDUse &O : ChainNext->ops())
9274         if (!Visited.count(O.getNode()))
9275           Queue.push_back(O.getNode());
9276     } else
9277       LoadRoots.insert(ChainNext);
9278   }
9279
9280   // Second, search down the chain, starting from the top-level nodes recorded
9281   // in the first phase. These top-level nodes are the nodes just above all
9282   // loads and token factors. Starting with their uses, recursively look though
9283   // all loads (just the chain uses) and token factors to find a consecutive
9284   // load.
9285   Visited.clear();
9286   Queue.clear();
9287
9288   for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
9289        IE = LoadRoots.end(); I != IE; ++I) {
9290     Queue.push_back(*I);
9291        
9292     while (!Queue.empty()) {
9293       SDNode *LoadRoot = Queue.pop_back_val();
9294       if (!Visited.insert(LoadRoot).second)
9295         continue;
9296
9297       if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot))
9298         if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
9299           return true;
9300
9301       for (SDNode::use_iterator UI = LoadRoot->use_begin(),
9302            UE = LoadRoot->use_end(); UI != UE; ++UI)
9303         if (((isa<MemSDNode>(*UI) &&
9304             cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
9305             UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
9306           Queue.push_back(*UI);
9307     }
9308   }
9309
9310   return false;
9311 }
9312
9313 SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N,
9314                                                   DAGCombinerInfo &DCI) const {
9315   SelectionDAG &DAG = DCI.DAG;
9316   SDLoc dl(N);
9317
9318   assert(Subtarget.useCRBits() && "Expecting to be tracking CR bits");
9319   // If we're tracking CR bits, we need to be careful that we don't have:
9320   //   trunc(binary-ops(zext(x), zext(y)))
9321   // or
9322   //   trunc(binary-ops(binary-ops(zext(x), zext(y)), ...)
9323   // such that we're unnecessarily moving things into GPRs when it would be
9324   // better to keep them in CR bits.
9325
9326   // Note that trunc here can be an actual i1 trunc, or can be the effective
9327   // truncation that comes from a setcc or select_cc.
9328   if (N->getOpcode() == ISD::TRUNCATE &&
9329       N->getValueType(0) != MVT::i1)
9330     return SDValue();
9331
9332   if (N->getOperand(0).getValueType() != MVT::i32 &&
9333       N->getOperand(0).getValueType() != MVT::i64)
9334     return SDValue();
9335
9336   if (N->getOpcode() == ISD::SETCC ||
9337       N->getOpcode() == ISD::SELECT_CC) {
9338     // If we're looking at a comparison, then we need to make sure that the
9339     // high bits (all except for the first) don't matter the result.
9340     ISD::CondCode CC =
9341       cast<CondCodeSDNode>(N->getOperand(
9342         N->getOpcode() == ISD::SETCC ? 2 : 4))->get();
9343     unsigned OpBits = N->getOperand(0).getValueSizeInBits();
9344
9345     if (ISD::isSignedIntSetCC(CC)) {
9346       if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
9347           DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
9348         return SDValue();
9349     } else if (ISD::isUnsignedIntSetCC(CC)) {
9350       if (!DAG.MaskedValueIsZero(N->getOperand(0),
9351                                  APInt::getHighBitsSet(OpBits, OpBits-1)) ||
9352           !DAG.MaskedValueIsZero(N->getOperand(1),
9353                                  APInt::getHighBitsSet(OpBits, OpBits-1)))
9354         return SDValue();
9355     } else {
9356       // This is neither a signed nor an unsigned comparison, just make sure
9357       // that the high bits are equal.
9358       APInt Op1Zero, Op1One;
9359       APInt Op2Zero, Op2One;
9360       DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One);
9361       DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One);
9362
9363       // We don't really care about what is known about the first bit (if
9364       // anything), so clear it in all masks prior to comparing them.
9365       Op1Zero.clearBit(0); Op1One.clearBit(0);
9366       Op2Zero.clearBit(0); Op2One.clearBit(0);
9367
9368       if (Op1Zero != Op2Zero || Op1One != Op2One)
9369         return SDValue();
9370     }
9371   }
9372
9373   // We now know that the higher-order bits are irrelevant, we just need to
9374   // make sure that all of the intermediate operations are bit operations, and
9375   // all inputs are extensions.
9376   if (N->getOperand(0).getOpcode() != ISD::AND &&
9377       N->getOperand(0).getOpcode() != ISD::OR  &&
9378       N->getOperand(0).getOpcode() != ISD::XOR &&
9379       N->getOperand(0).getOpcode() != ISD::SELECT &&
9380       N->getOperand(0).getOpcode() != ISD::SELECT_CC &&
9381       N->getOperand(0).getOpcode() != ISD::TRUNCATE &&
9382       N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND &&
9383       N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND &&
9384       N->getOperand(0).getOpcode() != ISD::ANY_EXTEND)
9385     return SDValue();
9386
9387   if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) &&
9388       N->getOperand(1).getOpcode() != ISD::AND &&
9389       N->getOperand(1).getOpcode() != ISD::OR  &&
9390       N->getOperand(1).getOpcode() != ISD::XOR &&
9391       N->getOperand(1).getOpcode() != ISD::SELECT &&
9392       N->getOperand(1).getOpcode() != ISD::SELECT_CC &&
9393       N->getOperand(1).getOpcode() != ISD::TRUNCATE &&
9394       N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND &&
9395       N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND &&
9396       N->getOperand(1).getOpcode() != ISD::ANY_EXTEND)
9397     return SDValue();
9398
9399   SmallVector<SDValue, 4> Inputs;
9400   SmallVector<SDValue, 8> BinOps, PromOps;
9401   SmallPtrSet<SDNode *, 16> Visited;
9402
9403   for (unsigned i = 0; i < 2; ++i) {
9404     if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9405           N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9406           N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
9407           N->getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
9408         isa<ConstantSDNode>(N->getOperand(i)))
9409       Inputs.push_back(N->getOperand(i));
9410     else
9411       BinOps.push_back(N->getOperand(i));
9412
9413     if (N->getOpcode() == ISD::TRUNCATE)
9414       break;
9415   }
9416
9417   // Visit all inputs, collect all binary operations (and, or, xor and
9418   // select) that are all fed by extensions. 
9419   while (!BinOps.empty()) {
9420     SDValue BinOp = BinOps.back();
9421     BinOps.pop_back();
9422
9423     if (!Visited.insert(BinOp.getNode()).second)
9424       continue;
9425
9426     PromOps.push_back(BinOp);
9427
9428     for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
9429       // The condition of the select is not promoted.
9430       if (BinOp.getOpcode() == ISD::SELECT && i == 0)
9431         continue;
9432       if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
9433         continue;
9434
9435       if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9436             BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9437             BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
9438            BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
9439           isa<ConstantSDNode>(BinOp.getOperand(i))) {
9440         Inputs.push_back(BinOp.getOperand(i)); 
9441       } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
9442                  BinOp.getOperand(i).getOpcode() == ISD::OR  ||
9443                  BinOp.getOperand(i).getOpcode() == ISD::XOR ||
9444                  BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
9445                  BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC ||
9446                  BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
9447                  BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9448                  BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9449                  BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) {
9450         BinOps.push_back(BinOp.getOperand(i));
9451       } else {
9452         // We have an input that is not an extension or another binary
9453         // operation; we'll abort this transformation.
9454         return SDValue();
9455       }
9456     }
9457   }
9458
9459   // Make sure that this is a self-contained cluster of operations (which
9460   // is not quite the same thing as saying that everything has only one
9461   // use).
9462   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9463     if (isa<ConstantSDNode>(Inputs[i]))
9464       continue;
9465
9466     for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
9467                               UE = Inputs[i].getNode()->use_end();
9468          UI != UE; ++UI) {
9469       SDNode *User = *UI;
9470       if (User != N && !Visited.count(User))
9471         return SDValue();
9472
9473       // Make sure that we're not going to promote the non-output-value
9474       // operand(s) or SELECT or SELECT_CC.
9475       // FIXME: Although we could sometimes handle this, and it does occur in
9476       // practice that one of the condition inputs to the select is also one of
9477       // the outputs, we currently can't deal with this.
9478       if (User->getOpcode() == ISD::SELECT) {
9479         if (User->getOperand(0) == Inputs[i])
9480           return SDValue();
9481       } else if (User->getOpcode() == ISD::SELECT_CC) {
9482         if (User->getOperand(0) == Inputs[i] ||
9483             User->getOperand(1) == Inputs[i])
9484           return SDValue();
9485       }
9486     }
9487   }
9488
9489   for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
9490     for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
9491                               UE = PromOps[i].getNode()->use_end();
9492          UI != UE; ++UI) {
9493       SDNode *User = *UI;
9494       if (User != N && !Visited.count(User))
9495         return SDValue();
9496
9497       // Make sure that we're not going to promote the non-output-value
9498       // operand(s) or SELECT or SELECT_CC.
9499       // FIXME: Although we could sometimes handle this, and it does occur in
9500       // practice that one of the condition inputs to the select is also one of
9501       // the outputs, we currently can't deal with this.
9502       if (User->getOpcode() == ISD::SELECT) {
9503         if (User->getOperand(0) == PromOps[i])
9504           return SDValue();
9505       } else if (User->getOpcode() == ISD::SELECT_CC) {
9506         if (User->getOperand(0) == PromOps[i] ||
9507             User->getOperand(1) == PromOps[i])
9508           return SDValue();
9509       }
9510     }
9511   }
9512
9513   // Replace all inputs with the extension operand.
9514   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9515     // Constants may have users outside the cluster of to-be-promoted nodes,
9516     // and so we need to replace those as we do the promotions.
9517     if (isa<ConstantSDNode>(Inputs[i]))
9518       continue;
9519     else
9520       DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0)); 
9521   }
9522
9523   // Replace all operations (these are all the same, but have a different
9524   // (i1) return type). DAG.getNode will validate that the types of
9525   // a binary operator match, so go through the list in reverse so that
9526   // we've likely promoted both operands first. Any intermediate truncations or
9527   // extensions disappear.
9528   while (!PromOps.empty()) {
9529     SDValue PromOp = PromOps.back();
9530     PromOps.pop_back();
9531
9532     if (PromOp.getOpcode() == ISD::TRUNCATE ||
9533         PromOp.getOpcode() == ISD::SIGN_EXTEND ||
9534         PromOp.getOpcode() == ISD::ZERO_EXTEND ||
9535         PromOp.getOpcode() == ISD::ANY_EXTEND) {
9536       if (!isa<ConstantSDNode>(PromOp.getOperand(0)) &&
9537           PromOp.getOperand(0).getValueType() != MVT::i1) {
9538         // The operand is not yet ready (see comment below).
9539         PromOps.insert(PromOps.begin(), PromOp);
9540         continue;
9541       }
9542
9543       SDValue RepValue = PromOp.getOperand(0);
9544       if (isa<ConstantSDNode>(RepValue))
9545         RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue);
9546
9547       DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue);
9548       continue;
9549     }
9550
9551     unsigned C;
9552     switch (PromOp.getOpcode()) {
9553     default:             C = 0; break;
9554     case ISD::SELECT:    C = 1; break;
9555     case ISD::SELECT_CC: C = 2; break;
9556     }
9557
9558     if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
9559          PromOp.getOperand(C).getValueType() != MVT::i1) ||
9560         (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
9561          PromOp.getOperand(C+1).getValueType() != MVT::i1)) {
9562       // The to-be-promoted operands of this node have not yet been
9563       // promoted (this should be rare because we're going through the
9564       // list backward, but if one of the operands has several users in
9565       // this cluster of to-be-promoted nodes, it is possible).
9566       PromOps.insert(PromOps.begin(), PromOp);
9567       continue;
9568     }
9569
9570     SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
9571                                 PromOp.getNode()->op_end());
9572
9573     // If there are any constant inputs, make sure they're replaced now.
9574     for (unsigned i = 0; i < 2; ++i)
9575       if (isa<ConstantSDNode>(Ops[C+i]))
9576         Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]);
9577
9578     DAG.ReplaceAllUsesOfValueWith(PromOp,
9579       DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops));
9580   }
9581
9582   // Now we're left with the initial truncation itself.
9583   if (N->getOpcode() == ISD::TRUNCATE)
9584     return N->getOperand(0);
9585
9586   // Otherwise, this is a comparison. The operands to be compared have just
9587   // changed type (to i1), but everything else is the same.
9588   return SDValue(N, 0);
9589 }
9590
9591 SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N,
9592                                                   DAGCombinerInfo &DCI) const {
9593   SelectionDAG &DAG = DCI.DAG;
9594   SDLoc dl(N);
9595
9596   // If we're tracking CR bits, we need to be careful that we don't have:
9597   //   zext(binary-ops(trunc(x), trunc(y)))
9598   // or
9599   //   zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...)
9600   // such that we're unnecessarily moving things into CR bits that can more
9601   // efficiently stay in GPRs. Note that if we're not certain that the high
9602   // bits are set as required by the final extension, we still may need to do
9603   // some masking to get the proper behavior.
9604
9605   // This same functionality is important on PPC64 when dealing with
9606   // 32-to-64-bit extensions; these occur often when 32-bit values are used as
9607   // the return values of functions. Because it is so similar, it is handled
9608   // here as well.
9609
9610   if (N->getValueType(0) != MVT::i32 &&
9611       N->getValueType(0) != MVT::i64)
9612     return SDValue();
9613
9614   if (!((N->getOperand(0).getValueType() == MVT::i1 && Subtarget.useCRBits()) ||
9615         (N->getOperand(0).getValueType() == MVT::i32 && Subtarget.isPPC64())))
9616     return SDValue();
9617
9618   if (N->getOperand(0).getOpcode() != ISD::AND &&
9619       N->getOperand(0).getOpcode() != ISD::OR  &&
9620       N->getOperand(0).getOpcode() != ISD::XOR &&
9621       N->getOperand(0).getOpcode() != ISD::SELECT &&
9622       N->getOperand(0).getOpcode() != ISD::SELECT_CC)
9623     return SDValue();
9624
9625   SmallVector<SDValue, 4> Inputs;
9626   SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps;
9627   SmallPtrSet<SDNode *, 16> Visited;
9628
9629   // Visit all inputs, collect all binary operations (and, or, xor and
9630   // select) that are all fed by truncations. 
9631   while (!BinOps.empty()) {
9632     SDValue BinOp = BinOps.back();
9633     BinOps.pop_back();
9634
9635     if (!Visited.insert(BinOp.getNode()).second)
9636       continue;
9637
9638     PromOps.push_back(BinOp);
9639
9640     for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
9641       // The condition of the select is not promoted.
9642       if (BinOp.getOpcode() == ISD::SELECT && i == 0)
9643         continue;
9644       if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
9645         continue;
9646
9647       if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
9648           isa<ConstantSDNode>(BinOp.getOperand(i))) {
9649         Inputs.push_back(BinOp.getOperand(i)); 
9650       } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
9651                  BinOp.getOperand(i).getOpcode() == ISD::OR  ||
9652                  BinOp.getOperand(i).getOpcode() == ISD::XOR ||
9653                  BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
9654                  BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) {
9655         BinOps.push_back(BinOp.getOperand(i));
9656       } else {
9657         // We have an input that is not a truncation or another binary
9658         // operation; we'll abort this transformation.
9659         return SDValue();
9660       }
9661     }
9662   }
9663
9664   // The operands of a select that must be truncated when the select is
9665   // promoted because the operand is actually part of the to-be-promoted set.
9666   DenseMap<SDNode *, EVT> SelectTruncOp[2];
9667
9668   // Make sure that this is a self-contained cluster of operations (which
9669   // is not quite the same thing as saying that everything has only one
9670   // use).
9671   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9672     if (isa<ConstantSDNode>(Inputs[i]))
9673       continue;
9674
9675     for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
9676                               UE = Inputs[i].getNode()->use_end();
9677          UI != UE; ++UI) {
9678       SDNode *User = *UI;
9679       if (User != N && !Visited.count(User))
9680         return SDValue();
9681
9682       // If we're going to promote the non-output-value operand(s) or SELECT or
9683       // SELECT_CC, record them for truncation.
9684       if (User->getOpcode() == ISD::SELECT) {
9685         if (User->getOperand(0) == Inputs[i])
9686           SelectTruncOp[0].insert(std::make_pair(User,
9687                                     User->getOperand(0).getValueType()));
9688       } else if (User->getOpcode() == ISD::SELECT_CC) {
9689         if (User->getOperand(0) == Inputs[i])
9690           SelectTruncOp[0].insert(std::make_pair(User,
9691                                     User->getOperand(0).getValueType()));
9692         if (User->getOperand(1) == Inputs[i])
9693           SelectTruncOp[1].insert(std::make_pair(User,
9694                                     User->getOperand(1).getValueType()));
9695       }
9696     }
9697   }
9698
9699   for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
9700     for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
9701                               UE = PromOps[i].getNode()->use_end();
9702          UI != UE; ++UI) {
9703       SDNode *User = *UI;
9704       if (User != N && !Visited.count(User))
9705         return SDValue();
9706
9707       // If we're going to promote the non-output-value operand(s) or SELECT or
9708       // SELECT_CC, record them for truncation.
9709       if (User->getOpcode() == ISD::SELECT) {
9710         if (User->getOperand(0) == PromOps[i])
9711           SelectTruncOp[0].insert(std::make_pair(User,
9712                                     User->getOperand(0).getValueType()));
9713       } else if (User->getOpcode() == ISD::SELECT_CC) {
9714         if (User->getOperand(0) == PromOps[i])
9715           SelectTruncOp[0].insert(std::make_pair(User,
9716                                     User->getOperand(0).getValueType()));
9717         if (User->getOperand(1) == PromOps[i])
9718           SelectTruncOp[1].insert(std::make_pair(User,
9719                                     User->getOperand(1).getValueType()));
9720       }
9721     }
9722   }
9723
9724   unsigned PromBits = N->getOperand(0).getValueSizeInBits();
9725   bool ReallyNeedsExt = false;
9726   if (N->getOpcode() != ISD::ANY_EXTEND) {
9727     // If all of the inputs are not already sign/zero extended, then
9728     // we'll still need to do that at the end.
9729     for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9730       if (isa<ConstantSDNode>(Inputs[i]))
9731         continue;
9732
9733       unsigned OpBits =
9734         Inputs[i].getOperand(0).getValueSizeInBits();
9735       assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
9736
9737       if ((N->getOpcode() == ISD::ZERO_EXTEND &&
9738            !DAG.MaskedValueIsZero(Inputs[i].getOperand(0),
9739                                   APInt::getHighBitsSet(OpBits,
9740                                                         OpBits-PromBits))) ||
9741           (N->getOpcode() == ISD::SIGN_EXTEND &&
9742            DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) <
9743              (OpBits-(PromBits-1)))) {
9744         ReallyNeedsExt = true;
9745         break;
9746       }
9747     }
9748   }
9749
9750   // Replace all inputs, either with the truncation operand, or a
9751   // truncation or extension to the final output type.
9752   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9753     // Constant inputs need to be replaced with the to-be-promoted nodes that
9754     // use them because they might have users outside of the cluster of
9755     // promoted nodes.
9756     if (isa<ConstantSDNode>(Inputs[i]))
9757       continue;
9758
9759     SDValue InSrc = Inputs[i].getOperand(0);
9760     if (Inputs[i].getValueType() == N->getValueType(0))
9761       DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc);
9762     else if (N->getOpcode() == ISD::SIGN_EXTEND)
9763       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
9764         DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0)));
9765     else if (N->getOpcode() == ISD::ZERO_EXTEND)
9766       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
9767         DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0)));
9768     else
9769       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
9770         DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0)));
9771   }
9772
9773   // Replace all operations (these are all the same, but have a different
9774   // (promoted) return type). DAG.getNode will validate that the types of
9775   // a binary operator match, so go through the list in reverse so that
9776   // we've likely promoted both operands first.
9777   while (!PromOps.empty()) {
9778     SDValue PromOp = PromOps.back();
9779     PromOps.pop_back();
9780
9781     unsigned C;
9782     switch (PromOp.getOpcode()) {
9783     default:             C = 0; break;
9784     case ISD::SELECT:    C = 1; break;
9785     case ISD::SELECT_CC: C = 2; break;
9786     }
9787
9788     if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
9789          PromOp.getOperand(C).getValueType() != N->getValueType(0)) ||
9790         (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
9791          PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) {
9792       // The to-be-promoted operands of this node have not yet been
9793       // promoted (this should be rare because we're going through the
9794       // list backward, but if one of the operands has several users in
9795       // this cluster of to-be-promoted nodes, it is possible).
9796       PromOps.insert(PromOps.begin(), PromOp);
9797       continue;
9798     }
9799
9800     // For SELECT and SELECT_CC nodes, we do a similar check for any
9801     // to-be-promoted comparison inputs.
9802     if (PromOp.getOpcode() == ISD::SELECT ||
9803         PromOp.getOpcode() == ISD::SELECT_CC) {
9804       if ((SelectTruncOp[0].count(PromOp.getNode()) &&
9805            PromOp.getOperand(0).getValueType() != N->getValueType(0)) ||
9806           (SelectTruncOp[1].count(PromOp.getNode()) &&
9807            PromOp.getOperand(1).getValueType() != N->getValueType(0))) {
9808         PromOps.insert(PromOps.begin(), PromOp);
9809         continue;
9810       }
9811     }
9812
9813     SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
9814                                 PromOp.getNode()->op_end());
9815
9816     // If this node has constant inputs, then they'll need to be promoted here.
9817     for (unsigned i = 0; i < 2; ++i) {
9818       if (!isa<ConstantSDNode>(Ops[C+i]))
9819         continue;
9820       if (Ops[C+i].getValueType() == N->getValueType(0))
9821         continue;
9822
9823       if (N->getOpcode() == ISD::SIGN_EXTEND)
9824         Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
9825       else if (N->getOpcode() == ISD::ZERO_EXTEND)
9826         Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
9827       else
9828         Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
9829     }
9830
9831     // If we've promoted the comparison inputs of a SELECT or SELECT_CC,
9832     // truncate them again to the original value type.
9833     if (PromOp.getOpcode() == ISD::SELECT ||
9834         PromOp.getOpcode() == ISD::SELECT_CC) {
9835       auto SI0 = SelectTruncOp[0].find(PromOp.getNode());
9836       if (SI0 != SelectTruncOp[0].end())
9837         Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]);
9838       auto SI1 = SelectTruncOp[1].find(PromOp.getNode());
9839       if (SI1 != SelectTruncOp[1].end())
9840         Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]);
9841     }
9842
9843     DAG.ReplaceAllUsesOfValueWith(PromOp,
9844       DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops));
9845   }
9846
9847   // Now we're left with the initial extension itself.
9848   if (!ReallyNeedsExt)
9849     return N->getOperand(0);
9850
9851   // To zero extend, just mask off everything except for the first bit (in the
9852   // i1 case).
9853   if (N->getOpcode() == ISD::ZERO_EXTEND)
9854     return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0),
9855                        DAG.getConstant(APInt::getLowBitsSet(
9856                                          N->getValueSizeInBits(0), PromBits),
9857                                        dl, N->getValueType(0)));
9858
9859   assert(N->getOpcode() == ISD::SIGN_EXTEND &&
9860          "Invalid extension type");
9861   EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0), DAG.getDataLayout());
9862   SDValue ShiftCst =
9863     DAG.getConstant(N->getValueSizeInBits(0) - PromBits, dl, ShiftAmountTy);
9864   return DAG.getNode(ISD::SRA, dl, N->getValueType(0), 
9865                      DAG.getNode(ISD::SHL, dl, N->getValueType(0),
9866                                  N->getOperand(0), ShiftCst), ShiftCst);
9867 }
9868
9869 SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N,
9870                                               DAGCombinerInfo &DCI) const {
9871   assert((N->getOpcode() == ISD::SINT_TO_FP ||
9872           N->getOpcode() == ISD::UINT_TO_FP) &&
9873          "Need an int -> FP conversion node here");
9874
9875   if (!Subtarget.has64BitSupport())
9876     return SDValue();
9877
9878   SelectionDAG &DAG = DCI.DAG;
9879   SDLoc dl(N);
9880   SDValue Op(N, 0);
9881
9882   // Don't handle ppc_fp128 here or i1 conversions.
9883   if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
9884     return SDValue();
9885   if (Op.getOperand(0).getValueType() == MVT::i1)
9886     return SDValue();
9887
9888   // For i32 intermediate values, unfortunately, the conversion functions
9889   // leave the upper 32 bits of the value are undefined. Within the set of
9890   // scalar instructions, we have no method for zero- or sign-extending the
9891   // value. Thus, we cannot handle i32 intermediate values here.
9892   if (Op.getOperand(0).getValueType() == MVT::i32)
9893     return SDValue();
9894
9895   assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
9896          "UINT_TO_FP is supported only with FPCVT");
9897
9898   // If we have FCFIDS, then use it when converting to single-precision.
9899   // Otherwise, convert to double-precision and then round.
9900   unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
9901                        ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
9902                                                             : PPCISD::FCFIDS)
9903                        : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
9904                                                             : PPCISD::FCFID);
9905   MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
9906                   ? MVT::f32
9907                   : MVT::f64;
9908
9909   // If we're converting from a float, to an int, and back to a float again,
9910   // then we don't need the store/load pair at all.
9911   if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT &&
9912        Subtarget.hasFPCVT()) ||
9913       (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) {
9914     SDValue Src = Op.getOperand(0).getOperand(0);
9915     if (Src.getValueType() == MVT::f32) {
9916       Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
9917       DCI.AddToWorklist(Src.getNode());
9918     }
9919
9920     unsigned FCTOp =
9921       Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
9922                                                         PPCISD::FCTIDUZ;
9923
9924     SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src);
9925     SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp);
9926
9927     if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) {
9928       FP = DAG.getNode(ISD::FP_ROUND, dl,
9929                        MVT::f32, FP, DAG.getIntPtrConstant(0, dl));
9930       DCI.AddToWorklist(FP.getNode());
9931     }
9932
9933     return FP;
9934   }
9935
9936   return SDValue();
9937 }
9938
9939 // expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for
9940 // builtins) into loads with swaps.
9941 SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N,
9942                                               DAGCombinerInfo &DCI) const {
9943   SelectionDAG &DAG = DCI.DAG;
9944   SDLoc dl(N);
9945   SDValue Chain;
9946   SDValue Base;
9947   MachineMemOperand *MMO;
9948
9949   switch (N->getOpcode()) {
9950   default:
9951     llvm_unreachable("Unexpected opcode for little endian VSX load");
9952   case ISD::LOAD: {
9953     LoadSDNode *LD = cast<LoadSDNode>(N);
9954     Chain = LD->getChain();
9955     Base = LD->getBasePtr();
9956     MMO = LD->getMemOperand();
9957     // If the MMO suggests this isn't a load of a full vector, leave
9958     // things alone.  For a built-in, we have to make the change for
9959     // correctness, so if there is a size problem that will be a bug.
9960     if (MMO->getSize() < 16)
9961       return SDValue();
9962     break;
9963   }
9964   case ISD::INTRINSIC_W_CHAIN: {
9965     MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
9966     Chain = Intrin->getChain();
9967     // Similarly to the store case below, Intrin->getBasePtr() doesn't get
9968     // us what we want. Get operand 2 instead.
9969     Base = Intrin->getOperand(2);
9970     MMO = Intrin->getMemOperand();
9971     break;
9972   }
9973   }
9974
9975   MVT VecTy = N->getValueType(0).getSimpleVT();
9976   SDValue LoadOps[] = { Chain, Base };
9977   SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl,
9978                                          DAG.getVTList(VecTy, MVT::Other),
9979                                          LoadOps, VecTy, MMO);
9980   DCI.AddToWorklist(Load.getNode());
9981   Chain = Load.getValue(1);
9982   SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
9983                              DAG.getVTList(VecTy, MVT::Other), Chain, Load);
9984   DCI.AddToWorklist(Swap.getNode());
9985   return Swap;
9986 }
9987
9988 // expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for
9989 // builtins) into stores with swaps.
9990 SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N,
9991                                                DAGCombinerInfo &DCI) const {
9992   SelectionDAG &DAG = DCI.DAG;
9993   SDLoc dl(N);
9994   SDValue Chain;
9995   SDValue Base;
9996   unsigned SrcOpnd;
9997   MachineMemOperand *MMO;
9998
9999   switch (N->getOpcode()) {
10000   default:
10001     llvm_unreachable("Unexpected opcode for little endian VSX store");
10002   case ISD::STORE: {
10003     StoreSDNode *ST = cast<StoreSDNode>(N);
10004     Chain = ST->getChain();
10005     Base = ST->getBasePtr();
10006     MMO = ST->getMemOperand();
10007     SrcOpnd = 1;
10008     // If the MMO suggests this isn't a store of a full vector, leave
10009     // things alone.  For a built-in, we have to make the change for
10010     // correctness, so if there is a size problem that will be a bug.
10011     if (MMO->getSize() < 16)
10012       return SDValue();
10013     break;
10014   }
10015   case ISD::INTRINSIC_VOID: {
10016     MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
10017     Chain = Intrin->getChain();
10018     // Intrin->getBasePtr() oddly does not get what we want.
10019     Base = Intrin->getOperand(3);
10020     MMO = Intrin->getMemOperand();
10021     SrcOpnd = 2;
10022     break;
10023   }
10024   }
10025
10026   SDValue Src = N->getOperand(SrcOpnd);
10027   MVT VecTy = Src.getValueType().getSimpleVT();
10028   SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
10029                              DAG.getVTList(VecTy, MVT::Other), Chain, Src);
10030   DCI.AddToWorklist(Swap.getNode());
10031   Chain = Swap.getValue(1);
10032   SDValue StoreOps[] = { Chain, Swap, Base };
10033   SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl,
10034                                           DAG.getVTList(MVT::Other),
10035                                           StoreOps, VecTy, MMO);
10036   DCI.AddToWorklist(Store.getNode());
10037   return Store;
10038 }
10039
10040 SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
10041                                              DAGCombinerInfo &DCI) const {
10042   SelectionDAG &DAG = DCI.DAG;
10043   SDLoc dl(N);
10044   switch (N->getOpcode()) {
10045   default: break;
10046   case PPCISD::SHL:
10047     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10048       if (C->isNullValue())   // 0 << V -> 0.
10049         return N->getOperand(0);
10050     }
10051     break;
10052   case PPCISD::SRL:
10053     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10054       if (C->isNullValue())   // 0 >>u V -> 0.
10055         return N->getOperand(0);
10056     }
10057     break;
10058   case PPCISD::SRA:
10059     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10060       if (C->isNullValue() ||   //  0 >>s V -> 0.
10061           C->isAllOnesValue())    // -1 >>s V -> -1.
10062         return N->getOperand(0);
10063     }
10064     break;
10065   case ISD::SIGN_EXTEND:
10066   case ISD::ZERO_EXTEND:
10067   case ISD::ANY_EXTEND: 
10068     return DAGCombineExtBoolTrunc(N, DCI);
10069   case ISD::TRUNCATE:
10070   case ISD::SETCC:
10071   case ISD::SELECT_CC:
10072     return DAGCombineTruncBoolExt(N, DCI);
10073   case ISD::SINT_TO_FP:
10074   case ISD::UINT_TO_FP:
10075     return combineFPToIntToFP(N, DCI);
10076   case ISD::STORE: {
10077     // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
10078     if (Subtarget.hasSTFIWX() && !cast<StoreSDNode>(N)->isTruncatingStore() &&
10079         N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
10080         N->getOperand(1).getValueType() == MVT::i32 &&
10081         N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
10082       SDValue Val = N->getOperand(1).getOperand(0);
10083       if (Val.getValueType() == MVT::f32) {
10084         Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
10085         DCI.AddToWorklist(Val.getNode());
10086       }
10087       Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
10088       DCI.AddToWorklist(Val.getNode());
10089
10090       SDValue Ops[] = {
10091         N->getOperand(0), Val, N->getOperand(2),
10092         DAG.getValueType(N->getOperand(1).getValueType())
10093       };
10094
10095       Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
10096               DAG.getVTList(MVT::Other), Ops,
10097               cast<StoreSDNode>(N)->getMemoryVT(),
10098               cast<StoreSDNode>(N)->getMemOperand());
10099       DCI.AddToWorklist(Val.getNode());
10100       return Val;
10101     }
10102
10103     // Turn STORE (BSWAP) -> sthbrx/stwbrx.
10104     if (cast<StoreSDNode>(N)->isUnindexed() &&
10105         N->getOperand(1).getOpcode() == ISD::BSWAP &&
10106         N->getOperand(1).getNode()->hasOneUse() &&
10107         (N->getOperand(1).getValueType() == MVT::i32 ||
10108          N->getOperand(1).getValueType() == MVT::i16 ||
10109          (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
10110           N->getOperand(1).getValueType() == MVT::i64))) {
10111       SDValue BSwapOp = N->getOperand(1).getOperand(0);
10112       // Do an any-extend to 32-bits if this is a half-word input.
10113       if (BSwapOp.getValueType() == MVT::i16)
10114         BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
10115
10116       SDValue Ops[] = {
10117         N->getOperand(0), BSwapOp, N->getOperand(2),
10118         DAG.getValueType(N->getOperand(1).getValueType())
10119       };
10120       return
10121         DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
10122                                 Ops, cast<StoreSDNode>(N)->getMemoryVT(),
10123                                 cast<StoreSDNode>(N)->getMemOperand());
10124     }
10125
10126     // For little endian, VSX stores require generating xxswapd/lxvd2x.
10127     EVT VT = N->getOperand(1).getValueType();
10128     if (VT.isSimple()) {
10129       MVT StoreVT = VT.getSimpleVT();
10130       if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
10131           (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 ||
10132            StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32))
10133         return expandVSXStoreForLE(N, DCI);
10134     }
10135     break;
10136   }
10137   case ISD::LOAD: {
10138     LoadSDNode *LD = cast<LoadSDNode>(N);
10139     EVT VT = LD->getValueType(0);
10140
10141     // For little endian, VSX loads require generating lxvd2x/xxswapd.
10142     if (VT.isSimple()) {
10143       MVT LoadVT = VT.getSimpleVT();
10144       if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
10145           (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 ||
10146            LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32))
10147         return expandVSXLoadForLE(N, DCI);
10148     }
10149
10150     EVT MemVT = LD->getMemoryVT();
10151     Type *Ty = MemVT.getTypeForEVT(*DAG.getContext());
10152     unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
10153     Type *STy = MemVT.getScalarType().getTypeForEVT(*DAG.getContext());
10154     unsigned ScalarABIAlignment = getDataLayout()->getABITypeAlignment(STy);
10155     if (LD->isUnindexed() && VT.isVector() &&
10156         ((Subtarget.hasAltivec() && ISD::isNON_EXTLoad(N) &&
10157           // P8 and later hardware should just use LOAD.
10158           !Subtarget.hasP8Vector() && (VT == MVT::v16i8 || VT == MVT::v8i16 ||
10159                                        VT == MVT::v4i32 || VT == MVT::v4f32)) ||
10160          (Subtarget.hasQPX() && (VT == MVT::v4f64 || VT == MVT::v4f32) &&
10161           LD->getAlignment() >= ScalarABIAlignment)) &&
10162         LD->getAlignment() < ABIAlignment) {
10163       // This is a type-legal unaligned Altivec or QPX load.
10164       SDValue Chain = LD->getChain();
10165       SDValue Ptr = LD->getBasePtr();
10166       bool isLittleEndian = Subtarget.isLittleEndian();
10167
10168       // This implements the loading of unaligned vectors as described in
10169       // the venerable Apple Velocity Engine overview. Specifically:
10170       // https://developer.apple.com/hardwaredrivers/ve/alignment.html
10171       // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
10172       //
10173       // The general idea is to expand a sequence of one or more unaligned
10174       // loads into an alignment-based permutation-control instruction (lvsl
10175       // or lvsr), a series of regular vector loads (which always truncate
10176       // their input address to an aligned address), and a series of
10177       // permutations.  The results of these permutations are the requested
10178       // loaded values.  The trick is that the last "extra" load is not taken
10179       // from the address you might suspect (sizeof(vector) bytes after the
10180       // last requested load), but rather sizeof(vector) - 1 bytes after the
10181       // last requested vector. The point of this is to avoid a page fault if
10182       // the base address happened to be aligned. This works because if the
10183       // base address is aligned, then adding less than a full vector length
10184       // will cause the last vector in the sequence to be (re)loaded.
10185       // Otherwise, the next vector will be fetched as you might suspect was
10186       // necessary.
10187
10188       // We might be able to reuse the permutation generation from
10189       // a different base address offset from this one by an aligned amount.
10190       // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
10191       // optimization later.
10192       Intrinsic::ID Intr, IntrLD, IntrPerm;
10193       MVT PermCntlTy, PermTy, LDTy;
10194       if (Subtarget.hasAltivec()) {
10195         Intr = isLittleEndian ?  Intrinsic::ppc_altivec_lvsr :
10196                                  Intrinsic::ppc_altivec_lvsl;
10197         IntrLD = Intrinsic::ppc_altivec_lvx;
10198         IntrPerm = Intrinsic::ppc_altivec_vperm;
10199         PermCntlTy = MVT::v16i8;
10200         PermTy = MVT::v4i32;
10201         LDTy = MVT::v4i32;
10202       } else {
10203         Intr =   MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlpcld :
10204                                        Intrinsic::ppc_qpx_qvlpcls;
10205         IntrLD = MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlfd :
10206                                        Intrinsic::ppc_qpx_qvlfs;
10207         IntrPerm = Intrinsic::ppc_qpx_qvfperm;
10208         PermCntlTy = MVT::v4f64;
10209         PermTy = MVT::v4f64;
10210         LDTy = MemVT.getSimpleVT();
10211       }
10212
10213       SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, PermCntlTy);
10214
10215       // Create the new MMO for the new base load. It is like the original MMO,
10216       // but represents an area in memory almost twice the vector size centered
10217       // on the original address. If the address is unaligned, we might start
10218       // reading up to (sizeof(vector)-1) bytes below the address of the
10219       // original unaligned load.
10220       MachineFunction &MF = DAG.getMachineFunction();
10221       MachineMemOperand *BaseMMO =
10222         MF.getMachineMemOperand(LD->getMemOperand(), -MemVT.getStoreSize()+1,
10223                                 2*MemVT.getStoreSize()-1);
10224
10225       // Create the new base load.
10226       SDValue LDXIntID =
10227           DAG.getTargetConstant(IntrLD, dl, getPointerTy(MF.getDataLayout()));
10228       SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr };
10229       SDValue BaseLoad =
10230         DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
10231                                 DAG.getVTList(PermTy, MVT::Other),
10232                                 BaseLoadOps, LDTy, BaseMMO);
10233
10234       // Note that the value of IncOffset (which is provided to the next
10235       // load's pointer info offset value, and thus used to calculate the
10236       // alignment), and the value of IncValue (which is actually used to
10237       // increment the pointer value) are different! This is because we
10238       // require the next load to appear to be aligned, even though it
10239       // is actually offset from the base pointer by a lesser amount.
10240       int IncOffset = VT.getSizeInBits() / 8;
10241       int IncValue = IncOffset;
10242
10243       // Walk (both up and down) the chain looking for another load at the real
10244       // (aligned) offset (the alignment of the other load does not matter in
10245       // this case). If found, then do not use the offset reduction trick, as
10246       // that will prevent the loads from being later combined (as they would
10247       // otherwise be duplicates).
10248       if (!findConsecutiveLoad(LD, DAG))
10249         --IncValue;
10250
10251       SDValue Increment =
10252           DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout()));
10253       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
10254
10255       MachineMemOperand *ExtraMMO =
10256         MF.getMachineMemOperand(LD->getMemOperand(),
10257                                 1, 2*MemVT.getStoreSize()-1);
10258       SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr };
10259       SDValue ExtraLoad =
10260         DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
10261                                 DAG.getVTList(PermTy, MVT::Other),
10262                                 ExtraLoadOps, LDTy, ExtraMMO);
10263
10264       SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
10265         BaseLoad.getValue(1), ExtraLoad.getValue(1));
10266
10267       // Because vperm has a big-endian bias, we must reverse the order
10268       // of the input vectors and complement the permute control vector
10269       // when generating little endian code.  We have already handled the
10270       // latter by using lvsr instead of lvsl, so just reverse BaseLoad
10271       // and ExtraLoad here.
10272       SDValue Perm;
10273       if (isLittleEndian)
10274         Perm = BuildIntrinsicOp(IntrPerm,
10275                                 ExtraLoad, BaseLoad, PermCntl, DAG, dl);
10276       else
10277         Perm = BuildIntrinsicOp(IntrPerm,
10278                                 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
10279
10280       if (VT != PermTy)
10281         Perm = Subtarget.hasAltivec() ?
10282                  DAG.getNode(ISD::BITCAST, dl, VT, Perm) :
10283                  DAG.getNode(ISD::FP_ROUND, dl, VT, Perm, // QPX
10284                                DAG.getTargetConstant(1, dl, MVT::i64));
10285                                // second argument is 1 because this rounding
10286                                // is always exact.
10287
10288       // The output of the permutation is our loaded result, the TokenFactor is
10289       // our new chain.
10290       DCI.CombineTo(N, Perm, TF);
10291       return SDValue(N, 0);
10292     }
10293     }
10294     break;
10295     case ISD::INTRINSIC_WO_CHAIN: {
10296       bool isLittleEndian = Subtarget.isLittleEndian();
10297       unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
10298       Intrinsic::ID Intr = (isLittleEndian ? Intrinsic::ppc_altivec_lvsr
10299                                            : Intrinsic::ppc_altivec_lvsl);
10300       if ((IID == Intr ||
10301            IID == Intrinsic::ppc_qpx_qvlpcld  ||
10302            IID == Intrinsic::ppc_qpx_qvlpcls) &&
10303         N->getOperand(1)->getOpcode() == ISD::ADD) {
10304         SDValue Add = N->getOperand(1);
10305
10306         int Bits = IID == Intrinsic::ppc_qpx_qvlpcld ?
10307                    5 /* 32 byte alignment */ : 4 /* 16 byte alignment */;
10308
10309         if (DAG.MaskedValueIsZero(
10310                 Add->getOperand(1),
10311                 APInt::getAllOnesValue(Bits /* alignment */)
10312                     .zext(
10313                         Add.getValueType().getScalarType().getSizeInBits()))) {
10314           SDNode *BasePtr = Add->getOperand(0).getNode();
10315           for (SDNode::use_iterator UI = BasePtr->use_begin(),
10316                                     UE = BasePtr->use_end();
10317                UI != UE; ++UI) {
10318             if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10319                 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() == IID) {
10320               // We've found another LVSL/LVSR, and this address is an aligned
10321               // multiple of that one. The results will be the same, so use the
10322               // one we've just found instead.
10323
10324               return SDValue(*UI, 0);
10325             }
10326           }
10327         }
10328
10329         if (isa<ConstantSDNode>(Add->getOperand(1))) {
10330           SDNode *BasePtr = Add->getOperand(0).getNode();
10331           for (SDNode::use_iterator UI = BasePtr->use_begin(),
10332                UE = BasePtr->use_end(); UI != UE; ++UI) {
10333             if (UI->getOpcode() == ISD::ADD &&
10334                 isa<ConstantSDNode>(UI->getOperand(1)) &&
10335                 (cast<ConstantSDNode>(Add->getOperand(1))->getZExtValue() -
10336                  cast<ConstantSDNode>(UI->getOperand(1))->getZExtValue()) %
10337                 (1ULL << Bits) == 0) {
10338               SDNode *OtherAdd = *UI;
10339               for (SDNode::use_iterator VI = OtherAdd->use_begin(),
10340                    VE = OtherAdd->use_end(); VI != VE; ++VI) {
10341                 if (VI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10342                     cast<ConstantSDNode>(VI->getOperand(0))->getZExtValue() == IID) {
10343                   return SDValue(*VI, 0);
10344                 }
10345               }
10346             }
10347           }
10348         }
10349       }
10350     }
10351
10352     break;
10353   case ISD::INTRINSIC_W_CHAIN: {
10354     // For little endian, VSX loads require generating lxvd2x/xxswapd.
10355     if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
10356       switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10357       default:
10358         break;
10359       case Intrinsic::ppc_vsx_lxvw4x:
10360       case Intrinsic::ppc_vsx_lxvd2x:
10361         return expandVSXLoadForLE(N, DCI);
10362       }
10363     }
10364     break;
10365   }
10366   case ISD::INTRINSIC_VOID: {
10367     // For little endian, VSX stores require generating xxswapd/stxvd2x.
10368     if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
10369       switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10370       default:
10371         break;
10372       case Intrinsic::ppc_vsx_stxvw4x:
10373       case Intrinsic::ppc_vsx_stxvd2x:
10374         return expandVSXStoreForLE(N, DCI);
10375       }
10376     }
10377     break;
10378   }
10379   case ISD::BSWAP:
10380     // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
10381     if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
10382         N->getOperand(0).hasOneUse() &&
10383         (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
10384          (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
10385           N->getValueType(0) == MVT::i64))) {
10386       SDValue Load = N->getOperand(0);
10387       LoadSDNode *LD = cast<LoadSDNode>(Load);
10388       // Create the byte-swapping load.
10389       SDValue Ops[] = {
10390         LD->getChain(),    // Chain
10391         LD->getBasePtr(),  // Ptr
10392         DAG.getValueType(N->getValueType(0)) // VT
10393       };
10394       SDValue BSLoad =
10395         DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
10396                                 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
10397                                               MVT::i64 : MVT::i32, MVT::Other),
10398                                 Ops, LD->getMemoryVT(), LD->getMemOperand());
10399
10400       // If this is an i16 load, insert the truncate.
10401       SDValue ResVal = BSLoad;
10402       if (N->getValueType(0) == MVT::i16)
10403         ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
10404
10405       // First, combine the bswap away.  This makes the value produced by the
10406       // load dead.
10407       DCI.CombineTo(N, ResVal);
10408
10409       // Next, combine the load away, we give it a bogus result value but a real
10410       // chain result.  The result value is dead because the bswap is dead.
10411       DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
10412
10413       // Return N so it doesn't get rechecked!
10414       return SDValue(N, 0);
10415     }
10416
10417     break;
10418   case PPCISD::VCMP: {
10419     // If a VCMPo node already exists with exactly the same operands as this
10420     // node, use its result instead of this node (VCMPo computes both a CR6 and
10421     // a normal output).
10422     //
10423     if (!N->getOperand(0).hasOneUse() &&
10424         !N->getOperand(1).hasOneUse() &&
10425         !N->getOperand(2).hasOneUse()) {
10426
10427       // Scan all of the users of the LHS, looking for VCMPo's that match.
10428       SDNode *VCMPoNode = nullptr;
10429
10430       SDNode *LHSN = N->getOperand(0).getNode();
10431       for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
10432            UI != E; ++UI)
10433         if (UI->getOpcode() == PPCISD::VCMPo &&
10434             UI->getOperand(1) == N->getOperand(1) &&
10435             UI->getOperand(2) == N->getOperand(2) &&
10436             UI->getOperand(0) == N->getOperand(0)) {
10437           VCMPoNode = *UI;
10438           break;
10439         }
10440
10441       // If there is no VCMPo node, or if the flag value has a single use, don't
10442       // transform this.
10443       if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
10444         break;
10445
10446       // Look at the (necessarily single) use of the flag value.  If it has a
10447       // chain, this transformation is more complex.  Note that multiple things
10448       // could use the value result, which we should ignore.
10449       SDNode *FlagUser = nullptr;
10450       for (SDNode::use_iterator UI = VCMPoNode->use_begin();
10451            FlagUser == nullptr; ++UI) {
10452         assert(UI != VCMPoNode->use_end() && "Didn't find user!");
10453         SDNode *User = *UI;
10454         for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
10455           if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
10456             FlagUser = User;
10457             break;
10458           }
10459         }
10460       }
10461
10462       // If the user is a MFOCRF instruction, we know this is safe.
10463       // Otherwise we give up for right now.
10464       if (FlagUser->getOpcode() == PPCISD::MFOCRF)
10465         return SDValue(VCMPoNode, 0);
10466     }
10467     break;
10468   }
10469   case ISD::BRCOND: {
10470     SDValue Cond = N->getOperand(1);
10471     SDValue Target = N->getOperand(2);
10472  
10473     if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10474         cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() ==
10475           Intrinsic::ppc_is_decremented_ctr_nonzero) {
10476
10477       // We now need to make the intrinsic dead (it cannot be instruction
10478       // selected).
10479       DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0));
10480       assert(Cond.getNode()->hasOneUse() &&
10481              "Counter decrement has more than one use");
10482
10483       return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other,
10484                          N->getOperand(0), Target);
10485     }
10486   }
10487   break;
10488   case ISD::BR_CC: {
10489     // If this is a branch on an altivec predicate comparison, lower this so
10490     // that we don't have to do a MFOCRF: instead, branch directly on CR6.  This
10491     // lowering is done pre-legalize, because the legalizer lowers the predicate
10492     // compare down to code that is difficult to reassemble.
10493     ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
10494     SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
10495
10496     // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
10497     // value. If so, pass-through the AND to get to the intrinsic.
10498     if (LHS.getOpcode() == ISD::AND &&
10499         LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10500         cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
10501           Intrinsic::ppc_is_decremented_ctr_nonzero &&
10502         isa<ConstantSDNode>(LHS.getOperand(1)) &&
10503         !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
10504           isZero())
10505       LHS = LHS.getOperand(0);
10506
10507     if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10508         cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
10509           Intrinsic::ppc_is_decremented_ctr_nonzero &&
10510         isa<ConstantSDNode>(RHS)) {
10511       assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
10512              "Counter decrement comparison is not EQ or NE");
10513
10514       unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
10515       bool isBDNZ = (CC == ISD::SETEQ && Val) ||
10516                     (CC == ISD::SETNE && !Val);
10517
10518       // We now need to make the intrinsic dead (it cannot be instruction
10519       // selected).
10520       DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
10521       assert(LHS.getNode()->hasOneUse() &&
10522              "Counter decrement has more than one use");
10523
10524       return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
10525                          N->getOperand(0), N->getOperand(4));
10526     }
10527
10528     int CompareOpc;
10529     bool isDot;
10530
10531     if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10532         isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
10533         getAltivecCompareInfo(LHS, CompareOpc, isDot, Subtarget)) {
10534       assert(isDot && "Can't compare against a vector result!");
10535
10536       // If this is a comparison against something other than 0/1, then we know
10537       // that the condition is never/always true.
10538       unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
10539       if (Val != 0 && Val != 1) {
10540         if (CC == ISD::SETEQ)      // Cond never true, remove branch.
10541           return N->getOperand(0);
10542         // Always !=, turn it into an unconditional branch.
10543         return DAG.getNode(ISD::BR, dl, MVT::Other,
10544                            N->getOperand(0), N->getOperand(4));
10545       }
10546
10547       bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
10548
10549       // Create the PPCISD altivec 'dot' comparison node.
10550       SDValue Ops[] = {
10551         LHS.getOperand(2),  // LHS of compare
10552         LHS.getOperand(3),  // RHS of compare
10553         DAG.getConstant(CompareOpc, dl, MVT::i32)
10554       };
10555       EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
10556       SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
10557
10558       // Unpack the result based on how the target uses it.
10559       PPC::Predicate CompOpc;
10560       switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
10561       default:  // Can't happen, don't crash on invalid number though.
10562       case 0:   // Branch on the value of the EQ bit of CR6.
10563         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
10564         break;
10565       case 1:   // Branch on the inverted value of the EQ bit of CR6.
10566         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
10567         break;
10568       case 2:   // Branch on the value of the LT bit of CR6.
10569         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
10570         break;
10571       case 3:   // Branch on the inverted value of the LT bit of CR6.
10572         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
10573         break;
10574       }
10575
10576       return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
10577                          DAG.getConstant(CompOpc, dl, MVT::i32),
10578                          DAG.getRegister(PPC::CR6, MVT::i32),
10579                          N->getOperand(4), CompNode.getValue(1));
10580     }
10581     break;
10582   }
10583   }
10584
10585   return SDValue();
10586 }
10587
10588 SDValue
10589 PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
10590                                   SelectionDAG &DAG,
10591                                   std::vector<SDNode *> *Created) const {
10592   // fold (sdiv X, pow2)
10593   EVT VT = N->getValueType(0);
10594   if (VT == MVT::i64 && !Subtarget.isPPC64())
10595     return SDValue();
10596   if ((VT != MVT::i32 && VT != MVT::i64) ||
10597       !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
10598     return SDValue();
10599
10600   SDLoc DL(N);
10601   SDValue N0 = N->getOperand(0);
10602
10603   bool IsNegPow2 = (-Divisor).isPowerOf2();
10604   unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros();
10605   SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT);
10606
10607   SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt);
10608   if (Created)
10609     Created->push_back(Op.getNode());
10610
10611   if (IsNegPow2) {
10612     Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Op);
10613     if (Created)
10614       Created->push_back(Op.getNode());
10615   }
10616
10617   return Op;
10618 }
10619
10620 //===----------------------------------------------------------------------===//
10621 // Inline Assembly Support
10622 //===----------------------------------------------------------------------===//
10623
10624 void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
10625                                                       APInt &KnownZero,
10626                                                       APInt &KnownOne,
10627                                                       const SelectionDAG &DAG,
10628                                                       unsigned Depth) const {
10629   KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
10630   switch (Op.getOpcode()) {
10631   default: break;
10632   case PPCISD::LBRX: {
10633     // lhbrx is known to have the top bits cleared out.
10634     if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
10635       KnownZero = 0xFFFF0000;
10636     break;
10637   }
10638   case ISD::INTRINSIC_WO_CHAIN: {
10639     switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
10640     default: break;
10641     case Intrinsic::ppc_altivec_vcmpbfp_p:
10642     case Intrinsic::ppc_altivec_vcmpeqfp_p:
10643     case Intrinsic::ppc_altivec_vcmpequb_p:
10644     case Intrinsic::ppc_altivec_vcmpequh_p:
10645     case Intrinsic::ppc_altivec_vcmpequw_p:
10646     case Intrinsic::ppc_altivec_vcmpequd_p:
10647     case Intrinsic::ppc_altivec_vcmpgefp_p:
10648     case Intrinsic::ppc_altivec_vcmpgtfp_p:
10649     case Intrinsic::ppc_altivec_vcmpgtsb_p:
10650     case Intrinsic::ppc_altivec_vcmpgtsh_p:
10651     case Intrinsic::ppc_altivec_vcmpgtsw_p:
10652     case Intrinsic::ppc_altivec_vcmpgtsd_p:
10653     case Intrinsic::ppc_altivec_vcmpgtub_p:
10654     case Intrinsic::ppc_altivec_vcmpgtuh_p:
10655     case Intrinsic::ppc_altivec_vcmpgtuw_p:
10656     case Intrinsic::ppc_altivec_vcmpgtud_p:
10657       KnownZero = ~1U;  // All bits but the low one are known to be zero.
10658       break;
10659     }
10660   }
10661   }
10662 }
10663
10664 unsigned PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const {
10665   switch (Subtarget.getDarwinDirective()) {
10666   default: break;
10667   case PPC::DIR_970:
10668   case PPC::DIR_PWR4:
10669   case PPC::DIR_PWR5:
10670   case PPC::DIR_PWR5X:
10671   case PPC::DIR_PWR6:
10672   case PPC::DIR_PWR6X:
10673   case PPC::DIR_PWR7:
10674   case PPC::DIR_PWR8: {
10675     if (!ML)
10676       break;
10677
10678     const PPCInstrInfo *TII = Subtarget.getInstrInfo();
10679
10680     // For small loops (between 5 and 8 instructions), align to a 32-byte
10681     // boundary so that the entire loop fits in one instruction-cache line.
10682     uint64_t LoopSize = 0;
10683     for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I)
10684       for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J)
10685         LoopSize += TII->GetInstSizeInBytes(J);
10686
10687     if (LoopSize > 16 && LoopSize <= 32)
10688       return 5;
10689
10690     break;
10691   }
10692   }
10693
10694   return TargetLowering::getPrefLoopAlignment(ML);
10695 }
10696
10697 /// getConstraintType - Given a constraint, return the type of
10698 /// constraint it is for this target.
10699 PPCTargetLowering::ConstraintType
10700 PPCTargetLowering::getConstraintType(StringRef Constraint) const {
10701   if (Constraint.size() == 1) {
10702     switch (Constraint[0]) {
10703     default: break;
10704     case 'b':
10705     case 'r':
10706     case 'f':
10707     case 'v':
10708     case 'y':
10709       return C_RegisterClass;
10710     case 'Z':
10711       // FIXME: While Z does indicate a memory constraint, it specifically
10712       // indicates an r+r address (used in conjunction with the 'y' modifier
10713       // in the replacement string). Currently, we're forcing the base
10714       // register to be r0 in the asm printer (which is interpreted as zero)
10715       // and forming the complete address in the second register. This is
10716       // suboptimal.
10717       return C_Memory;
10718     }
10719   } else if (Constraint == "wc") { // individual CR bits.
10720     return C_RegisterClass;
10721   } else if (Constraint == "wa" || Constraint == "wd" ||
10722              Constraint == "wf" || Constraint == "ws") {
10723     return C_RegisterClass; // VSX registers.
10724   }
10725   return TargetLowering::getConstraintType(Constraint);
10726 }
10727
10728 /// Examine constraint type and operand type and determine a weight value.
10729 /// This object must already have been set up with the operand type
10730 /// and the current alternative constraint selected.
10731 TargetLowering::ConstraintWeight
10732 PPCTargetLowering::getSingleConstraintMatchWeight(
10733     AsmOperandInfo &info, const char *constraint) const {
10734   ConstraintWeight weight = CW_Invalid;
10735   Value *CallOperandVal = info.CallOperandVal;
10736     // If we don't have a value, we can't do a match,
10737     // but allow it at the lowest weight.
10738   if (!CallOperandVal)
10739     return CW_Default;
10740   Type *type = CallOperandVal->getType();
10741
10742   // Look at the constraint type.
10743   if (StringRef(constraint) == "wc" && type->isIntegerTy(1))
10744     return CW_Register; // an individual CR bit.
10745   else if ((StringRef(constraint) == "wa" ||
10746             StringRef(constraint) == "wd" ||
10747             StringRef(constraint) == "wf") &&
10748            type->isVectorTy())
10749     return CW_Register;
10750   else if (StringRef(constraint) == "ws" && type->isDoubleTy())
10751     return CW_Register;
10752
10753   switch (*constraint) {
10754   default:
10755     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
10756     break;
10757   case 'b':
10758     if (type->isIntegerTy())
10759       weight = CW_Register;
10760     break;
10761   case 'f':
10762     if (type->isFloatTy())
10763       weight = CW_Register;
10764     break;
10765   case 'd':
10766     if (type->isDoubleTy())
10767       weight = CW_Register;
10768     break;
10769   case 'v':
10770     if (type->isVectorTy())
10771       weight = CW_Register;
10772     break;
10773   case 'y':
10774     weight = CW_Register;
10775     break;
10776   case 'Z':
10777     weight = CW_Memory;
10778     break;
10779   }
10780   return weight;
10781 }
10782
10783 std::pair<unsigned, const TargetRegisterClass *>
10784 PPCTargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
10785                                                 StringRef Constraint,
10786                                                 MVT VT) const {
10787   if (Constraint.size() == 1) {
10788     // GCC RS6000 Constraint Letters
10789     switch (Constraint[0]) {
10790     case 'b':   // R1-R31
10791       if (VT == MVT::i64 && Subtarget.isPPC64())
10792         return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
10793       return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
10794     case 'r':   // R0-R31
10795       if (VT == MVT::i64 && Subtarget.isPPC64())
10796         return std::make_pair(0U, &PPC::G8RCRegClass);
10797       return std::make_pair(0U, &PPC::GPRCRegClass);
10798     case 'f':
10799       if (VT == MVT::f32 || VT == MVT::i32)
10800         return std::make_pair(0U, &PPC::F4RCRegClass);
10801       if (VT == MVT::f64 || VT == MVT::i64)
10802         return std::make_pair(0U, &PPC::F8RCRegClass);
10803       if (VT == MVT::v4f64 && Subtarget.hasQPX())
10804         return std::make_pair(0U, &PPC::QFRCRegClass);
10805       if (VT == MVT::v4f32 && Subtarget.hasQPX())
10806         return std::make_pair(0U, &PPC::QSRCRegClass);
10807       break;
10808     case 'v':
10809       if (VT == MVT::v4f64 && Subtarget.hasQPX())
10810         return std::make_pair(0U, &PPC::QFRCRegClass);
10811       if (VT == MVT::v4f32 && Subtarget.hasQPX())
10812         return std::make_pair(0U, &PPC::QSRCRegClass);
10813       return std::make_pair(0U, &PPC::VRRCRegClass);
10814     case 'y':   // crrc
10815       return std::make_pair(0U, &PPC::CRRCRegClass);
10816     }
10817   } else if (Constraint == "wc") { // an individual CR bit.
10818     return std::make_pair(0U, &PPC::CRBITRCRegClass);
10819   } else if (Constraint == "wa" || Constraint == "wd" ||
10820              Constraint == "wf") {
10821     return std::make_pair(0U, &PPC::VSRCRegClass);
10822   } else if (Constraint == "ws") {
10823     if (VT == MVT::f32)
10824       return std::make_pair(0U, &PPC::VSSRCRegClass);
10825     else
10826       return std::make_pair(0U, &PPC::VSFRCRegClass);
10827   }
10828
10829   std::pair<unsigned, const TargetRegisterClass *> R =
10830       TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
10831
10832   // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
10833   // (which we call X[0-9]+). If a 64-bit value has been requested, and a
10834   // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
10835   // register.
10836   // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
10837   // the AsmName field from *RegisterInfo.td, then this would not be necessary.
10838   if (R.first && VT == MVT::i64 && Subtarget.isPPC64() &&
10839       PPC::GPRCRegClass.contains(R.first))
10840     return std::make_pair(TRI->getMatchingSuperReg(R.first,
10841                             PPC::sub_32, &PPC::G8RCRegClass),
10842                           &PPC::G8RCRegClass);
10843
10844   // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same.
10845   if (!R.second && StringRef("{cc}").equals_lower(Constraint)) {
10846     R.first = PPC::CR0;
10847     R.second = &PPC::CRRCRegClass;
10848   }
10849
10850   return R;
10851 }
10852
10853
10854 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
10855 /// vector.  If it is invalid, don't add anything to Ops.
10856 void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
10857                                                      std::string &Constraint,
10858                                                      std::vector<SDValue>&Ops,
10859                                                      SelectionDAG &DAG) const {
10860   SDValue Result;
10861
10862   // Only support length 1 constraints.
10863   if (Constraint.length() > 1) return;
10864
10865   char Letter = Constraint[0];
10866   switch (Letter) {
10867   default: break;
10868   case 'I':
10869   case 'J':
10870   case 'K':
10871   case 'L':
10872   case 'M':
10873   case 'N':
10874   case 'O':
10875   case 'P': {
10876     ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
10877     if (!CST) return; // Must be an immediate to match.
10878     SDLoc dl(Op);
10879     int64_t Value = CST->getSExtValue();
10880     EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative
10881                          // numbers are printed as such.
10882     switch (Letter) {
10883     default: llvm_unreachable("Unknown constraint letter!");
10884     case 'I':  // "I" is a signed 16-bit constant.
10885       if (isInt<16>(Value))
10886         Result = DAG.getTargetConstant(Value, dl, TCVT);
10887       break;
10888     case 'J':  // "J" is a constant with only the high-order 16 bits nonzero.
10889       if (isShiftedUInt<16, 16>(Value))
10890         Result = DAG.getTargetConstant(Value, dl, TCVT);
10891       break;
10892     case 'L':  // "L" is a signed 16-bit constant shifted left 16 bits.
10893       if (isShiftedInt<16, 16>(Value))
10894         Result = DAG.getTargetConstant(Value, dl, TCVT);
10895       break;
10896     case 'K':  // "K" is a constant with only the low-order 16 bits nonzero.
10897       if (isUInt<16>(Value))
10898         Result = DAG.getTargetConstant(Value, dl, TCVT);
10899       break;
10900     case 'M':  // "M" is a constant that is greater than 31.
10901       if (Value > 31)
10902         Result = DAG.getTargetConstant(Value, dl, TCVT);
10903       break;
10904     case 'N':  // "N" is a positive constant that is an exact power of two.
10905       if (Value > 0 && isPowerOf2_64(Value))
10906         Result = DAG.getTargetConstant(Value, dl, TCVT);
10907       break;
10908     case 'O':  // "O" is the constant zero.
10909       if (Value == 0)
10910         Result = DAG.getTargetConstant(Value, dl, TCVT);
10911       break;
10912     case 'P':  // "P" is a constant whose negation is a signed 16-bit constant.
10913       if (isInt<16>(-Value))
10914         Result = DAG.getTargetConstant(Value, dl, TCVT);
10915       break;
10916     }
10917     break;
10918   }
10919   }
10920
10921   if (Result.getNode()) {
10922     Ops.push_back(Result);
10923     return;
10924   }
10925
10926   // Handle standard constraint letters.
10927   TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
10928 }
10929
10930 // isLegalAddressingMode - Return true if the addressing mode represented
10931 // by AM is legal for this target, for a load/store of the specified type.
10932 bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
10933                                               Type *Ty,
10934                                               unsigned AS) const {
10935   // PPC does not allow r+i addressing modes for vectors!
10936   if (Ty->isVectorTy() && AM.BaseOffs != 0)
10937     return false;
10938
10939   // PPC allows a sign-extended 16-bit immediate field.
10940   if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
10941     return false;
10942
10943   // No global is ever allowed as a base.
10944   if (AM.BaseGV)
10945     return false;
10946
10947   // PPC only support r+r,
10948   switch (AM.Scale) {
10949   case 0:  // "r+i" or just "i", depending on HasBaseReg.
10950     break;
10951   case 1:
10952     if (AM.HasBaseReg && AM.BaseOffs)  // "r+r+i" is not allowed.
10953       return false;
10954     // Otherwise we have r+r or r+i.
10955     break;
10956   case 2:
10957     if (AM.HasBaseReg || AM.BaseOffs)  // 2*r+r  or  2*r+i is not allowed.
10958       return false;
10959     // Allow 2*r as r+r.
10960     break;
10961   default:
10962     // No other scales are supported.
10963     return false;
10964   }
10965
10966   return true;
10967 }
10968
10969 SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
10970                                            SelectionDAG &DAG) const {
10971   MachineFunction &MF = DAG.getMachineFunction();
10972   MachineFrameInfo *MFI = MF.getFrameInfo();
10973   MFI->setReturnAddressIsTaken(true);
10974
10975   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
10976     return SDValue();
10977
10978   SDLoc dl(Op);
10979   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10980
10981   // Make sure the function does not optimize away the store of the RA to
10982   // the stack.
10983   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
10984   FuncInfo->setLRStoreRequired();
10985   bool isPPC64 = Subtarget.isPPC64();
10986   auto PtrVT = getPointerTy(MF.getDataLayout());
10987
10988   if (Depth > 0) {
10989     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
10990     SDValue Offset =
10991         DAG.getConstant(Subtarget.getFrameLowering()->getReturnSaveOffset(), dl,
10992                         isPPC64 ? MVT::i64 : MVT::i32);
10993     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
10994                        DAG.getNode(ISD::ADD, dl, PtrVT, FrameAddr, Offset),
10995                        MachinePointerInfo(), false, false, false, 0);
10996   }
10997
10998   // Just load the return address off the stack.
10999   SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
11000   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), RetAddrFI,
11001                      MachinePointerInfo(), false, false, false, 0);
11002 }
11003
11004 SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
11005                                           SelectionDAG &DAG) const {
11006   SDLoc dl(Op);
11007   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11008
11009   MachineFunction &MF = DAG.getMachineFunction();
11010   MachineFrameInfo *MFI = MF.getFrameInfo();
11011   MFI->setFrameAddressIsTaken(true);
11012
11013   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
11014   bool isPPC64 = PtrVT == MVT::i64;
11015
11016   // Naked functions never have a frame pointer, and so we use r1. For all
11017   // other functions, this decision must be delayed until during PEI.
11018   unsigned FrameReg;
11019   if (MF.getFunction()->hasFnAttribute(Attribute::Naked))
11020     FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
11021   else
11022     FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
11023
11024   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
11025                                          PtrVT);
11026   while (Depth--)
11027     FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
11028                             FrameAddr, MachinePointerInfo(), false, false,
11029                             false, 0);
11030   return FrameAddr;
11031 }
11032
11033 // FIXME? Maybe this could be a TableGen attribute on some registers and
11034 // this table could be generated automatically from RegInfo.
11035 unsigned PPCTargetLowering::getRegisterByName(const char* RegName,
11036                                               EVT VT) const {
11037   bool isPPC64 = Subtarget.isPPC64();
11038   bool isDarwinABI = Subtarget.isDarwinABI();
11039
11040   if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) ||
11041       (!isPPC64 && VT != MVT::i32))
11042     report_fatal_error("Invalid register global variable type");
11043
11044   bool is64Bit = isPPC64 && VT == MVT::i64;
11045   unsigned Reg = StringSwitch<unsigned>(RegName)
11046                    .Case("r1", is64Bit ? PPC::X1 : PPC::R1)
11047                    .Case("r2", (isDarwinABI || isPPC64) ? 0 : PPC::R2)
11048                    .Case("r13", (!isPPC64 && isDarwinABI) ? 0 :
11049                                   (is64Bit ? PPC::X13 : PPC::R13))
11050                    .Default(0);
11051
11052   if (Reg)
11053     return Reg;
11054   report_fatal_error("Invalid register name global variable");
11055 }
11056
11057 bool
11058 PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
11059   // The PowerPC target isn't yet aware of offsets.
11060   return false;
11061 }
11062
11063 bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
11064                                            const CallInst &I,
11065                                            unsigned Intrinsic) const {
11066
11067   switch (Intrinsic) {
11068   case Intrinsic::ppc_qpx_qvlfd:
11069   case Intrinsic::ppc_qpx_qvlfs:
11070   case Intrinsic::ppc_qpx_qvlfcd:
11071   case Intrinsic::ppc_qpx_qvlfcs:
11072   case Intrinsic::ppc_qpx_qvlfiwa:
11073   case Intrinsic::ppc_qpx_qvlfiwz:
11074   case Intrinsic::ppc_altivec_lvx:
11075   case Intrinsic::ppc_altivec_lvxl:
11076   case Intrinsic::ppc_altivec_lvebx:
11077   case Intrinsic::ppc_altivec_lvehx:
11078   case Intrinsic::ppc_altivec_lvewx:
11079   case Intrinsic::ppc_vsx_lxvd2x:
11080   case Intrinsic::ppc_vsx_lxvw4x: {
11081     EVT VT;
11082     switch (Intrinsic) {
11083     case Intrinsic::ppc_altivec_lvebx:
11084       VT = MVT::i8;
11085       break;
11086     case Intrinsic::ppc_altivec_lvehx:
11087       VT = MVT::i16;
11088       break;
11089     case Intrinsic::ppc_altivec_lvewx:
11090       VT = MVT::i32;
11091       break;
11092     case Intrinsic::ppc_vsx_lxvd2x:
11093       VT = MVT::v2f64;
11094       break;
11095     case Intrinsic::ppc_qpx_qvlfd:
11096       VT = MVT::v4f64;
11097       break;
11098     case Intrinsic::ppc_qpx_qvlfs:
11099       VT = MVT::v4f32;
11100       break;
11101     case Intrinsic::ppc_qpx_qvlfcd:
11102       VT = MVT::v2f64;
11103       break;
11104     case Intrinsic::ppc_qpx_qvlfcs:
11105       VT = MVT::v2f32;
11106       break;
11107     default:
11108       VT = MVT::v4i32;
11109       break;
11110     }
11111
11112     Info.opc = ISD::INTRINSIC_W_CHAIN;
11113     Info.memVT = VT;
11114     Info.ptrVal = I.getArgOperand(0);
11115     Info.offset = -VT.getStoreSize()+1;
11116     Info.size = 2*VT.getStoreSize()-1;
11117     Info.align = 1;
11118     Info.vol = false;
11119     Info.readMem = true;
11120     Info.writeMem = false;
11121     return true;
11122   }
11123   case Intrinsic::ppc_qpx_qvlfda:
11124   case Intrinsic::ppc_qpx_qvlfsa:
11125   case Intrinsic::ppc_qpx_qvlfcda:
11126   case Intrinsic::ppc_qpx_qvlfcsa:
11127   case Intrinsic::ppc_qpx_qvlfiwaa:
11128   case Intrinsic::ppc_qpx_qvlfiwza: {
11129     EVT VT;
11130     switch (Intrinsic) {
11131     case Intrinsic::ppc_qpx_qvlfda:
11132       VT = MVT::v4f64;
11133       break;
11134     case Intrinsic::ppc_qpx_qvlfsa:
11135       VT = MVT::v4f32;
11136       break;
11137     case Intrinsic::ppc_qpx_qvlfcda:
11138       VT = MVT::v2f64;
11139       break;
11140     case Intrinsic::ppc_qpx_qvlfcsa:
11141       VT = MVT::v2f32;
11142       break;
11143     default:
11144       VT = MVT::v4i32;
11145       break;
11146     }
11147
11148     Info.opc = ISD::INTRINSIC_W_CHAIN;
11149     Info.memVT = VT;
11150     Info.ptrVal = I.getArgOperand(0);
11151     Info.offset = 0;
11152     Info.size = VT.getStoreSize();
11153     Info.align = 1;
11154     Info.vol = false;
11155     Info.readMem = true;
11156     Info.writeMem = false;
11157     return true;
11158   }
11159   case Intrinsic::ppc_qpx_qvstfd:
11160   case Intrinsic::ppc_qpx_qvstfs:
11161   case Intrinsic::ppc_qpx_qvstfcd:
11162   case Intrinsic::ppc_qpx_qvstfcs:
11163   case Intrinsic::ppc_qpx_qvstfiw:
11164   case Intrinsic::ppc_altivec_stvx:
11165   case Intrinsic::ppc_altivec_stvxl:
11166   case Intrinsic::ppc_altivec_stvebx:
11167   case Intrinsic::ppc_altivec_stvehx:
11168   case Intrinsic::ppc_altivec_stvewx:
11169   case Intrinsic::ppc_vsx_stxvd2x:
11170   case Intrinsic::ppc_vsx_stxvw4x: {
11171     EVT VT;
11172     switch (Intrinsic) {
11173     case Intrinsic::ppc_altivec_stvebx:
11174       VT = MVT::i8;
11175       break;
11176     case Intrinsic::ppc_altivec_stvehx:
11177       VT = MVT::i16;
11178       break;
11179     case Intrinsic::ppc_altivec_stvewx:
11180       VT = MVT::i32;
11181       break;
11182     case Intrinsic::ppc_vsx_stxvd2x:
11183       VT = MVT::v2f64;
11184       break;
11185     case Intrinsic::ppc_qpx_qvstfd:
11186       VT = MVT::v4f64;
11187       break;
11188     case Intrinsic::ppc_qpx_qvstfs:
11189       VT = MVT::v4f32;
11190       break;
11191     case Intrinsic::ppc_qpx_qvstfcd:
11192       VT = MVT::v2f64;
11193       break;
11194     case Intrinsic::ppc_qpx_qvstfcs:
11195       VT = MVT::v2f32;
11196       break;
11197     default:
11198       VT = MVT::v4i32;
11199       break;
11200     }
11201
11202     Info.opc = ISD::INTRINSIC_VOID;
11203     Info.memVT = VT;
11204     Info.ptrVal = I.getArgOperand(1);
11205     Info.offset = -VT.getStoreSize()+1;
11206     Info.size = 2*VT.getStoreSize()-1;
11207     Info.align = 1;
11208     Info.vol = false;
11209     Info.readMem = false;
11210     Info.writeMem = true;
11211     return true;
11212   }
11213   case Intrinsic::ppc_qpx_qvstfda:
11214   case Intrinsic::ppc_qpx_qvstfsa:
11215   case Intrinsic::ppc_qpx_qvstfcda:
11216   case Intrinsic::ppc_qpx_qvstfcsa:
11217   case Intrinsic::ppc_qpx_qvstfiwa: {
11218     EVT VT;
11219     switch (Intrinsic) {
11220     case Intrinsic::ppc_qpx_qvstfda:
11221       VT = MVT::v4f64;
11222       break;
11223     case Intrinsic::ppc_qpx_qvstfsa:
11224       VT = MVT::v4f32;
11225       break;
11226     case Intrinsic::ppc_qpx_qvstfcda:
11227       VT = MVT::v2f64;
11228       break;
11229     case Intrinsic::ppc_qpx_qvstfcsa:
11230       VT = MVT::v2f32;
11231       break;
11232     default:
11233       VT = MVT::v4i32;
11234       break;
11235     }
11236
11237     Info.opc = ISD::INTRINSIC_VOID;
11238     Info.memVT = VT;
11239     Info.ptrVal = I.getArgOperand(1);
11240     Info.offset = 0;
11241     Info.size = VT.getStoreSize();
11242     Info.align = 1;
11243     Info.vol = false;
11244     Info.readMem = false;
11245     Info.writeMem = true;
11246     return true;
11247   }
11248   default:
11249     break;
11250   }
11251
11252   return false;
11253 }
11254
11255 /// getOptimalMemOpType - Returns the target specific optimal type for load
11256 /// and store operations as a result of memset, memcpy, and memmove
11257 /// lowering. If DstAlign is zero that means it's safe to destination
11258 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
11259 /// means there isn't a need to check it against alignment requirement,
11260 /// probably because the source does not need to be loaded. If 'IsMemset' is
11261 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
11262 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
11263 /// source is constant so it does not need to be loaded.
11264 /// It returns EVT::Other if the type should be determined using generic
11265 /// target-independent logic.
11266 EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
11267                                            unsigned DstAlign, unsigned SrcAlign,
11268                                            bool IsMemset, bool ZeroMemset,
11269                                            bool MemcpyStrSrc,
11270                                            MachineFunction &MF) const {
11271   if (getTargetMachine().getOptLevel() != CodeGenOpt::None) {
11272     const Function *F = MF.getFunction();
11273     // When expanding a memset, require at least two QPX instructions to cover
11274     // the cost of loading the value to be stored from the constant pool.
11275     if (Subtarget.hasQPX() && Size >= 32 && (!IsMemset || Size >= 64) &&
11276        (!SrcAlign || SrcAlign >= 32) && (!DstAlign || DstAlign >= 32) &&
11277         !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
11278       return MVT::v4f64;
11279     }
11280
11281     // We should use Altivec/VSX loads and stores when available. For unaligned
11282     // addresses, unaligned VSX loads are only fast starting with the P8.
11283     if (Subtarget.hasAltivec() && Size >= 16 &&
11284         (((!SrcAlign || SrcAlign >= 16) && (!DstAlign || DstAlign >= 16)) ||
11285          ((IsMemset && Subtarget.hasVSX()) || Subtarget.hasP8Vector())))
11286       return MVT::v4i32;
11287   }
11288
11289   if (Subtarget.isPPC64()) {
11290     return MVT::i64;
11291   }
11292
11293   return MVT::i32;
11294 }
11295
11296 /// \brief Returns true if it is beneficial to convert a load of a constant
11297 /// to just the constant itself.
11298 bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
11299                                                           Type *Ty) const {
11300   assert(Ty->isIntegerTy());
11301
11302   unsigned BitSize = Ty->getPrimitiveSizeInBits();
11303   if (BitSize == 0 || BitSize > 64)
11304     return false;
11305   return true;
11306 }
11307
11308 bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
11309   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
11310     return false;
11311   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
11312   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
11313   return NumBits1 == 64 && NumBits2 == 32;
11314 }
11315
11316 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
11317   if (!VT1.isInteger() || !VT2.isInteger())
11318     return false;
11319   unsigned NumBits1 = VT1.getSizeInBits();
11320   unsigned NumBits2 = VT2.getSizeInBits();
11321   return NumBits1 == 64 && NumBits2 == 32;
11322 }
11323
11324 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
11325   // Generally speaking, zexts are not free, but they are free when they can be
11326   // folded with other operations.
11327   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) {
11328     EVT MemVT = LD->getMemoryVT();
11329     if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 ||
11330          (Subtarget.isPPC64() && MemVT == MVT::i32)) &&
11331         (LD->getExtensionType() == ISD::NON_EXTLOAD ||
11332          LD->getExtensionType() == ISD::ZEXTLOAD))
11333       return true;
11334   }
11335
11336   // FIXME: Add other cases...
11337   //  - 32-bit shifts with a zext to i64
11338   //  - zext after ctlz, bswap, etc.
11339   //  - zext after and by a constant mask
11340
11341   return TargetLowering::isZExtFree(Val, VT2);
11342 }
11343
11344 bool PPCTargetLowering::isFPExtFree(EVT VT) const {
11345   assert(VT.isFloatingPoint());
11346   return true;
11347 }
11348
11349 bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
11350   return isInt<16>(Imm) || isUInt<16>(Imm);
11351 }
11352
11353 bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
11354   return isInt<16>(Imm) || isUInt<16>(Imm);
11355 }
11356
11357 bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
11358                                                        unsigned,
11359                                                        unsigned,
11360                                                        bool *Fast) const {
11361   if (DisablePPCUnaligned)
11362     return false;
11363
11364   // PowerPC supports unaligned memory access for simple non-vector types.
11365   // Although accessing unaligned addresses is not as efficient as accessing
11366   // aligned addresses, it is generally more efficient than manual expansion,
11367   // and generally only traps for software emulation when crossing page
11368   // boundaries.
11369
11370   if (!VT.isSimple())
11371     return false;
11372
11373   if (VT.getSimpleVT().isVector()) {
11374     if (Subtarget.hasVSX()) {
11375       if (VT != MVT::v2f64 && VT != MVT::v2i64 &&
11376           VT != MVT::v4f32 && VT != MVT::v4i32)
11377         return false;
11378     } else {
11379       return false;
11380     }
11381   }
11382
11383   if (VT == MVT::ppcf128)
11384     return false;
11385
11386   if (Fast)
11387     *Fast = true;
11388
11389   return true;
11390 }
11391
11392 bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
11393   VT = VT.getScalarType();
11394
11395   if (!VT.isSimple())
11396     return false;
11397
11398   switch (VT.getSimpleVT().SimpleTy) {
11399   case MVT::f32:
11400   case MVT::f64:
11401     return true;
11402   default:
11403     break;
11404   }
11405
11406   return false;
11407 }
11408
11409 const MCPhysReg *
11410 PPCTargetLowering::getScratchRegisters(CallingConv::ID) const {
11411   // LR is a callee-save register, but we must treat it as clobbered by any call
11412   // site. Hence we include LR in the scratch registers, which are in turn added
11413   // as implicit-defs for stackmaps and patchpoints. The same reasoning applies
11414   // to CTR, which is used by any indirect call.
11415   static const MCPhysReg ScratchRegs[] = {
11416     PPC::X12, PPC::LR8, PPC::CTR8, 0
11417   };
11418
11419   return ScratchRegs;
11420 }
11421
11422 bool
11423 PPCTargetLowering::shouldExpandBuildVectorWithShuffles(
11424                      EVT VT , unsigned DefinedValues) const {
11425   if (VT == MVT::v2i64)
11426     return false;
11427
11428   if (Subtarget.hasQPX()) {
11429     if (VT == MVT::v4f32 || VT == MVT::v4f64 || VT == MVT::v4i1)
11430       return true;
11431   }
11432
11433   return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
11434 }
11435
11436 Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
11437   if (DisableILPPref || Subtarget.enableMachineScheduler())
11438     return TargetLowering::getSchedulingPreference(N);
11439
11440   return Sched::ILP;
11441 }
11442
11443 // Create a fast isel object.
11444 FastISel *
11445 PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
11446                                   const TargetLibraryInfo *LibInfo) const {
11447   return PPC::createFastISel(FuncInfo, LibInfo);
11448 }