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 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
46 cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
47 
48 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
49 cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
50 
51 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
52 cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
53 
54 // FIXME: Remove this once the bug has been fixed!
55 extern cl::opt<bool> ANDIGlueBug;
56 
57 PPCTargetLowering::PPCTargetLowering(const PPCTargetMachine &TM,
58                                      const PPCSubtarget &STI)
59     : TargetLowering(TM), Subtarget(STI) {
60   // Use _setjmp/_longjmp instead of setjmp/longjmp.
61   setUseUnderscoreSetJmp(true);
62   setUseUnderscoreLongJmp(true);
63 
64   // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
65   // arguments are at least 4/8 bytes aligned.
66   bool isPPC64 = Subtarget.isPPC64();
67   setMinStackArgumentAlignment(isPPC64 ? 8:4);
68 
69   // Set up the register classes.
70   addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
71   if (!Subtarget.useSoftFloat()) {
72     addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
73     addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
74   }
75 
76   // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
77   for (MVT VT : MVT::integer_valuetypes()) {
78     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
79     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand);
80   }
81 
82   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
83 
84   // PowerPC has pre-inc load and store's.
85   setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
86   setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
87   setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
88   setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
89   setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
90   setIndexedLoadAction(ISD::PRE_INC, MVT::f32, Legal);
91   setIndexedLoadAction(ISD::PRE_INC, MVT::f64, Legal);
92   setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
93   setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
94   setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
95   setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
96   setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
97   setIndexedStoreAction(ISD::PRE_INC, MVT::f32, Legal);
98   setIndexedStoreAction(ISD::PRE_INC, MVT::f64, Legal);
99 
100   if (Subtarget.useCRBits()) {
101     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
102 
103     if (isPPC64 || Subtarget.hasFPCVT()) {
104       setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
105       AddPromotedToType (ISD::SINT_TO_FP, MVT::i1,
106                          isPPC64 ? MVT::i64 : MVT::i32);
107       setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
108       AddPromotedToType(ISD::UINT_TO_FP, MVT::i1,
109                         isPPC64 ? MVT::i64 : MVT::i32);
110     } else {
111       setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom);
112       setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom);
113     }
114 
115     // PowerPC does not support direct load / store of condition registers
116     setOperationAction(ISD::LOAD, MVT::i1, Custom);
117     setOperationAction(ISD::STORE, MVT::i1, Custom);
118 
119     // FIXME: Remove this once the ANDI glue bug is fixed:
120     if (ANDIGlueBug)
121       setOperationAction(ISD::TRUNCATE, MVT::i1, Custom);
122 
123     for (MVT VT : MVT::integer_valuetypes()) {
124       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
125       setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote);
126       setTruncStoreAction(VT, MVT::i1, Expand);
127     }
128 
129     addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass);
130   }
131 
132   // This is used in the ppcf128->int sequence.  Note it has different semantics
133   // from FP_ROUND:  that rounds to nearest, this rounds to zero.
134   setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
135 
136   // We do not currently implement these libm ops for PowerPC.
137   setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
138   setOperationAction(ISD::FCEIL,  MVT::ppcf128, Expand);
139   setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
140   setOperationAction(ISD::FRINT,  MVT::ppcf128, Expand);
141   setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
142   setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
143 
144   // PowerPC has no SREM/UREM instructions
145   setOperationAction(ISD::SREM, MVT::i32, Expand);
146   setOperationAction(ISD::UREM, MVT::i32, Expand);
147   setOperationAction(ISD::SREM, MVT::i64, Expand);
148   setOperationAction(ISD::UREM, MVT::i64, Expand);
149 
150   // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
151   setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
152   setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
153   setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
154   setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
155   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
156   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
157   setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
158   setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
159 
160   // We don't support sin/cos/sqrt/fmod/pow
161   setOperationAction(ISD::FSIN , MVT::f64, Expand);
162   setOperationAction(ISD::FCOS , MVT::f64, Expand);
163   setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
164   setOperationAction(ISD::FREM , MVT::f64, Expand);
165   setOperationAction(ISD::FPOW , MVT::f64, Expand);
166   setOperationAction(ISD::FMA  , MVT::f64, Legal);
167   setOperationAction(ISD::FSIN , MVT::f32, Expand);
168   setOperationAction(ISD::FCOS , MVT::f32, Expand);
169   setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
170   setOperationAction(ISD::FREM , MVT::f32, Expand);
171   setOperationAction(ISD::FPOW , MVT::f32, Expand);
172   setOperationAction(ISD::FMA  , MVT::f32, Legal);
173 
174   setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
175 
176   // If we're enabling GP optimizations, use hardware square root
177   if (!Subtarget.hasFSQRT() &&
178       !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTE() &&
179         Subtarget.hasFRE()))
180     setOperationAction(ISD::FSQRT, MVT::f64, Expand);
181 
182   if (!Subtarget.hasFSQRT() &&
183       !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTES() &&
184         Subtarget.hasFRES()))
185     setOperationAction(ISD::FSQRT, MVT::f32, Expand);
186 
187   if (Subtarget.hasFCPSGN()) {
188     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
189     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
190   } else {
191     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
192     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
193   }
194 
195   if (Subtarget.hasFPRND()) {
196     setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
197     setOperationAction(ISD::FCEIL,  MVT::f64, Legal);
198     setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
199     setOperationAction(ISD::FROUND, MVT::f64, Legal);
200 
201     setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
202     setOperationAction(ISD::FCEIL,  MVT::f32, Legal);
203     setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
204     setOperationAction(ISD::FROUND, MVT::f32, Legal);
205   }
206 
207   // PowerPC does not have BSWAP, CTPOP or CTTZ
208   setOperationAction(ISD::BSWAP, MVT::i32  , Expand);
209   setOperationAction(ISD::CTTZ , MVT::i32  , Expand);
210   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
211   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
212   setOperationAction(ISD::BSWAP, MVT::i64  , Expand);
213   setOperationAction(ISD::CTTZ , MVT::i64  , Expand);
214   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
215   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
216 
217   if (Subtarget.hasPOPCNTD()) {
218     setOperationAction(ISD::CTPOP, MVT::i32  , Legal);
219     setOperationAction(ISD::CTPOP, MVT::i64  , Legal);
220   } else {
221     setOperationAction(ISD::CTPOP, MVT::i32  , Expand);
222     setOperationAction(ISD::CTPOP, MVT::i64  , Expand);
223   }
224 
225   // PowerPC does not have ROTR
226   setOperationAction(ISD::ROTR, MVT::i32   , Expand);
227   setOperationAction(ISD::ROTR, MVT::i64   , Expand);
228 
229   if (!Subtarget.useCRBits()) {
230     // PowerPC does not have Select
231     setOperationAction(ISD::SELECT, MVT::i32, Expand);
232     setOperationAction(ISD::SELECT, MVT::i64, Expand);
233     setOperationAction(ISD::SELECT, MVT::f32, Expand);
234     setOperationAction(ISD::SELECT, MVT::f64, Expand);
235   }
236 
237   // PowerPC wants to turn select_cc of FP into fsel when possible.
238   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
239   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
240 
241   // PowerPC wants to optimize integer setcc a bit
242   if (!Subtarget.useCRBits())
243     setOperationAction(ISD::SETCC, MVT::i32, Custom);
244 
245   // PowerPC does not have BRCOND which requires SetCC
246   if (!Subtarget.useCRBits())
247     setOperationAction(ISD::BRCOND, MVT::Other, Expand);
248 
249   setOperationAction(ISD::BR_JT,  MVT::Other, Expand);
250 
251   // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
252   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
253 
254   // PowerPC does not have [U|S]INT_TO_FP
255   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
256   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
257 
258   if (Subtarget.hasDirectMove()) {
259     setOperationAction(ISD::BITCAST, MVT::f32, Legal);
260     setOperationAction(ISD::BITCAST, MVT::i32, Legal);
261     setOperationAction(ISD::BITCAST, MVT::i64, Legal);
262     setOperationAction(ISD::BITCAST, MVT::f64, Legal);
263   } else {
264     setOperationAction(ISD::BITCAST, MVT::f32, Expand);
265     setOperationAction(ISD::BITCAST, MVT::i32, Expand);
266     setOperationAction(ISD::BITCAST, MVT::i64, Expand);
267     setOperationAction(ISD::BITCAST, MVT::f64, Expand);
268   }
269 
270   // We cannot sextinreg(i1).  Expand to shifts.
271   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
272 
273   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
274   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
275   // support continuation, user-level threading, and etc.. As a result, no
276   // other SjLj exception interfaces are implemented and please don't build
277   // your own exception handling based on them.
278   // LLVM/Clang supports zero-cost DWARF exception handling.
279   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
280   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
281 
282   // We want to legalize GlobalAddress and ConstantPool nodes into the
283   // appropriate instructions to materialize the address.
284   setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
285   setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
286   setOperationAction(ISD::BlockAddress,  MVT::i32, Custom);
287   setOperationAction(ISD::ConstantPool,  MVT::i32, Custom);
288   setOperationAction(ISD::JumpTable,     MVT::i32, Custom);
289   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
290   setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
291   setOperationAction(ISD::BlockAddress,  MVT::i64, Custom);
292   setOperationAction(ISD::ConstantPool,  MVT::i64, Custom);
293   setOperationAction(ISD::JumpTable,     MVT::i64, Custom);
294 
295   // TRAP is legal.
296   setOperationAction(ISD::TRAP, MVT::Other, Legal);
297 
298   // TRAMPOLINE is custom lowered.
299   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
300   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
301 
302   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
303   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
304 
305   if (Subtarget.isSVR4ABI()) {
306     if (isPPC64) {
307       // VAARG always uses double-word chunks, so promote anything smaller.
308       setOperationAction(ISD::VAARG, MVT::i1, Promote);
309       AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
310       setOperationAction(ISD::VAARG, MVT::i8, Promote);
311       AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
312       setOperationAction(ISD::VAARG, MVT::i16, Promote);
313       AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
314       setOperationAction(ISD::VAARG, MVT::i32, Promote);
315       AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
316       setOperationAction(ISD::VAARG, MVT::Other, Expand);
317     } else {
318       // VAARG is custom lowered with the 32-bit SVR4 ABI.
319       setOperationAction(ISD::VAARG, MVT::Other, Custom);
320       setOperationAction(ISD::VAARG, MVT::i64, Custom);
321     }
322   } else
323     setOperationAction(ISD::VAARG, MVT::Other, Expand);
324 
325   if (Subtarget.isSVR4ABI() && !isPPC64)
326     // VACOPY is custom lowered with the 32-bit SVR4 ABI.
327     setOperationAction(ISD::VACOPY            , MVT::Other, Custom);
328   else
329     setOperationAction(ISD::VACOPY            , MVT::Other, Expand);
330 
331   // Use the default implementation.
332   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
333   setOperationAction(ISD::STACKSAVE         , MVT::Other, Expand);
334   setOperationAction(ISD::STACKRESTORE      , MVT::Other, Custom);
335   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32  , Custom);
336   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64  , Custom);
337   setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, MVT::i32, Custom);
338   setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, MVT::i64, Custom);
339 
340   // We want to custom lower some of our intrinsics.
341   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
342 
343   // To handle counter-based loop conditions.
344   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
345 
346   // Comparisons that require checking two conditions.
347   setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
348   setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
349   setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
350   setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
351   setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
352   setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
353   setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
354   setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
355   setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
356   setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
357   setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
358   setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
359 
360   if (Subtarget.has64BitSupport()) {
361     // They also have instructions for converting between i64 and fp.
362     setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
363     setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
364     setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
365     setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
366     // This is just the low 32 bits of a (signed) fp->i64 conversion.
367     // We cannot do this with Promote because i64 is not a legal type.
368     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
369 
370     if (Subtarget.hasLFIWAX() || Subtarget.isPPC64())
371       setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
372   } else {
373     // PowerPC does not have FP_TO_UINT on 32-bit implementations.
374     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
375   }
376 
377   // With the instructions enabled under FPCVT, we can do everything.
378   if (Subtarget.hasFPCVT()) {
379     if (Subtarget.has64BitSupport()) {
380       setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
381       setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
382       setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
383       setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
384     }
385 
386     setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
387     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
388     setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
389     setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
390   }
391 
392   if (Subtarget.use64BitRegs()) {
393     // 64-bit PowerPC implementations can support i64 types directly
394     addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
395     // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
396     setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
397     // 64-bit PowerPC wants to expand i128 shifts itself.
398     setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
399     setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
400     setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
401   } else {
402     // 32-bit PowerPC wants to expand i64 shifts itself.
403     setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
404     setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
405     setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
406   }
407 
408   if (Subtarget.hasAltivec()) {
409     // First set operation action for all vector types to expand. Then we
410     // will selectively turn on ones that can be effectively codegen'd.
411     for (MVT VT : MVT::vector_valuetypes()) {
412       // add/sub are legal for all supported vector VT's.
413       setOperationAction(ISD::ADD, VT, Legal);
414       setOperationAction(ISD::SUB, VT, Legal);
415 
416       // Vector instructions introduced in P8
417       if (Subtarget.hasP8Altivec() && (VT.SimpleTy != MVT::v1i128)) {
418         setOperationAction(ISD::CTPOP, VT, Legal);
419         setOperationAction(ISD::CTLZ, VT, Legal);
420       }
421       else {
422         setOperationAction(ISD::CTPOP, VT, Expand);
423         setOperationAction(ISD::CTLZ, VT, Expand);
424       }
425 
426       // We promote all shuffles to v16i8.
427       setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
428       AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
429 
430       // We promote all non-typed operations to v4i32.
431       setOperationAction(ISD::AND   , VT, Promote);
432       AddPromotedToType (ISD::AND   , VT, MVT::v4i32);
433       setOperationAction(ISD::OR    , VT, Promote);
434       AddPromotedToType (ISD::OR    , VT, MVT::v4i32);
435       setOperationAction(ISD::XOR   , VT, Promote);
436       AddPromotedToType (ISD::XOR   , VT, MVT::v4i32);
437       setOperationAction(ISD::LOAD  , VT, Promote);
438       AddPromotedToType (ISD::LOAD  , VT, MVT::v4i32);
439       setOperationAction(ISD::SELECT, VT, Promote);
440       AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
441       setOperationAction(ISD::SELECT_CC, VT, Promote);
442       AddPromotedToType (ISD::SELECT_CC, VT, MVT::v4i32);
443       setOperationAction(ISD::STORE, VT, Promote);
444       AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
445 
446       // No other operations are legal.
447       setOperationAction(ISD::MUL , VT, Expand);
448       setOperationAction(ISD::SDIV, VT, Expand);
449       setOperationAction(ISD::SREM, VT, Expand);
450       setOperationAction(ISD::UDIV, VT, Expand);
451       setOperationAction(ISD::UREM, VT, Expand);
452       setOperationAction(ISD::FDIV, VT, Expand);
453       setOperationAction(ISD::FREM, VT, Expand);
454       setOperationAction(ISD::FNEG, VT, Expand);
455       setOperationAction(ISD::FSQRT, VT, Expand);
456       setOperationAction(ISD::FLOG, VT, Expand);
457       setOperationAction(ISD::FLOG10, VT, Expand);
458       setOperationAction(ISD::FLOG2, VT, Expand);
459       setOperationAction(ISD::FEXP, VT, Expand);
460       setOperationAction(ISD::FEXP2, VT, Expand);
461       setOperationAction(ISD::FSIN, VT, Expand);
462       setOperationAction(ISD::FCOS, VT, Expand);
463       setOperationAction(ISD::FABS, VT, Expand);
464       setOperationAction(ISD::FPOWI, VT, Expand);
465       setOperationAction(ISD::FFLOOR, VT, Expand);
466       setOperationAction(ISD::FCEIL,  VT, Expand);
467       setOperationAction(ISD::FTRUNC, VT, Expand);
468       setOperationAction(ISD::FRINT,  VT, Expand);
469       setOperationAction(ISD::FNEARBYINT, VT, Expand);
470       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
471       setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
472       setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
473       setOperationAction(ISD::MULHU, VT, Expand);
474       setOperationAction(ISD::MULHS, VT, Expand);
475       setOperationAction(ISD::UMUL_LOHI, VT, Expand);
476       setOperationAction(ISD::SMUL_LOHI, VT, Expand);
477       setOperationAction(ISD::UDIVREM, VT, Expand);
478       setOperationAction(ISD::SDIVREM, VT, Expand);
479       setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
480       setOperationAction(ISD::FPOW, VT, Expand);
481       setOperationAction(ISD::BSWAP, VT, Expand);
482       setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
483       setOperationAction(ISD::CTTZ, VT, Expand);
484       setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
485       setOperationAction(ISD::VSELECT, VT, Expand);
486       setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
487       setOperationAction(ISD::ROTL, VT, Expand);
488       setOperationAction(ISD::ROTR, VT, Expand);
489 
490       for (MVT InnerVT : MVT::vector_valuetypes()) {
491         setTruncStoreAction(VT, InnerVT, Expand);
492         setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
493         setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
494         setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
495       }
496     }
497 
498     // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
499     // with merges, splats, etc.
500     setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
501 
502     setOperationAction(ISD::AND   , MVT::v4i32, Legal);
503     setOperationAction(ISD::OR    , MVT::v4i32, Legal);
504     setOperationAction(ISD::XOR   , MVT::v4i32, Legal);
505     setOperationAction(ISD::LOAD  , MVT::v4i32, Legal);
506     setOperationAction(ISD::SELECT, MVT::v4i32,
507                        Subtarget.useCRBits() ? Legal : Expand);
508     setOperationAction(ISD::STORE , MVT::v4i32, Legal);
509     setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
510     setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
511     setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
512     setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
513     setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
514     setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
515     setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
516     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
517 
518     addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
519     addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
520     addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
521     addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
522 
523     setOperationAction(ISD::MUL, MVT::v4f32, Legal);
524     setOperationAction(ISD::FMA, MVT::v4f32, Legal);
525 
526     if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) {
527       setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
528       setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
529     }
530 
531     if (Subtarget.hasP8Altivec())
532       setOperationAction(ISD::MUL, MVT::v4i32, Legal);
533     else
534       setOperationAction(ISD::MUL, MVT::v4i32, Custom);
535 
536     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
537     setOperationAction(ISD::MUL, MVT::v16i8, Custom);
538 
539     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
540     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
541 
542     setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
543     setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
544     setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
545     setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
546 
547     // Altivec does not contain unordered floating-point compare instructions
548     setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
549     setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
550     setCondCodeAction(ISD::SETO,   MVT::v4f32, Expand);
551     setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
552 
553     if (Subtarget.hasVSX()) {
554       setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal);
555       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
556       if (Subtarget.hasP8Vector()) {
557         setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Legal);
558         setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Legal);
559       }
560       if (Subtarget.hasDirectMove()) {
561         setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Legal);
562         setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Legal);
563         setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Legal);
564         setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i64, Legal);
565         setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Legal);
566         setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Legal);
567         setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Legal);
568         setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
569       }
570       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
571 
572       setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
573       setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
574       setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
575       setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
576       setOperationAction(ISD::FROUND, MVT::v2f64, Legal);
577 
578       setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
579 
580       setOperationAction(ISD::MUL, MVT::v2f64, Legal);
581       setOperationAction(ISD::FMA, MVT::v2f64, Legal);
582 
583       setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
584       setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
585 
586       setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
587       setOperationAction(ISD::VSELECT, MVT::v8i16, Legal);
588       setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
589       setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
590       setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
591 
592       // Share the Altivec comparison restrictions.
593       setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand);
594       setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand);
595       setCondCodeAction(ISD::SETO,   MVT::v2f64, Expand);
596       setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand);
597 
598       setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
599       setOperationAction(ISD::STORE, MVT::v2f64, Legal);
600 
601       setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal);
602 
603       if (Subtarget.hasP8Vector())
604         addRegisterClass(MVT::f32, &PPC::VSSRCRegClass);
605 
606       addRegisterClass(MVT::f64, &PPC::VSFRCRegClass);
607 
608       addRegisterClass(MVT::v4i32, &PPC::VSRCRegClass);
609       addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass);
610       addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass);
611 
612       if (Subtarget.hasP8Altivec()) {
613         setOperationAction(ISD::SHL, MVT::v2i64, Legal);
614         setOperationAction(ISD::SRA, MVT::v2i64, Legal);
615         setOperationAction(ISD::SRL, MVT::v2i64, Legal);
616 
617         setOperationAction(ISD::SETCC, MVT::v2i64, Legal);
618       }
619       else {
620         setOperationAction(ISD::SHL, MVT::v2i64, Expand);
621         setOperationAction(ISD::SRA, MVT::v2i64, Expand);
622         setOperationAction(ISD::SRL, MVT::v2i64, Expand);
623 
624         setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
625 
626         // VSX v2i64 only supports non-arithmetic operations.
627         setOperationAction(ISD::ADD, MVT::v2i64, Expand);
628         setOperationAction(ISD::SUB, MVT::v2i64, Expand);
629       }
630 
631       setOperationAction(ISD::LOAD, MVT::v2i64, Promote);
632       AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64);
633       setOperationAction(ISD::STORE, MVT::v2i64, Promote);
634       AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64);
635 
636       setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal);
637 
638       setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal);
639       setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal);
640       setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal);
641       setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal);
642 
643       // Vector operation legalization checks the result type of
644       // SIGN_EXTEND_INREG, overall legalization checks the inner type.
645       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal);
646       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal);
647       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
648       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
649 
650       setOperationAction(ISD::FNEG, MVT::v4f32, Legal);
651       setOperationAction(ISD::FNEG, MVT::v2f64, Legal);
652       setOperationAction(ISD::FABS, MVT::v4f32, Legal);
653       setOperationAction(ISD::FABS, MVT::v2f64, Legal);
654 
655       addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass);
656     }
657 
658     if (Subtarget.hasP8Altivec()) {
659       addRegisterClass(MVT::v2i64, &PPC::VRRCRegClass);
660       addRegisterClass(MVT::v1i128, &PPC::VRRCRegClass);
661     }
662   }
663 
664   if (Subtarget.hasQPX()) {
665     setOperationAction(ISD::FADD, MVT::v4f64, Legal);
666     setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
667     setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
668     setOperationAction(ISD::FREM, MVT::v4f64, Expand);
669 
670     setOperationAction(ISD::FCOPYSIGN, MVT::v4f64, Legal);
671     setOperationAction(ISD::FGETSIGN, MVT::v4f64, Expand);
672 
673     setOperationAction(ISD::LOAD  , MVT::v4f64, Custom);
674     setOperationAction(ISD::STORE , MVT::v4f64, Custom);
675 
676     setTruncStoreAction(MVT::v4f64, MVT::v4f32, Custom);
677     setLoadExtAction(ISD::EXTLOAD, MVT::v4f64, MVT::v4f32, Custom);
678 
679     if (!Subtarget.useCRBits())
680       setOperationAction(ISD::SELECT, MVT::v4f64, Expand);
681     setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
682 
683     setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f64, Legal);
684     setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f64, Expand);
685     setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f64, Expand);
686     setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f64, Expand);
687     setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f64, Custom);
688     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f64, Legal);
689     setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
690 
691     setOperationAction(ISD::FP_TO_SINT , MVT::v4f64, Legal);
692     setOperationAction(ISD::FP_TO_UINT , MVT::v4f64, Expand);
693 
694     setOperationAction(ISD::FP_ROUND , MVT::v4f32, Legal);
695     setOperationAction(ISD::FP_ROUND_INREG , MVT::v4f32, Expand);
696     setOperationAction(ISD::FP_EXTEND, MVT::v4f64, Legal);
697 
698     setOperationAction(ISD::FNEG , MVT::v4f64, Legal);
699     setOperationAction(ISD::FABS , MVT::v4f64, Legal);
700     setOperationAction(ISD::FSIN , MVT::v4f64, Expand);
701     setOperationAction(ISD::FCOS , MVT::v4f64, Expand);
702     setOperationAction(ISD::FPOWI , MVT::v4f64, Expand);
703     setOperationAction(ISD::FPOW , MVT::v4f64, Expand);
704     setOperationAction(ISD::FLOG , MVT::v4f64, Expand);
705     setOperationAction(ISD::FLOG2 , MVT::v4f64, Expand);
706     setOperationAction(ISD::FLOG10 , MVT::v4f64, Expand);
707     setOperationAction(ISD::FEXP , MVT::v4f64, Expand);
708     setOperationAction(ISD::FEXP2 , MVT::v4f64, Expand);
709 
710     setOperationAction(ISD::FMINNUM, MVT::v4f64, Legal);
711     setOperationAction(ISD::FMAXNUM, MVT::v4f64, Legal);
712 
713     setIndexedLoadAction(ISD::PRE_INC, MVT::v4f64, Legal);
714     setIndexedStoreAction(ISD::PRE_INC, MVT::v4f64, Legal);
715 
716     addRegisterClass(MVT::v4f64, &PPC::QFRCRegClass);
717 
718     setOperationAction(ISD::FADD, MVT::v4f32, Legal);
719     setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
720     setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
721     setOperationAction(ISD::FREM, MVT::v4f32, Expand);
722 
723     setOperationAction(ISD::FCOPYSIGN, MVT::v4f32, Legal);
724     setOperationAction(ISD::FGETSIGN, MVT::v4f32, Expand);
725 
726     setOperationAction(ISD::LOAD  , MVT::v4f32, Custom);
727     setOperationAction(ISD::STORE , MVT::v4f32, Custom);
728 
729     if (!Subtarget.useCRBits())
730       setOperationAction(ISD::SELECT, MVT::v4f32, Expand);
731     setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
732 
733     setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f32, Legal);
734     setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f32, Expand);
735     setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f32, Expand);
736     setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f32, Expand);
737     setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f32, Custom);
738     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Legal);
739     setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
740 
741     setOperationAction(ISD::FP_TO_SINT , MVT::v4f32, Legal);
742     setOperationAction(ISD::FP_TO_UINT , MVT::v4f32, Expand);
743 
744     setOperationAction(ISD::FNEG , MVT::v4f32, Legal);
745     setOperationAction(ISD::FABS , MVT::v4f32, Legal);
746     setOperationAction(ISD::FSIN , MVT::v4f32, Expand);
747     setOperationAction(ISD::FCOS , MVT::v4f32, Expand);
748     setOperationAction(ISD::FPOWI , MVT::v4f32, Expand);
749     setOperationAction(ISD::FPOW , MVT::v4f32, Expand);
750     setOperationAction(ISD::FLOG , MVT::v4f32, Expand);
751     setOperationAction(ISD::FLOG2 , MVT::v4f32, Expand);
752     setOperationAction(ISD::FLOG10 , MVT::v4f32, Expand);
753     setOperationAction(ISD::FEXP , MVT::v4f32, Expand);
754     setOperationAction(ISD::FEXP2 , MVT::v4f32, Expand);
755 
756     setOperationAction(ISD::FMINNUM, MVT::v4f32, Legal);
757     setOperationAction(ISD::FMAXNUM, MVT::v4f32, Legal);
758 
759     setIndexedLoadAction(ISD::PRE_INC, MVT::v4f32, Legal);
760     setIndexedStoreAction(ISD::PRE_INC, MVT::v4f32, Legal);
761 
762     addRegisterClass(MVT::v4f32, &PPC::QSRCRegClass);
763 
764     setOperationAction(ISD::AND , MVT::v4i1, Legal);
765     setOperationAction(ISD::OR , MVT::v4i1, Legal);
766     setOperationAction(ISD::XOR , MVT::v4i1, Legal);
767 
768     if (!Subtarget.useCRBits())
769       setOperationAction(ISD::SELECT, MVT::v4i1, Expand);
770     setOperationAction(ISD::VSELECT, MVT::v4i1, Legal);
771 
772     setOperationAction(ISD::LOAD  , MVT::v4i1, Custom);
773     setOperationAction(ISD::STORE , MVT::v4i1, Custom);
774 
775     setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4i1, Custom);
776     setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4i1, Expand);
777     setOperationAction(ISD::CONCAT_VECTORS , MVT::v4i1, Expand);
778     setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4i1, Expand);
779     setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4i1, Custom);
780     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i1, Expand);
781     setOperationAction(ISD::BUILD_VECTOR, MVT::v4i1, Custom);
782 
783     setOperationAction(ISD::SINT_TO_FP, MVT::v4i1, Custom);
784     setOperationAction(ISD::UINT_TO_FP, MVT::v4i1, Custom);
785 
786     addRegisterClass(MVT::v4i1, &PPC::QBRCRegClass);
787 
788     setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal);
789     setOperationAction(ISD::FCEIL,  MVT::v4f64, Legal);
790     setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal);
791     setOperationAction(ISD::FROUND, MVT::v4f64, Legal);
792 
793     setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
794     setOperationAction(ISD::FCEIL,  MVT::v4f32, Legal);
795     setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
796     setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
797 
798     setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Expand);
799     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
800 
801     // These need to set FE_INEXACT, and so cannot be vectorized here.
802     setOperationAction(ISD::FRINT, MVT::v4f64, Expand);
803     setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
804 
805     if (TM.Options.UnsafeFPMath) {
806       setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
807       setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
808 
809       setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
810       setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
811     } else {
812       setOperationAction(ISD::FDIV, MVT::v4f64, Expand);
813       setOperationAction(ISD::FSQRT, MVT::v4f64, Expand);
814 
815       setOperationAction(ISD::FDIV, MVT::v4f32, Expand);
816       setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
817     }
818   }
819 
820   if (Subtarget.has64BitSupport())
821     setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
822 
823   setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, isPPC64 ? Legal : Custom);
824 
825   if (!isPPC64) {
826     setOperationAction(ISD::ATOMIC_LOAD,  MVT::i64, Expand);
827     setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
828   }
829 
830   setBooleanContents(ZeroOrOneBooleanContent);
831 
832   if (Subtarget.hasAltivec()) {
833     // Altivec instructions set fields to all zeros or all ones.
834     setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
835   }
836 
837   if (!isPPC64) {
838     // These libcalls are not available in 32-bit.
839     setLibcallName(RTLIB::SHL_I128, nullptr);
840     setLibcallName(RTLIB::SRL_I128, nullptr);
841     setLibcallName(RTLIB::SRA_I128, nullptr);
842   }
843 
844   setStackPointerRegisterToSaveRestore(isPPC64 ? PPC::X1 : PPC::R1);
845 
846   // We have target-specific dag combine patterns for the following nodes:
847   setTargetDAGCombine(ISD::SINT_TO_FP);
848   if (Subtarget.hasFPCVT())
849     setTargetDAGCombine(ISD::UINT_TO_FP);
850   setTargetDAGCombine(ISD::LOAD);
851   setTargetDAGCombine(ISD::STORE);
852   setTargetDAGCombine(ISD::BR_CC);
853   if (Subtarget.useCRBits())
854     setTargetDAGCombine(ISD::BRCOND);
855   setTargetDAGCombine(ISD::BSWAP);
856   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
857   setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
858   setTargetDAGCombine(ISD::INTRINSIC_VOID);
859 
860   setTargetDAGCombine(ISD::SIGN_EXTEND);
861   setTargetDAGCombine(ISD::ZERO_EXTEND);
862   setTargetDAGCombine(ISD::ANY_EXTEND);
863 
864   if (Subtarget.useCRBits()) {
865     setTargetDAGCombine(ISD::TRUNCATE);
866     setTargetDAGCombine(ISD::SETCC);
867     setTargetDAGCombine(ISD::SELECT_CC);
868   }
869 
870   // Use reciprocal estimates.
871   if (TM.Options.UnsafeFPMath) {
872     setTargetDAGCombine(ISD::FDIV);
873     setTargetDAGCombine(ISD::FSQRT);
874   }
875 
876   // Darwin long double math library functions have $LDBL128 appended.
877   if (Subtarget.isDarwin()) {
878     setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
879     setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
880     setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
881     setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
882     setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
883     setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
884     setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
885     setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
886     setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
887     setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
888   }
889 
890   // With 32 condition bits, we don't need to sink (and duplicate) compares
891   // aggressively in CodeGenPrep.
892   if (Subtarget.useCRBits()) {
893     setHasMultipleConditionRegisters();
894     setJumpIsExpensive();
895   }
896 
897   setMinFunctionAlignment(2);
898   if (Subtarget.isDarwin())
899     setPrefFunctionAlignment(4);
900 
901   switch (Subtarget.getDarwinDirective()) {
902   default: break;
903   case PPC::DIR_970:
904   case PPC::DIR_A2:
905   case PPC::DIR_E500mc:
906   case PPC::DIR_E5500:
907   case PPC::DIR_PWR4:
908   case PPC::DIR_PWR5:
909   case PPC::DIR_PWR5X:
910   case PPC::DIR_PWR6:
911   case PPC::DIR_PWR6X:
912   case PPC::DIR_PWR7:
913   case PPC::DIR_PWR8:
914     setPrefFunctionAlignment(4);
915     setPrefLoopAlignment(4);
916     break;
917   }
918 
919   setInsertFencesForAtomic(true);
920 
921   if (Subtarget.enableMachineScheduler())
922     setSchedulingPreference(Sched::Source);
923   else
924     setSchedulingPreference(Sched::Hybrid);
925 
926   computeRegisterProperties(STI.getRegisterInfo());
927 
928   // The Freescale cores do better with aggressive inlining of memcpy and
929   // friends. GCC uses same threshold of 128 bytes (= 32 word stores).
930   if (Subtarget.getDarwinDirective() == PPC::DIR_E500mc ||
931       Subtarget.getDarwinDirective() == PPC::DIR_E5500) {
932     MaxStoresPerMemset = 32;
933     MaxStoresPerMemsetOptSize = 16;
934     MaxStoresPerMemcpy = 32;
935     MaxStoresPerMemcpyOptSize = 8;
936     MaxStoresPerMemmove = 32;
937     MaxStoresPerMemmoveOptSize = 8;
938   } else if (Subtarget.getDarwinDirective() == PPC::DIR_A2) {
939     // The A2 also benefits from (very) aggressive inlining of memcpy and
940     // friends. The overhead of a the function call, even when warm, can be
941     // over one hundred cycles.
942     MaxStoresPerMemset = 128;
943     MaxStoresPerMemcpy = 128;
944     MaxStoresPerMemmove = 128;
945   }
946 }
947 
948 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
949 /// the desired ByVal argument alignment.
950 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign,
951                              unsigned MaxMaxAlign) {
952   if (MaxAlign == MaxMaxAlign)
953     return;
954   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
955     if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256)
956       MaxAlign = 32;
957     else if (VTy->getBitWidth() >= 128 && MaxAlign < 16)
958       MaxAlign = 16;
959   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
960     unsigned EltAlign = 0;
961     getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign);
962     if (EltAlign > MaxAlign)
963       MaxAlign = EltAlign;
964   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
965     for (auto *EltTy : STy->elements()) {
966       unsigned EltAlign = 0;
967       getMaxByValAlign(EltTy, EltAlign, MaxMaxAlign);
968       if (EltAlign > MaxAlign)
969         MaxAlign = EltAlign;
970       if (MaxAlign == MaxMaxAlign)
971         break;
972     }
973   }
974 }
975 
976 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
977 /// function arguments in the caller parameter area.
978 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty,
979                                                   const DataLayout &DL) const {
980   // Darwin passes everything on 4 byte boundary.
981   if (Subtarget.isDarwin())
982     return 4;
983 
984   // 16byte and wider vectors are passed on 16byte boundary.
985   // The rest is 8 on PPC64 and 4 on PPC32 boundary.
986   unsigned Align = Subtarget.isPPC64() ? 8 : 4;
987   if (Subtarget.hasAltivec() || Subtarget.hasQPX())
988     getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16);
989   return Align;
990 }
991 
992 bool PPCTargetLowering::useSoftFloat() const {
993   return Subtarget.useSoftFloat();
994 }
995 
996 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
997   switch ((PPCISD::NodeType)Opcode) {
998   case PPCISD::FIRST_NUMBER:    break;
999   case PPCISD::FSEL:            return "PPCISD::FSEL";
1000   case PPCISD::FCFID:           return "PPCISD::FCFID";
1001   case PPCISD::FCFIDU:          return "PPCISD::FCFIDU";
1002   case PPCISD::FCFIDS:          return "PPCISD::FCFIDS";
1003   case PPCISD::FCFIDUS:         return "PPCISD::FCFIDUS";
1004   case PPCISD::FCTIDZ:          return "PPCISD::FCTIDZ";
1005   case PPCISD::FCTIWZ:          return "PPCISD::FCTIWZ";
1006   case PPCISD::FCTIDUZ:         return "PPCISD::FCTIDUZ";
1007   case PPCISD::FCTIWUZ:         return "PPCISD::FCTIWUZ";
1008   case PPCISD::FRE:             return "PPCISD::FRE";
1009   case PPCISD::FRSQRTE:         return "PPCISD::FRSQRTE";
1010   case PPCISD::STFIWX:          return "PPCISD::STFIWX";
1011   case PPCISD::VMADDFP:         return "PPCISD::VMADDFP";
1012   case PPCISD::VNMSUBFP:        return "PPCISD::VNMSUBFP";
1013   case PPCISD::VPERM:           return "PPCISD::VPERM";
1014   case PPCISD::CMPB:            return "PPCISD::CMPB";
1015   case PPCISD::Hi:              return "PPCISD::Hi";
1016   case PPCISD::Lo:              return "PPCISD::Lo";
1017   case PPCISD::TOC_ENTRY:       return "PPCISD::TOC_ENTRY";
1018   case PPCISD::DYNALLOC:        return "PPCISD::DYNALLOC";
1019   case PPCISD::DYNAREAOFFSET:   return "PPCISD::DYNAREAOFFSET";
1020   case PPCISD::GlobalBaseReg:   return "PPCISD::GlobalBaseReg";
1021   case PPCISD::SRL:             return "PPCISD::SRL";
1022   case PPCISD::SRA:             return "PPCISD::SRA";
1023   case PPCISD::SHL:             return "PPCISD::SHL";
1024   case PPCISD::SRA_ADDZE:       return "PPCISD::SRA_ADDZE";
1025   case PPCISD::CALL:            return "PPCISD::CALL";
1026   case PPCISD::CALL_NOP:        return "PPCISD::CALL_NOP";
1027   case PPCISD::MTCTR:           return "PPCISD::MTCTR";
1028   case PPCISD::BCTRL:           return "PPCISD::BCTRL";
1029   case PPCISD::BCTRL_LOAD_TOC:  return "PPCISD::BCTRL_LOAD_TOC";
1030   case PPCISD::RET_FLAG:        return "PPCISD::RET_FLAG";
1031   case PPCISD::READ_TIME_BASE:  return "PPCISD::READ_TIME_BASE";
1032   case PPCISD::EH_SJLJ_SETJMP:  return "PPCISD::EH_SJLJ_SETJMP";
1033   case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
1034   case PPCISD::MFOCRF:          return "PPCISD::MFOCRF";
1035   case PPCISD::MFVSR:           return "PPCISD::MFVSR";
1036   case PPCISD::MTVSRA:          return "PPCISD::MTVSRA";
1037   case PPCISD::MTVSRZ:          return "PPCISD::MTVSRZ";
1038   case PPCISD::ANDIo_1_EQ_BIT:  return "PPCISD::ANDIo_1_EQ_BIT";
1039   case PPCISD::ANDIo_1_GT_BIT:  return "PPCISD::ANDIo_1_GT_BIT";
1040   case PPCISD::VCMP:            return "PPCISD::VCMP";
1041   case PPCISD::VCMPo:           return "PPCISD::VCMPo";
1042   case PPCISD::LBRX:            return "PPCISD::LBRX";
1043   case PPCISD::STBRX:           return "PPCISD::STBRX";
1044   case PPCISD::LFIWAX:          return "PPCISD::LFIWAX";
1045   case PPCISD::LFIWZX:          return "PPCISD::LFIWZX";
1046   case PPCISD::LXVD2X:          return "PPCISD::LXVD2X";
1047   case PPCISD::STXVD2X:         return "PPCISD::STXVD2X";
1048   case PPCISD::COND_BRANCH:     return "PPCISD::COND_BRANCH";
1049   case PPCISD::BDNZ:            return "PPCISD::BDNZ";
1050   case PPCISD::BDZ:             return "PPCISD::BDZ";
1051   case PPCISD::MFFS:            return "PPCISD::MFFS";
1052   case PPCISD::FADDRTZ:         return "PPCISD::FADDRTZ";
1053   case PPCISD::TC_RETURN:       return "PPCISD::TC_RETURN";
1054   case PPCISD::CR6SET:          return "PPCISD::CR6SET";
1055   case PPCISD::CR6UNSET:        return "PPCISD::CR6UNSET";
1056   case PPCISD::PPC32_GOT:       return "PPCISD::PPC32_GOT";
1057   case PPCISD::PPC32_PICGOT:    return "PPCISD::PPC32_PICGOT";
1058   case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
1059   case PPCISD::LD_GOT_TPREL_L:  return "PPCISD::LD_GOT_TPREL_L";
1060   case PPCISD::ADD_TLS:         return "PPCISD::ADD_TLS";
1061   case PPCISD::ADDIS_TLSGD_HA:  return "PPCISD::ADDIS_TLSGD_HA";
1062   case PPCISD::ADDI_TLSGD_L:    return "PPCISD::ADDI_TLSGD_L";
1063   case PPCISD::GET_TLS_ADDR:    return "PPCISD::GET_TLS_ADDR";
1064   case PPCISD::ADDI_TLSGD_L_ADDR: return "PPCISD::ADDI_TLSGD_L_ADDR";
1065   case PPCISD::ADDIS_TLSLD_HA:  return "PPCISD::ADDIS_TLSLD_HA";
1066   case PPCISD::ADDI_TLSLD_L:    return "PPCISD::ADDI_TLSLD_L";
1067   case PPCISD::GET_TLSLD_ADDR:  return "PPCISD::GET_TLSLD_ADDR";
1068   case PPCISD::ADDI_TLSLD_L_ADDR: return "PPCISD::ADDI_TLSLD_L_ADDR";
1069   case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
1070   case PPCISD::ADDI_DTPREL_L:   return "PPCISD::ADDI_DTPREL_L";
1071   case PPCISD::VADD_SPLAT:      return "PPCISD::VADD_SPLAT";
1072   case PPCISD::SC:              return "PPCISD::SC";
1073   case PPCISD::CLRBHRB:         return "PPCISD::CLRBHRB";
1074   case PPCISD::MFBHRBE:         return "PPCISD::MFBHRBE";
1075   case PPCISD::RFEBB:           return "PPCISD::RFEBB";
1076   case PPCISD::XXSWAPD:         return "PPCISD::XXSWAPD";
1077   case PPCISD::QVFPERM:         return "PPCISD::QVFPERM";
1078   case PPCISD::QVGPCI:          return "PPCISD::QVGPCI";
1079   case PPCISD::QVALIGNI:        return "PPCISD::QVALIGNI";
1080   case PPCISD::QVESPLATI:       return "PPCISD::QVESPLATI";
1081   case PPCISD::QBFLT:           return "PPCISD::QBFLT";
1082   case PPCISD::QVLFSb:          return "PPCISD::QVLFSb";
1083   }
1084   return nullptr;
1085 }
1086 
1087 EVT PPCTargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &C,
1088                                           EVT VT) const {
1089   if (!VT.isVector())
1090     return Subtarget.useCRBits() ? MVT::i1 : MVT::i32;
1091 
1092   if (Subtarget.hasQPX())
1093     return EVT::getVectorVT(C, MVT::i1, VT.getVectorNumElements());
1094 
1095   return VT.changeVectorElementTypeToInteger();
1096 }
1097 
1098 bool PPCTargetLowering::enableAggressiveFMAFusion(EVT VT) const {
1099   assert(VT.isFloatingPoint() && "Non-floating-point FMA?");
1100   return true;
1101 }
1102 
1103 //===----------------------------------------------------------------------===//
1104 // Node matching predicates, for use by the tblgen matching code.
1105 //===----------------------------------------------------------------------===//
1106 
1107 /// isFloatingPointZero - Return true if this is 0.0 or -0.0.
1108 static bool isFloatingPointZero(SDValue Op) {
1109   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
1110     return CFP->getValueAPF().isZero();
1111   else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
1112     // Maybe this has already been legalized into the constant pool?
1113     if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
1114       if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
1115         return CFP->getValueAPF().isZero();
1116   }
1117   return false;
1118 }
1119 
1120 /// isConstantOrUndef - Op is either an undef node or a ConstantSDNode.  Return
1121 /// true if Op is undef or if it matches the specified value.
1122 static bool isConstantOrUndef(int Op, int Val) {
1123   return Op < 0 || Op == Val;
1124 }
1125 
1126 /// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
1127 /// VPKUHUM instruction.
1128 /// The ShuffleKind distinguishes between big-endian operations with
1129 /// two different inputs (0), either-endian operations with two identical
1130 /// inputs (1), and little-endian operations with two different inputs (2).
1131 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1132 bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
1133                                SelectionDAG &DAG) {
1134   bool IsLE = DAG.getDataLayout().isLittleEndian();
1135   if (ShuffleKind == 0) {
1136     if (IsLE)
1137       return false;
1138     for (unsigned i = 0; i != 16; ++i)
1139       if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
1140         return false;
1141   } else if (ShuffleKind == 2) {
1142     if (!IsLE)
1143       return false;
1144     for (unsigned i = 0; i != 16; ++i)
1145       if (!isConstantOrUndef(N->getMaskElt(i), i*2))
1146         return false;
1147   } else if (ShuffleKind == 1) {
1148     unsigned j = IsLE ? 0 : 1;
1149     for (unsigned i = 0; i != 8; ++i)
1150       if (!isConstantOrUndef(N->getMaskElt(i),    i*2+j) ||
1151           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j))
1152         return false;
1153   }
1154   return true;
1155 }
1156 
1157 /// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
1158 /// VPKUWUM instruction.
1159 /// The ShuffleKind distinguishes between big-endian operations with
1160 /// two different inputs (0), either-endian operations with two identical
1161 /// inputs (1), and little-endian operations with two different inputs (2).
1162 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1163 bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
1164                                SelectionDAG &DAG) {
1165   bool IsLE = DAG.getDataLayout().isLittleEndian();
1166   if (ShuffleKind == 0) {
1167     if (IsLE)
1168       return false;
1169     for (unsigned i = 0; i != 16; i += 2)
1170       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+2) ||
1171           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+3))
1172         return false;
1173   } else if (ShuffleKind == 2) {
1174     if (!IsLE)
1175       return false;
1176     for (unsigned i = 0; i != 16; i += 2)
1177       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2) ||
1178           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+1))
1179         return false;
1180   } else if (ShuffleKind == 1) {
1181     unsigned j = IsLE ? 0 : 2;
1182     for (unsigned i = 0; i != 8; i += 2)
1183       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+j)   ||
1184           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+j+1) ||
1185           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j)   ||
1186           !isConstantOrUndef(N->getMaskElt(i+9),  i*2+j+1))
1187         return false;
1188   }
1189   return true;
1190 }
1191 
1192 /// isVPKUDUMShuffleMask - Return true if this is the shuffle mask for a
1193 /// VPKUDUM instruction, AND the VPKUDUM instruction exists for the
1194 /// current subtarget.
1195 ///
1196 /// The ShuffleKind distinguishes between big-endian operations with
1197 /// two different inputs (0), either-endian operations with two identical
1198 /// inputs (1), and little-endian operations with two different inputs (2).
1199 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
1200 bool PPC::isVPKUDUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
1201                                SelectionDAG &DAG) {
1202   const PPCSubtarget& Subtarget =
1203     static_cast<const PPCSubtarget&>(DAG.getSubtarget());
1204   if (!Subtarget.hasP8Vector())
1205     return false;
1206 
1207   bool IsLE = DAG.getDataLayout().isLittleEndian();
1208   if (ShuffleKind == 0) {
1209     if (IsLE)
1210       return false;
1211     for (unsigned i = 0; i != 16; i += 4)
1212       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+4) ||
1213           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+5) ||
1214           !isConstantOrUndef(N->getMaskElt(i+2),  i*2+6) ||
1215           !isConstantOrUndef(N->getMaskElt(i+3),  i*2+7))
1216         return false;
1217   } else if (ShuffleKind == 2) {
1218     if (!IsLE)
1219       return false;
1220     for (unsigned i = 0; i != 16; i += 4)
1221       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2) ||
1222           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+1) ||
1223           !isConstantOrUndef(N->getMaskElt(i+2),  i*2+2) ||
1224           !isConstantOrUndef(N->getMaskElt(i+3),  i*2+3))
1225         return false;
1226   } else if (ShuffleKind == 1) {
1227     unsigned j = IsLE ? 0 : 4;
1228     for (unsigned i = 0; i != 8; i += 4)
1229       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+j)   ||
1230           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+j+1) ||
1231           !isConstantOrUndef(N->getMaskElt(i+2),  i*2+j+2) ||
1232           !isConstantOrUndef(N->getMaskElt(i+3),  i*2+j+3) ||
1233           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j)   ||
1234           !isConstantOrUndef(N->getMaskElt(i+9),  i*2+j+1) ||
1235           !isConstantOrUndef(N->getMaskElt(i+10), i*2+j+2) ||
1236           !isConstantOrUndef(N->getMaskElt(i+11), i*2+j+3))
1237         return false;
1238   }
1239   return true;
1240 }
1241 
1242 /// isVMerge - Common function, used to match vmrg* shuffles.
1243 ///
1244 static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
1245                      unsigned LHSStart, unsigned RHSStart) {
1246   if (N->getValueType(0) != MVT::v16i8)
1247     return false;
1248   assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
1249          "Unsupported merge size!");
1250 
1251   for (unsigned i = 0; i != 8/UnitSize; ++i)     // Step over units
1252     for (unsigned j = 0; j != UnitSize; ++j) {   // Step over bytes within unit
1253       if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
1254                              LHSStart+j+i*UnitSize) ||
1255           !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
1256                              RHSStart+j+i*UnitSize))
1257         return false;
1258     }
1259   return true;
1260 }
1261 
1262 /// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
1263 /// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes).
1264 /// The ShuffleKind distinguishes between big-endian merges with two
1265 /// different inputs (0), either-endian merges with two identical inputs (1),
1266 /// and little-endian merges with two different inputs (2).  For the latter,
1267 /// the input operands are swapped (see PPCInstrAltivec.td).
1268 bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
1269                              unsigned ShuffleKind, SelectionDAG &DAG) {
1270   if (DAG.getDataLayout().isLittleEndian()) {
1271     if (ShuffleKind == 1) // unary
1272       return isVMerge(N, UnitSize, 0, 0);
1273     else if (ShuffleKind == 2) // swapped
1274       return isVMerge(N, UnitSize, 0, 16);
1275     else
1276       return false;
1277   } else {
1278     if (ShuffleKind == 1) // unary
1279       return isVMerge(N, UnitSize, 8, 8);
1280     else if (ShuffleKind == 0) // normal
1281       return isVMerge(N, UnitSize, 8, 24);
1282     else
1283       return false;
1284   }
1285 }
1286 
1287 /// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
1288 /// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes).
1289 /// The ShuffleKind distinguishes between big-endian merges with two
1290 /// different inputs (0), either-endian merges with two identical inputs (1),
1291 /// and little-endian merges with two different inputs (2).  For the latter,
1292 /// the input operands are swapped (see PPCInstrAltivec.td).
1293 bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
1294                              unsigned ShuffleKind, SelectionDAG &DAG) {
1295   if (DAG.getDataLayout().isLittleEndian()) {
1296     if (ShuffleKind == 1) // unary
1297       return isVMerge(N, UnitSize, 8, 8);
1298     else if (ShuffleKind == 2) // swapped
1299       return isVMerge(N, UnitSize, 8, 24);
1300     else
1301       return false;
1302   } else {
1303     if (ShuffleKind == 1) // unary
1304       return isVMerge(N, UnitSize, 0, 0);
1305     else if (ShuffleKind == 0) // normal
1306       return isVMerge(N, UnitSize, 0, 16);
1307     else
1308       return false;
1309   }
1310 }
1311 
1312 /**
1313  * \brief Common function used to match vmrgew and vmrgow shuffles
1314  *
1315  * The indexOffset determines whether to look for even or odd words in
1316  * the shuffle mask. This is based on the of the endianness of the target
1317  * machine.
1318  *   - Little Endian:
1319  *     - Use offset of 0 to check for odd elements
1320  *     - Use offset of 4 to check for even elements
1321  *   - Big Endian:
1322  *     - Use offset of 0 to check for even elements
1323  *     - Use offset of 4 to check for odd elements
1324  * A detailed description of the vector element ordering for little endian and
1325  * big endian can be found at
1326  * http://www.ibm.com/developerworks/library/l-ibm-xl-c-cpp-compiler/index.html
1327  * Targeting your applications - what little endian and big endian IBM XL C/C++
1328  * compiler differences mean to you
1329  *
1330  * The mask to the shuffle vector instruction specifies the indices of the
1331  * elements from the two input vectors to place in the result. The elements are
1332  * numbered in array-access order, starting with the first vector. These vectors
1333  * are always of type v16i8, thus each vector will contain 16 elements of size
1334  * 8. More info on the shuffle vector can be found in the
1335  * http://llvm.org/docs/LangRef.html#shufflevector-instruction
1336  * Language Reference.
1337  *
1338  * The RHSStartValue indicates whether the same input vectors are used (unary)
1339  * or two different input vectors are used, based on the following:
1340  *   - If the instruction uses the same vector for both inputs, the range of the
1341  *     indices will be 0 to 15. In this case, the RHSStart value passed should
1342  *     be 0.
1343  *   - If the instruction has two different vectors then the range of the
1344  *     indices will be 0 to 31. In this case, the RHSStart value passed should
1345  *     be 16 (indices 0-15 specify elements in the first vector while indices 16
1346  *     to 31 specify elements in the second vector).
1347  *
1348  * \param[in] N The shuffle vector SD Node to analyze
1349  * \param[in] IndexOffset Specifies whether to look for even or odd elements
1350  * \param[in] RHSStartValue Specifies the starting index for the righthand input
1351  * vector to the shuffle_vector instruction
1352  * \return true iff this shuffle vector represents an even or odd word merge
1353  */
1354 static bool isVMerge(ShuffleVectorSDNode *N, unsigned IndexOffset,
1355                      unsigned RHSStartValue) {
1356   if (N->getValueType(0) != MVT::v16i8)
1357     return false;
1358 
1359   for (unsigned i = 0; i < 2; ++i)
1360     for (unsigned j = 0; j < 4; ++j)
1361       if (!isConstantOrUndef(N->getMaskElt(i*4+j),
1362                              i*RHSStartValue+j+IndexOffset) ||
1363           !isConstantOrUndef(N->getMaskElt(i*4+j+8),
1364                              i*RHSStartValue+j+IndexOffset+8))
1365         return false;
1366   return true;
1367 }
1368 
1369 /**
1370  * \brief Determine if the specified shuffle mask is suitable for the vmrgew or
1371  * vmrgow instructions.
1372  *
1373  * \param[in] N The shuffle vector SD Node to analyze
1374  * \param[in] CheckEven Check for an even merge (true) or an odd merge (false)
1375  * \param[in] ShuffleKind Identify the type of merge:
1376  *   - 0 = big-endian merge with two different inputs;
1377  *   - 1 = either-endian merge with two identical inputs;
1378  *   - 2 = little-endian merge with two different inputs (inputs are swapped for
1379  *     little-endian merges).
1380  * \param[in] DAG The current SelectionDAG
1381  * \return true iff this shuffle mask
1382  */
1383 bool PPC::isVMRGEOShuffleMask(ShuffleVectorSDNode *N, bool CheckEven,
1384                               unsigned ShuffleKind, SelectionDAG &DAG) {
1385   if (DAG.getDataLayout().isLittleEndian()) {
1386     unsigned indexOffset = CheckEven ? 4 : 0;
1387     if (ShuffleKind == 1) // Unary
1388       return isVMerge(N, indexOffset, 0);
1389     else if (ShuffleKind == 2) // swapped
1390       return isVMerge(N, indexOffset, 16);
1391     else
1392       return false;
1393   }
1394   else {
1395     unsigned indexOffset = CheckEven ? 0 : 4;
1396     if (ShuffleKind == 1) // Unary
1397       return isVMerge(N, indexOffset, 0);
1398     else if (ShuffleKind == 0) // Normal
1399       return isVMerge(N, indexOffset, 16);
1400     else
1401       return false;
1402   }
1403   return false;
1404 }
1405 
1406 /// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
1407 /// amount, otherwise return -1.
1408 /// The ShuffleKind distinguishes between big-endian operations with two
1409 /// different inputs (0), either-endian operations with two identical inputs
1410 /// (1), and little-endian operations with two different inputs (2).  For the
1411 /// latter, the input operands are swapped (see PPCInstrAltivec.td).
1412 int PPC::isVSLDOIShuffleMask(SDNode *N, unsigned ShuffleKind,
1413                              SelectionDAG &DAG) {
1414   if (N->getValueType(0) != MVT::v16i8)
1415     return -1;
1416 
1417   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1418 
1419   // Find the first non-undef value in the shuffle mask.
1420   unsigned i;
1421   for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
1422     /*search*/;
1423 
1424   if (i == 16) return -1;  // all undef.
1425 
1426   // Otherwise, check to see if the rest of the elements are consecutively
1427   // numbered from this value.
1428   unsigned ShiftAmt = SVOp->getMaskElt(i);
1429   if (ShiftAmt < i) return -1;
1430 
1431   ShiftAmt -= i;
1432   bool isLE = DAG.getDataLayout().isLittleEndian();
1433 
1434   if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) {
1435     // Check the rest of the elements to see if they are consecutive.
1436     for (++i; i != 16; ++i)
1437       if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1438         return -1;
1439   } else if (ShuffleKind == 1) {
1440     // Check the rest of the elements to see if they are consecutive.
1441     for (++i; i != 16; ++i)
1442       if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
1443         return -1;
1444   } else
1445     return -1;
1446 
1447   if (isLE)
1448     ShiftAmt = 16 - ShiftAmt;
1449 
1450   return ShiftAmt;
1451 }
1452 
1453 /// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
1454 /// specifies a splat of a single element that is suitable for input to
1455 /// VSPLTB/VSPLTH/VSPLTW.
1456 bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
1457   assert(N->getValueType(0) == MVT::v16i8 &&
1458          (EltSize == 1 || EltSize == 2 || EltSize == 4));
1459 
1460   // The consecutive indices need to specify an element, not part of two
1461   // different elements.  So abandon ship early if this isn't the case.
1462   if (N->getMaskElt(0) % EltSize != 0)
1463     return false;
1464 
1465   // This is a splat operation if each element of the permute is the same, and
1466   // if the value doesn't reference the second vector.
1467   unsigned ElementBase = N->getMaskElt(0);
1468 
1469   // FIXME: Handle UNDEF elements too!
1470   if (ElementBase >= 16)
1471     return false;
1472 
1473   // Check that the indices are consecutive, in the case of a multi-byte element
1474   // splatted with a v16i8 mask.
1475   for (unsigned i = 1; i != EltSize; ++i)
1476     if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
1477       return false;
1478 
1479   for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
1480     if (N->getMaskElt(i) < 0) continue;
1481     for (unsigned j = 0; j != EltSize; ++j)
1482       if (N->getMaskElt(i+j) != N->getMaskElt(j))
1483         return false;
1484   }
1485   return true;
1486 }
1487 
1488 /// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
1489 /// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
1490 unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize,
1491                                 SelectionDAG &DAG) {
1492   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1493   assert(isSplatShuffleMask(SVOp, EltSize));
1494   if (DAG.getDataLayout().isLittleEndian())
1495     return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize);
1496   else
1497     return SVOp->getMaskElt(0) / EltSize;
1498 }
1499 
1500 /// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
1501 /// by using a vspltis[bhw] instruction of the specified element size, return
1502 /// the constant being splatted.  The ByteSize field indicates the number of
1503 /// bytes of each element [124] -> [bhw].
1504 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
1505   SDValue OpVal(nullptr, 0);
1506 
1507   // If ByteSize of the splat is bigger than the element size of the
1508   // build_vector, then we have a case where we are checking for a splat where
1509   // multiple elements of the buildvector are folded together into a single
1510   // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
1511   unsigned EltSize = 16/N->getNumOperands();
1512   if (EltSize < ByteSize) {
1513     unsigned Multiple = ByteSize/EltSize;   // Number of BV entries per spltval.
1514     SDValue UniquedVals[4];
1515     assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
1516 
1517     // See if all of the elements in the buildvector agree across.
1518     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1519       if (N->getOperand(i).isUndef()) continue;
1520       // If the element isn't a constant, bail fully out.
1521       if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
1522 
1523 
1524       if (!UniquedVals[i&(Multiple-1)].getNode())
1525         UniquedVals[i&(Multiple-1)] = N->getOperand(i);
1526       else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
1527         return SDValue();  // no match.
1528     }
1529 
1530     // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
1531     // either constant or undef values that are identical for each chunk.  See
1532     // if these chunks can form into a larger vspltis*.
1533 
1534     // Check to see if all of the leading entries are either 0 or -1.  If
1535     // neither, then this won't fit into the immediate field.
1536     bool LeadingZero = true;
1537     bool LeadingOnes = true;
1538     for (unsigned i = 0; i != Multiple-1; ++i) {
1539       if (!UniquedVals[i].getNode()) continue;  // Must have been undefs.
1540 
1541       LeadingZero &= isNullConstant(UniquedVals[i]);
1542       LeadingOnes &= isAllOnesConstant(UniquedVals[i]);
1543     }
1544     // Finally, check the least significant entry.
1545     if (LeadingZero) {
1546       if (!UniquedVals[Multiple-1].getNode())
1547         return DAG.getTargetConstant(0, SDLoc(N), MVT::i32);  // 0,0,0,undef
1548       int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
1549       if (Val < 16)                                   // 0,0,0,4 -> vspltisw(4)
1550         return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32);
1551     }
1552     if (LeadingOnes) {
1553       if (!UniquedVals[Multiple-1].getNode())
1554         return DAG.getTargetConstant(~0U, SDLoc(N), MVT::i32); // -1,-1,-1,undef
1555       int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
1556       if (Val >= -16)                            // -1,-1,-1,-2 -> vspltisw(-2)
1557         return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32);
1558     }
1559 
1560     return SDValue();
1561   }
1562 
1563   // Check to see if this buildvec has a single non-undef value in its elements.
1564   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1565     if (N->getOperand(i).isUndef()) continue;
1566     if (!OpVal.getNode())
1567       OpVal = N->getOperand(i);
1568     else if (OpVal != N->getOperand(i))
1569       return SDValue();
1570   }
1571 
1572   if (!OpVal.getNode()) return SDValue();  // All UNDEF: use implicit def.
1573 
1574   unsigned ValSizeInBytes = EltSize;
1575   uint64_t Value = 0;
1576   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
1577     Value = CN->getZExtValue();
1578   } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
1579     assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
1580     Value = FloatToBits(CN->getValueAPF().convertToFloat());
1581   }
1582 
1583   // If the splat value is larger than the element value, then we can never do
1584   // this splat.  The only case that we could fit the replicated bits into our
1585   // immediate field for would be zero, and we prefer to use vxor for it.
1586   if (ValSizeInBytes < ByteSize) return SDValue();
1587 
1588   // If the element value is larger than the splat value, check if it consists
1589   // of a repeated bit pattern of size ByteSize.
1590   if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
1591     return SDValue();
1592 
1593   // Properly sign extend the value.
1594   int MaskVal = SignExtend32(Value, ByteSize * 8);
1595 
1596   // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
1597   if (MaskVal == 0) return SDValue();
1598 
1599   // Finally, if this value fits in a 5 bit sext field, return it
1600   if (SignExtend32<5>(MaskVal) == MaskVal)
1601     return DAG.getTargetConstant(MaskVal, SDLoc(N), MVT::i32);
1602   return SDValue();
1603 }
1604 
1605 /// isQVALIGNIShuffleMask - If this is a qvaligni shuffle mask, return the shift
1606 /// amount, otherwise return -1.
1607 int PPC::isQVALIGNIShuffleMask(SDNode *N) {
1608   EVT VT = N->getValueType(0);
1609   if (VT != MVT::v4f64 && VT != MVT::v4f32 && VT != MVT::v4i1)
1610     return -1;
1611 
1612   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1613 
1614   // Find the first non-undef value in the shuffle mask.
1615   unsigned i;
1616   for (i = 0; i != 4 && SVOp->getMaskElt(i) < 0; ++i)
1617     /*search*/;
1618 
1619   if (i == 4) return -1;  // all undef.
1620 
1621   // Otherwise, check to see if the rest of the elements are consecutively
1622   // numbered from this value.
1623   unsigned ShiftAmt = SVOp->getMaskElt(i);
1624   if (ShiftAmt < i) return -1;
1625   ShiftAmt -= i;
1626 
1627   // Check the rest of the elements to see if they are consecutive.
1628   for (++i; i != 4; ++i)
1629     if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1630       return -1;
1631 
1632   return ShiftAmt;
1633 }
1634 
1635 //===----------------------------------------------------------------------===//
1636 //  Addressing Mode Selection
1637 //===----------------------------------------------------------------------===//
1638 
1639 /// isIntS16Immediate - This method tests to see if the node is either a 32-bit
1640 /// or 64-bit immediate, and if the value can be accurately represented as a
1641 /// sign extension from a 16-bit value.  If so, this returns true and the
1642 /// immediate.
1643 static bool isIntS16Immediate(SDNode *N, short &Imm) {
1644   if (!isa<ConstantSDNode>(N))
1645     return false;
1646 
1647   Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
1648   if (N->getValueType(0) == MVT::i32)
1649     return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
1650   else
1651     return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
1652 }
1653 static bool isIntS16Immediate(SDValue Op, short &Imm) {
1654   return isIntS16Immediate(Op.getNode(), Imm);
1655 }
1656 
1657 /// SelectAddressRegReg - Given the specified addressed, check to see if it
1658 /// can be represented as an indexed [r+r] operation.  Returns false if it
1659 /// can be more efficiently represented with [r+imm].
1660 bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1661                                             SDValue &Index,
1662                                             SelectionDAG &DAG) const {
1663   short imm = 0;
1664   if (N.getOpcode() == ISD::ADD) {
1665     if (isIntS16Immediate(N.getOperand(1), imm))
1666       return false;    // r+i
1667     if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1668       return false;    // r+i
1669 
1670     Base = N.getOperand(0);
1671     Index = N.getOperand(1);
1672     return true;
1673   } else if (N.getOpcode() == ISD::OR) {
1674     if (isIntS16Immediate(N.getOperand(1), imm))
1675       return false;    // r+i can fold it if we can.
1676 
1677     // If this is an or of disjoint bitfields, we can codegen this as an add
1678     // (for better address arithmetic) if the LHS and RHS of the OR are provably
1679     // disjoint.
1680     APInt LHSKnownZero, LHSKnownOne;
1681     APInt RHSKnownZero, RHSKnownOne;
1682     DAG.computeKnownBits(N.getOperand(0),
1683                          LHSKnownZero, LHSKnownOne);
1684 
1685     if (LHSKnownZero.getBoolValue()) {
1686       DAG.computeKnownBits(N.getOperand(1),
1687                            RHSKnownZero, RHSKnownOne);
1688       // If all of the bits are known zero on the LHS or RHS, the add won't
1689       // carry.
1690       if (~(LHSKnownZero | RHSKnownZero) == 0) {
1691         Base = N.getOperand(0);
1692         Index = N.getOperand(1);
1693         return true;
1694       }
1695     }
1696   }
1697 
1698   return false;
1699 }
1700 
1701 // If we happen to be doing an i64 load or store into a stack slot that has
1702 // less than a 4-byte alignment, then the frame-index elimination may need to
1703 // use an indexed load or store instruction (because the offset may not be a
1704 // multiple of 4). The extra register needed to hold the offset comes from the
1705 // register scavenger, and it is possible that the scavenger will need to use
1706 // an emergency spill slot. As a result, we need to make sure that a spill slot
1707 // is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1708 // stack slot.
1709 static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1710   // FIXME: This does not handle the LWA case.
1711   if (VT != MVT::i64)
1712     return;
1713 
1714   // NOTE: We'll exclude negative FIs here, which come from argument
1715   // lowering, because there are no known test cases triggering this problem
1716   // using packed structures (or similar). We can remove this exclusion if
1717   // we find such a test case. The reason why this is so test-case driven is
1718   // because this entire 'fixup' is only to prevent crashes (from the
1719   // register scavenger) on not-really-valid inputs. For example, if we have:
1720   //   %a = alloca i1
1721   //   %b = bitcast i1* %a to i64*
1722   //   store i64* a, i64 b
1723   // then the store should really be marked as 'align 1', but is not. If it
1724   // were marked as 'align 1' then the indexed form would have been
1725   // instruction-selected initially, and the problem this 'fixup' is preventing
1726   // won't happen regardless.
1727   if (FrameIdx < 0)
1728     return;
1729 
1730   MachineFunction &MF = DAG.getMachineFunction();
1731   MachineFrameInfo *MFI = MF.getFrameInfo();
1732 
1733   unsigned Align = MFI->getObjectAlignment(FrameIdx);
1734   if (Align >= 4)
1735     return;
1736 
1737   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1738   FuncInfo->setHasNonRISpills();
1739 }
1740 
1741 /// Returns true if the address N can be represented by a base register plus
1742 /// a signed 16-bit displacement [r+imm], and if it is not better
1743 /// represented as reg+reg.  If Aligned is true, only accept displacements
1744 /// suitable for STD and friends, i.e. multiples of 4.
1745 bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
1746                                             SDValue &Base,
1747                                             SelectionDAG &DAG,
1748                                             bool Aligned) const {
1749   // FIXME dl should come from parent load or store, not from address
1750   SDLoc dl(N);
1751   // If this can be more profitably realized as r+r, fail.
1752   if (SelectAddressRegReg(N, Disp, Base, DAG))
1753     return false;
1754 
1755   if (N.getOpcode() == ISD::ADD) {
1756     short imm = 0;
1757     if (isIntS16Immediate(N.getOperand(1), imm) &&
1758         (!Aligned || (imm & 3) == 0)) {
1759       Disp = DAG.getTargetConstant(imm, dl, N.getValueType());
1760       if (FrameIndexSDNode *FI = 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       return true; // [r+i]
1767     } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1768       // Match LOAD (ADD (X, Lo(G))).
1769       assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
1770              && "Cannot handle constant offsets yet!");
1771       Disp = N.getOperand(1).getOperand(0);  // The global address.
1772       assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
1773              Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
1774              Disp.getOpcode() == ISD::TargetConstantPool ||
1775              Disp.getOpcode() == ISD::TargetJumpTable);
1776       Base = N.getOperand(0);
1777       return true;  // [&g+r]
1778     }
1779   } else if (N.getOpcode() == ISD::OR) {
1780     short imm = 0;
1781     if (isIntS16Immediate(N.getOperand(1), imm) &&
1782         (!Aligned || (imm & 3) == 0)) {
1783       // If this is an or of disjoint bitfields, we can codegen this as an add
1784       // (for better address arithmetic) if the LHS and RHS of the OR are
1785       // provably disjoint.
1786       APInt LHSKnownZero, LHSKnownOne;
1787       DAG.computeKnownBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
1788 
1789       if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
1790         // If all of the bits are known zero on the LHS or RHS, the add won't
1791         // carry.
1792         if (FrameIndexSDNode *FI =
1793               dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1794           Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1795           fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1796         } else {
1797           Base = N.getOperand(0);
1798         }
1799         Disp = DAG.getTargetConstant(imm, dl, N.getValueType());
1800         return true;
1801       }
1802     }
1803   } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1804     // Loading from a constant address.
1805 
1806     // If this address fits entirely in a 16-bit sext immediate field, codegen
1807     // this as "d, 0"
1808     short Imm;
1809     if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
1810       Disp = DAG.getTargetConstant(Imm, dl, CN->getValueType(0));
1811       Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1812                              CN->getValueType(0));
1813       return true;
1814     }
1815 
1816     // Handle 32-bit sext immediates with LIS + addr mode.
1817     if ((CN->getValueType(0) == MVT::i32 ||
1818          (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1819         (!Aligned || (CN->getZExtValue() & 3) == 0)) {
1820       int Addr = (int)CN->getZExtValue();
1821 
1822       // Otherwise, break this down into an LIS + disp.
1823       Disp = DAG.getTargetConstant((short)Addr, dl, MVT::i32);
1824 
1825       Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, dl,
1826                                    MVT::i32);
1827       unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
1828       Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
1829       return true;
1830     }
1831   }
1832 
1833   Disp = DAG.getTargetConstant(0, dl, getPointerTy(DAG.getDataLayout()));
1834   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
1835     Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1836     fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1837   } else
1838     Base = N;
1839   return true;      // [r+0]
1840 }
1841 
1842 /// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1843 /// represented as an indexed [r+r] operation.
1844 bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1845                                                 SDValue &Index,
1846                                                 SelectionDAG &DAG) const {
1847   // Check to see if we can easily represent this as an [r+r] address.  This
1848   // will fail if it thinks that the address is more profitably represented as
1849   // reg+imm, e.g. where imm = 0.
1850   if (SelectAddressRegReg(N, Base, Index, DAG))
1851     return true;
1852 
1853   // If the operand is an addition, always emit this as [r+r], since this is
1854   // better (for code size, and execution, as the memop does the add for free)
1855   // than emitting an explicit add.
1856   if (N.getOpcode() == ISD::ADD) {
1857     Base = N.getOperand(0);
1858     Index = N.getOperand(1);
1859     return true;
1860   }
1861 
1862   // Otherwise, do it the hard way, using R0 as the base register.
1863   Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1864                          N.getValueType());
1865   Index = N;
1866   return true;
1867 }
1868 
1869 /// getPreIndexedAddressParts - returns true by value, base pointer and
1870 /// offset pointer and addressing mode by reference if the node's address
1871 /// can be legally represented as pre-indexed load / store address.
1872 bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1873                                                   SDValue &Offset,
1874                                                   ISD::MemIndexedMode &AM,
1875                                                   SelectionDAG &DAG) const {
1876   if (DisablePPCPreinc) return false;
1877 
1878   bool isLoad = true;
1879   SDValue Ptr;
1880   EVT VT;
1881   unsigned Alignment;
1882   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1883     Ptr = LD->getBasePtr();
1884     VT = LD->getMemoryVT();
1885     Alignment = LD->getAlignment();
1886   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1887     Ptr = ST->getBasePtr();
1888     VT  = ST->getMemoryVT();
1889     Alignment = ST->getAlignment();
1890     isLoad = false;
1891   } else
1892     return false;
1893 
1894   // PowerPC doesn't have preinc load/store instructions for vectors (except
1895   // for QPX, which does have preinc r+r forms).
1896   if (VT.isVector()) {
1897     if (!Subtarget.hasQPX() || (VT != MVT::v4f64 && VT != MVT::v4f32)) {
1898       return false;
1899     } else if (SelectAddressRegRegOnly(Ptr, Offset, Base, DAG)) {
1900       AM = ISD::PRE_INC;
1901       return true;
1902     }
1903   }
1904 
1905   if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1906 
1907     // Common code will reject creating a pre-inc form if the base pointer
1908     // is a frame index, or if N is a store and the base pointer is either
1909     // the same as or a predecessor of the value being stored.  Check for
1910     // those situations here, and try with swapped Base/Offset instead.
1911     bool Swap = false;
1912 
1913     if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1914       Swap = true;
1915     else if (!isLoad) {
1916       SDValue Val = cast<StoreSDNode>(N)->getValue();
1917       if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1918         Swap = true;
1919     }
1920 
1921     if (Swap)
1922       std::swap(Base, Offset);
1923 
1924     AM = ISD::PRE_INC;
1925     return true;
1926   }
1927 
1928   // LDU/STU can only handle immediates that are a multiple of 4.
1929   if (VT != MVT::i64) {
1930     if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
1931       return false;
1932   } else {
1933     // LDU/STU need an address with at least 4-byte alignment.
1934     if (Alignment < 4)
1935       return false;
1936 
1937     if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
1938       return false;
1939   }
1940 
1941   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1942     // PPC64 doesn't have lwau, but it does have lwaux.  Reject preinc load of
1943     // sext i32 to i64 when addr mode is r+i.
1944     if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
1945         LD->getExtensionType() == ISD::SEXTLOAD &&
1946         isa<ConstantSDNode>(Offset))
1947       return false;
1948   }
1949 
1950   AM = ISD::PRE_INC;
1951   return true;
1952 }
1953 
1954 //===----------------------------------------------------------------------===//
1955 //  LowerOperation implementation
1956 //===----------------------------------------------------------------------===//
1957 
1958 /// GetLabelAccessInfo - Return true if we should reference labels using a
1959 /// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1960 static bool GetLabelAccessInfo(const TargetMachine &TM,
1961                                const PPCSubtarget &Subtarget,
1962                                unsigned &HiOpFlags, unsigned &LoOpFlags,
1963                                const GlobalValue *GV = nullptr) {
1964   HiOpFlags = PPCII::MO_HA;
1965   LoOpFlags = PPCII::MO_LO;
1966 
1967   // Don't use the pic base if not in PIC relocation model.
1968   bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
1969 
1970   if (isPIC) {
1971     HiOpFlags |= PPCII::MO_PIC_FLAG;
1972     LoOpFlags |= PPCII::MO_PIC_FLAG;
1973   }
1974 
1975   // If this is a reference to a global value that requires a non-lazy-ptr, make
1976   // sure that instruction lowering adds it.
1977   if (GV && Subtarget.hasLazyResolverStub(GV)) {
1978     HiOpFlags |= PPCII::MO_NLP_FLAG;
1979     LoOpFlags |= PPCII::MO_NLP_FLAG;
1980 
1981     if (GV->hasHiddenVisibility()) {
1982       HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1983       LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1984     }
1985   }
1986 
1987   return isPIC;
1988 }
1989 
1990 static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1991                              SelectionDAG &DAG) {
1992   SDLoc DL(HiPart);
1993   EVT PtrVT = HiPart.getValueType();
1994   SDValue Zero = DAG.getConstant(0, DL, PtrVT);
1995 
1996   SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1997   SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
1998 
1999   // With PIC, the first instruction is actually "GR+hi(&G)".
2000   if (isPIC)
2001     Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
2002                      DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
2003 
2004   // Generate non-pic code that has direct accesses to the constant pool.
2005   // The address of the global is just (hi(&g)+lo(&g)).
2006   return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
2007 }
2008 
2009 static void setUsesTOCBasePtr(MachineFunction &MF) {
2010   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2011   FuncInfo->setUsesTOCBasePtr();
2012 }
2013 
2014 static void setUsesTOCBasePtr(SelectionDAG &DAG) {
2015   setUsesTOCBasePtr(DAG.getMachineFunction());
2016 }
2017 
2018 static SDValue getTOCEntry(SelectionDAG &DAG, SDLoc dl, bool Is64Bit,
2019                            SDValue GA) {
2020   EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
2021   SDValue Reg = Is64Bit ? DAG.getRegister(PPC::X2, VT) :
2022                 DAG.getNode(PPCISD::GlobalBaseReg, dl, VT);
2023 
2024   SDValue Ops[] = { GA, Reg };
2025   return DAG.getMemIntrinsicNode(
2026       PPCISD::TOC_ENTRY, dl, DAG.getVTList(VT, MVT::Other), Ops, VT,
2027       MachinePointerInfo::getGOT(DAG.getMachineFunction()), 0, false, true,
2028       false, 0);
2029 }
2030 
2031 SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
2032                                              SelectionDAG &DAG) const {
2033   EVT PtrVT = Op.getValueType();
2034   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
2035   const Constant *C = CP->getConstVal();
2036 
2037   // 64-bit SVR4 ABI code is always position-independent.
2038   // The actual address of the GlobalValue is stored in the TOC.
2039   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2040     setUsesTOCBasePtr(DAG);
2041     SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
2042     return getTOCEntry(DAG, SDLoc(CP), true, GA);
2043   }
2044 
2045   unsigned MOHiFlag, MOLoFlag;
2046   bool isPIC =
2047       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
2048 
2049   if (isPIC && Subtarget.isSVR4ABI()) {
2050     SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(),
2051                                            PPCII::MO_PIC_FLAG);
2052     return getTOCEntry(DAG, SDLoc(CP), false, GA);
2053   }
2054 
2055   SDValue CPIHi =
2056     DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
2057   SDValue CPILo =
2058     DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
2059   return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
2060 }
2061 
2062 SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
2063   EVT PtrVT = Op.getValueType();
2064   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
2065 
2066   // 64-bit SVR4 ABI code is always position-independent.
2067   // The actual address of the GlobalValue is stored in the TOC.
2068   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2069     setUsesTOCBasePtr(DAG);
2070     SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
2071     return getTOCEntry(DAG, SDLoc(JT), true, GA);
2072   }
2073 
2074   unsigned MOHiFlag, MOLoFlag;
2075   bool isPIC =
2076       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
2077 
2078   if (isPIC && Subtarget.isSVR4ABI()) {
2079     SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
2080                                         PPCII::MO_PIC_FLAG);
2081     return getTOCEntry(DAG, SDLoc(GA), false, GA);
2082   }
2083 
2084   SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
2085   SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
2086   return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
2087 }
2088 
2089 SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
2090                                              SelectionDAG &DAG) const {
2091   EVT PtrVT = Op.getValueType();
2092   BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op);
2093   const BlockAddress *BA = BASDN->getBlockAddress();
2094 
2095   // 64-bit SVR4 ABI code is always position-independent.
2096   // The actual BlockAddress is stored in the TOC.
2097   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2098     setUsesTOCBasePtr(DAG);
2099     SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset());
2100     return getTOCEntry(DAG, SDLoc(BASDN), true, GA);
2101   }
2102 
2103   unsigned MOHiFlag, MOLoFlag;
2104   bool isPIC =
2105       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
2106   SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
2107   SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
2108   return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
2109 }
2110 
2111 SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
2112                                               SelectionDAG &DAG) const {
2113 
2114   // FIXME: TLS addresses currently use medium model code sequences,
2115   // which is the most useful form.  Eventually support for small and
2116   // large models could be added if users need it, at the cost of
2117   // additional complexity.
2118   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2119   if (DAG.getTarget().Options.EmulatedTLS)
2120     return LowerToTLSEmulatedModel(GA, DAG);
2121 
2122   SDLoc dl(GA);
2123   const GlobalValue *GV = GA->getGlobal();
2124   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2125   bool is64bit = Subtarget.isPPC64();
2126   const Module *M = DAG.getMachineFunction().getFunction()->getParent();
2127   PICLevel::Level picLevel = M->getPICLevel();
2128 
2129   TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
2130 
2131   if (Model == TLSModel::LocalExec) {
2132     SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
2133                                                PPCII::MO_TPREL_HA);
2134     SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
2135                                                PPCII::MO_TPREL_LO);
2136     SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
2137                                      is64bit ? MVT::i64 : MVT::i32);
2138     SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
2139     return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
2140   }
2141 
2142   if (Model == TLSModel::InitialExec) {
2143     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
2144     SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
2145                                                 PPCII::MO_TLS);
2146     SDValue GOTPtr;
2147     if (is64bit) {
2148       setUsesTOCBasePtr(DAG);
2149       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2150       GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
2151                            PtrVT, GOTReg, TGA);
2152     } else
2153       GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
2154     SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
2155                                    PtrVT, TGA, GOTPtr);
2156     return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
2157   }
2158 
2159   if (Model == TLSModel::GeneralDynamic) {
2160     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
2161     SDValue GOTPtr;
2162     if (is64bit) {
2163       setUsesTOCBasePtr(DAG);
2164       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2165       GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
2166                                    GOTReg, TGA);
2167     } else {
2168       if (picLevel == PICLevel::Small)
2169         GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
2170       else
2171         GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
2172     }
2173     return DAG.getNode(PPCISD::ADDI_TLSGD_L_ADDR, dl, PtrVT,
2174                        GOTPtr, TGA, TGA);
2175   }
2176 
2177   if (Model == TLSModel::LocalDynamic) {
2178     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
2179     SDValue GOTPtr;
2180     if (is64bit) {
2181       setUsesTOCBasePtr(DAG);
2182       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
2183       GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
2184                            GOTReg, TGA);
2185     } else {
2186       if (picLevel == PICLevel::Small)
2187         GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
2188       else
2189         GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
2190     }
2191     SDValue TLSAddr = DAG.getNode(PPCISD::ADDI_TLSLD_L_ADDR, dl,
2192                                   PtrVT, GOTPtr, TGA, TGA);
2193     SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl,
2194                                       PtrVT, TLSAddr, TGA);
2195     return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
2196   }
2197 
2198   llvm_unreachable("Unknown TLS model!");
2199 }
2200 
2201 SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
2202                                               SelectionDAG &DAG) const {
2203   EVT PtrVT = Op.getValueType();
2204   GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
2205   SDLoc DL(GSDN);
2206   const GlobalValue *GV = GSDN->getGlobal();
2207 
2208   // 64-bit SVR4 ABI code is always position-independent.
2209   // The actual address of the GlobalValue is stored in the TOC.
2210   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
2211     setUsesTOCBasePtr(DAG);
2212     SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
2213     return getTOCEntry(DAG, DL, true, GA);
2214   }
2215 
2216   unsigned MOHiFlag, MOLoFlag;
2217   bool isPIC =
2218       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag, GV);
2219 
2220   if (isPIC && Subtarget.isSVR4ABI()) {
2221     SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT,
2222                                             GSDN->getOffset(),
2223                                             PPCII::MO_PIC_FLAG);
2224     return getTOCEntry(DAG, DL, false, GA);
2225   }
2226 
2227   SDValue GAHi =
2228     DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
2229   SDValue GALo =
2230     DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
2231 
2232   SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
2233 
2234   // If the global reference is actually to a non-lazy-pointer, we have to do an
2235   // extra load to get the address of the global.
2236   if (MOHiFlag & PPCII::MO_NLP_FLAG)
2237     Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
2238                       false, false, false, 0);
2239   return Ptr;
2240 }
2241 
2242 SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
2243   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
2244   SDLoc dl(Op);
2245 
2246   if (Op.getValueType() == MVT::v2i64) {
2247     // When the operands themselves are v2i64 values, we need to do something
2248     // special because VSX has no underlying comparison operations for these.
2249     if (Op.getOperand(0).getValueType() == MVT::v2i64) {
2250       // Equality can be handled by casting to the legal type for Altivec
2251       // comparisons, everything else needs to be expanded.
2252       if (CC == ISD::SETEQ || CC == ISD::SETNE) {
2253         return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
2254                  DAG.getSetCC(dl, MVT::v4i32,
2255                    DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)),
2256                    DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)),
2257                    CC));
2258       }
2259 
2260       return SDValue();
2261     }
2262 
2263     // We handle most of these in the usual way.
2264     return Op;
2265   }
2266 
2267   // If we're comparing for equality to zero, expose the fact that this is
2268   // implented as a ctlz/srl pair on ppc, so that the dag combiner can
2269   // fold the new nodes.
2270   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
2271     if (C->isNullValue() && CC == ISD::SETEQ) {
2272       EVT VT = Op.getOperand(0).getValueType();
2273       SDValue Zext = Op.getOperand(0);
2274       if (VT.bitsLT(MVT::i32)) {
2275         VT = MVT::i32;
2276         Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
2277       }
2278       unsigned Log2b = Log2_32(VT.getSizeInBits());
2279       SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
2280       SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
2281                                 DAG.getConstant(Log2b, dl, MVT::i32));
2282       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
2283     }
2284     // Leave comparisons against 0 and -1 alone for now, since they're usually
2285     // optimized.  FIXME: revisit this when we can custom lower all setcc
2286     // optimizations.
2287     if (C->isAllOnesValue() || C->isNullValue())
2288       return SDValue();
2289   }
2290 
2291   // If we have an integer seteq/setne, turn it into a compare against zero
2292   // by xor'ing the rhs with the lhs, which is faster than setting a
2293   // condition register, reading it back out, and masking the correct bit.  The
2294   // normal approach here uses sub to do this instead of xor.  Using xor exposes
2295   // the result to other bit-twiddling opportunities.
2296   EVT LHSVT = Op.getOperand(0).getValueType();
2297   if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
2298     EVT VT = Op.getValueType();
2299     SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
2300                                 Op.getOperand(1));
2301     return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, dl, LHSVT), CC);
2302   }
2303   return SDValue();
2304 }
2305 
2306 SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
2307                                       const PPCSubtarget &Subtarget) const {
2308   SDNode *Node = Op.getNode();
2309   EVT VT = Node->getValueType(0);
2310   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
2311   SDValue InChain = Node->getOperand(0);
2312   SDValue VAListPtr = Node->getOperand(1);
2313   const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
2314   SDLoc dl(Node);
2315 
2316   assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
2317 
2318   // gpr_index
2319   SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
2320                                     VAListPtr, MachinePointerInfo(SV), MVT::i8,
2321                                     false, false, false, 0);
2322   InChain = GprIndex.getValue(1);
2323 
2324   if (VT == MVT::i64) {
2325     // Check if GprIndex is even
2326     SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
2327                                  DAG.getConstant(1, dl, MVT::i32));
2328     SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
2329                                 DAG.getConstant(0, dl, MVT::i32), ISD::SETNE);
2330     SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
2331                                           DAG.getConstant(1, dl, MVT::i32));
2332     // Align GprIndex to be even if it isn't
2333     GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
2334                            GprIndex);
2335   }
2336 
2337   // fpr index is 1 byte after gpr
2338   SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
2339                                DAG.getConstant(1, dl, MVT::i32));
2340 
2341   // fpr
2342   SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
2343                                     FprPtr, MachinePointerInfo(SV), MVT::i8,
2344                                     false, false, false, 0);
2345   InChain = FprIndex.getValue(1);
2346 
2347   SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
2348                                        DAG.getConstant(8, dl, MVT::i32));
2349 
2350   SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
2351                                         DAG.getConstant(4, dl, MVT::i32));
2352 
2353   // areas
2354   SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
2355                                      MachinePointerInfo(), false, false,
2356                                      false, 0);
2357   InChain = OverflowArea.getValue(1);
2358 
2359   SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
2360                                     MachinePointerInfo(), false, false,
2361                                     false, 0);
2362   InChain = RegSaveArea.getValue(1);
2363 
2364   // select overflow_area if index > 8
2365   SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
2366                             DAG.getConstant(8, dl, MVT::i32), ISD::SETLT);
2367 
2368   // adjustment constant gpr_index * 4/8
2369   SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
2370                                     VT.isInteger() ? GprIndex : FprIndex,
2371                                     DAG.getConstant(VT.isInteger() ? 4 : 8, dl,
2372                                                     MVT::i32));
2373 
2374   // OurReg = RegSaveArea + RegConstant
2375   SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
2376                                RegConstant);
2377 
2378   // Floating types are 32 bytes into RegSaveArea
2379   if (VT.isFloatingPoint())
2380     OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
2381                          DAG.getConstant(32, dl, MVT::i32));
2382 
2383   // increase {f,g}pr_index by 1 (or 2 if VT is i64)
2384   SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
2385                                    VT.isInteger() ? GprIndex : FprIndex,
2386                                    DAG.getConstant(VT == MVT::i64 ? 2 : 1, dl,
2387                                                    MVT::i32));
2388 
2389   InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
2390                               VT.isInteger() ? VAListPtr : FprPtr,
2391                               MachinePointerInfo(SV),
2392                               MVT::i8, false, false, 0);
2393 
2394   // determine if we should load from reg_save_area or overflow_area
2395   SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
2396 
2397   // increase overflow_area by 4/8 if gpr/fpr > 8
2398   SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
2399                                           DAG.getConstant(VT.isInteger() ? 4 : 8,
2400                                           dl, MVT::i32));
2401 
2402   OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
2403                              OverflowAreaPlusN);
2404 
2405   InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
2406                               OverflowAreaPtr,
2407                               MachinePointerInfo(),
2408                               MVT::i32, false, false, 0);
2409 
2410   return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
2411                      false, false, false, 0);
2412 }
2413 
2414 SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
2415                                        const PPCSubtarget &Subtarget) const {
2416   assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
2417 
2418   // We have to copy the entire va_list struct:
2419   // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
2420   return DAG.getMemcpy(Op.getOperand(0), Op,
2421                        Op.getOperand(1), Op.getOperand(2),
2422                        DAG.getConstant(12, SDLoc(Op), MVT::i32), 8, false, true,
2423                        false, MachinePointerInfo(), MachinePointerInfo());
2424 }
2425 
2426 SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
2427                                                   SelectionDAG &DAG) const {
2428   return Op.getOperand(0);
2429 }
2430 
2431 SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
2432                                                 SelectionDAG &DAG) const {
2433   SDValue Chain = Op.getOperand(0);
2434   SDValue Trmp = Op.getOperand(1); // trampoline
2435   SDValue FPtr = Op.getOperand(2); // nested function
2436   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
2437   SDLoc dl(Op);
2438 
2439   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
2440   bool isPPC64 = (PtrVT == MVT::i64);
2441   Type *IntPtrTy = DAG.getDataLayout().getIntPtrType(*DAG.getContext());
2442 
2443   TargetLowering::ArgListTy Args;
2444   TargetLowering::ArgListEntry Entry;
2445 
2446   Entry.Ty = IntPtrTy;
2447   Entry.Node = Trmp; Args.push_back(Entry);
2448 
2449   // TrampSize == (isPPC64 ? 48 : 40);
2450   Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40, dl,
2451                                isPPC64 ? MVT::i64 : MVT::i32);
2452   Args.push_back(Entry);
2453 
2454   Entry.Node = FPtr; Args.push_back(Entry);
2455   Entry.Node = Nest; Args.push_back(Entry);
2456 
2457   // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
2458   TargetLowering::CallLoweringInfo CLI(DAG);
2459   CLI.setDebugLoc(dl).setChain(Chain)
2460     .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
2461                DAG.getExternalSymbol("__trampoline_setup", PtrVT),
2462                std::move(Args), 0);
2463 
2464   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2465   return CallResult.second;
2466 }
2467 
2468 SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
2469                                         const PPCSubtarget &Subtarget) const {
2470   MachineFunction &MF = DAG.getMachineFunction();
2471   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2472 
2473   SDLoc dl(Op);
2474 
2475   if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
2476     // vastart just stores the address of the VarArgsFrameIndex slot into the
2477     // memory location argument.
2478     EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
2479     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2480     const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2481     return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2482                         MachinePointerInfo(SV),
2483                         false, false, 0);
2484   }
2485 
2486   // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
2487   // We suppose the given va_list is already allocated.
2488   //
2489   // typedef struct {
2490   //  char gpr;     /* index into the array of 8 GPRs
2491   //                 * stored in the register save area
2492   //                 * gpr=0 corresponds to r3,
2493   //                 * gpr=1 to r4, etc.
2494   //                 */
2495   //  char fpr;     /* index into the array of 8 FPRs
2496   //                 * stored in the register save area
2497   //                 * fpr=0 corresponds to f1,
2498   //                 * fpr=1 to f2, etc.
2499   //                 */
2500   //  char *overflow_arg_area;
2501   //                /* location on stack that holds
2502   //                 * the next overflow argument
2503   //                 */
2504   //  char *reg_save_area;
2505   //               /* where r3:r10 and f1:f8 (if saved)
2506   //                * are stored
2507   //                */
2508   // } va_list[1];
2509 
2510   SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), dl, MVT::i32);
2511   SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), dl, MVT::i32);
2512 
2513   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
2514 
2515   SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
2516                                             PtrVT);
2517   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
2518                                  PtrVT);
2519 
2520   uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
2521   SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, dl, PtrVT);
2522 
2523   uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
2524   SDValue ConstStackOffset = DAG.getConstant(StackOffset, dl, PtrVT);
2525 
2526   uint64_t FPROffset = 1;
2527   SDValue ConstFPROffset = DAG.getConstant(FPROffset, dl, PtrVT);
2528 
2529   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2530 
2531   // Store first byte : number of int regs
2532   SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
2533                                          Op.getOperand(1),
2534                                          MachinePointerInfo(SV),
2535                                          MVT::i8, false, false, 0);
2536   uint64_t nextOffset = FPROffset;
2537   SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
2538                                   ConstFPROffset);
2539 
2540   // Store second byte : number of float regs
2541   SDValue secondStore =
2542     DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
2543                       MachinePointerInfo(SV, nextOffset), MVT::i8,
2544                       false, false, 0);
2545   nextOffset += StackOffset;
2546   nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
2547 
2548   // Store second word : arguments given on stack
2549   SDValue thirdStore =
2550     DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
2551                  MachinePointerInfo(SV, nextOffset),
2552                  false, false, 0);
2553   nextOffset += FrameOffset;
2554   nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
2555 
2556   // Store third word : arguments given in registers
2557   return DAG.getStore(thirdStore, dl, FR, nextPtr,
2558                       MachinePointerInfo(SV, nextOffset),
2559                       false, false, 0);
2560 
2561 }
2562 
2563 #include "PPCGenCallingConv.inc"
2564 
2565 // Function whose sole purpose is to kill compiler warnings
2566 // stemming from unused functions included from PPCGenCallingConv.inc.
2567 CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
2568   return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
2569 }
2570 
2571 bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
2572                                       CCValAssign::LocInfo &LocInfo,
2573                                       ISD::ArgFlagsTy &ArgFlags,
2574                                       CCState &State) {
2575   return true;
2576 }
2577 
2578 bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
2579                                              MVT &LocVT,
2580                                              CCValAssign::LocInfo &LocInfo,
2581                                              ISD::ArgFlagsTy &ArgFlags,
2582                                              CCState &State) {
2583   static const MCPhysReg ArgRegs[] = {
2584     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2585     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2586   };
2587   const unsigned NumArgRegs = array_lengthof(ArgRegs);
2588 
2589   unsigned RegNum = State.getFirstUnallocated(ArgRegs);
2590 
2591   // Skip one register if the first unallocated register has an even register
2592   // number and there are still argument registers available which have not been
2593   // allocated yet. RegNum is actually an index into ArgRegs, which means we
2594   // need to skip a register if RegNum is odd.
2595   if (RegNum != NumArgRegs && RegNum % 2 == 1) {
2596     State.AllocateReg(ArgRegs[RegNum]);
2597   }
2598 
2599   // Always return false here, as this function only makes sure that the first
2600   // unallocated register has an odd register number and does not actually
2601   // allocate a register for the current argument.
2602   return false;
2603 }
2604 
2605 bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
2606                                                MVT &LocVT,
2607                                                CCValAssign::LocInfo &LocInfo,
2608                                                ISD::ArgFlagsTy &ArgFlags,
2609                                                CCState &State) {
2610   static const MCPhysReg ArgRegs[] = {
2611     PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2612     PPC::F8
2613   };
2614 
2615   const unsigned NumArgRegs = array_lengthof(ArgRegs);
2616 
2617   unsigned RegNum = State.getFirstUnallocated(ArgRegs);
2618 
2619   // If there is only one Floating-point register left we need to put both f64
2620   // values of a split ppc_fp128 value on the stack.
2621   if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
2622     State.AllocateReg(ArgRegs[RegNum]);
2623   }
2624 
2625   // Always return false here, as this function only makes sure that the two f64
2626   // values a ppc_fp128 value is split into are both passed in registers or both
2627   // passed on the stack and does not actually allocate a register for the
2628   // current argument.
2629   return false;
2630 }
2631 
2632 /// FPR - The set of FP registers that should be allocated for arguments,
2633 /// on Darwin.
2634 static const MCPhysReg FPR[] = {PPC::F1,  PPC::F2,  PPC::F3, PPC::F4, PPC::F5,
2635                                 PPC::F6,  PPC::F7,  PPC::F8, PPC::F9, PPC::F10,
2636                                 PPC::F11, PPC::F12, PPC::F13};
2637 
2638 /// QFPR - The set of QPX registers that should be allocated for arguments.
2639 static const MCPhysReg QFPR[] = {
2640     PPC::QF1, PPC::QF2, PPC::QF3,  PPC::QF4,  PPC::QF5,  PPC::QF6, PPC::QF7,
2641     PPC::QF8, PPC::QF9, PPC::QF10, PPC::QF11, PPC::QF12, PPC::QF13};
2642 
2643 /// CalculateStackSlotSize - Calculates the size reserved for this argument on
2644 /// the stack.
2645 static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
2646                                        unsigned PtrByteSize) {
2647   unsigned ArgSize = ArgVT.getStoreSize();
2648   if (Flags.isByVal())
2649     ArgSize = Flags.getByValSize();
2650 
2651   // Round up to multiples of the pointer size, except for array members,
2652   // which are always packed.
2653   if (!Flags.isInConsecutiveRegs())
2654     ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2655 
2656   return ArgSize;
2657 }
2658 
2659 /// CalculateStackSlotAlignment - Calculates the alignment of this argument
2660 /// on the stack.
2661 static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT,
2662                                             ISD::ArgFlagsTy Flags,
2663                                             unsigned PtrByteSize) {
2664   unsigned Align = PtrByteSize;
2665 
2666   // Altivec parameters are padded to a 16 byte boundary.
2667   if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2668       ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2669       ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 ||
2670       ArgVT == MVT::v1i128)
2671     Align = 16;
2672   // QPX vector types stored in double-precision are padded to a 32 byte
2673   // boundary.
2674   else if (ArgVT == MVT::v4f64 || ArgVT == MVT::v4i1)
2675     Align = 32;
2676 
2677   // ByVal parameters are aligned as requested.
2678   if (Flags.isByVal()) {
2679     unsigned BVAlign = Flags.getByValAlign();
2680     if (BVAlign > PtrByteSize) {
2681       if (BVAlign % PtrByteSize != 0)
2682           llvm_unreachable(
2683             "ByVal alignment is not a multiple of the pointer size");
2684 
2685       Align = BVAlign;
2686     }
2687   }
2688 
2689   // Array members are always packed to their original alignment.
2690   if (Flags.isInConsecutiveRegs()) {
2691     // If the array member was split into multiple registers, the first
2692     // needs to be aligned to the size of the full type.  (Except for
2693     // ppcf128, which is only aligned as its f64 components.)
2694     if (Flags.isSplit() && OrigVT != MVT::ppcf128)
2695       Align = OrigVT.getStoreSize();
2696     else
2697       Align = ArgVT.getStoreSize();
2698   }
2699 
2700   return Align;
2701 }
2702 
2703 /// CalculateStackSlotUsed - Return whether this argument will use its
2704 /// stack slot (instead of being passed in registers).  ArgOffset,
2705 /// AvailableFPRs, and AvailableVRs must hold the current argument
2706 /// position, and will be updated to account for this argument.
2707 static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT,
2708                                    ISD::ArgFlagsTy Flags,
2709                                    unsigned PtrByteSize,
2710                                    unsigned LinkageSize,
2711                                    unsigned ParamAreaSize,
2712                                    unsigned &ArgOffset,
2713                                    unsigned &AvailableFPRs,
2714                                    unsigned &AvailableVRs, bool HasQPX) {
2715   bool UseMemory = false;
2716 
2717   // Respect alignment of argument on the stack.
2718   unsigned Align =
2719     CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
2720   ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2721   // If there's no space left in the argument save area, we must
2722   // use memory (this check also catches zero-sized arguments).
2723   if (ArgOffset >= LinkageSize + ParamAreaSize)
2724     UseMemory = true;
2725 
2726   // Allocate argument on the stack.
2727   ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
2728   if (Flags.isInConsecutiveRegsLast())
2729     ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2730   // If we overran the argument save area, we must use memory
2731   // (this check catches arguments passed partially in memory)
2732   if (ArgOffset > LinkageSize + ParamAreaSize)
2733     UseMemory = true;
2734 
2735   // However, if the argument is actually passed in an FPR or a VR,
2736   // we don't use memory after all.
2737   if (!Flags.isByVal()) {
2738     if (ArgVT == MVT::f32 || ArgVT == MVT::f64 ||
2739         // QPX registers overlap with the scalar FP registers.
2740         (HasQPX && (ArgVT == MVT::v4f32 ||
2741                     ArgVT == MVT::v4f64 ||
2742                     ArgVT == MVT::v4i1)))
2743       if (AvailableFPRs > 0) {
2744         --AvailableFPRs;
2745         return false;
2746       }
2747     if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2748         ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2749         ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 ||
2750         ArgVT == MVT::v1i128)
2751       if (AvailableVRs > 0) {
2752         --AvailableVRs;
2753         return false;
2754       }
2755   }
2756 
2757   return UseMemory;
2758 }
2759 
2760 /// EnsureStackAlignment - Round stack frame size up from NumBytes to
2761 /// ensure minimum alignment required for target.
2762 static unsigned EnsureStackAlignment(const PPCFrameLowering *Lowering,
2763                                      unsigned NumBytes) {
2764   unsigned TargetAlign = Lowering->getStackAlignment();
2765   unsigned AlignMask = TargetAlign - 1;
2766   NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2767   return NumBytes;
2768 }
2769 
2770 SDValue
2771 PPCTargetLowering::LowerFormalArguments(SDValue Chain,
2772                                         CallingConv::ID CallConv, bool isVarArg,
2773                                         const SmallVectorImpl<ISD::InputArg>
2774                                           &Ins,
2775                                         SDLoc dl, SelectionDAG &DAG,
2776                                         SmallVectorImpl<SDValue> &InVals)
2777                                           const {
2778   if (Subtarget.isSVR4ABI()) {
2779     if (Subtarget.isPPC64())
2780       return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
2781                                          dl, DAG, InVals);
2782     else
2783       return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
2784                                          dl, DAG, InVals);
2785   } else {
2786     return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
2787                                        dl, DAG, InVals);
2788   }
2789 }
2790 
2791 SDValue
2792 PPCTargetLowering::LowerFormalArguments_32SVR4(
2793                                       SDValue Chain,
2794                                       CallingConv::ID CallConv, bool isVarArg,
2795                                       const SmallVectorImpl<ISD::InputArg>
2796                                         &Ins,
2797                                       SDLoc dl, SelectionDAG &DAG,
2798                                       SmallVectorImpl<SDValue> &InVals) const {
2799 
2800   // 32-bit SVR4 ABI Stack Frame Layout:
2801   //              +-----------------------------------+
2802   //        +-->  |            Back chain             |
2803   //        |     +-----------------------------------+
2804   //        |     | Floating-point register save area |
2805   //        |     +-----------------------------------+
2806   //        |     |    General register save area     |
2807   //        |     +-----------------------------------+
2808   //        |     |          CR save word             |
2809   //        |     +-----------------------------------+
2810   //        |     |         VRSAVE save word          |
2811   //        |     +-----------------------------------+
2812   //        |     |         Alignment padding         |
2813   //        |     +-----------------------------------+
2814   //        |     |     Vector register save area     |
2815   //        |     +-----------------------------------+
2816   //        |     |       Local variable space        |
2817   //        |     +-----------------------------------+
2818   //        |     |        Parameter list area        |
2819   //        |     +-----------------------------------+
2820   //        |     |           LR save word            |
2821   //        |     +-----------------------------------+
2822   // SP-->  +---  |            Back chain             |
2823   //              +-----------------------------------+
2824   //
2825   // Specifications:
2826   //   System V Application Binary Interface PowerPC Processor Supplement
2827   //   AltiVec Technology Programming Interface Manual
2828 
2829   MachineFunction &MF = DAG.getMachineFunction();
2830   MachineFrameInfo *MFI = MF.getFrameInfo();
2831   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2832 
2833   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
2834   // Potential tail calls could cause overwriting of argument stack slots.
2835   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2836                        (CallConv == CallingConv::Fast));
2837   unsigned PtrByteSize = 4;
2838 
2839   // Assign locations to all of the incoming arguments.
2840   SmallVector<CCValAssign, 16> ArgLocs;
2841   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2842                  *DAG.getContext());
2843 
2844   // Reserve space for the linkage area on the stack.
2845   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
2846   CCInfo.AllocateStack(LinkageSize, PtrByteSize);
2847 
2848   CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
2849 
2850   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2851     CCValAssign &VA = ArgLocs[i];
2852 
2853     // Arguments stored in registers.
2854     if (VA.isRegLoc()) {
2855       const TargetRegisterClass *RC;
2856       EVT ValVT = VA.getValVT();
2857 
2858       switch (ValVT.getSimpleVT().SimpleTy) {
2859         default:
2860           llvm_unreachable("ValVT not supported by formal arguments Lowering");
2861         case MVT::i1:
2862         case MVT::i32:
2863           RC = &PPC::GPRCRegClass;
2864           break;
2865         case MVT::f32:
2866           if (Subtarget.hasP8Vector())
2867             RC = &PPC::VSSRCRegClass;
2868           else
2869             RC = &PPC::F4RCRegClass;
2870           break;
2871         case MVT::f64:
2872           if (Subtarget.hasVSX())
2873             RC = &PPC::VSFRCRegClass;
2874           else
2875             RC = &PPC::F8RCRegClass;
2876           break;
2877         case MVT::v16i8:
2878         case MVT::v8i16:
2879         case MVT::v4i32:
2880           RC = &PPC::VRRCRegClass;
2881           break;
2882         case MVT::v4f32:
2883           RC = Subtarget.hasQPX() ? &PPC::QSRCRegClass : &PPC::VRRCRegClass;
2884           break;
2885         case MVT::v2f64:
2886         case MVT::v2i64:
2887           RC = &PPC::VSHRCRegClass;
2888           break;
2889         case MVT::v4f64:
2890           RC = &PPC::QFRCRegClass;
2891           break;
2892         case MVT::v4i1:
2893           RC = &PPC::QBRCRegClass;
2894           break;
2895       }
2896 
2897       // Transform the arguments stored in physical registers into virtual ones.
2898       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2899       SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg,
2900                                             ValVT == MVT::i1 ? MVT::i32 : ValVT);
2901 
2902       if (ValVT == MVT::i1)
2903         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue);
2904 
2905       InVals.push_back(ArgValue);
2906     } else {
2907       // Argument stored in memory.
2908       assert(VA.isMemLoc());
2909 
2910       unsigned ArgSize = VA.getLocVT().getStoreSize();
2911       int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
2912                                       isImmutable);
2913 
2914       // Create load nodes to retrieve arguments from the stack.
2915       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2916       InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2917                                    MachinePointerInfo(),
2918                                    false, false, false, 0));
2919     }
2920   }
2921 
2922   // Assign locations to all of the incoming aggregate by value arguments.
2923   // Aggregates passed by value are stored in the local variable space of the
2924   // caller's stack frame, right above the parameter list area.
2925   SmallVector<CCValAssign, 16> ByValArgLocs;
2926   CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2927                       ByValArgLocs, *DAG.getContext());
2928 
2929   // Reserve stack space for the allocations in CCInfo.
2930   CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2931 
2932   CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
2933 
2934   // Area that is at least reserved in the caller of this function.
2935   unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
2936   MinReservedArea = std::max(MinReservedArea, LinkageSize);
2937 
2938   // Set the size that is at least reserved in caller of this function.  Tail
2939   // call optimized function's reserved stack space needs to be aligned so that
2940   // taking the difference between two stack areas will result in an aligned
2941   // stack.
2942   MinReservedArea =
2943       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
2944   FuncInfo->setMinReservedArea(MinReservedArea);
2945 
2946   SmallVector<SDValue, 8> MemOps;
2947 
2948   // If the function takes variable number of arguments, make a frame index for
2949   // the start of the first vararg value... for expansion of llvm.va_start.
2950   if (isVarArg) {
2951     static const MCPhysReg GPArgRegs[] = {
2952       PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2953       PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2954     };
2955     const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2956 
2957     static const MCPhysReg FPArgRegs[] = {
2958       PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2959       PPC::F8
2960     };
2961     unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2962 
2963     if (Subtarget.useSoftFloat())
2964        NumFPArgRegs = 0;
2965 
2966     FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs));
2967     FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs));
2968 
2969     // Make room for NumGPArgRegs and NumFPArgRegs.
2970     int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
2971                 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8;
2972 
2973     FuncInfo->setVarArgsStackOffset(
2974       MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
2975                              CCInfo.getNextStackOffset(), true));
2976 
2977     FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2978     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2979 
2980     // The fixed integer arguments of a variadic function are stored to the
2981     // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2982     // the result of va_next.
2983     for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2984       // Get an existing live-in vreg, or add a new one.
2985       unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2986       if (!VReg)
2987         VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
2988 
2989       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2990       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2991                                    MachinePointerInfo(), false, false, 0);
2992       MemOps.push_back(Store);
2993       // Increment the address by four for the next argument to store
2994       SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT);
2995       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2996     }
2997 
2998     // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2999     // is set.
3000     // The double arguments are stored to the VarArgsFrameIndex
3001     // on the stack.
3002     for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
3003       // Get an existing live-in vreg, or add a new one.
3004       unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
3005       if (!VReg)
3006         VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
3007 
3008       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
3009       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3010                                    MachinePointerInfo(), false, false, 0);
3011       MemOps.push_back(Store);
3012       // Increment the address by eight for the next argument to store
3013       SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8, dl,
3014                                          PtrVT);
3015       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3016     }
3017   }
3018 
3019   if (!MemOps.empty())
3020     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
3021 
3022   return Chain;
3023 }
3024 
3025 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3026 // value to MVT::i64 and then truncate to the correct register size.
3027 SDValue
3028 PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
3029                                      SelectionDAG &DAG, SDValue ArgVal,
3030                                      SDLoc dl) const {
3031   if (Flags.isSExt())
3032     ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
3033                          DAG.getValueType(ObjectVT));
3034   else if (Flags.isZExt())
3035     ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
3036                          DAG.getValueType(ObjectVT));
3037 
3038   return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal);
3039 }
3040 
3041 SDValue
3042 PPCTargetLowering::LowerFormalArguments_64SVR4(
3043                                       SDValue Chain,
3044                                       CallingConv::ID CallConv, bool isVarArg,
3045                                       const SmallVectorImpl<ISD::InputArg>
3046                                         &Ins,
3047                                       SDLoc dl, SelectionDAG &DAG,
3048                                       SmallVectorImpl<SDValue> &InVals) const {
3049   // TODO: add description of PPC stack frame format, or at least some docs.
3050   //
3051   bool isELFv2ABI = Subtarget.isELFv2ABI();
3052   bool isLittleEndian = Subtarget.isLittleEndian();
3053   MachineFunction &MF = DAG.getMachineFunction();
3054   MachineFrameInfo *MFI = MF.getFrameInfo();
3055   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
3056 
3057   assert(!(CallConv == CallingConv::Fast && isVarArg) &&
3058          "fastcc not supported on varargs functions");
3059 
3060   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
3061   // Potential tail calls could cause overwriting of argument stack slots.
3062   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3063                        (CallConv == CallingConv::Fast));
3064   unsigned PtrByteSize = 8;
3065   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
3066 
3067   static const MCPhysReg GPR[] = {
3068     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3069     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3070   };
3071   static const MCPhysReg VR[] = {
3072     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3073     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3074   };
3075   static const MCPhysReg VSRH[] = {
3076     PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
3077     PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
3078   };
3079 
3080   const unsigned Num_GPR_Regs = array_lengthof(GPR);
3081   const unsigned Num_FPR_Regs = 13;
3082   const unsigned Num_VR_Regs  = array_lengthof(VR);
3083   const unsigned Num_QFPR_Regs = Num_FPR_Regs;
3084 
3085   // Do a first pass over the arguments to determine whether the ABI
3086   // guarantees that our caller has allocated the parameter save area
3087   // on its stack frame.  In the ELFv1 ABI, this is always the case;
3088   // in the ELFv2 ABI, it is true if this is a vararg function or if
3089   // any parameter is located in a stack slot.
3090 
3091   bool HasParameterArea = !isELFv2ABI || isVarArg;
3092   unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize;
3093   unsigned NumBytes = LinkageSize;
3094   unsigned AvailableFPRs = Num_FPR_Regs;
3095   unsigned AvailableVRs = Num_VR_Regs;
3096   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3097     if (Ins[i].Flags.isNest())
3098       continue;
3099 
3100     if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags,
3101                                PtrByteSize, LinkageSize, ParamAreaSize,
3102                                NumBytes, AvailableFPRs, AvailableVRs,
3103                                Subtarget.hasQPX()))
3104       HasParameterArea = true;
3105   }
3106 
3107   // Add DAG nodes to load the arguments or copy them out of registers.  On
3108   // entry to a function on PPC, the arguments start after the linkage area,
3109   // although the first ones are often in registers.
3110 
3111   unsigned ArgOffset = LinkageSize;
3112   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3113   unsigned &QFPR_idx = FPR_idx;
3114   SmallVector<SDValue, 8> MemOps;
3115   Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
3116   unsigned CurArgIdx = 0;
3117   for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
3118     SDValue ArgVal;
3119     bool needsLoad = false;
3120     EVT ObjectVT = Ins[ArgNo].VT;
3121     EVT OrigVT = Ins[ArgNo].ArgVT;
3122     unsigned ObjSize = ObjectVT.getStoreSize();
3123     unsigned ArgSize = ObjSize;
3124     ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3125     if (Ins[ArgNo].isOrigArg()) {
3126       std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx);
3127       CurArgIdx = Ins[ArgNo].getOrigArgIndex();
3128     }
3129     // We re-align the argument offset for each argument, except when using the
3130     // fast calling convention, when we need to make sure we do that only when
3131     // we'll actually use a stack slot.
3132     unsigned CurArgOffset, Align;
3133     auto ComputeArgOffset = [&]() {
3134       /* Respect alignment of argument on the stack.  */
3135       Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize);
3136       ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
3137       CurArgOffset = ArgOffset;
3138     };
3139 
3140     if (CallConv != CallingConv::Fast) {
3141       ComputeArgOffset();
3142 
3143       /* Compute GPR index associated with argument offset.  */
3144       GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
3145       GPR_idx = std::min(GPR_idx, Num_GPR_Regs);
3146     }
3147 
3148     // FIXME the codegen can be much improved in some cases.
3149     // We do not have to keep everything in memory.
3150     if (Flags.isByVal()) {
3151       assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit");
3152 
3153       if (CallConv == CallingConv::Fast)
3154         ComputeArgOffset();
3155 
3156       // ObjSize is the true size, ArgSize rounded up to multiple of registers.
3157       ObjSize = Flags.getByValSize();
3158       ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3159       // Empty aggregate parameters do not take up registers.  Examples:
3160       //   struct { } a;
3161       //   union  { } b;
3162       //   int c[0];
3163       // etc.  However, we have to provide a place-holder in InVals, so
3164       // pretend we have an 8-byte item at the current address for that
3165       // purpose.
3166       if (!ObjSize) {
3167         int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
3168         SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3169         InVals.push_back(FIN);
3170         continue;
3171       }
3172 
3173       // Create a stack object covering all stack doublewords occupied
3174       // by the argument.  If the argument is (fully or partially) on
3175       // the stack, or if the argument is fully in registers but the
3176       // caller has allocated the parameter save anyway, we can refer
3177       // directly to the caller's stack frame.  Otherwise, create a
3178       // local copy in our own frame.
3179       int FI;
3180       if (HasParameterArea ||
3181           ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize)
3182         FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false, true);
3183       else
3184         FI = MFI->CreateStackObject(ArgSize, Align, false);
3185       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3186 
3187       // Handle aggregates smaller than 8 bytes.
3188       if (ObjSize < PtrByteSize) {
3189         // The value of the object is its address, which differs from the
3190         // address of the enclosing doubleword on big-endian systems.
3191         SDValue Arg = FIN;
3192         if (!isLittleEndian) {
3193           SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, dl, PtrVT);
3194           Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff);
3195         }
3196         InVals.push_back(Arg);
3197 
3198         if (GPR_idx != Num_GPR_Regs) {
3199           unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
3200           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3201           SDValue Store;
3202 
3203           if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
3204             EVT ObjType = (ObjSize == 1 ? MVT::i8 :
3205                            (ObjSize == 2 ? MVT::i16 : MVT::i32));
3206             Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg,
3207                                       MachinePointerInfo(&*FuncArg), ObjType,
3208                                       false, false, 0);
3209           } else {
3210             // For sizes that don't fit a truncating store (3, 5, 6, 7),
3211             // store the whole register as-is to the parameter save area
3212             // slot.
3213             Store =
3214                 DAG.getStore(Val.getValue(1), dl, Val, FIN,
3215                              MachinePointerInfo(&*FuncArg), false, false, 0);
3216           }
3217 
3218           MemOps.push_back(Store);
3219         }
3220         // Whether we copied from a register or not, advance the offset
3221         // into the parameter save area by a full doubleword.
3222         ArgOffset += PtrByteSize;
3223         continue;
3224       }
3225 
3226       // The value of the object is its address, which is the address of
3227       // its first stack doubleword.
3228       InVals.push_back(FIN);
3229 
3230       // Store whatever pieces of the object are in registers to memory.
3231       for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3232         if (GPR_idx == Num_GPR_Regs)
3233           break;
3234 
3235         unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3236         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3237         SDValue Addr = FIN;
3238         if (j) {
3239           SDValue Off = DAG.getConstant(j, dl, PtrVT);
3240           Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off);
3241         }
3242         SDValue Store =
3243             DAG.getStore(Val.getValue(1), dl, Val, Addr,
3244                          MachinePointerInfo(&*FuncArg, j), false, false, 0);
3245         MemOps.push_back(Store);
3246         ++GPR_idx;
3247       }
3248       ArgOffset += ArgSize;
3249       continue;
3250     }
3251 
3252     switch (ObjectVT.getSimpleVT().SimpleTy) {
3253     default: llvm_unreachable("Unhandled argument type!");
3254     case MVT::i1:
3255     case MVT::i32:
3256     case MVT::i64:
3257       if (Flags.isNest()) {
3258         // The 'nest' parameter, if any, is passed in R11.
3259         unsigned VReg = MF.addLiveIn(PPC::X11, &PPC::G8RCRegClass);
3260         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3261 
3262         if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
3263           ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
3264 
3265         break;
3266       }
3267 
3268       // These can be scalar arguments or elements of an integer array type
3269       // passed directly.  Clang may use those instead of "byval" aggregate
3270       // types to avoid forcing arguments to memory unnecessarily.
3271       if (GPR_idx != Num_GPR_Regs) {
3272         unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
3273         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3274 
3275         if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
3276           // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3277           // value to MVT::i64 and then truncate to the correct register size.
3278           ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
3279       } else {
3280         if (CallConv == CallingConv::Fast)
3281           ComputeArgOffset();
3282 
3283         needsLoad = true;
3284         ArgSize = PtrByteSize;
3285       }
3286       if (CallConv != CallingConv::Fast || needsLoad)
3287         ArgOffset += 8;
3288       break;
3289 
3290     case MVT::f32:
3291     case MVT::f64:
3292       // These can be scalar arguments or elements of a float array type
3293       // passed directly.  The latter are used to implement ELFv2 homogenous
3294       // float aggregates.
3295       if (FPR_idx != Num_FPR_Regs) {
3296         unsigned VReg;
3297 
3298         if (ObjectVT == MVT::f32)
3299           VReg = MF.addLiveIn(FPR[FPR_idx],
3300                               Subtarget.hasP8Vector()
3301                                   ? &PPC::VSSRCRegClass
3302                                   : &PPC::F4RCRegClass);
3303         else
3304           VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX()
3305                                                 ? &PPC::VSFRCRegClass
3306                                                 : &PPC::F8RCRegClass);
3307 
3308         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3309         ++FPR_idx;
3310       } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) {
3311         // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
3312         // once we support fp <-> gpr moves.
3313 
3314         // This can only ever happen in the presence of f32 array types,
3315         // since otherwise we never run out of FPRs before running out
3316         // of GPRs.
3317         unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
3318         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3319 
3320         if (ObjectVT == MVT::f32) {
3321           if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0))
3322             ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal,
3323                                  DAG.getConstant(32, dl, MVT::i32));
3324           ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
3325         }
3326 
3327         ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal);
3328       } else {
3329         if (CallConv == CallingConv::Fast)
3330           ComputeArgOffset();
3331 
3332         needsLoad = true;
3333       }
3334 
3335       // When passing an array of floats, the array occupies consecutive
3336       // space in the argument area; only round up to the next doubleword
3337       // at the end of the array.  Otherwise, each float takes 8 bytes.
3338       if (CallConv != CallingConv::Fast || needsLoad) {
3339         ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize;
3340         ArgOffset += ArgSize;
3341         if (Flags.isInConsecutiveRegsLast())
3342           ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3343       }
3344       break;
3345     case MVT::v4f32:
3346     case MVT::v4i32:
3347     case MVT::v8i16:
3348     case MVT::v16i8:
3349     case MVT::v2f64:
3350     case MVT::v2i64:
3351     case MVT::v1i128:
3352       if (!Subtarget.hasQPX()) {
3353       // These can be scalar arguments or elements of a vector array type
3354       // passed directly.  The latter are used to implement ELFv2 homogenous
3355       // vector aggregates.
3356       if (VR_idx != Num_VR_Regs) {
3357         unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ?
3358                         MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) :
3359                         MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
3360         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3361         ++VR_idx;
3362       } else {
3363         if (CallConv == CallingConv::Fast)
3364           ComputeArgOffset();
3365 
3366         needsLoad = true;
3367       }
3368       if (CallConv != CallingConv::Fast || needsLoad)
3369         ArgOffset += 16;
3370       break;
3371       } // not QPX
3372 
3373       assert(ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 &&
3374              "Invalid QPX parameter type");
3375       /* fall through */
3376 
3377     case MVT::v4f64:
3378     case MVT::v4i1:
3379       // QPX vectors are treated like their scalar floating-point subregisters
3380       // (except that they're larger).
3381       unsigned Sz = ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 ? 16 : 32;
3382       if (QFPR_idx != Num_QFPR_Regs) {
3383         const TargetRegisterClass *RC;
3384         switch (ObjectVT.getSimpleVT().SimpleTy) {
3385         case MVT::v4f64: RC = &PPC::QFRCRegClass; break;
3386         case MVT::v4f32: RC = &PPC::QSRCRegClass; break;
3387         default:         RC = &PPC::QBRCRegClass; break;
3388         }
3389 
3390         unsigned VReg = MF.addLiveIn(QFPR[QFPR_idx], RC);
3391         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3392         ++QFPR_idx;
3393       } else {
3394         if (CallConv == CallingConv::Fast)
3395           ComputeArgOffset();
3396         needsLoad = true;
3397       }
3398       if (CallConv != CallingConv::Fast || needsLoad)
3399         ArgOffset += Sz;
3400       break;
3401     }
3402 
3403     // We need to load the argument to a virtual register if we determined
3404     // above that we ran out of physical registers of the appropriate type.
3405     if (needsLoad) {
3406       if (ObjSize < ArgSize && !isLittleEndian)
3407         CurArgOffset += ArgSize - ObjSize;
3408       int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable);
3409       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3410       ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
3411                            false, false, false, 0);
3412     }
3413 
3414     InVals.push_back(ArgVal);
3415   }
3416 
3417   // Area that is at least reserved in the caller of this function.
3418   unsigned MinReservedArea;
3419   if (HasParameterArea)
3420     MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize);
3421   else
3422     MinReservedArea = LinkageSize;
3423 
3424   // Set the size that is at least reserved in caller of this function.  Tail
3425   // call optimized functions' reserved stack space needs to be aligned so that
3426   // taking the difference between two stack areas will result in an aligned
3427   // stack.
3428   MinReservedArea =
3429       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
3430   FuncInfo->setMinReservedArea(MinReservedArea);
3431 
3432   // If the function takes variable number of arguments, make a frame index for
3433   // the start of the first vararg value... for expansion of llvm.va_start.
3434   if (isVarArg) {
3435     int Depth = ArgOffset;
3436 
3437     FuncInfo->setVarArgsFrameIndex(
3438       MFI->CreateFixedObject(PtrByteSize, Depth, true));
3439     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
3440 
3441     // If this function is vararg, store any remaining integer argument regs
3442     // to their spots on the stack so that they may be loaded by deferencing the
3443     // result of va_next.
3444     for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
3445          GPR_idx < Num_GPR_Regs; ++GPR_idx) {
3446       unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3447       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3448       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3449                                    MachinePointerInfo(), false, false, 0);
3450       MemOps.push_back(Store);
3451       // Increment the address by four for the next argument to store
3452       SDValue PtrOff = DAG.getConstant(PtrByteSize, dl, PtrVT);
3453       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3454     }
3455   }
3456 
3457   if (!MemOps.empty())
3458     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
3459 
3460   return Chain;
3461 }
3462 
3463 SDValue
3464 PPCTargetLowering::LowerFormalArguments_Darwin(
3465                                       SDValue Chain,
3466                                       CallingConv::ID CallConv, bool isVarArg,
3467                                       const SmallVectorImpl<ISD::InputArg>
3468                                         &Ins,
3469                                       SDLoc dl, SelectionDAG &DAG,
3470                                       SmallVectorImpl<SDValue> &InVals) const {
3471   // TODO: add description of PPC stack frame format, or at least some docs.
3472   //
3473   MachineFunction &MF = DAG.getMachineFunction();
3474   MachineFrameInfo *MFI = MF.getFrameInfo();
3475   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
3476 
3477   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
3478   bool isPPC64 = PtrVT == MVT::i64;
3479   // Potential tail calls could cause overwriting of argument stack slots.
3480   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3481                        (CallConv == CallingConv::Fast));
3482   unsigned PtrByteSize = isPPC64 ? 8 : 4;
3483   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
3484   unsigned ArgOffset = LinkageSize;
3485   // Area that is at least reserved in caller of this function.
3486   unsigned MinReservedArea = ArgOffset;
3487 
3488   static const MCPhysReg GPR_32[] = {           // 32-bit registers.
3489     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
3490     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
3491   };
3492   static const MCPhysReg GPR_64[] = {           // 64-bit registers.
3493     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3494     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3495   };
3496   static const MCPhysReg VR[] = {
3497     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3498     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3499   };
3500 
3501   const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
3502   const unsigned Num_FPR_Regs = 13;
3503   const unsigned Num_VR_Regs  = array_lengthof( VR);
3504 
3505   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3506 
3507   const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
3508 
3509   // In 32-bit non-varargs functions, the stack space for vectors is after the
3510   // stack space for non-vectors.  We do not use this space unless we have
3511   // too many vectors to fit in registers, something that only occurs in
3512   // constructed examples:), but we have to walk the arglist to figure
3513   // that out...for the pathological case, compute VecArgOffset as the
3514   // start of the vector parameter area.  Computing VecArgOffset is the
3515   // entire point of the following loop.
3516   unsigned VecArgOffset = ArgOffset;
3517   if (!isVarArg && !isPPC64) {
3518     for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
3519          ++ArgNo) {
3520       EVT ObjectVT = Ins[ArgNo].VT;
3521       ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3522 
3523       if (Flags.isByVal()) {
3524         // ObjSize is the true size, ArgSize rounded up to multiple of regs.
3525         unsigned ObjSize = Flags.getByValSize();
3526         unsigned ArgSize =
3527                 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3528         VecArgOffset += ArgSize;
3529         continue;
3530       }
3531 
3532       switch(ObjectVT.getSimpleVT().SimpleTy) {
3533       default: llvm_unreachable("Unhandled argument type!");
3534       case MVT::i1:
3535       case MVT::i32:
3536       case MVT::f32:
3537         VecArgOffset += 4;
3538         break;
3539       case MVT::i64:  // PPC64
3540       case MVT::f64:
3541         // FIXME: We are guaranteed to be !isPPC64 at this point.
3542         // Does MVT::i64 apply?
3543         VecArgOffset += 8;
3544         break;
3545       case MVT::v4f32:
3546       case MVT::v4i32:
3547       case MVT::v8i16:
3548       case MVT::v16i8:
3549         // Nothing to do, we're only looking at Nonvector args here.
3550         break;
3551       }
3552     }
3553   }
3554   // We've found where the vector parameter area in memory is.  Skip the
3555   // first 12 parameters; these don't use that memory.
3556   VecArgOffset = ((VecArgOffset+15)/16)*16;
3557   VecArgOffset += 12*16;
3558 
3559   // Add DAG nodes to load the arguments or copy them out of registers.  On
3560   // entry to a function on PPC, the arguments start after the linkage area,
3561   // although the first ones are often in registers.
3562 
3563   SmallVector<SDValue, 8> MemOps;
3564   unsigned nAltivecParamsAtEnd = 0;
3565   Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
3566   unsigned CurArgIdx = 0;
3567   for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
3568     SDValue ArgVal;
3569     bool needsLoad = false;
3570     EVT ObjectVT = Ins[ArgNo].VT;
3571     unsigned ObjSize = ObjectVT.getSizeInBits()/8;
3572     unsigned ArgSize = ObjSize;
3573     ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3574     if (Ins[ArgNo].isOrigArg()) {
3575       std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx);
3576       CurArgIdx = Ins[ArgNo].getOrigArgIndex();
3577     }
3578     unsigned CurArgOffset = ArgOffset;
3579 
3580     // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
3581     if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
3582         ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
3583       if (isVarArg || isPPC64) {
3584         MinReservedArea = ((MinReservedArea+15)/16)*16;
3585         MinReservedArea += CalculateStackSlotSize(ObjectVT,
3586                                                   Flags,
3587                                                   PtrByteSize);
3588       } else  nAltivecParamsAtEnd++;
3589     } else
3590       // Calculate min reserved area.
3591       MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
3592                                                 Flags,
3593                                                 PtrByteSize);
3594 
3595     // FIXME the codegen can be much improved in some cases.
3596     // We do not have to keep everything in memory.
3597     if (Flags.isByVal()) {
3598       assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit");
3599 
3600       // ObjSize is the true size, ArgSize rounded up to multiple of registers.
3601       ObjSize = Flags.getByValSize();
3602       ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3603       // Objects of size 1 and 2 are right justified, everything else is
3604       // left justified.  This means the memory address is adjusted forwards.
3605       if (ObjSize==1 || ObjSize==2) {
3606         CurArgOffset = CurArgOffset + (4 - ObjSize);
3607       }
3608       // The value of the object is its address.
3609       int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, false, true);
3610       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3611       InVals.push_back(FIN);
3612       if (ObjSize==1 || ObjSize==2) {
3613         if (GPR_idx != Num_GPR_Regs) {
3614           unsigned VReg;
3615           if (isPPC64)
3616             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3617           else
3618             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3619           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3620           EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
3621           SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
3622                                             MachinePointerInfo(&*FuncArg),
3623                                             ObjType, false, false, 0);
3624           MemOps.push_back(Store);
3625           ++GPR_idx;
3626         }
3627 
3628         ArgOffset += PtrByteSize;
3629 
3630         continue;
3631       }
3632       for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3633         // Store whatever pieces of the object are in registers
3634         // to memory.  ArgOffset will be the address of the beginning
3635         // of the object.
3636         if (GPR_idx != Num_GPR_Regs) {
3637           unsigned VReg;
3638           if (isPPC64)
3639             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3640           else
3641             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3642           int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
3643           SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3644           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3645           SDValue Store =
3646               DAG.getStore(Val.getValue(1), dl, Val, FIN,
3647                            MachinePointerInfo(&*FuncArg, j), false, false, 0);
3648           MemOps.push_back(Store);
3649           ++GPR_idx;
3650           ArgOffset += PtrByteSize;
3651         } else {
3652           ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
3653           break;
3654         }
3655       }
3656       continue;
3657     }
3658 
3659     switch (ObjectVT.getSimpleVT().SimpleTy) {
3660     default: llvm_unreachable("Unhandled argument type!");
3661     case MVT::i1:
3662     case MVT::i32:
3663       if (!isPPC64) {
3664         if (GPR_idx != Num_GPR_Regs) {
3665           unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3666           ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
3667 
3668           if (ObjectVT == MVT::i1)
3669             ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal);
3670 
3671           ++GPR_idx;
3672         } else {
3673           needsLoad = true;
3674           ArgSize = PtrByteSize;
3675         }
3676         // All int arguments reserve stack space in the Darwin ABI.
3677         ArgOffset += PtrByteSize;
3678         break;
3679       }
3680       // FALLTHROUGH
3681     case MVT::i64:  // PPC64
3682       if (GPR_idx != Num_GPR_Regs) {
3683         unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3684         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3685 
3686         if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
3687           // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3688           // value to MVT::i64 and then truncate to the correct register size.
3689           ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
3690 
3691         ++GPR_idx;
3692       } else {
3693         needsLoad = true;
3694         ArgSize = PtrByteSize;
3695       }
3696       // All int arguments reserve stack space in the Darwin ABI.
3697       ArgOffset += 8;
3698       break;
3699 
3700     case MVT::f32:
3701     case MVT::f64:
3702       // Every 4 bytes of argument space consumes one of the GPRs available for
3703       // argument passing.
3704       if (GPR_idx != Num_GPR_Regs) {
3705         ++GPR_idx;
3706         if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
3707           ++GPR_idx;
3708       }
3709       if (FPR_idx != Num_FPR_Regs) {
3710         unsigned VReg;
3711 
3712         if (ObjectVT == MVT::f32)
3713           VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
3714         else
3715           VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
3716 
3717         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3718         ++FPR_idx;
3719       } else {
3720         needsLoad = true;
3721       }
3722 
3723       // All FP arguments reserve stack space in the Darwin ABI.
3724       ArgOffset += isPPC64 ? 8 : ObjSize;
3725       break;
3726     case MVT::v4f32:
3727     case MVT::v4i32:
3728     case MVT::v8i16:
3729     case MVT::v16i8:
3730       // Note that vector arguments in registers don't reserve stack space,
3731       // except in varargs functions.
3732       if (VR_idx != Num_VR_Regs) {
3733         unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
3734         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3735         if (isVarArg) {
3736           while ((ArgOffset % 16) != 0) {
3737             ArgOffset += PtrByteSize;
3738             if (GPR_idx != Num_GPR_Regs)
3739               GPR_idx++;
3740           }
3741           ArgOffset += 16;
3742           GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
3743         }
3744         ++VR_idx;
3745       } else {
3746         if (!isVarArg && !isPPC64) {
3747           // Vectors go after all the nonvectors.
3748           CurArgOffset = VecArgOffset;
3749           VecArgOffset += 16;
3750         } else {
3751           // Vectors are aligned.
3752           ArgOffset = ((ArgOffset+15)/16)*16;
3753           CurArgOffset = ArgOffset;
3754           ArgOffset += 16;
3755         }
3756         needsLoad = true;
3757       }
3758       break;
3759     }
3760 
3761     // We need to load the argument to a virtual register if we determined above
3762     // that we ran out of physical registers of the appropriate type.
3763     if (needsLoad) {
3764       int FI = MFI->CreateFixedObject(ObjSize,
3765                                       CurArgOffset + (ArgSize - ObjSize),
3766                                       isImmutable);
3767       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3768       ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
3769                            false, false, false, 0);
3770     }
3771 
3772     InVals.push_back(ArgVal);
3773   }
3774 
3775   // Allow for Altivec parameters at the end, if needed.
3776   if (nAltivecParamsAtEnd) {
3777     MinReservedArea = ((MinReservedArea+15)/16)*16;
3778     MinReservedArea += 16*nAltivecParamsAtEnd;
3779   }
3780 
3781   // Area that is at least reserved in the caller of this function.
3782   MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize);
3783 
3784   // Set the size that is at least reserved in caller of this function.  Tail
3785   // call optimized functions' reserved stack space needs to be aligned so that
3786   // taking the difference between two stack areas will result in an aligned
3787   // stack.
3788   MinReservedArea =
3789       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
3790   FuncInfo->setMinReservedArea(MinReservedArea);
3791 
3792   // If the function takes variable number of arguments, make a frame index for
3793   // the start of the first vararg value... for expansion of llvm.va_start.
3794   if (isVarArg) {
3795     int Depth = ArgOffset;
3796 
3797     FuncInfo->setVarArgsFrameIndex(
3798       MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
3799                              Depth, true));
3800     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
3801 
3802     // If this function is vararg, store any remaining integer argument regs
3803     // to their spots on the stack so that they may be loaded by deferencing the
3804     // result of va_next.
3805     for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
3806       unsigned VReg;
3807 
3808       if (isPPC64)
3809         VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3810       else
3811         VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3812 
3813       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3814       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3815                                    MachinePointerInfo(), false, false, 0);
3816       MemOps.push_back(Store);
3817       // Increment the address by four for the next argument to store
3818       SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT);
3819       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3820     }
3821   }
3822 
3823   if (!MemOps.empty())
3824     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
3825 
3826   return Chain;
3827 }
3828 
3829 /// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
3830 /// adjusted to accommodate the arguments for the tailcall.
3831 static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
3832                                    unsigned ParamSize) {
3833 
3834   if (!isTailCall) return 0;
3835 
3836   PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
3837   unsigned CallerMinReservedArea = FI->getMinReservedArea();
3838   int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
3839   // Remember only if the new adjustement is bigger.
3840   if (SPDiff < FI->getTailCallSPDelta())
3841     FI->setTailCallSPDelta(SPDiff);
3842 
3843   return SPDiff;
3844 }
3845 
3846 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3847 /// for tail call optimization. Targets which want to do tail call
3848 /// optimization should implement this function.
3849 bool
3850 PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3851                                                      CallingConv::ID CalleeCC,
3852                                                      bool isVarArg,
3853                                       const SmallVectorImpl<ISD::InputArg> &Ins,
3854                                                      SelectionDAG& DAG) const {
3855   if (!getTargetMachine().Options.GuaranteedTailCallOpt)
3856     return false;
3857 
3858   // Variable argument functions are not supported.
3859   if (isVarArg)
3860     return false;
3861 
3862   MachineFunction &MF = DAG.getMachineFunction();
3863   CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
3864   if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
3865     // Functions containing by val parameters are not supported.
3866     for (unsigned i = 0; i != Ins.size(); i++) {
3867        ISD::ArgFlagsTy Flags = Ins[i].Flags;
3868        if (Flags.isByVal()) return false;
3869     }
3870 
3871     // Non-PIC/GOT tail calls are supported.
3872     if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
3873       return true;
3874 
3875     // At the moment we can only do local tail calls (in same module, hidden
3876     // or protected) if we are generating PIC.
3877     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3878       return G->getGlobal()->hasHiddenVisibility()
3879           || G->getGlobal()->hasProtectedVisibility();
3880   }
3881 
3882   return false;
3883 }
3884 
3885 /// isCallCompatibleAddress - Return the immediate to use if the specified
3886 /// 32-bit value is representable in the immediate field of a BxA instruction.
3887 static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
3888   ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
3889   if (!C) return nullptr;
3890 
3891   int Addr = C->getZExtValue();
3892   if ((Addr & 3) != 0 ||  // Low 2 bits are implicitly zero.
3893       SignExtend32<26>(Addr) != Addr)
3894     return nullptr;  // Top 6 bits have to be sext of immediate.
3895 
3896   return DAG.getConstant((int)C->getZExtValue() >> 2, SDLoc(Op),
3897                          DAG.getTargetLoweringInfo().getPointerTy(
3898                              DAG.getDataLayout())).getNode();
3899 }
3900 
3901 namespace {
3902 
3903 struct TailCallArgumentInfo {
3904   SDValue Arg;
3905   SDValue FrameIdxOp;
3906   int       FrameIdx;
3907 
3908   TailCallArgumentInfo() : FrameIdx(0) {}
3909 };
3910 }
3911 
3912 /// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
3913 static void
3914 StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
3915                                            SDValue Chain,
3916                    const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
3917                    SmallVectorImpl<SDValue> &MemOpChains,
3918                    SDLoc dl) {
3919   for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
3920     SDValue Arg = TailCallArgs[i].Arg;
3921     SDValue FIN = TailCallArgs[i].FrameIdxOp;
3922     int FI = TailCallArgs[i].FrameIdx;
3923     // Store relative to framepointer.
3924     MemOpChains.push_back(DAG.getStore(
3925         Chain, dl, Arg, FIN,
3926         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), false,
3927         false, 0));
3928   }
3929 }
3930 
3931 /// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
3932 /// the appropriate stack slot for the tail call optimized function call.
3933 static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
3934                                                MachineFunction &MF,
3935                                                SDValue Chain,
3936                                                SDValue OldRetAddr,
3937                                                SDValue OldFP,
3938                                                int SPDiff,
3939                                                bool isPPC64,
3940                                                bool isDarwinABI,
3941                                                SDLoc dl) {
3942   if (SPDiff) {
3943     // Calculate the new stack slot for the return address.
3944     int SlotSize = isPPC64 ? 8 : 4;
3945     const PPCFrameLowering *FL =
3946         MF.getSubtarget<PPCSubtarget>().getFrameLowering();
3947     int NewRetAddrLoc = SPDiff + FL->getReturnSaveOffset();
3948     int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3949                                                           NewRetAddrLoc, true);
3950     EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
3951     SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
3952     Chain = DAG.getStore(
3953         Chain, dl, OldRetAddr, NewRetAddrFrIdx,
3954         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), NewRetAddr),
3955         false, false, 0);
3956 
3957     // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3958     // slot as the FP is never overwritten.
3959     if (isDarwinABI) {
3960       int NewFPLoc = SPDiff + FL->getFramePointerSaveOffset();
3961       int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
3962                                                           true);
3963       SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3964       Chain = DAG.getStore(
3965           Chain, dl, OldFP, NewFramePtrIdx,
3966           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), NewFPIdx),
3967           false, false, 0);
3968     }
3969   }
3970   return Chain;
3971 }
3972 
3973 /// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3974 /// the position of the argument.
3975 static void
3976 CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
3977                          SDValue Arg, int SPDiff, unsigned ArgOffset,
3978                      SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
3979   int Offset = ArgOffset + SPDiff;
3980   uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
3981   int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
3982   EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
3983   SDValue FIN = DAG.getFrameIndex(FI, VT);
3984   TailCallArgumentInfo Info;
3985   Info.Arg = Arg;
3986   Info.FrameIdxOp = FIN;
3987   Info.FrameIdx = FI;
3988   TailCallArguments.push_back(Info);
3989 }
3990 
3991 /// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3992 /// stack slot. Returns the chain as result and the loaded frame pointers in
3993 /// LROpOut/FPOpout. Used when tail calling.
3994 SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
3995                                                         int SPDiff,
3996                                                         SDValue Chain,
3997                                                         SDValue &LROpOut,
3998                                                         SDValue &FPOpOut,
3999                                                         bool isDarwinABI,
4000                                                         SDLoc dl) const {
4001   if (SPDiff) {
4002     // Load the LR and FP stack slot for later adjusting.
4003     EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32;
4004     LROpOut = getReturnAddrFrameIndex(DAG);
4005     LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
4006                           false, false, false, 0);
4007     Chain = SDValue(LROpOut.getNode(), 1);
4008 
4009     // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
4010     // slot as the FP is never overwritten.
4011     if (isDarwinABI) {
4012       FPOpOut = getFramePointerFrameIndex(DAG);
4013       FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
4014                             false, false, false, 0);
4015       Chain = SDValue(FPOpOut.getNode(), 1);
4016     }
4017   }
4018   return Chain;
4019 }
4020 
4021 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
4022 /// by "Src" to address "Dst" of size "Size".  Alignment information is
4023 /// specified by the specific parameter attribute. The copy will be passed as
4024 /// a byval function parameter.
4025 /// Sometimes what we are copying is the end of a larger object, the part that
4026 /// does not fit in registers.
4027 static SDValue
4028 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
4029                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
4030                           SDLoc dl) {
4031   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
4032   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
4033                        false, false, false, MachinePointerInfo(),
4034                        MachinePointerInfo());
4035 }
4036 
4037 /// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
4038 /// tail calls.
4039 static void
4040 LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
4041                  SDValue Arg, SDValue PtrOff, int SPDiff,
4042                  unsigned ArgOffset, bool isPPC64, bool isTailCall,
4043                  bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
4044                  SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
4045                  SDLoc dl) {
4046   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
4047   if (!isTailCall) {
4048     if (isVector) {
4049       SDValue StackPtr;
4050       if (isPPC64)
4051         StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4052       else
4053         StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
4054       PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
4055                            DAG.getConstant(ArgOffset, dl, PtrVT));
4056     }
4057     MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
4058                                        MachinePointerInfo(), false, false, 0));
4059   // Calculate and remember argument location.
4060   } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
4061                                   TailCallArguments);
4062 }
4063 
4064 static
4065 void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
4066                      SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
4067                      SDValue LROp, SDValue FPOp, bool isDarwinABI,
4068                      SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
4069   MachineFunction &MF = DAG.getMachineFunction();
4070 
4071   // Emit a sequence of copyto/copyfrom virtual registers for arguments that
4072   // might overwrite each other in case of tail call optimization.
4073   SmallVector<SDValue, 8> MemOpChains2;
4074   // Do not flag preceding copytoreg stuff together with the following stuff.
4075   InFlag = SDValue();
4076   StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
4077                                     MemOpChains2, dl);
4078   if (!MemOpChains2.empty())
4079     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
4080 
4081   // Store the return address to the appropriate stack slot.
4082   Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
4083                                         isPPC64, isDarwinABI, dl);
4084 
4085   // Emit callseq_end just before tailcall node.
4086   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4087                              DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
4088   InFlag = Chain.getValue(1);
4089 }
4090 
4091 // Is this global address that of a function that can be called by name? (as
4092 // opposed to something that must hold a descriptor for an indirect call).
4093 static bool isFunctionGlobalAddress(SDValue Callee) {
4094   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
4095     if (Callee.getOpcode() == ISD::GlobalTLSAddress ||
4096         Callee.getOpcode() == ISD::TargetGlobalTLSAddress)
4097       return false;
4098 
4099     return G->getGlobal()->getValueType()->isFunctionTy();
4100   }
4101 
4102   return false;
4103 }
4104 
4105 static
4106 unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
4107                      SDValue &Chain, SDValue CallSeqStart, SDLoc dl, int SPDiff,
4108                      bool isTailCall, bool IsPatchPoint, bool hasNest,
4109                      SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
4110                      SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
4111                      ImmutableCallSite *CS, const PPCSubtarget &Subtarget) {
4112 
4113   bool isPPC64 = Subtarget.isPPC64();
4114   bool isSVR4ABI = Subtarget.isSVR4ABI();
4115   bool isELFv2ABI = Subtarget.isELFv2ABI();
4116 
4117   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
4118   NodeTys.push_back(MVT::Other);   // Returns a chain
4119   NodeTys.push_back(MVT::Glue);    // Returns a flag for retval copy to use.
4120 
4121   unsigned CallOpc = PPCISD::CALL;
4122 
4123   bool needIndirectCall = true;
4124   if (!isSVR4ABI || !isPPC64)
4125     if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
4126       // If this is an absolute destination address, use the munged value.
4127       Callee = SDValue(Dest, 0);
4128       needIndirectCall = false;
4129     }
4130 
4131   if (isFunctionGlobalAddress(Callee)) {
4132     GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee);
4133     // A call to a TLS address is actually an indirect call to a
4134     // thread-specific pointer.
4135     unsigned OpFlags = 0;
4136     if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
4137          (Subtarget.getTargetTriple().isMacOSX() &&
4138           Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
4139          !G->getGlobal()->isStrongDefinitionForLinker()) ||
4140         (Subtarget.isTargetELF() && !isPPC64 &&
4141          !G->getGlobal()->hasLocalLinkage() &&
4142          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
4143       // PC-relative references to external symbols should go through $stub,
4144       // unless we're building with the leopard linker or later, which
4145       // automatically synthesizes these stubs.
4146       OpFlags = PPCII::MO_PLT_OR_STUB;
4147     }
4148 
4149     // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
4150     // every direct call is) turn it into a TargetGlobalAddress /
4151     // TargetExternalSymbol node so that legalize doesn't hack it.
4152     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
4153                                         Callee.getValueType(), 0, OpFlags);
4154     needIndirectCall = false;
4155   }
4156 
4157   if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
4158     unsigned char OpFlags = 0;
4159 
4160     if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
4161          (Subtarget.getTargetTriple().isMacOSX() &&
4162           Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) ||
4163         (Subtarget.isTargetELF() && !isPPC64 &&
4164          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
4165       // PC-relative references to external symbols should go through $stub,
4166       // unless we're building with the leopard linker or later, which
4167       // automatically synthesizes these stubs.
4168       OpFlags = PPCII::MO_PLT_OR_STUB;
4169     }
4170 
4171     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
4172                                          OpFlags);
4173     needIndirectCall = false;
4174   }
4175 
4176   if (IsPatchPoint) {
4177     // We'll form an invalid direct call when lowering a patchpoint; the full
4178     // sequence for an indirect call is complicated, and many of the
4179     // instructions introduced might have side effects (and, thus, can't be
4180     // removed later). The call itself will be removed as soon as the
4181     // argument/return lowering is complete, so the fact that it has the wrong
4182     // kind of operands should not really matter.
4183     needIndirectCall = false;
4184   }
4185 
4186   if (needIndirectCall) {
4187     // Otherwise, this is an indirect call.  We have to use a MTCTR/BCTRL pair
4188     // to do the call, we can't use PPCISD::CALL.
4189     SDValue MTCTROps[] = {Chain, Callee, InFlag};
4190 
4191     if (isSVR4ABI && isPPC64 && !isELFv2ABI) {
4192       // Function pointers in the 64-bit SVR4 ABI do not point to the function
4193       // entry point, but to the function descriptor (the function entry point
4194       // address is part of the function descriptor though).
4195       // The function descriptor is a three doubleword structure with the
4196       // following fields: function entry point, TOC base address and
4197       // environment pointer.
4198       // Thus for a call through a function pointer, the following actions need
4199       // to be performed:
4200       //   1. Save the TOC of the caller in the TOC save area of its stack
4201       //      frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
4202       //   2. Load the address of the function entry point from the function
4203       //      descriptor.
4204       //   3. Load the TOC of the callee from the function descriptor into r2.
4205       //   4. Load the environment pointer from the function descriptor into
4206       //      r11.
4207       //   5. Branch to the function entry point address.
4208       //   6. On return of the callee, the TOC of the caller needs to be
4209       //      restored (this is done in FinishCall()).
4210       //
4211       // The loads are scheduled at the beginning of the call sequence, and the
4212       // register copies are flagged together to ensure that no other
4213       // operations can be scheduled in between. E.g. without flagging the
4214       // copies together, a TOC access in the caller could be scheduled between
4215       // the assignment of the callee TOC and the branch to the callee, which
4216       // results in the TOC access going through the TOC of the callee instead
4217       // of going through the TOC of the caller, which leads to incorrect code.
4218 
4219       // Load the address of the function entry point from the function
4220       // descriptor.
4221       SDValue LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-1);
4222       if (LDChain.getValueType() == MVT::Glue)
4223         LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-2);
4224 
4225       bool LoadsInv = Subtarget.hasInvariantFunctionDescriptors();
4226 
4227       MachinePointerInfo MPI(CS ? CS->getCalledValue() : nullptr);
4228       SDValue LoadFuncPtr = DAG.getLoad(MVT::i64, dl, LDChain, Callee, MPI,
4229                                         false, false, LoadsInv, 8);
4230 
4231       // Load environment pointer into r11.
4232       SDValue PtrOff = DAG.getIntPtrConstant(16, dl);
4233       SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
4234       SDValue LoadEnvPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddPtr,
4235                                        MPI.getWithOffset(16), false, false,
4236                                        LoadsInv, 8);
4237 
4238       SDValue TOCOff = DAG.getIntPtrConstant(8, dl);
4239       SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff);
4240       SDValue TOCPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddTOC,
4241                                    MPI.getWithOffset(8), false, false,
4242                                    LoadsInv, 8);
4243 
4244       setUsesTOCBasePtr(DAG);
4245       SDValue TOCVal = DAG.getCopyToReg(Chain, dl, PPC::X2, TOCPtr,
4246                                         InFlag);
4247       Chain = TOCVal.getValue(0);
4248       InFlag = TOCVal.getValue(1);
4249 
4250       // If the function call has an explicit 'nest' parameter, it takes the
4251       // place of the environment pointer.
4252       if (!hasNest) {
4253         SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
4254                                           InFlag);
4255 
4256         Chain = EnvVal.getValue(0);
4257         InFlag = EnvVal.getValue(1);
4258       }
4259 
4260       MTCTROps[0] = Chain;
4261       MTCTROps[1] = LoadFuncPtr;
4262       MTCTROps[2] = InFlag;
4263     }
4264 
4265     Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys,
4266                         makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
4267     InFlag = Chain.getValue(1);
4268 
4269     NodeTys.clear();
4270     NodeTys.push_back(MVT::Other);
4271     NodeTys.push_back(MVT::Glue);
4272     Ops.push_back(Chain);
4273     CallOpc = PPCISD::BCTRL;
4274     Callee.setNode(nullptr);
4275     // Add use of X11 (holding environment pointer)
4276     if (isSVR4ABI && isPPC64 && !isELFv2ABI && !hasNest)
4277       Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
4278     // Add CTR register as callee so a bctr can be emitted later.
4279     if (isTailCall)
4280       Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
4281   }
4282 
4283   // If this is a direct call, pass the chain and the callee.
4284   if (Callee.getNode()) {
4285     Ops.push_back(Chain);
4286     Ops.push_back(Callee);
4287   }
4288   // If this is a tail call add stack pointer delta.
4289   if (isTailCall)
4290     Ops.push_back(DAG.getConstant(SPDiff, dl, MVT::i32));
4291 
4292   // Add argument registers to the end of the list so that they are known live
4293   // into the call.
4294   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
4295     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
4296                                   RegsToPass[i].second.getValueType()));
4297 
4298   // All calls, in both the ELF V1 and V2 ABIs, need the TOC register live
4299   // into the call.
4300   if (isSVR4ABI && isPPC64 && !IsPatchPoint) {
4301     setUsesTOCBasePtr(DAG);
4302     Ops.push_back(DAG.getRegister(PPC::X2, PtrVT));
4303   }
4304 
4305   return CallOpc;
4306 }
4307 
4308 static
4309 bool isLocalCall(const SDValue &Callee)
4310 {
4311   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
4312     return G->getGlobal()->isStrongDefinitionForLinker();
4313   return false;
4314 }
4315 
4316 SDValue
4317 PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
4318                                    CallingConv::ID CallConv, bool isVarArg,
4319                                    const SmallVectorImpl<ISD::InputArg> &Ins,
4320                                    SDLoc dl, SelectionDAG &DAG,
4321                                    SmallVectorImpl<SDValue> &InVals) const {
4322 
4323   SmallVector<CCValAssign, 16> RVLocs;
4324   CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
4325                     *DAG.getContext());
4326   CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
4327 
4328   // Copy all of the result registers out of their specified physreg.
4329   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
4330     CCValAssign &VA = RVLocs[i];
4331     assert(VA.isRegLoc() && "Can only return in registers!");
4332 
4333     SDValue Val = DAG.getCopyFromReg(Chain, dl,
4334                                      VA.getLocReg(), VA.getLocVT(), InFlag);
4335     Chain = Val.getValue(1);
4336     InFlag = Val.getValue(2);
4337 
4338     switch (VA.getLocInfo()) {
4339     default: llvm_unreachable("Unknown loc info!");
4340     case CCValAssign::Full: break;
4341     case CCValAssign::AExt:
4342       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4343       break;
4344     case CCValAssign::ZExt:
4345       Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
4346                         DAG.getValueType(VA.getValVT()));
4347       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4348       break;
4349     case CCValAssign::SExt:
4350       Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
4351                         DAG.getValueType(VA.getValVT()));
4352       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
4353       break;
4354     }
4355 
4356     InVals.push_back(Val);
4357   }
4358 
4359   return Chain;
4360 }
4361 
4362 SDValue
4363 PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
4364                               bool isTailCall, bool isVarArg, bool IsPatchPoint,
4365                               bool hasNest, SelectionDAG &DAG,
4366                               SmallVector<std::pair<unsigned, SDValue>, 8>
4367                                 &RegsToPass,
4368                               SDValue InFlag, SDValue Chain,
4369                               SDValue CallSeqStart, SDValue &Callee,
4370                               int SPDiff, unsigned NumBytes,
4371                               const SmallVectorImpl<ISD::InputArg> &Ins,
4372                               SmallVectorImpl<SDValue> &InVals,
4373                               ImmutableCallSite *CS) const {
4374 
4375   std::vector<EVT> NodeTys;
4376   SmallVector<SDValue, 8> Ops;
4377   unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, CallSeqStart, dl,
4378                                  SPDiff, isTailCall, IsPatchPoint, hasNest,
4379                                  RegsToPass, Ops, NodeTys, CS, Subtarget);
4380 
4381   // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
4382   if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64())
4383     Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
4384 
4385   // When performing tail call optimization the callee pops its arguments off
4386   // the stack. Account for this here so these bytes can be pushed back on in
4387   // PPCFrameLowering::eliminateCallFramePseudoInstr.
4388   int BytesCalleePops =
4389     (CallConv == CallingConv::Fast &&
4390      getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
4391 
4392   // Add a register mask operand representing the call-preserved registers.
4393   const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
4394   const uint32_t *Mask =
4395       TRI->getCallPreservedMask(DAG.getMachineFunction(), CallConv);
4396   assert(Mask && "Missing call preserved mask for calling convention");
4397   Ops.push_back(DAG.getRegisterMask(Mask));
4398 
4399   if (InFlag.getNode())
4400     Ops.push_back(InFlag);
4401 
4402   // Emit tail call.
4403   if (isTailCall) {
4404     assert(((Callee.getOpcode() == ISD::Register &&
4405              cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
4406             Callee.getOpcode() == ISD::TargetExternalSymbol ||
4407             Callee.getOpcode() == ISD::TargetGlobalAddress ||
4408             isa<ConstantSDNode>(Callee)) &&
4409     "Expecting an global address, external symbol, absolute value or register");
4410 
4411     DAG.getMachineFunction().getFrameInfo()->setHasTailCall();
4412     return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops);
4413   }
4414 
4415   // Add a NOP immediately after the branch instruction when using the 64-bit
4416   // SVR4 ABI. At link time, if caller and callee are in a different module and
4417   // thus have a different TOC, the call will be replaced with a call to a stub
4418   // function which saves the current TOC, loads the TOC of the callee and
4419   // branches to the callee. The NOP will be replaced with a load instruction
4420   // which restores the TOC of the caller from the TOC save slot of the current
4421   // stack frame. If caller and callee belong to the same module (and have the
4422   // same TOC), the NOP will remain unchanged.
4423 
4424   if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64() &&
4425       !IsPatchPoint) {
4426     if (CallOpc == PPCISD::BCTRL) {
4427       // This is a call through a function pointer.
4428       // Restore the caller TOC from the save area into R2.
4429       // See PrepareCall() for more information about calls through function
4430       // pointers in the 64-bit SVR4 ABI.
4431       // We are using a target-specific load with r2 hard coded, because the
4432       // result of a target-independent load would never go directly into r2,
4433       // since r2 is a reserved register (which prevents the register allocator
4434       // from allocating it), resulting in an additional register being
4435       // allocated and an unnecessary move instruction being generated.
4436       CallOpc = PPCISD::BCTRL_LOAD_TOC;
4437 
4438       EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
4439       SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT);
4440       unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
4441       SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset, dl);
4442       SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff);
4443 
4444       // The address needs to go after the chain input but before the flag (or
4445       // any other variadic arguments).
4446       Ops.insert(std::next(Ops.begin()), AddTOC);
4447     } else if ((CallOpc == PPCISD::CALL) &&
4448                (!isLocalCall(Callee) ||
4449                 DAG.getTarget().getRelocationModel() == Reloc::PIC_))
4450       // Otherwise insert NOP for non-local calls.
4451       CallOpc = PPCISD::CALL_NOP;
4452   }
4453 
4454   Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
4455   InFlag = Chain.getValue(1);
4456 
4457   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4458                              DAG.getIntPtrConstant(BytesCalleePops, dl, true),
4459                              InFlag, dl);
4460   if (!Ins.empty())
4461     InFlag = Chain.getValue(1);
4462 
4463   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
4464                          Ins, dl, DAG, InVals);
4465 }
4466 
4467 SDValue
4468 PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
4469                              SmallVectorImpl<SDValue> &InVals) const {
4470   SelectionDAG &DAG                     = CLI.DAG;
4471   SDLoc &dl                             = CLI.DL;
4472   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
4473   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
4474   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
4475   SDValue Chain                         = CLI.Chain;
4476   SDValue Callee                        = CLI.Callee;
4477   bool &isTailCall                      = CLI.IsTailCall;
4478   CallingConv::ID CallConv              = CLI.CallConv;
4479   bool isVarArg                         = CLI.IsVarArg;
4480   bool IsPatchPoint                     = CLI.IsPatchPoint;
4481   ImmutableCallSite *CS                 = CLI.CS;
4482 
4483   if (isTailCall)
4484     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
4485                                                    Ins, DAG);
4486 
4487   if (!isTailCall && CS && CS->isMustTailCall())
4488     report_fatal_error("failed to perform tail call elimination on a call "
4489                        "site marked musttail");
4490 
4491   if (Subtarget.isSVR4ABI()) {
4492     if (Subtarget.isPPC64())
4493       return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
4494                               isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4495                               dl, DAG, InVals, CS);
4496     else
4497       return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
4498                               isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4499                               dl, DAG, InVals, CS);
4500   }
4501 
4502   return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
4503                           isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4504                           dl, DAG, InVals, CS);
4505 }
4506 
4507 SDValue
4508 PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
4509                                     CallingConv::ID CallConv, bool isVarArg,
4510                                     bool isTailCall, bool IsPatchPoint,
4511                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
4512                                     const SmallVectorImpl<SDValue> &OutVals,
4513                                     const SmallVectorImpl<ISD::InputArg> &Ins,
4514                                     SDLoc dl, SelectionDAG &DAG,
4515                                     SmallVectorImpl<SDValue> &InVals,
4516                                     ImmutableCallSite *CS) const {
4517   // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
4518   // of the 32-bit SVR4 ABI stack frame layout.
4519 
4520   assert((CallConv == CallingConv::C ||
4521           CallConv == CallingConv::Fast) && "Unknown calling convention!");
4522 
4523   unsigned PtrByteSize = 4;
4524 
4525   MachineFunction &MF = DAG.getMachineFunction();
4526 
4527   // Mark this function as potentially containing a function that contains a
4528   // tail call. As a consequence the frame pointer will be used for dynamicalloc
4529   // and restoring the callers stack pointer in this functions epilog. This is
4530   // done because by tail calling the called function might overwrite the value
4531   // in this function's (MF) stack pointer stack slot 0(SP).
4532   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4533       CallConv == CallingConv::Fast)
4534     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4535 
4536   // Count how many bytes are to be pushed on the stack, including the linkage
4537   // area, parameter list area and the part of the local variable space which
4538   // contains copies of aggregates which are passed by value.
4539 
4540   // Assign locations to all of the outgoing arguments.
4541   SmallVector<CCValAssign, 16> ArgLocs;
4542   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
4543                  *DAG.getContext());
4544 
4545   // Reserve space for the linkage area on the stack.
4546   CCInfo.AllocateStack(Subtarget.getFrameLowering()->getLinkageSize(),
4547                        PtrByteSize);
4548 
4549   if (isVarArg) {
4550     // Handle fixed and variable vector arguments differently.
4551     // Fixed vector arguments go into registers as long as registers are
4552     // available. Variable vector arguments always go into memory.
4553     unsigned NumArgs = Outs.size();
4554 
4555     for (unsigned i = 0; i != NumArgs; ++i) {
4556       MVT ArgVT = Outs[i].VT;
4557       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
4558       bool Result;
4559 
4560       if (Outs[i].IsFixed) {
4561         Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
4562                                CCInfo);
4563       } else {
4564         Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
4565                                       ArgFlags, CCInfo);
4566       }
4567 
4568       if (Result) {
4569 #ifndef NDEBUG
4570         errs() << "Call operand #" << i << " has unhandled type "
4571              << EVT(ArgVT).getEVTString() << "\n";
4572 #endif
4573         llvm_unreachable(nullptr);
4574       }
4575     }
4576   } else {
4577     // All arguments are treated the same.
4578     CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
4579   }
4580 
4581   // Assign locations to all of the outgoing aggregate by value arguments.
4582   SmallVector<CCValAssign, 16> ByValArgLocs;
4583   CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
4584                       ByValArgLocs, *DAG.getContext());
4585 
4586   // Reserve stack space for the allocations in CCInfo.
4587   CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
4588 
4589   CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
4590 
4591   // Size of the linkage area, parameter list area and the part of the local
4592   // space variable where copies of aggregates which are passed by value are
4593   // stored.
4594   unsigned NumBytes = CCByValInfo.getNextStackOffset();
4595 
4596   // Calculate by how many bytes the stack has to be adjusted in case of tail
4597   // call optimization.
4598   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4599 
4600   // Adjust the stack pointer for the new arguments...
4601   // These operations are automatically eliminated by the prolog/epilog pass
4602   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4603                                dl);
4604   SDValue CallSeqStart = Chain;
4605 
4606   // Load the return address and frame pointer so it can be moved somewhere else
4607   // later.
4608   SDValue LROp, FPOp;
4609   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
4610                                        dl);
4611 
4612   // Set up a copy of the stack pointer for use loading and storing any
4613   // arguments that may not fit in the registers available for argument
4614   // passing.
4615   SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
4616 
4617   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4618   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4619   SmallVector<SDValue, 8> MemOpChains;
4620 
4621   bool seenFloatArg = false;
4622   // Walk the register/memloc assignments, inserting copies/loads.
4623   for (unsigned i = 0, j = 0, e = ArgLocs.size();
4624        i != e;
4625        ++i) {
4626     CCValAssign &VA = ArgLocs[i];
4627     SDValue Arg = OutVals[i];
4628     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4629 
4630     if (Flags.isByVal()) {
4631       // Argument is an aggregate which is passed by value, thus we need to
4632       // create a copy of it in the local variable space of the current stack
4633       // frame (which is the stack frame of the caller) and pass the address of
4634       // this copy to the callee.
4635       assert((j < ByValArgLocs.size()) && "Index out of bounds!");
4636       CCValAssign &ByValVA = ByValArgLocs[j++];
4637       assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
4638 
4639       // Memory reserved in the local variable space of the callers stack frame.
4640       unsigned LocMemOffset = ByValVA.getLocMemOffset();
4641 
4642       SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
4643       PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()),
4644                            StackPtr, PtrOff);
4645 
4646       // Create a copy of the argument in the local area of the current
4647       // stack frame.
4648       SDValue MemcpyCall =
4649         CreateCopyOfByValArgument(Arg, PtrOff,
4650                                   CallSeqStart.getNode()->getOperand(0),
4651                                   Flags, DAG, dl);
4652 
4653       // This must go outside the CALLSEQ_START..END.
4654       SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
4655                            CallSeqStart.getNode()->getOperand(1),
4656                            SDLoc(MemcpyCall));
4657       DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4658                              NewCallSeqStart.getNode());
4659       Chain = CallSeqStart = NewCallSeqStart;
4660 
4661       // Pass the address of the aggregate copy on the stack either in a
4662       // physical register or in the parameter list area of the current stack
4663       // frame to the callee.
4664       Arg = PtrOff;
4665     }
4666 
4667     if (VA.isRegLoc()) {
4668       if (Arg.getValueType() == MVT::i1)
4669         Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg);
4670 
4671       seenFloatArg |= VA.getLocVT().isFloatingPoint();
4672       // Put argument in a physical register.
4673       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
4674     } else {
4675       // Put argument in the parameter list area of the current stack frame.
4676       assert(VA.isMemLoc());
4677       unsigned LocMemOffset = VA.getLocMemOffset();
4678 
4679       if (!isTailCall) {
4680         SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
4681         PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()),
4682                              StackPtr, PtrOff);
4683 
4684         MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
4685                                            MachinePointerInfo(),
4686                                            false, false, 0));
4687       } else {
4688         // Calculate and remember argument location.
4689         CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
4690                                  TailCallArguments);
4691       }
4692     }
4693   }
4694 
4695   if (!MemOpChains.empty())
4696     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
4697 
4698   // Build a sequence of copy-to-reg nodes chained together with token chain
4699   // and flag operands which copy the outgoing args into the appropriate regs.
4700   SDValue InFlag;
4701   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4702     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4703                              RegsToPass[i].second, InFlag);
4704     InFlag = Chain.getValue(1);
4705   }
4706 
4707   // Set CR bit 6 to true if this is a vararg call with floating args passed in
4708   // registers.
4709   if (isVarArg) {
4710     SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
4711     SDValue Ops[] = { Chain, InFlag };
4712 
4713     Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
4714                         dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1));
4715 
4716     InFlag = Chain.getValue(1);
4717   }
4718 
4719   if (isTailCall)
4720     PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
4721                     false, TailCallArguments);
4722 
4723   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint,
4724                     /* unused except on PPC64 ELFv1 */ false, DAG,
4725                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4726                     NumBytes, Ins, InVals, CS);
4727 }
4728 
4729 // Copy an argument into memory, being careful to do this outside the
4730 // call sequence for the call to which the argument belongs.
4731 SDValue
4732 PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
4733                                               SDValue CallSeqStart,
4734                                               ISD::ArgFlagsTy Flags,
4735                                               SelectionDAG &DAG,
4736                                               SDLoc dl) const {
4737   SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
4738                         CallSeqStart.getNode()->getOperand(0),
4739                         Flags, DAG, dl);
4740   // The MEMCPY must go outside the CALLSEQ_START..END.
4741   SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
4742                              CallSeqStart.getNode()->getOperand(1),
4743                              SDLoc(MemcpyCall));
4744   DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4745                          NewCallSeqStart.getNode());
4746   return NewCallSeqStart;
4747 }
4748 
4749 SDValue
4750 PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
4751                                     CallingConv::ID CallConv, bool isVarArg,
4752                                     bool isTailCall, bool IsPatchPoint,
4753                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
4754                                     const SmallVectorImpl<SDValue> &OutVals,
4755                                     const SmallVectorImpl<ISD::InputArg> &Ins,
4756                                     SDLoc dl, SelectionDAG &DAG,
4757                                     SmallVectorImpl<SDValue> &InVals,
4758                                     ImmutableCallSite *CS) const {
4759 
4760   bool isELFv2ABI = Subtarget.isELFv2ABI();
4761   bool isLittleEndian = Subtarget.isLittleEndian();
4762   unsigned NumOps = Outs.size();
4763   bool hasNest = false;
4764 
4765   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
4766   unsigned PtrByteSize = 8;
4767 
4768   MachineFunction &MF = DAG.getMachineFunction();
4769 
4770   // Mark this function as potentially containing a function that contains a
4771   // tail call. As a consequence the frame pointer will be used for dynamicalloc
4772   // and restoring the callers stack pointer in this functions epilog. This is
4773   // done because by tail calling the called function might overwrite the value
4774   // in this function's (MF) stack pointer stack slot 0(SP).
4775   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4776       CallConv == CallingConv::Fast)
4777     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4778 
4779   assert(!(CallConv == CallingConv::Fast && isVarArg) &&
4780          "fastcc not supported on varargs functions");
4781 
4782   // Count how many bytes are to be pushed on the stack, including the linkage
4783   // area, and parameter passing area.  On ELFv1, the linkage area is 48 bytes
4784   // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage
4785   // area is 32 bytes reserved space for [SP][CR][LR][TOC].
4786   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
4787   unsigned NumBytes = LinkageSize;
4788   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
4789   unsigned &QFPR_idx = FPR_idx;
4790 
4791   static const MCPhysReg GPR[] = {
4792     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4793     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4794   };
4795   static const MCPhysReg VR[] = {
4796     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4797     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4798   };
4799   static const MCPhysReg VSRH[] = {
4800     PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
4801     PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
4802   };
4803 
4804   const unsigned NumGPRs = array_lengthof(GPR);
4805   const unsigned NumFPRs = 13;
4806   const unsigned NumVRs  = array_lengthof(VR);
4807   const unsigned NumQFPRs = NumFPRs;
4808 
4809   // When using the fast calling convention, we don't provide backing for
4810   // arguments that will be in registers.
4811   unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0;
4812 
4813   // Add up all the space actually used.
4814   for (unsigned i = 0; i != NumOps; ++i) {
4815     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4816     EVT ArgVT = Outs[i].VT;
4817     EVT OrigVT = Outs[i].ArgVT;
4818 
4819     if (Flags.isNest())
4820       continue;
4821 
4822     if (CallConv == CallingConv::Fast) {
4823       if (Flags.isByVal())
4824         NumGPRsUsed += (Flags.getByValSize()+7)/8;
4825       else
4826         switch (ArgVT.getSimpleVT().SimpleTy) {
4827         default: llvm_unreachable("Unexpected ValueType for argument!");
4828         case MVT::i1:
4829         case MVT::i32:
4830         case MVT::i64:
4831           if (++NumGPRsUsed <= NumGPRs)
4832             continue;
4833           break;
4834         case MVT::v4i32:
4835         case MVT::v8i16:
4836         case MVT::v16i8:
4837         case MVT::v2f64:
4838         case MVT::v2i64:
4839         case MVT::v1i128:
4840           if (++NumVRsUsed <= NumVRs)
4841             continue;
4842           break;
4843         case MVT::v4f32:
4844           // When using QPX, this is handled like a FP register, otherwise, it
4845           // is an Altivec register.
4846           if (Subtarget.hasQPX()) {
4847             if (++NumFPRsUsed <= NumFPRs)
4848               continue;
4849           } else {
4850             if (++NumVRsUsed <= NumVRs)
4851               continue;
4852           }
4853           break;
4854         case MVT::f32:
4855         case MVT::f64:
4856         case MVT::v4f64: // QPX
4857         case MVT::v4i1:  // QPX
4858           if (++NumFPRsUsed <= NumFPRs)
4859             continue;
4860           break;
4861         }
4862     }
4863 
4864     /* Respect alignment of argument on the stack.  */
4865     unsigned Align =
4866       CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4867     NumBytes = ((NumBytes + Align - 1) / Align) * Align;
4868 
4869     NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
4870     if (Flags.isInConsecutiveRegsLast())
4871       NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
4872   }
4873 
4874   unsigned NumBytesActuallyUsed = NumBytes;
4875 
4876   // The prolog code of the callee may store up to 8 GPR argument registers to
4877   // the stack, allowing va_start to index over them in memory if its varargs.
4878   // Because we cannot tell if this is needed on the caller side, we have to
4879   // conservatively assume that it is needed.  As such, make sure we have at
4880   // least enough stack space for the caller to store the 8 GPRs.
4881   // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
4882   NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
4883 
4884   // Tail call needs the stack to be aligned.
4885   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4886       CallConv == CallingConv::Fast)
4887     NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
4888 
4889   // Calculate by how many bytes the stack has to be adjusted in case of tail
4890   // call optimization.
4891   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4892 
4893   // To protect arguments on the stack from being clobbered in a tail call,
4894   // force all the loads to happen before doing any other lowering.
4895   if (isTailCall)
4896     Chain = DAG.getStackArgumentTokenFactor(Chain);
4897 
4898   // Adjust the stack pointer for the new arguments...
4899   // These operations are automatically eliminated by the prolog/epilog pass
4900   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
4901                                dl);
4902   SDValue CallSeqStart = Chain;
4903 
4904   // Load the return address and frame pointer so it can be move somewhere else
4905   // later.
4906   SDValue LROp, FPOp;
4907   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4908                                        dl);
4909 
4910   // Set up a copy of the stack pointer for use loading and storing any
4911   // arguments that may not fit in the registers available for argument
4912   // passing.
4913   SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4914 
4915   // Figure out which arguments are going to go in registers, and which in
4916   // memory.  Also, if this is a vararg function, floating point operations
4917   // must be stored to our stack, and loaded into integer regs as well, if
4918   // any integer regs are available for argument passing.
4919   unsigned ArgOffset = LinkageSize;
4920 
4921   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4922   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4923 
4924   SmallVector<SDValue, 8> MemOpChains;
4925   for (unsigned i = 0; i != NumOps; ++i) {
4926     SDValue Arg = OutVals[i];
4927     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4928     EVT ArgVT = Outs[i].VT;
4929     EVT OrigVT = Outs[i].ArgVT;
4930 
4931     // PtrOff will be used to store the current argument to the stack if a
4932     // register cannot be found for it.
4933     SDValue PtrOff;
4934 
4935     // We re-align the argument offset for each argument, except when using the
4936     // fast calling convention, when we need to make sure we do that only when
4937     // we'll actually use a stack slot.
4938     auto ComputePtrOff = [&]() {
4939       /* Respect alignment of argument on the stack.  */
4940       unsigned Align =
4941         CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4942       ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
4943 
4944       PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType());
4945 
4946       PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4947     };
4948 
4949     if (CallConv != CallingConv::Fast) {
4950       ComputePtrOff();
4951 
4952       /* Compute GPR index associated with argument offset.  */
4953       GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
4954       GPR_idx = std::min(GPR_idx, NumGPRs);
4955     }
4956 
4957     // Promote integers to 64-bit values.
4958     if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) {
4959       // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4960       unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4961       Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
4962     }
4963 
4964     // FIXME memcpy is used way more than necessary.  Correctness first.
4965     // Note: "by value" is code for passing a structure by value, not
4966     // basic types.
4967     if (Flags.isByVal()) {
4968       // Note: Size includes alignment padding, so
4969       //   struct x { short a; char b; }
4970       // will have Size = 4.  With #pragma pack(1), it will have Size = 3.
4971       // These are the proper values we need for right-justifying the
4972       // aggregate in a parameter register.
4973       unsigned Size = Flags.getByValSize();
4974 
4975       // An empty aggregate parameter takes up no storage and no
4976       // registers.
4977       if (Size == 0)
4978         continue;
4979 
4980       if (CallConv == CallingConv::Fast)
4981         ComputePtrOff();
4982 
4983       // All aggregates smaller than 8 bytes must be passed right-justified.
4984       if (Size==1 || Size==2 || Size==4) {
4985         EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
4986         if (GPR_idx != NumGPRs) {
4987           SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
4988                                         MachinePointerInfo(), VT,
4989                                         false, false, false, 0);
4990           MemOpChains.push_back(Load.getValue(1));
4991           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4992 
4993           ArgOffset += PtrByteSize;
4994           continue;
4995         }
4996       }
4997 
4998       if (GPR_idx == NumGPRs && Size < 8) {
4999         SDValue AddPtr = PtrOff;
5000         if (!isLittleEndian) {
5001           SDValue Const = DAG.getConstant(PtrByteSize - Size, dl,
5002                                           PtrOff.getValueType());
5003           AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
5004         }
5005         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5006                                                           CallSeqStart,
5007                                                           Flags, DAG, dl);
5008         ArgOffset += PtrByteSize;
5009         continue;
5010       }
5011       // Copy entire object into memory.  There are cases where gcc-generated
5012       // code assumes it is there, even if it could be put entirely into
5013       // registers.  (This is not what the doc says.)
5014 
5015       // FIXME: The above statement is likely due to a misunderstanding of the
5016       // documents.  All arguments must be copied into the parameter area BY
5017       // THE CALLEE in the event that the callee takes the address of any
5018       // formal argument.  That has not yet been implemented.  However, it is
5019       // reasonable to use the stack area as a staging area for the register
5020       // load.
5021 
5022       // Skip this for small aggregates, as we will use the same slot for a
5023       // right-justified copy, below.
5024       if (Size >= 8)
5025         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
5026                                                           CallSeqStart,
5027                                                           Flags, DAG, dl);
5028 
5029       // When a register is available, pass a small aggregate right-justified.
5030       if (Size < 8 && GPR_idx != NumGPRs) {
5031         // The easiest way to get this right-justified in a register
5032         // is to copy the structure into the rightmost portion of a
5033         // local variable slot, then load the whole slot into the
5034         // register.
5035         // FIXME: The memcpy seems to produce pretty awful code for
5036         // small aggregates, particularly for packed ones.
5037         // FIXME: It would be preferable to use the slot in the
5038         // parameter save area instead of a new local variable.
5039         SDValue AddPtr = PtrOff;
5040         if (!isLittleEndian) {
5041           SDValue Const = DAG.getConstant(8 - Size, dl, PtrOff.getValueType());
5042           AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
5043         }
5044         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5045                                                           CallSeqStart,
5046                                                           Flags, DAG, dl);
5047 
5048         // Load the slot into the register.
5049         SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
5050                                    MachinePointerInfo(),
5051                                    false, false, false, 0);
5052         MemOpChains.push_back(Load.getValue(1));
5053         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5054 
5055         // Done with this argument.
5056         ArgOffset += PtrByteSize;
5057         continue;
5058       }
5059 
5060       // For aggregates larger than PtrByteSize, copy the pieces of the
5061       // object that fit into registers from the parameter save area.
5062       for (unsigned j=0; j<Size; j+=PtrByteSize) {
5063         SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType());
5064         SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
5065         if (GPR_idx != NumGPRs) {
5066           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5067                                      MachinePointerInfo(),
5068                                      false, false, false, 0);
5069           MemOpChains.push_back(Load.getValue(1));
5070           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5071           ArgOffset += PtrByteSize;
5072         } else {
5073           ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
5074           break;
5075         }
5076       }
5077       continue;
5078     }
5079 
5080     switch (Arg.getSimpleValueType().SimpleTy) {
5081     default: llvm_unreachable("Unexpected ValueType for argument!");
5082     case MVT::i1:
5083     case MVT::i32:
5084     case MVT::i64:
5085       if (Flags.isNest()) {
5086         // The 'nest' parameter, if any, is passed in R11.
5087         RegsToPass.push_back(std::make_pair(PPC::X11, Arg));
5088         hasNest = true;
5089         break;
5090       }
5091 
5092       // These can be scalar arguments or elements of an integer array type
5093       // passed directly.  Clang may use those instead of "byval" aggregate
5094       // types to avoid forcing arguments to memory unnecessarily.
5095       if (GPR_idx != NumGPRs) {
5096         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
5097       } else {
5098         if (CallConv == CallingConv::Fast)
5099           ComputePtrOff();
5100 
5101         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5102                          true, isTailCall, false, MemOpChains,
5103                          TailCallArguments, dl);
5104         if (CallConv == CallingConv::Fast)
5105           ArgOffset += PtrByteSize;
5106       }
5107       if (CallConv != CallingConv::Fast)
5108         ArgOffset += PtrByteSize;
5109       break;
5110     case MVT::f32:
5111     case MVT::f64: {
5112       // These can be scalar arguments or elements of a float array type
5113       // passed directly.  The latter are used to implement ELFv2 homogenous
5114       // float aggregates.
5115 
5116       // Named arguments go into FPRs first, and once they overflow, the
5117       // remaining arguments go into GPRs and then the parameter save area.
5118       // Unnamed arguments for vararg functions always go to GPRs and
5119       // then the parameter save area.  For now, put all arguments to vararg
5120       // routines always in both locations (FPR *and* GPR or stack slot).
5121       bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs;
5122       bool NeededLoad = false;
5123 
5124       // First load the argument into the next available FPR.
5125       if (FPR_idx != NumFPRs)
5126         RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5127 
5128       // Next, load the argument into GPR or stack slot if needed.
5129       if (!NeedGPROrStack)
5130         ;
5131       else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) {
5132         // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
5133         // once we support fp <-> gpr moves.
5134 
5135         // In the non-vararg case, this can only ever happen in the
5136         // presence of f32 array types, since otherwise we never run
5137         // out of FPRs before running out of GPRs.
5138         SDValue ArgVal;
5139 
5140         // Double values are always passed in a single GPR.
5141         if (Arg.getValueType() != MVT::f32) {
5142           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
5143 
5144         // Non-array float values are extended and passed in a GPR.
5145         } else if (!Flags.isInConsecutiveRegs()) {
5146           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5147           ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
5148 
5149         // If we have an array of floats, we collect every odd element
5150         // together with its predecessor into one GPR.
5151         } else if (ArgOffset % PtrByteSize != 0) {
5152           SDValue Lo, Hi;
5153           Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]);
5154           Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5155           if (!isLittleEndian)
5156             std::swap(Lo, Hi);
5157           ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
5158 
5159         // The final element, if even, goes into the first half of a GPR.
5160         } else if (Flags.isInConsecutiveRegsLast()) {
5161           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
5162           ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
5163           if (!isLittleEndian)
5164             ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal,
5165                                  DAG.getConstant(32, dl, MVT::i32));
5166 
5167         // Non-final even elements are skipped; they will be handled
5168         // together the with subsequent argument on the next go-around.
5169         } else
5170           ArgVal = SDValue();
5171 
5172         if (ArgVal.getNode())
5173           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal));
5174       } else {
5175         if (CallConv == CallingConv::Fast)
5176           ComputePtrOff();
5177 
5178         // Single-precision floating-point values are mapped to the
5179         // second (rightmost) word of the stack doubleword.
5180         if (Arg.getValueType() == MVT::f32 &&
5181             !isLittleEndian && !Flags.isInConsecutiveRegs()) {
5182           SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType());
5183           PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
5184         }
5185 
5186         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5187                          true, isTailCall, false, MemOpChains,
5188                          TailCallArguments, dl);
5189 
5190         NeededLoad = true;
5191       }
5192       // When passing an array of floats, the array occupies consecutive
5193       // space in the argument area; only round up to the next doubleword
5194       // at the end of the array.  Otherwise, each float takes 8 bytes.
5195       if (CallConv != CallingConv::Fast || NeededLoad) {
5196         ArgOffset += (Arg.getValueType() == MVT::f32 &&
5197                       Flags.isInConsecutiveRegs()) ? 4 : 8;
5198         if (Flags.isInConsecutiveRegsLast())
5199           ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
5200       }
5201       break;
5202     }
5203     case MVT::v4f32:
5204     case MVT::v4i32:
5205     case MVT::v8i16:
5206     case MVT::v16i8:
5207     case MVT::v2f64:
5208     case MVT::v2i64:
5209     case MVT::v1i128:
5210       if (!Subtarget.hasQPX()) {
5211       // These can be scalar arguments or elements of a vector array type
5212       // passed directly.  The latter are used to implement ELFv2 homogenous
5213       // vector aggregates.
5214 
5215       // For a varargs call, named arguments go into VRs or on the stack as
5216       // usual; unnamed arguments always go to the stack or the corresponding
5217       // GPRs when within range.  For now, we always put the value in both
5218       // locations (or even all three).
5219       if (isVarArg) {
5220         // We could elide this store in the case where the object fits
5221         // entirely in R registers.  Maybe later.
5222         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5223                                      MachinePointerInfo(), false, false, 0);
5224         MemOpChains.push_back(Store);
5225         if (VR_idx != NumVRs) {
5226           SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
5227                                      MachinePointerInfo(),
5228                                      false, false, false, 0);
5229           MemOpChains.push_back(Load.getValue(1));
5230 
5231           unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
5232                            Arg.getSimpleValueType() == MVT::v2i64) ?
5233                           VSRH[VR_idx] : VR[VR_idx];
5234           ++VR_idx;
5235 
5236           RegsToPass.push_back(std::make_pair(VReg, Load));
5237         }
5238         ArgOffset += 16;
5239         for (unsigned i=0; i<16; i+=PtrByteSize) {
5240           if (GPR_idx == NumGPRs)
5241             break;
5242           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
5243                                    DAG.getConstant(i, dl, PtrVT));
5244           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5245                                      false, false, false, 0);
5246           MemOpChains.push_back(Load.getValue(1));
5247           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5248         }
5249         break;
5250       }
5251 
5252       // Non-varargs Altivec params go into VRs or on the stack.
5253       if (VR_idx != NumVRs) {
5254         unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
5255                          Arg.getSimpleValueType() == MVT::v2i64) ?
5256                         VSRH[VR_idx] : VR[VR_idx];
5257         ++VR_idx;
5258 
5259         RegsToPass.push_back(std::make_pair(VReg, Arg));
5260       } else {
5261         if (CallConv == CallingConv::Fast)
5262           ComputePtrOff();
5263 
5264         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5265                          true, isTailCall, true, MemOpChains,
5266                          TailCallArguments, dl);
5267         if (CallConv == CallingConv::Fast)
5268           ArgOffset += 16;
5269       }
5270 
5271       if (CallConv != CallingConv::Fast)
5272         ArgOffset += 16;
5273       break;
5274       } // not QPX
5275 
5276       assert(Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32 &&
5277              "Invalid QPX parameter type");
5278 
5279       /* fall through */
5280     case MVT::v4f64:
5281     case MVT::v4i1: {
5282       bool IsF32 = Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32;
5283       if (isVarArg) {
5284         // We could elide this store in the case where the object fits
5285         // entirely in R registers.  Maybe later.
5286         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5287                                      MachinePointerInfo(), false, false, 0);
5288         MemOpChains.push_back(Store);
5289         if (QFPR_idx != NumQFPRs) {
5290           SDValue Load = DAG.getLoad(IsF32 ? MVT::v4f32 : MVT::v4f64, dl,
5291                                      Store, PtrOff, MachinePointerInfo(),
5292                                      false, false, false, 0);
5293           MemOpChains.push_back(Load.getValue(1));
5294           RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Load));
5295         }
5296         ArgOffset += (IsF32 ? 16 : 32);
5297         for (unsigned i = 0; i < (IsF32 ? 16U : 32U); i += PtrByteSize) {
5298           if (GPR_idx == NumGPRs)
5299             break;
5300           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
5301                                    DAG.getConstant(i, dl, PtrVT));
5302           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5303                                      false, false, false, 0);
5304           MemOpChains.push_back(Load.getValue(1));
5305           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5306         }
5307         break;
5308       }
5309 
5310       // Non-varargs QPX params go into registers or on the stack.
5311       if (QFPR_idx != NumQFPRs) {
5312         RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Arg));
5313       } else {
5314         if (CallConv == CallingConv::Fast)
5315           ComputePtrOff();
5316 
5317         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5318                          true, isTailCall, true, MemOpChains,
5319                          TailCallArguments, dl);
5320         if (CallConv == CallingConv::Fast)
5321           ArgOffset += (IsF32 ? 16 : 32);
5322       }
5323 
5324       if (CallConv != CallingConv::Fast)
5325         ArgOffset += (IsF32 ? 16 : 32);
5326       break;
5327       }
5328     }
5329   }
5330 
5331   assert(NumBytesActuallyUsed == ArgOffset);
5332   (void)NumBytesActuallyUsed;
5333 
5334   if (!MemOpChains.empty())
5335     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
5336 
5337   // Check if this is an indirect call (MTCTR/BCTRL).
5338   // See PrepareCall() for more information about calls through function
5339   // pointers in the 64-bit SVR4 ABI.
5340   if (!isTailCall && !IsPatchPoint &&
5341       !isFunctionGlobalAddress(Callee) &&
5342       !isa<ExternalSymbolSDNode>(Callee)) {
5343     // Load r2 into a virtual register and store it to the TOC save area.
5344     setUsesTOCBasePtr(DAG);
5345     SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
5346     // TOC save area offset.
5347     unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
5348     SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset, dl);
5349     SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
5350     Chain = DAG.getStore(
5351         Val.getValue(1), dl, Val, AddPtr,
5352         MachinePointerInfo::getStack(DAG.getMachineFunction(), TOCSaveOffset),
5353         false, false, 0);
5354     // In the ELFv2 ABI, R12 must contain the address of an indirect callee.
5355     // This does not mean the MTCTR instruction must use R12; it's easier
5356     // to model this as an extra parameter, so do that.
5357     if (isELFv2ABI && !IsPatchPoint)
5358       RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
5359   }
5360 
5361   // Build a sequence of copy-to-reg nodes chained together with token chain
5362   // and flag operands which copy the outgoing args into the appropriate regs.
5363   SDValue InFlag;
5364   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
5365     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
5366                              RegsToPass[i].second, InFlag);
5367     InFlag = Chain.getValue(1);
5368   }
5369 
5370   if (isTailCall)
5371     PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
5372                     FPOp, true, TailCallArguments);
5373 
5374   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, hasNest,
5375                     DAG, RegsToPass, InFlag, Chain, CallSeqStart, Callee,
5376                     SPDiff, NumBytes, Ins, InVals, CS);
5377 }
5378 
5379 SDValue
5380 PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
5381                                     CallingConv::ID CallConv, bool isVarArg,
5382                                     bool isTailCall, bool IsPatchPoint,
5383                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
5384                                     const SmallVectorImpl<SDValue> &OutVals,
5385                                     const SmallVectorImpl<ISD::InputArg> &Ins,
5386                                     SDLoc dl, SelectionDAG &DAG,
5387                                     SmallVectorImpl<SDValue> &InVals,
5388                                     ImmutableCallSite *CS) const {
5389 
5390   unsigned NumOps = Outs.size();
5391 
5392   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
5393   bool isPPC64 = PtrVT == MVT::i64;
5394   unsigned PtrByteSize = isPPC64 ? 8 : 4;
5395 
5396   MachineFunction &MF = DAG.getMachineFunction();
5397 
5398   // Mark this function as potentially containing a function that contains a
5399   // tail call. As a consequence the frame pointer will be used for dynamicalloc
5400   // and restoring the callers stack pointer in this functions epilog. This is
5401   // done because by tail calling the called function might overwrite the value
5402   // in this function's (MF) stack pointer stack slot 0(SP).
5403   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
5404       CallConv == CallingConv::Fast)
5405     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
5406 
5407   // Count how many bytes are to be pushed on the stack, including the linkage
5408   // area, and parameter passing area.  We start with 24/48 bytes, which is
5409   // prereserved space for [SP][CR][LR][3 x unused].
5410   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
5411   unsigned NumBytes = LinkageSize;
5412 
5413   // Add up all the space actually used.
5414   // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
5415   // they all go in registers, but we must reserve stack space for them for
5416   // possible use by the caller.  In varargs or 64-bit calls, parameters are
5417   // assigned stack space in order, with padding so Altivec parameters are
5418   // 16-byte aligned.
5419   unsigned nAltivecParamsAtEnd = 0;
5420   for (unsigned i = 0; i != NumOps; ++i) {
5421     ISD::ArgFlagsTy Flags = Outs[i].Flags;
5422     EVT ArgVT = Outs[i].VT;
5423     // Varargs Altivec parameters are padded to a 16 byte boundary.
5424     if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
5425         ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
5426         ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) {
5427       if (!isVarArg && !isPPC64) {
5428         // Non-varargs Altivec parameters go after all the non-Altivec
5429         // parameters; handle those later so we know how much padding we need.
5430         nAltivecParamsAtEnd++;
5431         continue;
5432       }
5433       // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
5434       NumBytes = ((NumBytes+15)/16)*16;
5435     }
5436     NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
5437   }
5438 
5439   // Allow for Altivec parameters at the end, if needed.
5440   if (nAltivecParamsAtEnd) {
5441     NumBytes = ((NumBytes+15)/16)*16;
5442     NumBytes += 16*nAltivecParamsAtEnd;
5443   }
5444 
5445   // The prolog code of the callee may store up to 8 GPR argument registers to
5446   // the stack, allowing va_start to index over them in memory if its varargs.
5447   // Because we cannot tell if this is needed on the caller side, we have to
5448   // conservatively assume that it is needed.  As such, make sure we have at
5449   // least enough stack space for the caller to store the 8 GPRs.
5450   NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
5451 
5452   // Tail call needs the stack to be aligned.
5453   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
5454       CallConv == CallingConv::Fast)
5455     NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
5456 
5457   // Calculate by how many bytes the stack has to be adjusted in case of tail
5458   // call optimization.
5459   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
5460 
5461   // To protect arguments on the stack from being clobbered in a tail call,
5462   // force all the loads to happen before doing any other lowering.
5463   if (isTailCall)
5464     Chain = DAG.getStackArgumentTokenFactor(Chain);
5465 
5466   // Adjust the stack pointer for the new arguments...
5467   // These operations are automatically eliminated by the prolog/epilog pass
5468   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
5469                                dl);
5470   SDValue CallSeqStart = Chain;
5471 
5472   // Load the return address and frame pointer so it can be move somewhere else
5473   // later.
5474   SDValue LROp, FPOp;
5475   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
5476                                        dl);
5477 
5478   // Set up a copy of the stack pointer for use loading and storing any
5479   // arguments that may not fit in the registers available for argument
5480   // passing.
5481   SDValue StackPtr;
5482   if (isPPC64)
5483     StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
5484   else
5485     StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
5486 
5487   // Figure out which arguments are going to go in registers, and which in
5488   // memory.  Also, if this is a vararg function, floating point operations
5489   // must be stored to our stack, and loaded into integer regs as well, if
5490   // any integer regs are available for argument passing.
5491   unsigned ArgOffset = LinkageSize;
5492   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
5493 
5494   static const MCPhysReg GPR_32[] = {           // 32-bit registers.
5495     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
5496     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
5497   };
5498   static const MCPhysReg GPR_64[] = {           // 64-bit registers.
5499     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
5500     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
5501   };
5502   static const MCPhysReg VR[] = {
5503     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
5504     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
5505   };
5506   const unsigned NumGPRs = array_lengthof(GPR_32);
5507   const unsigned NumFPRs = 13;
5508   const unsigned NumVRs  = array_lengthof(VR);
5509 
5510   const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
5511 
5512   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
5513   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
5514 
5515   SmallVector<SDValue, 8> MemOpChains;
5516   for (unsigned i = 0; i != NumOps; ++i) {
5517     SDValue Arg = OutVals[i];
5518     ISD::ArgFlagsTy Flags = Outs[i].Flags;
5519 
5520     // PtrOff will be used to store the current argument to the stack if a
5521     // register cannot be found for it.
5522     SDValue PtrOff;
5523 
5524     PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType());
5525 
5526     PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
5527 
5528     // On PPC64, promote integers to 64-bit values.
5529     if (isPPC64 && Arg.getValueType() == MVT::i32) {
5530       // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
5531       unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
5532       Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
5533     }
5534 
5535     // FIXME memcpy is used way more than necessary.  Correctness first.
5536     // Note: "by value" is code for passing a structure by value, not
5537     // basic types.
5538     if (Flags.isByVal()) {
5539       unsigned Size = Flags.getByValSize();
5540       // Very small objects are passed right-justified.  Everything else is
5541       // passed left-justified.
5542       if (Size==1 || Size==2) {
5543         EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
5544         if (GPR_idx != NumGPRs) {
5545           SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
5546                                         MachinePointerInfo(), VT,
5547                                         false, false, false, 0);
5548           MemOpChains.push_back(Load.getValue(1));
5549           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5550 
5551           ArgOffset += PtrByteSize;
5552         } else {
5553           SDValue Const = DAG.getConstant(PtrByteSize - Size, dl,
5554                                           PtrOff.getValueType());
5555           SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
5556           Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
5557                                                             CallSeqStart,
5558                                                             Flags, DAG, dl);
5559           ArgOffset += PtrByteSize;
5560         }
5561         continue;
5562       }
5563       // Copy entire object into memory.  There are cases where gcc-generated
5564       // code assumes it is there, even if it could be put entirely into
5565       // registers.  (This is not what the doc says.)
5566       Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
5567                                                         CallSeqStart,
5568                                                         Flags, DAG, dl);
5569 
5570       // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
5571       // copy the pieces of the object that fit into registers from the
5572       // parameter save area.
5573       for (unsigned j=0; j<Size; j+=PtrByteSize) {
5574         SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType());
5575         SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
5576         if (GPR_idx != NumGPRs) {
5577           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5578                                      MachinePointerInfo(),
5579                                      false, false, false, 0);
5580           MemOpChains.push_back(Load.getValue(1));
5581           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5582           ArgOffset += PtrByteSize;
5583         } else {
5584           ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
5585           break;
5586         }
5587       }
5588       continue;
5589     }
5590 
5591     switch (Arg.getSimpleValueType().SimpleTy) {
5592     default: llvm_unreachable("Unexpected ValueType for argument!");
5593     case MVT::i1:
5594     case MVT::i32:
5595     case MVT::i64:
5596       if (GPR_idx != NumGPRs) {
5597         if (Arg.getValueType() == MVT::i1)
5598           Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg);
5599 
5600         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
5601       } else {
5602         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5603                          isPPC64, isTailCall, false, MemOpChains,
5604                          TailCallArguments, dl);
5605       }
5606       ArgOffset += PtrByteSize;
5607       break;
5608     case MVT::f32:
5609     case MVT::f64:
5610       if (FPR_idx != NumFPRs) {
5611         RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5612 
5613         if (isVarArg) {
5614           SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5615                                        MachinePointerInfo(), false, false, 0);
5616           MemOpChains.push_back(Store);
5617 
5618           // Float varargs are always shadowed in available integer registers
5619           if (GPR_idx != NumGPRs) {
5620             SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5621                                        MachinePointerInfo(), false, false,
5622                                        false, 0);
5623             MemOpChains.push_back(Load.getValue(1));
5624             RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5625           }
5626           if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
5627             SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType());
5628             PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
5629             SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5630                                        MachinePointerInfo(),
5631                                        false, false, false, 0);
5632             MemOpChains.push_back(Load.getValue(1));
5633             RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5634           }
5635         } else {
5636           // If we have any FPRs remaining, we may also have GPRs remaining.
5637           // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
5638           // GPRs.
5639           if (GPR_idx != NumGPRs)
5640             ++GPR_idx;
5641           if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
5642               !isPPC64)  // PPC64 has 64-bit GPR's obviously :)
5643             ++GPR_idx;
5644         }
5645       } else
5646         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5647                          isPPC64, isTailCall, false, MemOpChains,
5648                          TailCallArguments, dl);
5649       if (isPPC64)
5650         ArgOffset += 8;
5651       else
5652         ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
5653       break;
5654     case MVT::v4f32:
5655     case MVT::v4i32:
5656     case MVT::v8i16:
5657     case MVT::v16i8:
5658       if (isVarArg) {
5659         // These go aligned on the stack, or in the corresponding R registers
5660         // when within range.  The Darwin PPC ABI doc claims they also go in
5661         // V registers; in fact gcc does this only for arguments that are
5662         // prototyped, not for those that match the ...  We do it for all
5663         // arguments, seems to work.
5664         while (ArgOffset % 16 !=0) {
5665           ArgOffset += PtrByteSize;
5666           if (GPR_idx != NumGPRs)
5667             GPR_idx++;
5668         }
5669         // We could elide this store in the case where the object fits
5670         // entirely in R registers.  Maybe later.
5671         PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
5672                              DAG.getConstant(ArgOffset, dl, PtrVT));
5673         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5674                                      MachinePointerInfo(), false, false, 0);
5675         MemOpChains.push_back(Store);
5676         if (VR_idx != NumVRs) {
5677           SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
5678                                      MachinePointerInfo(),
5679                                      false, false, false, 0);
5680           MemOpChains.push_back(Load.getValue(1));
5681           RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
5682         }
5683         ArgOffset += 16;
5684         for (unsigned i=0; i<16; i+=PtrByteSize) {
5685           if (GPR_idx == NumGPRs)
5686             break;
5687           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
5688                                    DAG.getConstant(i, dl, PtrVT));
5689           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5690                                      false, false, false, 0);
5691           MemOpChains.push_back(Load.getValue(1));
5692           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5693         }
5694         break;
5695       }
5696 
5697       // Non-varargs Altivec params generally go in registers, but have
5698       // stack space allocated at the end.
5699       if (VR_idx != NumVRs) {
5700         // Doesn't have GPR space allocated.
5701         RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
5702       } else if (nAltivecParamsAtEnd==0) {
5703         // We are emitting Altivec params in order.
5704         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5705                          isPPC64, isTailCall, true, MemOpChains,
5706                          TailCallArguments, dl);
5707         ArgOffset += 16;
5708       }
5709       break;
5710     }
5711   }
5712   // If all Altivec parameters fit in registers, as they usually do,
5713   // they get stack space following the non-Altivec parameters.  We
5714   // don't track this here because nobody below needs it.
5715   // If there are more Altivec parameters than fit in registers emit
5716   // the stores here.
5717   if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
5718     unsigned j = 0;
5719     // Offset is aligned; skip 1st 12 params which go in V registers.
5720     ArgOffset = ((ArgOffset+15)/16)*16;
5721     ArgOffset += 12*16;
5722     for (unsigned i = 0; i != NumOps; ++i) {
5723       SDValue Arg = OutVals[i];
5724       EVT ArgType = Outs[i].VT;
5725       if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
5726           ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
5727         if (++j > NumVRs) {
5728           SDValue PtrOff;
5729           // We are emitting Altivec params in order.
5730           LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5731                            isPPC64, isTailCall, true, MemOpChains,
5732                            TailCallArguments, dl);
5733           ArgOffset += 16;
5734         }
5735       }
5736     }
5737   }
5738 
5739   if (!MemOpChains.empty())
5740     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
5741 
5742   // On Darwin, R12 must contain the address of an indirect callee.  This does
5743   // not mean the MTCTR instruction must use R12; it's easier to model this as
5744   // an extra parameter, so do that.
5745   if (!isTailCall &&
5746       !isFunctionGlobalAddress(Callee) &&
5747       !isa<ExternalSymbolSDNode>(Callee) &&
5748       !isBLACompatibleAddress(Callee, DAG))
5749     RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
5750                                                    PPC::R12), Callee));
5751 
5752   // Build a sequence of copy-to-reg nodes chained together with token chain
5753   // and flag operands which copy the outgoing args into the appropriate regs.
5754   SDValue InFlag;
5755   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
5756     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
5757                              RegsToPass[i].second, InFlag);
5758     InFlag = Chain.getValue(1);
5759   }
5760 
5761   if (isTailCall)
5762     PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
5763                     FPOp, true, TailCallArguments);
5764 
5765   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint,
5766                     /* unused except on PPC64 ELFv1 */ false, DAG,
5767                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
5768                     NumBytes, Ins, InVals, CS);
5769 }
5770 
5771 bool
5772 PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
5773                                   MachineFunction &MF, bool isVarArg,
5774                                   const SmallVectorImpl<ISD::OutputArg> &Outs,
5775                                   LLVMContext &Context) const {
5776   SmallVector<CCValAssign, 16> RVLocs;
5777   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
5778   return CCInfo.CheckReturn(Outs, RetCC_PPC);
5779 }
5780 
5781 SDValue
5782 PPCTargetLowering::LowerReturn(SDValue Chain,
5783                                CallingConv::ID CallConv, bool isVarArg,
5784                                const SmallVectorImpl<ISD::OutputArg> &Outs,
5785                                const SmallVectorImpl<SDValue> &OutVals,
5786                                SDLoc dl, SelectionDAG &DAG) const {
5787 
5788   SmallVector<CCValAssign, 16> RVLocs;
5789   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
5790                  *DAG.getContext());
5791   CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
5792 
5793   SDValue Flag;
5794   SmallVector<SDValue, 4> RetOps(1, Chain);
5795 
5796   // Copy the result values into the output registers.
5797   for (unsigned i = 0; i != RVLocs.size(); ++i) {
5798     CCValAssign &VA = RVLocs[i];
5799     assert(VA.isRegLoc() && "Can only return in registers!");
5800 
5801     SDValue Arg = OutVals[i];
5802 
5803     switch (VA.getLocInfo()) {
5804     default: llvm_unreachable("Unknown loc info!");
5805     case CCValAssign::Full: break;
5806     case CCValAssign::AExt:
5807       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
5808       break;
5809     case CCValAssign::ZExt:
5810       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
5811       break;
5812     case CCValAssign::SExt:
5813       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
5814       break;
5815     }
5816 
5817     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
5818     Flag = Chain.getValue(1);
5819     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
5820   }
5821 
5822   RetOps[0] = Chain;  // Update chain.
5823 
5824   // Add the flag if we have it.
5825   if (Flag.getNode())
5826     RetOps.push_back(Flag);
5827 
5828   return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps);
5829 }
5830 
5831 SDValue PPCTargetLowering::LowerGET_DYNAMIC_AREA_OFFSET(
5832     SDValue Op, SelectionDAG &DAG, const PPCSubtarget &Subtarget) const {
5833   SDLoc dl(Op);
5834 
5835   // Get the corect type for integers.
5836   EVT IntVT = Op.getValueType();
5837 
5838   // Get the inputs.
5839   SDValue Chain = Op.getOperand(0);
5840   SDValue FPSIdx = getFramePointerFrameIndex(DAG);
5841   // Build a DYNAREAOFFSET node.
5842   SDValue Ops[2] = {Chain, FPSIdx};
5843   SDVTList VTs = DAG.getVTList(IntVT);
5844   return DAG.getNode(PPCISD::DYNAREAOFFSET, dl, VTs, Ops);
5845 }
5846 
5847 SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
5848                                    const PPCSubtarget &Subtarget) const {
5849   // When we pop the dynamic allocation we need to restore the SP link.
5850   SDLoc dl(Op);
5851 
5852   // Get the corect type for pointers.
5853   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
5854 
5855   // Construct the stack pointer operand.
5856   bool isPPC64 = Subtarget.isPPC64();
5857   unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
5858   SDValue StackPtr = DAG.getRegister(SP, PtrVT);
5859 
5860   // Get the operands for the STACKRESTORE.
5861   SDValue Chain = Op.getOperand(0);
5862   SDValue SaveSP = Op.getOperand(1);
5863 
5864   // Load the old link SP.
5865   SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
5866                                    MachinePointerInfo(),
5867                                    false, false, false, 0);
5868 
5869   // Restore the stack pointer.
5870   Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
5871 
5872   // Store the old link SP.
5873   return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
5874                       false, false, 0);
5875 }
5876 
5877 SDValue PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG &DAG) const {
5878   MachineFunction &MF = DAG.getMachineFunction();
5879   bool isPPC64 = Subtarget.isPPC64();
5880   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
5881 
5882   // Get current frame pointer save index.  The users of this index will be
5883   // primarily DYNALLOC instructions.
5884   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5885   int RASI = FI->getReturnAddrSaveIndex();
5886 
5887   // If the frame pointer save index hasn't been defined yet.
5888   if (!RASI) {
5889     // Find out what the fix offset of the frame pointer save area.
5890     int LROffset = Subtarget.getFrameLowering()->getReturnSaveOffset();
5891     // Allocate the frame index for frame pointer save area.
5892     RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, false);
5893     // Save the result.
5894     FI->setReturnAddrSaveIndex(RASI);
5895   }
5896   return DAG.getFrameIndex(RASI, PtrVT);
5897 }
5898 
5899 SDValue
5900 PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
5901   MachineFunction &MF = DAG.getMachineFunction();
5902   bool isPPC64 = Subtarget.isPPC64();
5903   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
5904 
5905   // Get current frame pointer save index.  The users of this index will be
5906   // primarily DYNALLOC instructions.
5907   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5908   int FPSI = FI->getFramePointerSaveIndex();
5909 
5910   // If the frame pointer save index hasn't been defined yet.
5911   if (!FPSI) {
5912     // Find out what the fix offset of the frame pointer save area.
5913     int FPOffset = Subtarget.getFrameLowering()->getFramePointerSaveOffset();
5914     // Allocate the frame index for frame pointer save area.
5915     FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
5916     // Save the result.
5917     FI->setFramePointerSaveIndex(FPSI);
5918   }
5919   return DAG.getFrameIndex(FPSI, PtrVT);
5920 }
5921 
5922 SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
5923                                          SelectionDAG &DAG,
5924                                          const PPCSubtarget &Subtarget) const {
5925   // Get the inputs.
5926   SDValue Chain = Op.getOperand(0);
5927   SDValue Size  = Op.getOperand(1);
5928   SDLoc dl(Op);
5929 
5930   // Get the corect type for pointers.
5931   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
5932   // Negate the size.
5933   SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
5934                                 DAG.getConstant(0, dl, PtrVT), Size);
5935   // Construct a node for the frame pointer save index.
5936   SDValue FPSIdx = getFramePointerFrameIndex(DAG);
5937   // Build a DYNALLOC node.
5938   SDValue Ops[3] = { Chain, NegSize, FPSIdx };
5939   SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
5940   return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops);
5941 }
5942 
5943 SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
5944                                                SelectionDAG &DAG) const {
5945   SDLoc DL(Op);
5946   return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
5947                      DAG.getVTList(MVT::i32, MVT::Other),
5948                      Op.getOperand(0), Op.getOperand(1));
5949 }
5950 
5951 SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
5952                                                 SelectionDAG &DAG) const {
5953   SDLoc DL(Op);
5954   return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
5955                      Op.getOperand(0), Op.getOperand(1));
5956 }
5957 
5958 SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
5959   if (Op.getValueType().isVector())
5960     return LowerVectorLoad(Op, DAG);
5961 
5962   assert(Op.getValueType() == MVT::i1 &&
5963          "Custom lowering only for i1 loads");
5964 
5965   // First, load 8 bits into 32 bits, then truncate to 1 bit.
5966 
5967   SDLoc dl(Op);
5968   LoadSDNode *LD = cast<LoadSDNode>(Op);
5969 
5970   SDValue Chain = LD->getChain();
5971   SDValue BasePtr = LD->getBasePtr();
5972   MachineMemOperand *MMO = LD->getMemOperand();
5973 
5974   SDValue NewLD =
5975       DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(DAG.getDataLayout()), Chain,
5976                      BasePtr, MVT::i8, MMO);
5977   SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD);
5978 
5979   SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) };
5980   return DAG.getMergeValues(Ops, dl);
5981 }
5982 
5983 SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
5984   if (Op.getOperand(1).getValueType().isVector())
5985     return LowerVectorStore(Op, DAG);
5986 
5987   assert(Op.getOperand(1).getValueType() == MVT::i1 &&
5988          "Custom lowering only for i1 stores");
5989 
5990   // First, zero extend to 32 bits, then use a truncating store to 8 bits.
5991 
5992   SDLoc dl(Op);
5993   StoreSDNode *ST = cast<StoreSDNode>(Op);
5994 
5995   SDValue Chain = ST->getChain();
5996   SDValue BasePtr = ST->getBasePtr();
5997   SDValue Value = ST->getValue();
5998   MachineMemOperand *MMO = ST->getMemOperand();
5999 
6000   Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(DAG.getDataLayout()),
6001                       Value);
6002   return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO);
6003 }
6004 
6005 // FIXME: Remove this once the ANDI glue bug is fixed:
6006 SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
6007   assert(Op.getValueType() == MVT::i1 &&
6008          "Custom lowering only for i1 results");
6009 
6010   SDLoc DL(Op);
6011   return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1,
6012                      Op.getOperand(0));
6013 }
6014 
6015 /// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
6016 /// possible.
6017 SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
6018   // Not FP? Not a fsel.
6019   if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
6020       !Op.getOperand(2).getValueType().isFloatingPoint())
6021     return Op;
6022 
6023   // We might be able to do better than this under some circumstances, but in
6024   // general, fsel-based lowering of select is a finite-math-only optimization.
6025   // For more information, see section F.3 of the 2.06 ISA specification.
6026   if (!DAG.getTarget().Options.NoInfsFPMath ||
6027       !DAG.getTarget().Options.NoNaNsFPMath)
6028     return Op;
6029   // TODO: Propagate flags from the select rather than global settings.
6030   SDNodeFlags Flags;
6031   Flags.setNoInfs(true);
6032   Flags.setNoNaNs(true);
6033 
6034   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
6035 
6036   EVT ResVT = Op.getValueType();
6037   EVT CmpVT = Op.getOperand(0).getValueType();
6038   SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
6039   SDValue TV  = Op.getOperand(2), FV  = Op.getOperand(3);
6040   SDLoc dl(Op);
6041 
6042   // If the RHS of the comparison is a 0.0, we don't need to do the
6043   // subtraction at all.
6044   SDValue Sel1;
6045   if (isFloatingPointZero(RHS))
6046     switch (CC) {
6047     default: break;       // SETUO etc aren't handled by fsel.
6048     case ISD::SETNE:
6049       std::swap(TV, FV);
6050     case ISD::SETEQ:
6051       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
6052         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
6053       Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
6054       if (Sel1.getValueType() == MVT::f32)   // Comparison is always 64-bits
6055         Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
6056       return DAG.getNode(PPCISD::FSEL, dl, ResVT,
6057                          DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
6058     case ISD::SETULT:
6059     case ISD::SETLT:
6060       std::swap(TV, FV);  // fsel is natively setge, swap operands for setlt
6061     case ISD::SETOGE:
6062     case ISD::SETGE:
6063       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
6064         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
6065       return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
6066     case ISD::SETUGT:
6067     case ISD::SETGT:
6068       std::swap(TV, FV);  // fsel is natively setge, swap operands for setlt
6069     case ISD::SETOLE:
6070     case ISD::SETLE:
6071       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
6072         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
6073       return DAG.getNode(PPCISD::FSEL, dl, ResVT,
6074                          DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
6075     }
6076 
6077   SDValue Cmp;
6078   switch (CC) {
6079   default: break;       // SETUO etc aren't handled by fsel.
6080   case ISD::SETNE:
6081     std::swap(TV, FV);
6082   case ISD::SETEQ:
6083     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, &Flags);
6084     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6085       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6086     Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
6087     if (Sel1.getValueType() == MVT::f32)   // Comparison is always 64-bits
6088       Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
6089     return DAG.getNode(PPCISD::FSEL, dl, ResVT,
6090                        DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
6091   case ISD::SETULT:
6092   case ISD::SETLT:
6093     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, &Flags);
6094     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6095       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6096     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
6097   case ISD::SETOGE:
6098   case ISD::SETGE:
6099     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, &Flags);
6100     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6101       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6102     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
6103   case ISD::SETUGT:
6104   case ISD::SETGT:
6105     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS, &Flags);
6106     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6107       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6108     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
6109   case ISD::SETOLE:
6110   case ISD::SETLE:
6111     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS, &Flags);
6112     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
6113       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
6114     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
6115   }
6116   return Op;
6117 }
6118 
6119 void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI,
6120                                                SelectionDAG &DAG,
6121                                                SDLoc dl) const {
6122   assert(Op.getOperand(0).getValueType().isFloatingPoint());
6123   SDValue Src = Op.getOperand(0);
6124   if (Src.getValueType() == MVT::f32)
6125     Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
6126 
6127   SDValue Tmp;
6128   switch (Op.getSimpleValueType().SimpleTy) {
6129   default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
6130   case MVT::i32:
6131     Tmp = DAG.getNode(
6132         Op.getOpcode() == ISD::FP_TO_SINT
6133             ? PPCISD::FCTIWZ
6134             : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
6135         dl, MVT::f64, Src);
6136     break;
6137   case MVT::i64:
6138     assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
6139            "i64 FP_TO_UINT is supported only with FPCVT");
6140     Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
6141                                                         PPCISD::FCTIDUZ,
6142                       dl, MVT::f64, Src);
6143     break;
6144   }
6145 
6146   // Convert the FP value to an int value through memory.
6147   bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() &&
6148     (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT());
6149   SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
6150   int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
6151   MachinePointerInfo MPI =
6152       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI);
6153 
6154   // Emit a store to the stack slot.
6155   SDValue Chain;
6156   if (i32Stack) {
6157     MachineFunction &MF = DAG.getMachineFunction();
6158     MachineMemOperand *MMO =
6159       MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
6160     SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
6161     Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
6162               DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO);
6163   } else
6164     Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
6165                          MPI, false, false, 0);
6166 
6167   // Result is a load from the stack slot.  If loading 4 bytes, make sure to
6168   // add in a bias on big endian.
6169   if (Op.getValueType() == MVT::i32 && !i32Stack) {
6170     FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
6171                         DAG.getConstant(4, dl, FIPtr.getValueType()));
6172     MPI = MPI.getWithOffset(Subtarget.isLittleEndian() ? 0 : 4);
6173   }
6174 
6175   RLI.Chain = Chain;
6176   RLI.Ptr = FIPtr;
6177   RLI.MPI = MPI;
6178 }
6179 
6180 /// \brief Custom lowers floating point to integer conversions to use
6181 /// the direct move instructions available in ISA 2.07 to avoid the
6182 /// need for load/store combinations.
6183 SDValue PPCTargetLowering::LowerFP_TO_INTDirectMove(SDValue Op,
6184                                                     SelectionDAG &DAG,
6185                                                     SDLoc dl) const {
6186   assert(Op.getOperand(0).getValueType().isFloatingPoint());
6187   SDValue Src = Op.getOperand(0);
6188 
6189   if (Src.getValueType() == MVT::f32)
6190     Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
6191 
6192   SDValue Tmp;
6193   switch (Op.getSimpleValueType().SimpleTy) {
6194   default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
6195   case MVT::i32:
6196     Tmp = DAG.getNode(
6197         Op.getOpcode() == ISD::FP_TO_SINT
6198             ? PPCISD::FCTIWZ
6199             : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
6200         dl, MVT::f64, Src);
6201     Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i32, Tmp);
6202     break;
6203   case MVT::i64:
6204     assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
6205            "i64 FP_TO_UINT is supported only with FPCVT");
6206     Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
6207                                                         PPCISD::FCTIDUZ,
6208                       dl, MVT::f64, Src);
6209     Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i64, Tmp);
6210     break;
6211   }
6212   return Tmp;
6213 }
6214 
6215 SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
6216                                           SDLoc dl) const {
6217   if (Subtarget.hasDirectMove() && Subtarget.isPPC64())
6218     return LowerFP_TO_INTDirectMove(Op, DAG, dl);
6219 
6220   ReuseLoadInfo RLI;
6221   LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
6222 
6223   return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
6224                      false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
6225                      RLI.Ranges);
6226 }
6227 
6228 // We're trying to insert a regular store, S, and then a load, L. If the
6229 // incoming value, O, is a load, we might just be able to have our load use the
6230 // address used by O. However, we don't know if anything else will store to
6231 // that address before we can load from it. To prevent this situation, we need
6232 // to insert our load, L, into the chain as a peer of O. To do this, we give L
6233 // the same chain operand as O, we create a token factor from the chain results
6234 // of O and L, and we replace all uses of O's chain result with that token
6235 // factor (see spliceIntoChain below for this last part).
6236 bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT,
6237                                             ReuseLoadInfo &RLI,
6238                                             SelectionDAG &DAG,
6239                                             ISD::LoadExtType ET) const {
6240   SDLoc dl(Op);
6241   if (ET == ISD::NON_EXTLOAD &&
6242       (Op.getOpcode() == ISD::FP_TO_UINT ||
6243        Op.getOpcode() == ISD::FP_TO_SINT) &&
6244       isOperationLegalOrCustom(Op.getOpcode(),
6245                                Op.getOperand(0).getValueType())) {
6246 
6247     LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
6248     return true;
6249   }
6250 
6251   LoadSDNode *LD = dyn_cast<LoadSDNode>(Op);
6252   if (!LD || LD->getExtensionType() != ET || LD->isVolatile() ||
6253       LD->isNonTemporal())
6254     return false;
6255   if (LD->getMemoryVT() != MemVT)
6256     return false;
6257 
6258   RLI.Ptr = LD->getBasePtr();
6259   if (LD->isIndexed() && LD->getOffset().getOpcode() != ISD::UNDEF) {
6260     assert(LD->getAddressingMode() == ISD::PRE_INC &&
6261            "Non-pre-inc AM on PPC?");
6262     RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr,
6263                           LD->getOffset());
6264   }
6265 
6266   RLI.Chain = LD->getChain();
6267   RLI.MPI = LD->getPointerInfo();
6268   RLI.IsInvariant = LD->isInvariant();
6269   RLI.Alignment = LD->getAlignment();
6270   RLI.AAInfo = LD->getAAInfo();
6271   RLI.Ranges = LD->getRanges();
6272 
6273   RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1);
6274   return true;
6275 }
6276 
6277 // Given the head of the old chain, ResChain, insert a token factor containing
6278 // it and NewResChain, and make users of ResChain now be users of that token
6279 // factor.
6280 void PPCTargetLowering::spliceIntoChain(SDValue ResChain,
6281                                         SDValue NewResChain,
6282                                         SelectionDAG &DAG) const {
6283   if (!ResChain)
6284     return;
6285 
6286   SDLoc dl(NewResChain);
6287 
6288   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
6289                            NewResChain, DAG.getUNDEF(MVT::Other));
6290   assert(TF.getNode() != NewResChain.getNode() &&
6291          "A new TF really is required here");
6292 
6293   DAG.ReplaceAllUsesOfValueWith(ResChain, TF);
6294   DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain);
6295 }
6296 
6297 /// \brief Custom lowers integer to floating point conversions to use
6298 /// the direct move instructions available in ISA 2.07 to avoid the
6299 /// need for load/store combinations.
6300 SDValue PPCTargetLowering::LowerINT_TO_FPDirectMove(SDValue Op,
6301                                                     SelectionDAG &DAG,
6302                                                     SDLoc dl) const {
6303   assert((Op.getValueType() == MVT::f32 ||
6304           Op.getValueType() == MVT::f64) &&
6305          "Invalid floating point type as target of conversion");
6306   assert(Subtarget.hasFPCVT() &&
6307          "Int to FP conversions with direct moves require FPCVT");
6308   SDValue FP;
6309   SDValue Src = Op.getOperand(0);
6310   bool SinglePrec = Op.getValueType() == MVT::f32;
6311   bool WordInt = Src.getSimpleValueType().SimpleTy == MVT::i32;
6312   bool Signed = Op.getOpcode() == ISD::SINT_TO_FP;
6313   unsigned ConvOp = Signed ? (SinglePrec ? PPCISD::FCFIDS : PPCISD::FCFID) :
6314                              (SinglePrec ? PPCISD::FCFIDUS : PPCISD::FCFIDU);
6315 
6316   if (WordInt) {
6317     FP = DAG.getNode(Signed ? PPCISD::MTVSRA : PPCISD::MTVSRZ,
6318                      dl, MVT::f64, Src);
6319     FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP);
6320   }
6321   else {
6322     FP = DAG.getNode(PPCISD::MTVSRA, dl, MVT::f64, Src);
6323     FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP);
6324   }
6325 
6326   return FP;
6327 }
6328 
6329 SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
6330                                           SelectionDAG &DAG) const {
6331   SDLoc dl(Op);
6332 
6333   if (Subtarget.hasQPX() && Op.getOperand(0).getValueType() == MVT::v4i1) {
6334     if (Op.getValueType() != MVT::v4f32 && Op.getValueType() != MVT::v4f64)
6335       return SDValue();
6336 
6337     SDValue Value = Op.getOperand(0);
6338     // The values are now known to be -1 (false) or 1 (true). To convert this
6339     // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
6340     // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
6341     Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
6342 
6343     SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64);
6344 
6345     Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs);
6346 
6347     if (Op.getValueType() != MVT::v4f64)
6348       Value = DAG.getNode(ISD::FP_ROUND, dl,
6349                           Op.getValueType(), Value,
6350                           DAG.getIntPtrConstant(1, dl));
6351     return Value;
6352   }
6353 
6354   // Don't handle ppc_fp128 here; let it be lowered to a libcall.
6355   if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
6356     return SDValue();
6357 
6358   if (Op.getOperand(0).getValueType() == MVT::i1)
6359     return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0),
6360                        DAG.getConstantFP(1.0, dl, Op.getValueType()),
6361                        DAG.getConstantFP(0.0, dl, Op.getValueType()));
6362 
6363   // If we have direct moves, we can do all the conversion, skip the store/load
6364   // however, without FPCVT we can't do most conversions.
6365   if (Subtarget.hasDirectMove() && Subtarget.isPPC64() && Subtarget.hasFPCVT())
6366     return LowerINT_TO_FPDirectMove(Op, DAG, dl);
6367 
6368   assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
6369          "UINT_TO_FP is supported only with FPCVT");
6370 
6371   // If we have FCFIDS, then use it when converting to single-precision.
6372   // Otherwise, convert to double-precision and then round.
6373   unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
6374                        ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
6375                                                             : PPCISD::FCFIDS)
6376                        : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
6377                                                             : PPCISD::FCFID);
6378   MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
6379                   ? MVT::f32
6380                   : MVT::f64;
6381 
6382   if (Op.getOperand(0).getValueType() == MVT::i64) {
6383     SDValue SINT = Op.getOperand(0);
6384     // When converting to single-precision, we actually need to convert
6385     // to double-precision first and then round to single-precision.
6386     // To avoid double-rounding effects during that operation, we have
6387     // to prepare the input operand.  Bits that might be truncated when
6388     // converting to double-precision are replaced by a bit that won't
6389     // be lost at this stage, but is below the single-precision rounding
6390     // position.
6391     //
6392     // However, if -enable-unsafe-fp-math is in effect, accept double
6393     // rounding to avoid the extra overhead.
6394     if (Op.getValueType() == MVT::f32 &&
6395         !Subtarget.hasFPCVT() &&
6396         !DAG.getTarget().Options.UnsafeFPMath) {
6397 
6398       // Twiddle input to make sure the low 11 bits are zero.  (If this
6399       // is the case, we are guaranteed the value will fit into the 53 bit
6400       // mantissa of an IEEE double-precision value without rounding.)
6401       // If any of those low 11 bits were not zero originally, make sure
6402       // bit 12 (value 2048) is set instead, so that the final rounding
6403       // to single-precision gets the correct result.
6404       SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
6405                                   SINT, DAG.getConstant(2047, dl, MVT::i64));
6406       Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
6407                           Round, DAG.getConstant(2047, dl, MVT::i64));
6408       Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
6409       Round = DAG.getNode(ISD::AND, dl, MVT::i64,
6410                           Round, DAG.getConstant(-2048, dl, MVT::i64));
6411 
6412       // However, we cannot use that value unconditionally: if the magnitude
6413       // of the input value is small, the bit-twiddling we did above might
6414       // end up visibly changing the output.  Fortunately, in that case, we
6415       // don't need to twiddle bits since the original input will convert
6416       // exactly to double-precision floating-point already.  Therefore,
6417       // construct a conditional to use the original value if the top 11
6418       // bits are all sign-bit copies, and use the rounded value computed
6419       // above otherwise.
6420       SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
6421                                  SINT, DAG.getConstant(53, dl, MVT::i32));
6422       Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
6423                          Cond, DAG.getConstant(1, dl, MVT::i64));
6424       Cond = DAG.getSetCC(dl, MVT::i32,
6425                           Cond, DAG.getConstant(1, dl, MVT::i64), ISD::SETUGT);
6426 
6427       SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
6428     }
6429 
6430     ReuseLoadInfo RLI;
6431     SDValue Bits;
6432 
6433     MachineFunction &MF = DAG.getMachineFunction();
6434     if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) {
6435       Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
6436                          false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
6437                          RLI.Ranges);
6438       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6439     } else if (Subtarget.hasLFIWAX() &&
6440                canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) {
6441       MachineMemOperand *MMO =
6442         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6443                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6444       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6445       Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl,
6446                                      DAG.getVTList(MVT::f64, MVT::Other),
6447                                      Ops, MVT::i32, MMO);
6448       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6449     } else if (Subtarget.hasFPCVT() &&
6450                canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) {
6451       MachineMemOperand *MMO =
6452         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6453                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6454       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6455       Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl,
6456                                      DAG.getVTList(MVT::f64, MVT::Other),
6457                                      Ops, MVT::i32, MMO);
6458       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
6459     } else if (((Subtarget.hasLFIWAX() &&
6460                  SINT.getOpcode() == ISD::SIGN_EXTEND) ||
6461                 (Subtarget.hasFPCVT() &&
6462                  SINT.getOpcode() == ISD::ZERO_EXTEND)) &&
6463                SINT.getOperand(0).getValueType() == MVT::i32) {
6464       MachineFrameInfo *FrameInfo = MF.getFrameInfo();
6465       EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
6466 
6467       int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
6468       SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6469 
6470       SDValue Store = DAG.getStore(
6471           DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx,
6472           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6473           false, false, 0);
6474 
6475       assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
6476              "Expected an i32 store");
6477 
6478       RLI.Ptr = FIdx;
6479       RLI.Chain = Store;
6480       RLI.MPI =
6481           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
6482       RLI.Alignment = 4;
6483 
6484       MachineMemOperand *MMO =
6485         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6486                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6487       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6488       Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ?
6489                                      PPCISD::LFIWZX : PPCISD::LFIWAX,
6490                                      dl, DAG.getVTList(MVT::f64, MVT::Other),
6491                                      Ops, MVT::i32, MMO);
6492     } else
6493       Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
6494 
6495     SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
6496 
6497     if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
6498       FP = DAG.getNode(ISD::FP_ROUND, dl,
6499                        MVT::f32, FP, DAG.getIntPtrConstant(0, dl));
6500     return FP;
6501   }
6502 
6503   assert(Op.getOperand(0).getValueType() == MVT::i32 &&
6504          "Unhandled INT_TO_FP type in custom expander!");
6505   // Since we only generate this in 64-bit mode, we can take advantage of
6506   // 64-bit registers.  In particular, sign extend the input value into the
6507   // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
6508   // then lfd it and fcfid it.
6509   MachineFunction &MF = DAG.getMachineFunction();
6510   MachineFrameInfo *FrameInfo = MF.getFrameInfo();
6511   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
6512 
6513   SDValue Ld;
6514   if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) {
6515     ReuseLoadInfo RLI;
6516     bool ReusingLoad;
6517     if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI,
6518                                             DAG))) {
6519       int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
6520       SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6521 
6522       SDValue Store = DAG.getStore(
6523           DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
6524           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6525           false, false, 0);
6526 
6527       assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
6528              "Expected an i32 store");
6529 
6530       RLI.Ptr = FIdx;
6531       RLI.Chain = Store;
6532       RLI.MPI =
6533           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
6534       RLI.Alignment = 4;
6535     }
6536 
6537     MachineMemOperand *MMO =
6538       MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
6539                               RLI.Alignment, RLI.AAInfo, RLI.Ranges);
6540     SDValue Ops[] = { RLI.Chain, RLI.Ptr };
6541     Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
6542                                    PPCISD::LFIWZX : PPCISD::LFIWAX,
6543                                  dl, DAG.getVTList(MVT::f64, MVT::Other),
6544                                  Ops, MVT::i32, MMO);
6545     if (ReusingLoad)
6546       spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG);
6547   } else {
6548     assert(Subtarget.isPPC64() &&
6549            "i32->FP without LFIWAX supported only on PPC64");
6550 
6551     int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
6552     SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6553 
6554     SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
6555                                 Op.getOperand(0));
6556 
6557     // STD the extended value into the stack slot.
6558     SDValue Store = DAG.getStore(
6559         DAG.getEntryNode(), dl, Ext64, FIdx,
6560         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6561         false, false, 0);
6562 
6563     // Load the value as a double.
6564     Ld = DAG.getLoad(
6565         MVT::f64, dl, Store, FIdx,
6566         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx),
6567         false, false, false, 0);
6568   }
6569 
6570   // FCFID it and return it.
6571   SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
6572   if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
6573     FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP,
6574                      DAG.getIntPtrConstant(0, dl));
6575   return FP;
6576 }
6577 
6578 SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
6579                                             SelectionDAG &DAG) const {
6580   SDLoc dl(Op);
6581   /*
6582    The rounding mode is in bits 30:31 of FPSR, and has the following
6583    settings:
6584      00 Round to nearest
6585      01 Round to 0
6586      10 Round to +inf
6587      11 Round to -inf
6588 
6589   FLT_ROUNDS, on the other hand, expects the following:
6590     -1 Undefined
6591      0 Round to 0
6592      1 Round to nearest
6593      2 Round to +inf
6594      3 Round to -inf
6595 
6596   To perform the conversion, we do:
6597     ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
6598   */
6599 
6600   MachineFunction &MF = DAG.getMachineFunction();
6601   EVT VT = Op.getValueType();
6602   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
6603 
6604   // Save FP Control Word to register
6605   EVT NodeTys[] = {
6606     MVT::f64,    // return register
6607     MVT::Glue    // unused in this context
6608   };
6609   SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None);
6610 
6611   // Save FP register to stack slot
6612   int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
6613   SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
6614   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
6615                                StackSlot, MachinePointerInfo(), false, false,0);
6616 
6617   // Load FP Control Word from low 32 bits of stack slot.
6618   SDValue Four = DAG.getConstant(4, dl, PtrVT);
6619   SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
6620   SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
6621                             false, false, false, 0);
6622 
6623   // Transform as necessary
6624   SDValue CWD1 =
6625     DAG.getNode(ISD::AND, dl, MVT::i32,
6626                 CWD, DAG.getConstant(3, dl, MVT::i32));
6627   SDValue CWD2 =
6628     DAG.getNode(ISD::SRL, dl, MVT::i32,
6629                 DAG.getNode(ISD::AND, dl, MVT::i32,
6630                             DAG.getNode(ISD::XOR, dl, MVT::i32,
6631                                         CWD, DAG.getConstant(3, dl, MVT::i32)),
6632                             DAG.getConstant(3, dl, MVT::i32)),
6633                 DAG.getConstant(1, dl, MVT::i32));
6634 
6635   SDValue RetVal =
6636     DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
6637 
6638   return DAG.getNode((VT.getSizeInBits() < 16 ?
6639                       ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
6640 }
6641 
6642 SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
6643   EVT VT = Op.getValueType();
6644   unsigned BitWidth = VT.getSizeInBits();
6645   SDLoc dl(Op);
6646   assert(Op.getNumOperands() == 3 &&
6647          VT == Op.getOperand(1).getValueType() &&
6648          "Unexpected SHL!");
6649 
6650   // Expand into a bunch of logical ops.  Note that these ops
6651   // depend on the PPC behavior for oversized shift amounts.
6652   SDValue Lo = Op.getOperand(0);
6653   SDValue Hi = Op.getOperand(1);
6654   SDValue Amt = Op.getOperand(2);
6655   EVT AmtVT = Amt.getValueType();
6656 
6657   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
6658                              DAG.getConstant(BitWidth, dl, AmtVT), Amt);
6659   SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
6660   SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
6661   SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
6662   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6663                              DAG.getConstant(-BitWidth, dl, AmtVT));
6664   SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
6665   SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6666   SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
6667   SDValue OutOps[] = { OutLo, OutHi };
6668   return DAG.getMergeValues(OutOps, dl);
6669 }
6670 
6671 SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
6672   EVT VT = Op.getValueType();
6673   SDLoc dl(Op);
6674   unsigned BitWidth = VT.getSizeInBits();
6675   assert(Op.getNumOperands() == 3 &&
6676          VT == Op.getOperand(1).getValueType() &&
6677          "Unexpected SRL!");
6678 
6679   // Expand into a bunch of logical ops.  Note that these ops
6680   // depend on the PPC behavior for oversized shift amounts.
6681   SDValue Lo = Op.getOperand(0);
6682   SDValue Hi = Op.getOperand(1);
6683   SDValue Amt = Op.getOperand(2);
6684   EVT AmtVT = Amt.getValueType();
6685 
6686   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
6687                              DAG.getConstant(BitWidth, dl, AmtVT), Amt);
6688   SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6689   SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6690   SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6691   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6692                              DAG.getConstant(-BitWidth, dl, AmtVT));
6693   SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
6694   SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6695   SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
6696   SDValue OutOps[] = { OutLo, OutHi };
6697   return DAG.getMergeValues(OutOps, dl);
6698 }
6699 
6700 SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
6701   SDLoc dl(Op);
6702   EVT VT = Op.getValueType();
6703   unsigned BitWidth = VT.getSizeInBits();
6704   assert(Op.getNumOperands() == 3 &&
6705          VT == Op.getOperand(1).getValueType() &&
6706          "Unexpected SRA!");
6707 
6708   // Expand into a bunch of logical ops, followed by a select_cc.
6709   SDValue Lo = Op.getOperand(0);
6710   SDValue Hi = Op.getOperand(1);
6711   SDValue Amt = Op.getOperand(2);
6712   EVT AmtVT = Amt.getValueType();
6713 
6714   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
6715                              DAG.getConstant(BitWidth, dl, AmtVT), Amt);
6716   SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6717   SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6718   SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6719   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6720                              DAG.getConstant(-BitWidth, dl, AmtVT));
6721   SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
6722   SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
6723   SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, dl, AmtVT),
6724                                   Tmp4, Tmp6, ISD::SETLE);
6725   SDValue OutOps[] = { OutLo, OutHi };
6726   return DAG.getMergeValues(OutOps, dl);
6727 }
6728 
6729 //===----------------------------------------------------------------------===//
6730 // Vector related lowering.
6731 //
6732 
6733 /// BuildSplatI - Build a canonical splati of Val with an element size of
6734 /// SplatSize.  Cast the result to VT.
6735 static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
6736                              SelectionDAG &DAG, SDLoc dl) {
6737   assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
6738 
6739   static const MVT VTys[] = { // canonical VT to use for each size.
6740     MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
6741   };
6742 
6743   EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
6744 
6745   // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
6746   if (Val == -1)
6747     SplatSize = 1;
6748 
6749   EVT CanonicalVT = VTys[SplatSize-1];
6750 
6751   // Build a canonical splat for this value.
6752   return DAG.getBitcast(ReqVT, DAG.getConstant(Val, dl, CanonicalVT));
6753 }
6754 
6755 /// BuildIntrinsicOp - Return a unary operator intrinsic node with the
6756 /// specified intrinsic ID.
6757 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
6758                                 SelectionDAG &DAG, SDLoc dl,
6759                                 EVT DestVT = MVT::Other) {
6760   if (DestVT == MVT::Other) DestVT = Op.getValueType();
6761   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6762                      DAG.getConstant(IID, dl, MVT::i32), Op);
6763 }
6764 
6765 /// BuildIntrinsicOp - Return a binary operator intrinsic node with the
6766 /// specified intrinsic ID.
6767 static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
6768                                 SelectionDAG &DAG, SDLoc dl,
6769                                 EVT DestVT = MVT::Other) {
6770   if (DestVT == MVT::Other) DestVT = LHS.getValueType();
6771   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6772                      DAG.getConstant(IID, dl, MVT::i32), LHS, RHS);
6773 }
6774 
6775 /// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
6776 /// specified intrinsic ID.
6777 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
6778                                 SDValue Op2, SelectionDAG &DAG,
6779                                 SDLoc dl, EVT DestVT = MVT::Other) {
6780   if (DestVT == MVT::Other) DestVT = Op0.getValueType();
6781   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6782                      DAG.getConstant(IID, dl, MVT::i32), Op0, Op1, Op2);
6783 }
6784 
6785 /// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
6786 /// amount.  The result has the specified value type.
6787 static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
6788                              EVT VT, SelectionDAG &DAG, SDLoc dl) {
6789   // Force LHS/RHS to be the right type.
6790   LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
6791   RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
6792 
6793   int Ops[16];
6794   for (unsigned i = 0; i != 16; ++i)
6795     Ops[i] = i + Amt;
6796   SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
6797   return DAG.getNode(ISD::BITCAST, dl, VT, T);
6798 }
6799 
6800 // If this is a case we can't handle, return null and let the default
6801 // expansion code take care of it.  If we CAN select this case, and if it
6802 // selects to a single instruction, return Op.  Otherwise, if we can codegen
6803 // this case more efficiently than a constant pool load, lower it to the
6804 // sequence of ops that should be used.
6805 SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
6806                                              SelectionDAG &DAG) const {
6807   SDLoc dl(Op);
6808   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
6809   assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
6810 
6811   if (Subtarget.hasQPX() && Op.getValueType() == MVT::v4i1) {
6812     // We first build an i32 vector, load it into a QPX register,
6813     // then convert it to a floating-point vector and compare it
6814     // to a zero vector to get the boolean result.
6815     MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
6816     int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
6817     MachinePointerInfo PtrInfo =
6818         MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
6819     EVT PtrVT = getPointerTy(DAG.getDataLayout());
6820     SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6821 
6822     assert(BVN->getNumOperands() == 4 &&
6823       "BUILD_VECTOR for v4i1 does not have 4 operands");
6824 
6825     bool IsConst = true;
6826     for (unsigned i = 0; i < 4; ++i) {
6827       if (BVN->getOperand(i).isUndef()) continue;
6828       if (!isa<ConstantSDNode>(BVN->getOperand(i))) {
6829         IsConst = false;
6830         break;
6831       }
6832     }
6833 
6834     if (IsConst) {
6835       Constant *One =
6836         ConstantFP::get(Type::getFloatTy(*DAG.getContext()), 1.0);
6837       Constant *NegOne =
6838         ConstantFP::get(Type::getFloatTy(*DAG.getContext()), -1.0);
6839 
6840       SmallVector<Constant*, 4> CV(4, NegOne);
6841       for (unsigned i = 0; i < 4; ++i) {
6842         if (BVN->getOperand(i).isUndef())
6843           CV[i] = UndefValue::get(Type::getFloatTy(*DAG.getContext()));
6844         else if (isNullConstant(BVN->getOperand(i)))
6845           continue;
6846         else
6847           CV[i] = One;
6848       }
6849 
6850       Constant *CP = ConstantVector::get(CV);
6851       SDValue CPIdx = DAG.getConstantPool(CP, getPointerTy(DAG.getDataLayout()),
6852                                           16 /* alignment */);
6853 
6854       SmallVector<SDValue, 2> Ops;
6855       Ops.push_back(DAG.getEntryNode());
6856       Ops.push_back(CPIdx);
6857 
6858       SmallVector<EVT, 2> ValueVTs;
6859       ValueVTs.push_back(MVT::v4i1);
6860       ValueVTs.push_back(MVT::Other); // chain
6861       SDVTList VTs = DAG.getVTList(ValueVTs);
6862 
6863       return DAG.getMemIntrinsicNode(
6864           PPCISD::QVLFSb, dl, VTs, Ops, MVT::v4f32,
6865           MachinePointerInfo::getConstantPool(DAG.getMachineFunction()));
6866     }
6867 
6868     SmallVector<SDValue, 4> Stores;
6869     for (unsigned i = 0; i < 4; ++i) {
6870       if (BVN->getOperand(i).isUndef()) continue;
6871 
6872       unsigned Offset = 4*i;
6873       SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
6874       Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
6875 
6876       unsigned StoreSize = BVN->getOperand(i).getValueType().getStoreSize();
6877       if (StoreSize > 4) {
6878         Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
6879                                            BVN->getOperand(i), Idx,
6880                                            PtrInfo.getWithOffset(Offset),
6881                                            MVT::i32, false, false, 0));
6882       } else {
6883         SDValue StoreValue = BVN->getOperand(i);
6884         if (StoreSize < 4)
6885           StoreValue = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, StoreValue);
6886 
6887         Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
6888                                       StoreValue, Idx,
6889                                       PtrInfo.getWithOffset(Offset),
6890                                       false, false, 0));
6891       }
6892     }
6893 
6894     SDValue StoreChain;
6895     if (!Stores.empty())
6896       StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
6897     else
6898       StoreChain = DAG.getEntryNode();
6899 
6900     // Now load from v4i32 into the QPX register; this will extend it to
6901     // v4i64 but not yet convert it to a floating point. Nevertheless, this
6902     // is typed as v4f64 because the QPX register integer states are not
6903     // explicitly represented.
6904 
6905     SmallVector<SDValue, 2> Ops;
6906     Ops.push_back(StoreChain);
6907     Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvlfiwz, dl, MVT::i32));
6908     Ops.push_back(FIdx);
6909 
6910     SmallVector<EVT, 2> ValueVTs;
6911     ValueVTs.push_back(MVT::v4f64);
6912     ValueVTs.push_back(MVT::Other); // chain
6913     SDVTList VTs = DAG.getVTList(ValueVTs);
6914 
6915     SDValue LoadedVect = DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN,
6916       dl, VTs, Ops, MVT::v4i32, PtrInfo);
6917     LoadedVect = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
6918       DAG.getConstant(Intrinsic::ppc_qpx_qvfcfidu, dl, MVT::i32),
6919       LoadedVect);
6920 
6921     SDValue FPZeros = DAG.getConstantFP(0.0, dl, MVT::v4f64);
6922 
6923     return DAG.getSetCC(dl, MVT::v4i1, LoadedVect, FPZeros, ISD::SETEQ);
6924   }
6925 
6926   // All other QPX vectors are handled by generic code.
6927   if (Subtarget.hasQPX())
6928     return SDValue();
6929 
6930   // Check if this is a splat of a constant value.
6931   APInt APSplatBits, APSplatUndef;
6932   unsigned SplatBitSize;
6933   bool HasAnyUndefs;
6934   if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
6935                              HasAnyUndefs, 0, !Subtarget.isLittleEndian()) ||
6936       SplatBitSize > 32)
6937     return SDValue();
6938 
6939   unsigned SplatBits = APSplatBits.getZExtValue();
6940   unsigned SplatUndef = APSplatUndef.getZExtValue();
6941   unsigned SplatSize = SplatBitSize / 8;
6942 
6943   // First, handle single instruction cases.
6944 
6945   // All zeros?
6946   if (SplatBits == 0) {
6947     // Canonicalize all zero vectors to be v4i32.
6948     if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
6949       SDValue Z = DAG.getConstant(0, dl, MVT::v4i32);
6950       Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
6951     }
6952     return Op;
6953   }
6954 
6955   // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
6956   int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
6957                     (32-SplatBitSize));
6958   if (SextVal >= -16 && SextVal <= 15)
6959     return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
6960 
6961   // Two instruction sequences.
6962 
6963   // If this value is in the range [-32,30] and is even, use:
6964   //     VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
6965   // If this value is in the range [17,31] and is odd, use:
6966   //     VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
6967   // If this value is in the range [-31,-17] and is odd, use:
6968   //     VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
6969   // Note the last two are three-instruction sequences.
6970   if (SextVal >= -32 && SextVal <= 31) {
6971     // To avoid having these optimizations undone by constant folding,
6972     // we convert to a pseudo that will be expanded later into one of
6973     // the above forms.
6974     SDValue Elt = DAG.getConstant(SextVal, dl, MVT::i32);
6975     EVT VT = (SplatSize == 1 ? MVT::v16i8 :
6976               (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32));
6977     SDValue EltSize = DAG.getConstant(SplatSize, dl, MVT::i32);
6978     SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
6979     if (VT == Op.getValueType())
6980       return RetVal;
6981     else
6982       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal);
6983   }
6984 
6985   // If this is 0x8000_0000 x 4, turn into vspltisw + vslw.  If it is
6986   // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000).  This is important
6987   // for fneg/fabs.
6988   if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
6989     // Make -1 and vspltisw -1:
6990     SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
6991 
6992     // Make the VSLW intrinsic, computing 0x8000_0000.
6993     SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
6994                                    OnesV, DAG, dl);
6995 
6996     // xor by OnesV to invert it.
6997     Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
6998     return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6999   }
7000 
7001   // Check to see if this is a wide variety of vsplti*, binop self cases.
7002   static const signed char SplatCsts[] = {
7003     -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
7004     -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
7005   };
7006 
7007   for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
7008     // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
7009     // cases which are ambiguous (e.g. formation of 0x8000_0000).  'vsplti -1'
7010     int i = SplatCsts[idx];
7011 
7012     // Figure out what shift amount will be used by altivec if shifted by i in
7013     // this splat size.
7014     unsigned TypeShiftAmt = i & (SplatBitSize-1);
7015 
7016     // vsplti + shl self.
7017     if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
7018       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
7019       static const unsigned IIDs[] = { // Intrinsic to use for each size.
7020         Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
7021         Intrinsic::ppc_altivec_vslw
7022       };
7023       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
7024       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
7025     }
7026 
7027     // vsplti + srl self.
7028     if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
7029       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
7030       static const unsigned IIDs[] = { // Intrinsic to use for each size.
7031         Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
7032         Intrinsic::ppc_altivec_vsrw
7033       };
7034       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
7035       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
7036     }
7037 
7038     // vsplti + sra self.
7039     if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
7040       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
7041       static const unsigned IIDs[] = { // Intrinsic to use for each size.
7042         Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
7043         Intrinsic::ppc_altivec_vsraw
7044       };
7045       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
7046       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
7047     }
7048 
7049     // vsplti + rol self.
7050     if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
7051                          ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
7052       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
7053       static const unsigned IIDs[] = { // Intrinsic to use for each size.
7054         Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
7055         Intrinsic::ppc_altivec_vrlw
7056       };
7057       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
7058       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
7059     }
7060 
7061     // t = vsplti c, result = vsldoi t, t, 1
7062     if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
7063       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
7064       unsigned Amt = Subtarget.isLittleEndian() ? 15 : 1;
7065       return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl);
7066     }
7067     // t = vsplti c, result = vsldoi t, t, 2
7068     if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
7069       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
7070       unsigned Amt = Subtarget.isLittleEndian() ? 14 : 2;
7071       return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl);
7072     }
7073     // t = vsplti c, result = vsldoi t, t, 3
7074     if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
7075       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
7076       unsigned Amt = Subtarget.isLittleEndian() ? 13 : 3;
7077       return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl);
7078     }
7079   }
7080 
7081   return SDValue();
7082 }
7083 
7084 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
7085 /// the specified operations to build the shuffle.
7086 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
7087                                       SDValue RHS, SelectionDAG &DAG,
7088                                       SDLoc dl) {
7089   unsigned OpNum = (PFEntry >> 26) & 0x0F;
7090   unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
7091   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
7092 
7093   enum {
7094     OP_COPY = 0,  // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
7095     OP_VMRGHW,
7096     OP_VMRGLW,
7097     OP_VSPLTISW0,
7098     OP_VSPLTISW1,
7099     OP_VSPLTISW2,
7100     OP_VSPLTISW3,
7101     OP_VSLDOI4,
7102     OP_VSLDOI8,
7103     OP_VSLDOI12
7104   };
7105 
7106   if (OpNum == OP_COPY) {
7107     if (LHSID == (1*9+2)*9+3) return LHS;
7108     assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
7109     return RHS;
7110   }
7111 
7112   SDValue OpLHS, OpRHS;
7113   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
7114   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
7115 
7116   int ShufIdxs[16];
7117   switch (OpNum) {
7118   default: llvm_unreachable("Unknown i32 permute!");
7119   case OP_VMRGHW:
7120     ShufIdxs[ 0] =  0; ShufIdxs[ 1] =  1; ShufIdxs[ 2] =  2; ShufIdxs[ 3] =  3;
7121     ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
7122     ShufIdxs[ 8] =  4; ShufIdxs[ 9] =  5; ShufIdxs[10] =  6; ShufIdxs[11] =  7;
7123     ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
7124     break;
7125   case OP_VMRGLW:
7126     ShufIdxs[ 0] =  8; ShufIdxs[ 1] =  9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
7127     ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
7128     ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
7129     ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
7130     break;
7131   case OP_VSPLTISW0:
7132     for (unsigned i = 0; i != 16; ++i)
7133       ShufIdxs[i] = (i&3)+0;
7134     break;
7135   case OP_VSPLTISW1:
7136     for (unsigned i = 0; i != 16; ++i)
7137       ShufIdxs[i] = (i&3)+4;
7138     break;
7139   case OP_VSPLTISW2:
7140     for (unsigned i = 0; i != 16; ++i)
7141       ShufIdxs[i] = (i&3)+8;
7142     break;
7143   case OP_VSPLTISW3:
7144     for (unsigned i = 0; i != 16; ++i)
7145       ShufIdxs[i] = (i&3)+12;
7146     break;
7147   case OP_VSLDOI4:
7148     return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
7149   case OP_VSLDOI8:
7150     return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
7151   case OP_VSLDOI12:
7152     return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
7153   }
7154   EVT VT = OpLHS.getValueType();
7155   OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
7156   OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
7157   SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
7158   return DAG.getNode(ISD::BITCAST, dl, VT, T);
7159 }
7160 
7161 /// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE.  If this
7162 /// is a shuffle we can handle in a single instruction, return it.  Otherwise,
7163 /// return the code it can be lowered into.  Worst case, it can always be
7164 /// lowered into a vperm.
7165 SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
7166                                                SelectionDAG &DAG) const {
7167   SDLoc dl(Op);
7168   SDValue V1 = Op.getOperand(0);
7169   SDValue V2 = Op.getOperand(1);
7170   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7171   EVT VT = Op.getValueType();
7172   bool isLittleEndian = Subtarget.isLittleEndian();
7173 
7174   if (Subtarget.hasQPX()) {
7175     if (VT.getVectorNumElements() != 4)
7176       return SDValue();
7177 
7178     if (V2.isUndef()) V2 = V1;
7179 
7180     int AlignIdx = PPC::isQVALIGNIShuffleMask(SVOp);
7181     if (AlignIdx != -1) {
7182       return DAG.getNode(PPCISD::QVALIGNI, dl, VT, V1, V2,
7183                          DAG.getConstant(AlignIdx, dl, MVT::i32));
7184     } else if (SVOp->isSplat()) {
7185       int SplatIdx = SVOp->getSplatIndex();
7186       if (SplatIdx >= 4) {
7187         std::swap(V1, V2);
7188         SplatIdx -= 4;
7189       }
7190 
7191       // FIXME: If SplatIdx == 0 and the input came from a load, then there is
7192       // nothing to do.
7193 
7194       return DAG.getNode(PPCISD::QVESPLATI, dl, VT, V1,
7195                          DAG.getConstant(SplatIdx, dl, MVT::i32));
7196     }
7197 
7198     // Lower this into a qvgpci/qvfperm pair.
7199 
7200     // Compute the qvgpci literal
7201     unsigned idx = 0;
7202     for (unsigned i = 0; i < 4; ++i) {
7203       int m = SVOp->getMaskElt(i);
7204       unsigned mm = m >= 0 ? (unsigned) m : i;
7205       idx |= mm << (3-i)*3;
7206     }
7207 
7208     SDValue V3 = DAG.getNode(PPCISD::QVGPCI, dl, MVT::v4f64,
7209                              DAG.getConstant(idx, dl, MVT::i32));
7210     return DAG.getNode(PPCISD::QVFPERM, dl, VT, V1, V2, V3);
7211   }
7212 
7213   // Cases that are handled by instructions that take permute immediates
7214   // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
7215   // selected by the instruction selector.
7216   if (V2.isUndef()) {
7217     if (PPC::isSplatShuffleMask(SVOp, 1) ||
7218         PPC::isSplatShuffleMask(SVOp, 2) ||
7219         PPC::isSplatShuffleMask(SVOp, 4) ||
7220         PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) ||
7221         PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) ||
7222         PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 ||
7223         PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) ||
7224         PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) ||
7225         PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) ||
7226         PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) ||
7227         PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) ||
7228         PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG) ||
7229         (Subtarget.hasP8Altivec() && (
7230          PPC::isVPKUDUMShuffleMask(SVOp, 1, DAG) ||
7231          PPC::isVMRGEOShuffleMask(SVOp, true, 1, DAG) ||
7232          PPC::isVMRGEOShuffleMask(SVOp, false, 1, DAG)))) {
7233       return Op;
7234     }
7235   }
7236 
7237   // Altivec has a variety of "shuffle immediates" that take two vector inputs
7238   // and produce a fixed permutation.  If any of these match, do not lower to
7239   // VPERM.
7240   unsigned int ShuffleKind = isLittleEndian ? 2 : 0;
7241   if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7242       PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7243       PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 ||
7244       PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
7245       PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
7246       PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
7247       PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
7248       PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
7249       PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
7250       (Subtarget.hasP8Altivec() && (
7251        PPC::isVPKUDUMShuffleMask(SVOp, ShuffleKind, DAG) ||
7252        PPC::isVMRGEOShuffleMask(SVOp, true, ShuffleKind, DAG) ||
7253        PPC::isVMRGEOShuffleMask(SVOp, false, ShuffleKind, DAG))))
7254     return Op;
7255 
7256   // Check to see if this is a shuffle of 4-byte values.  If so, we can use our
7257   // perfect shuffle table to emit an optimal matching sequence.
7258   ArrayRef<int> PermMask = SVOp->getMask();
7259 
7260   unsigned PFIndexes[4];
7261   bool isFourElementShuffle = true;
7262   for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
7263     unsigned EltNo = 8;   // Start out undef.
7264     for (unsigned j = 0; j != 4; ++j) {  // Intra-element byte.
7265       if (PermMask[i*4+j] < 0)
7266         continue;   // Undef, ignore it.
7267 
7268       unsigned ByteSource = PermMask[i*4+j];
7269       if ((ByteSource & 3) != j) {
7270         isFourElementShuffle = false;
7271         break;
7272       }
7273 
7274       if (EltNo == 8) {
7275         EltNo = ByteSource/4;
7276       } else if (EltNo != ByteSource/4) {
7277         isFourElementShuffle = false;
7278         break;
7279       }
7280     }
7281     PFIndexes[i] = EltNo;
7282   }
7283 
7284   // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
7285   // perfect shuffle vector to determine if it is cost effective to do this as
7286   // discrete instructions, or whether we should use a vperm.
7287   // For now, we skip this for little endian until such time as we have a
7288   // little-endian perfect shuffle table.
7289   if (isFourElementShuffle && !isLittleEndian) {
7290     // Compute the index in the perfect shuffle table.
7291     unsigned PFTableIndex =
7292       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
7293 
7294     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
7295     unsigned Cost  = (PFEntry >> 30);
7296 
7297     // Determining when to avoid vperm is tricky.  Many things affect the cost
7298     // of vperm, particularly how many times the perm mask needs to be computed.
7299     // For example, if the perm mask can be hoisted out of a loop or is already
7300     // used (perhaps because there are multiple permutes with the same shuffle
7301     // mask?) the vperm has a cost of 1.  OTOH, hoisting the permute mask out of
7302     // the loop requires an extra register.
7303     //
7304     // As a compromise, we only emit discrete instructions if the shuffle can be
7305     // generated in 3 or fewer operations.  When we have loop information
7306     // available, if this block is within a loop, we should avoid using vperm
7307     // for 3-operation perms and use a constant pool load instead.
7308     if (Cost < 3)
7309       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
7310   }
7311 
7312   // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
7313   // vector that will get spilled to the constant pool.
7314   if (V2.isUndef()) V2 = V1;
7315 
7316   // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
7317   // that it is in input element units, not in bytes.  Convert now.
7318 
7319   // For little endian, the order of the input vectors is reversed, and
7320   // the permutation mask is complemented with respect to 31.  This is
7321   // necessary to produce proper semantics with the big-endian-biased vperm
7322   // instruction.
7323   EVT EltVT = V1.getValueType().getVectorElementType();
7324   unsigned BytesPerElement = EltVT.getSizeInBits()/8;
7325 
7326   SmallVector<SDValue, 16> ResultMask;
7327   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
7328     unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
7329 
7330     for (unsigned j = 0; j != BytesPerElement; ++j)
7331       if (isLittleEndian)
7332         ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement + j),
7333                                              dl, MVT::i32));
7334       else
7335         ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement + j, dl,
7336                                              MVT::i32));
7337   }
7338 
7339   SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
7340                                   ResultMask);
7341   if (isLittleEndian)
7342     return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
7343                        V2, V1, VPermMask);
7344   else
7345     return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
7346                        V1, V2, VPermMask);
7347 }
7348 
7349 /// getVectorCompareInfo - Given an intrinsic, return false if it is not a
7350 /// vector comparison.  If it is, return true and fill in Opc/isDot with
7351 /// information about the intrinsic.
7352 static bool getVectorCompareInfo(SDValue Intrin, int &CompareOpc,
7353                                  bool &isDot, const PPCSubtarget &Subtarget) {
7354   unsigned IntrinsicID =
7355     cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
7356   CompareOpc = -1;
7357   isDot = false;
7358   switch (IntrinsicID) {
7359   default: return false;
7360     // Comparison predicates.
7361   case Intrinsic::ppc_altivec_vcmpbfp_p:  CompareOpc = 966; isDot = 1; break;
7362   case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
7363   case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc =   6; isDot = 1; break;
7364   case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc =  70; isDot = 1; break;
7365   case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
7366   case Intrinsic::ppc_altivec_vcmpequd_p:
7367     if (Subtarget.hasP8Altivec()) {
7368       CompareOpc = 199;
7369       isDot = 1;
7370     } else
7371       return false;
7372 
7373     break;
7374   case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
7375   case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
7376   case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
7377   case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
7378   case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
7379   case Intrinsic::ppc_altivec_vcmpgtsd_p:
7380     if (Subtarget.hasP8Altivec()) {
7381       CompareOpc = 967;
7382       isDot = 1;
7383     } else
7384       return false;
7385 
7386     break;
7387   case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
7388   case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
7389   case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
7390   case Intrinsic::ppc_altivec_vcmpgtud_p:
7391     if (Subtarget.hasP8Altivec()) {
7392       CompareOpc = 711;
7393       isDot = 1;
7394     } else
7395       return false;
7396 
7397     break;
7398     // VSX predicate comparisons use the same infrastructure
7399   case Intrinsic::ppc_vsx_xvcmpeqdp_p:
7400   case Intrinsic::ppc_vsx_xvcmpgedp_p:
7401   case Intrinsic::ppc_vsx_xvcmpgtdp_p:
7402   case Intrinsic::ppc_vsx_xvcmpeqsp_p:
7403   case Intrinsic::ppc_vsx_xvcmpgesp_p:
7404   case Intrinsic::ppc_vsx_xvcmpgtsp_p:
7405     if (Subtarget.hasVSX()) {
7406       switch (IntrinsicID) {
7407       case Intrinsic::ppc_vsx_xvcmpeqdp_p: CompareOpc = 99; break;
7408       case Intrinsic::ppc_vsx_xvcmpgedp_p: CompareOpc = 115; break;
7409       case Intrinsic::ppc_vsx_xvcmpgtdp_p: CompareOpc = 107; break;
7410       case Intrinsic::ppc_vsx_xvcmpeqsp_p: CompareOpc = 67; break;
7411       case Intrinsic::ppc_vsx_xvcmpgesp_p: CompareOpc = 83; break;
7412       case Intrinsic::ppc_vsx_xvcmpgtsp_p: CompareOpc = 75; break;
7413       }
7414       isDot = 1;
7415     }
7416     else
7417       return false;
7418 
7419     break;
7420 
7421     // Normal Comparisons.
7422   case Intrinsic::ppc_altivec_vcmpbfp:    CompareOpc = 966; isDot = 0; break;
7423   case Intrinsic::ppc_altivec_vcmpeqfp:   CompareOpc = 198; isDot = 0; break;
7424   case Intrinsic::ppc_altivec_vcmpequb:   CompareOpc =   6; isDot = 0; break;
7425   case Intrinsic::ppc_altivec_vcmpequh:   CompareOpc =  70; isDot = 0; break;
7426   case Intrinsic::ppc_altivec_vcmpequw:   CompareOpc = 134; isDot = 0; break;
7427   case Intrinsic::ppc_altivec_vcmpequd:
7428     if (Subtarget.hasP8Altivec()) {
7429       CompareOpc = 199;
7430       isDot = 0;
7431     } else
7432       return false;
7433 
7434     break;
7435   case Intrinsic::ppc_altivec_vcmpgefp:   CompareOpc = 454; isDot = 0; break;
7436   case Intrinsic::ppc_altivec_vcmpgtfp:   CompareOpc = 710; isDot = 0; break;
7437   case Intrinsic::ppc_altivec_vcmpgtsb:   CompareOpc = 774; isDot = 0; break;
7438   case Intrinsic::ppc_altivec_vcmpgtsh:   CompareOpc = 838; isDot = 0; break;
7439   case Intrinsic::ppc_altivec_vcmpgtsw:   CompareOpc = 902; isDot = 0; break;
7440   case Intrinsic::ppc_altivec_vcmpgtsd:
7441     if (Subtarget.hasP8Altivec()) {
7442       CompareOpc = 967;
7443       isDot = 0;
7444     } else
7445       return false;
7446 
7447     break;
7448   case Intrinsic::ppc_altivec_vcmpgtub:   CompareOpc = 518; isDot = 0; break;
7449   case Intrinsic::ppc_altivec_vcmpgtuh:   CompareOpc = 582; isDot = 0; break;
7450   case Intrinsic::ppc_altivec_vcmpgtuw:   CompareOpc = 646; isDot = 0; break;
7451   case Intrinsic::ppc_altivec_vcmpgtud:
7452     if (Subtarget.hasP8Altivec()) {
7453       CompareOpc = 711;
7454       isDot = 0;
7455     } else
7456       return false;
7457 
7458     break;
7459   }
7460   return true;
7461 }
7462 
7463 /// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
7464 /// lower, do it, otherwise return null.
7465 SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
7466                                                    SelectionDAG &DAG) const {
7467   // If this is a lowered altivec predicate compare, CompareOpc is set to the
7468   // opcode number of the comparison.
7469   SDLoc dl(Op);
7470   int CompareOpc;
7471   bool isDot;
7472   if (!getVectorCompareInfo(Op, CompareOpc, isDot, Subtarget))
7473     return SDValue();    // Don't custom lower most intrinsics.
7474 
7475   // If this is a non-dot comparison, make the VCMP node and we are done.
7476   if (!isDot) {
7477     SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
7478                               Op.getOperand(1), Op.getOperand(2),
7479                               DAG.getConstant(CompareOpc, dl, MVT::i32));
7480     return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
7481   }
7482 
7483   // Create the PPCISD altivec 'dot' comparison node.
7484   SDValue Ops[] = {
7485     Op.getOperand(2),  // LHS
7486     Op.getOperand(3),  // RHS
7487     DAG.getConstant(CompareOpc, dl, MVT::i32)
7488   };
7489   EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
7490   SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
7491 
7492   // Now that we have the comparison, emit a copy from the CR to a GPR.
7493   // This is flagged to the above dot comparison.
7494   SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
7495                                 DAG.getRegister(PPC::CR6, MVT::i32),
7496                                 CompNode.getValue(1));
7497 
7498   // Unpack the result based on how the target uses it.
7499   unsigned BitNo;   // Bit # of CR6.
7500   bool InvertBit;   // Invert result?
7501   switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
7502   default:  // Can't happen, don't crash on invalid number though.
7503   case 0:   // Return the value of the EQ bit of CR6.
7504     BitNo = 0; InvertBit = false;
7505     break;
7506   case 1:   // Return the inverted value of the EQ bit of CR6.
7507     BitNo = 0; InvertBit = true;
7508     break;
7509   case 2:   // Return the value of the LT bit of CR6.
7510     BitNo = 2; InvertBit = false;
7511     break;
7512   case 3:   // Return the inverted value of the LT bit of CR6.
7513     BitNo = 2; InvertBit = true;
7514     break;
7515   }
7516 
7517   // Shift the bit into the low position.
7518   Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
7519                       DAG.getConstant(8 - (3 - BitNo), dl, MVT::i32));
7520   // Isolate the bit.
7521   Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
7522                       DAG.getConstant(1, dl, MVT::i32));
7523 
7524   // If we are supposed to, toggle the bit.
7525   if (InvertBit)
7526     Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
7527                         DAG.getConstant(1, dl, MVT::i32));
7528   return Flags;
7529 }
7530 
7531 SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
7532                                                   SelectionDAG &DAG) const {
7533   SDLoc dl(Op);
7534   // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int
7535   // instructions), but for smaller types, we need to first extend up to v2i32
7536   // before doing going farther.
7537   if (Op.getValueType() == MVT::v2i64) {
7538     EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
7539     if (ExtVT != MVT::v2i32) {
7540       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0));
7541       Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op,
7542                        DAG.getValueType(EVT::getVectorVT(*DAG.getContext(),
7543                                         ExtVT.getVectorElementType(), 4)));
7544       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op);
7545       Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op,
7546                        DAG.getValueType(MVT::v2i32));
7547     }
7548 
7549     return Op;
7550   }
7551 
7552   return SDValue();
7553 }
7554 
7555 SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
7556                                                    SelectionDAG &DAG) const {
7557   SDLoc dl(Op);
7558   // Create a stack slot that is 16-byte aligned.
7559   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7560   int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
7561   EVT PtrVT = getPointerTy(DAG.getDataLayout());
7562   SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7563 
7564   // Store the input value into Value#0 of the stack slot.
7565   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
7566                                Op.getOperand(0), FIdx, MachinePointerInfo(),
7567                                false, false, 0);
7568   // Load it out.
7569   return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
7570                      false, false, false, 0);
7571 }
7572 
7573 SDValue PPCTargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7574                                                    SelectionDAG &DAG) const {
7575   SDLoc dl(Op);
7576   SDNode *N = Op.getNode();
7577 
7578   assert(N->getOperand(0).getValueType() == MVT::v4i1 &&
7579          "Unknown extract_vector_elt type");
7580 
7581   SDValue Value = N->getOperand(0);
7582 
7583   // The first part of this is like the store lowering except that we don't
7584   // need to track the chain.
7585 
7586   // The values are now known to be -1 (false) or 1 (true). To convert this
7587   // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
7588   // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
7589   Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
7590 
7591   // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to
7592   // understand how to form the extending load.
7593   SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64);
7594 
7595   Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs);
7596 
7597   // Now convert to an integer and store.
7598   Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
7599     DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32),
7600     Value);
7601 
7602   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7603   int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
7604   MachinePointerInfo PtrInfo =
7605       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
7606   EVT PtrVT = getPointerTy(DAG.getDataLayout());
7607   SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7608 
7609   SDValue StoreChain = DAG.getEntryNode();
7610   SmallVector<SDValue, 2> Ops;
7611   Ops.push_back(StoreChain);
7612   Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32));
7613   Ops.push_back(Value);
7614   Ops.push_back(FIdx);
7615 
7616   SmallVector<EVT, 2> ValueVTs;
7617   ValueVTs.push_back(MVT::Other); // chain
7618   SDVTList VTs = DAG.getVTList(ValueVTs);
7619 
7620   StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID,
7621     dl, VTs, Ops, MVT::v4i32, PtrInfo);
7622 
7623   // Extract the value requested.
7624   unsigned Offset = 4*cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
7625   SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
7626   Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
7627 
7628   SDValue IntVal = DAG.getLoad(MVT::i32, dl, StoreChain, Idx,
7629                                PtrInfo.getWithOffset(Offset),
7630                                false, false, false, 0);
7631 
7632   if (!Subtarget.useCRBits())
7633     return IntVal;
7634 
7635   return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, IntVal);
7636 }
7637 
7638 /// Lowering for QPX v4i1 loads
7639 SDValue PPCTargetLowering::LowerVectorLoad(SDValue Op,
7640                                            SelectionDAG &DAG) const {
7641   SDLoc dl(Op);
7642   LoadSDNode *LN = cast<LoadSDNode>(Op.getNode());
7643   SDValue LoadChain = LN->getChain();
7644   SDValue BasePtr = LN->getBasePtr();
7645 
7646   if (Op.getValueType() == MVT::v4f64 ||
7647       Op.getValueType() == MVT::v4f32) {
7648     EVT MemVT = LN->getMemoryVT();
7649     unsigned Alignment = LN->getAlignment();
7650 
7651     // If this load is properly aligned, then it is legal.
7652     if (Alignment >= MemVT.getStoreSize())
7653       return Op;
7654 
7655     EVT ScalarVT = Op.getValueType().getScalarType(),
7656         ScalarMemVT = MemVT.getScalarType();
7657     unsigned Stride = ScalarMemVT.getStoreSize();
7658 
7659     SmallVector<SDValue, 8> Vals, LoadChains;
7660     for (unsigned Idx = 0; Idx < 4; ++Idx) {
7661       SDValue Load;
7662       if (ScalarVT != ScalarMemVT)
7663         Load =
7664           DAG.getExtLoad(LN->getExtensionType(), dl, ScalarVT, LoadChain,
7665                          BasePtr,
7666                          LN->getPointerInfo().getWithOffset(Idx*Stride),
7667                          ScalarMemVT, LN->isVolatile(), LN->isNonTemporal(),
7668                          LN->isInvariant(), MinAlign(Alignment, Idx*Stride),
7669                          LN->getAAInfo());
7670       else
7671         Load =
7672           DAG.getLoad(ScalarVT, dl, LoadChain, BasePtr,
7673                        LN->getPointerInfo().getWithOffset(Idx*Stride),
7674                        LN->isVolatile(), LN->isNonTemporal(),
7675                        LN->isInvariant(), MinAlign(Alignment, Idx*Stride),
7676                        LN->getAAInfo());
7677 
7678       if (Idx == 0 && LN->isIndexed()) {
7679         assert(LN->getAddressingMode() == ISD::PRE_INC &&
7680                "Unknown addressing mode on vector load");
7681         Load = DAG.getIndexedLoad(Load, dl, BasePtr, LN->getOffset(),
7682                                   LN->getAddressingMode());
7683       }
7684 
7685       Vals.push_back(Load);
7686       LoadChains.push_back(Load.getValue(1));
7687 
7688       BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
7689                             DAG.getConstant(Stride, dl,
7690                                             BasePtr.getValueType()));
7691     }
7692 
7693     SDValue TF =  DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
7694     SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl,
7695                                 Op.getValueType(), Vals);
7696 
7697     if (LN->isIndexed()) {
7698       SDValue RetOps[] = { Value, Vals[0].getValue(1), TF };
7699       return DAG.getMergeValues(RetOps, dl);
7700     }
7701 
7702     SDValue RetOps[] = { Value, TF };
7703     return DAG.getMergeValues(RetOps, dl);
7704   }
7705 
7706   assert(Op.getValueType() == MVT::v4i1 && "Unknown load to lower");
7707   assert(LN->isUnindexed() && "Indexed v4i1 loads are not supported");
7708 
7709   // To lower v4i1 from a byte array, we load the byte elements of the
7710   // vector and then reuse the BUILD_VECTOR logic.
7711 
7712   SmallVector<SDValue, 4> VectElmts, VectElmtChains;
7713   for (unsigned i = 0; i < 4; ++i) {
7714     SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType());
7715     Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx);
7716 
7717     VectElmts.push_back(DAG.getExtLoad(ISD::EXTLOAD,
7718                         dl, MVT::i32, LoadChain, Idx,
7719                         LN->getPointerInfo().getWithOffset(i),
7720                         MVT::i8 /* memory type */,
7721                         LN->isVolatile(), LN->isNonTemporal(),
7722                         LN->isInvariant(),
7723                         1 /* alignment */, LN->getAAInfo()));
7724     VectElmtChains.push_back(VectElmts[i].getValue(1));
7725   }
7726 
7727   LoadChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, VectElmtChains);
7728   SDValue Value = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i1, VectElmts);
7729 
7730   SDValue RVals[] = { Value, LoadChain };
7731   return DAG.getMergeValues(RVals, dl);
7732 }
7733 
7734 /// Lowering for QPX v4i1 stores
7735 SDValue PPCTargetLowering::LowerVectorStore(SDValue Op,
7736                                             SelectionDAG &DAG) const {
7737   SDLoc dl(Op);
7738   StoreSDNode *SN = cast<StoreSDNode>(Op.getNode());
7739   SDValue StoreChain = SN->getChain();
7740   SDValue BasePtr = SN->getBasePtr();
7741   SDValue Value = SN->getValue();
7742 
7743   if (Value.getValueType() == MVT::v4f64 ||
7744       Value.getValueType() == MVT::v4f32) {
7745     EVT MemVT = SN->getMemoryVT();
7746     unsigned Alignment = SN->getAlignment();
7747 
7748     // If this store is properly aligned, then it is legal.
7749     if (Alignment >= MemVT.getStoreSize())
7750       return Op;
7751 
7752     EVT ScalarVT = Value.getValueType().getScalarType(),
7753         ScalarMemVT = MemVT.getScalarType();
7754     unsigned Stride = ScalarMemVT.getStoreSize();
7755 
7756     SmallVector<SDValue, 8> Stores;
7757     for (unsigned Idx = 0; Idx < 4; ++Idx) {
7758       SDValue Ex = DAG.getNode(
7759           ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, Value,
7760           DAG.getConstant(Idx, dl, getVectorIdxTy(DAG.getDataLayout())));
7761       SDValue Store;
7762       if (ScalarVT != ScalarMemVT)
7763         Store =
7764           DAG.getTruncStore(StoreChain, dl, Ex, BasePtr,
7765                             SN->getPointerInfo().getWithOffset(Idx*Stride),
7766                             ScalarMemVT, SN->isVolatile(), SN->isNonTemporal(),
7767                             MinAlign(Alignment, Idx*Stride), SN->getAAInfo());
7768       else
7769         Store =
7770           DAG.getStore(StoreChain, dl, Ex, BasePtr,
7771                        SN->getPointerInfo().getWithOffset(Idx*Stride),
7772                        SN->isVolatile(), SN->isNonTemporal(),
7773                        MinAlign(Alignment, Idx*Stride), SN->getAAInfo());
7774 
7775       if (Idx == 0 && SN->isIndexed()) {
7776         assert(SN->getAddressingMode() == ISD::PRE_INC &&
7777                "Unknown addressing mode on vector store");
7778         Store = DAG.getIndexedStore(Store, dl, BasePtr, SN->getOffset(),
7779                                     SN->getAddressingMode());
7780       }
7781 
7782       BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
7783                             DAG.getConstant(Stride, dl,
7784                                             BasePtr.getValueType()));
7785       Stores.push_back(Store);
7786     }
7787 
7788     SDValue TF =  DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
7789 
7790     if (SN->isIndexed()) {
7791       SDValue RetOps[] = { TF, Stores[0].getValue(1) };
7792       return DAG.getMergeValues(RetOps, dl);
7793     }
7794 
7795     return TF;
7796   }
7797 
7798   assert(SN->isUnindexed() && "Indexed v4i1 stores are not supported");
7799   assert(Value.getValueType() == MVT::v4i1 && "Unknown store to lower");
7800 
7801   // The values are now known to be -1 (false) or 1 (true). To convert this
7802   // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5).
7803   // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5
7804   Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value);
7805 
7806   // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to
7807   // understand how to form the extending load.
7808   SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64);
7809 
7810   Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs);
7811 
7812   // Now convert to an integer and store.
7813   Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64,
7814     DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32),
7815     Value);
7816 
7817   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
7818   int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
7819   MachinePointerInfo PtrInfo =
7820       MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx);
7821   EVT PtrVT = getPointerTy(DAG.getDataLayout());
7822   SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
7823 
7824   SmallVector<SDValue, 2> Ops;
7825   Ops.push_back(StoreChain);
7826   Ops.push_back(DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32));
7827   Ops.push_back(Value);
7828   Ops.push_back(FIdx);
7829 
7830   SmallVector<EVT, 2> ValueVTs;
7831   ValueVTs.push_back(MVT::Other); // chain
7832   SDVTList VTs = DAG.getVTList(ValueVTs);
7833 
7834   StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID,
7835     dl, VTs, Ops, MVT::v4i32, PtrInfo);
7836 
7837   // Move data into the byte array.
7838   SmallVector<SDValue, 4> Loads, LoadChains;
7839   for (unsigned i = 0; i < 4; ++i) {
7840     unsigned Offset = 4*i;
7841     SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType());
7842     Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx);
7843 
7844     Loads.push_back(DAG.getLoad(MVT::i32, dl, StoreChain, Idx,
7845                                    PtrInfo.getWithOffset(Offset),
7846                                    false, false, false, 0));
7847     LoadChains.push_back(Loads[i].getValue(1));
7848   }
7849 
7850   StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
7851 
7852   SmallVector<SDValue, 4> Stores;
7853   for (unsigned i = 0; i < 4; ++i) {
7854     SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType());
7855     Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx);
7856 
7857     Stores.push_back(DAG.getTruncStore(
7858         StoreChain, dl, Loads[i], Idx, SN->getPointerInfo().getWithOffset(i),
7859         MVT::i8 /* memory type */, SN->isNonTemporal(), SN->isVolatile(),
7860         1 /* alignment */, SN->getAAInfo()));
7861   }
7862 
7863   StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
7864 
7865   return StoreChain;
7866 }
7867 
7868 SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
7869   SDLoc dl(Op);
7870   if (Op.getValueType() == MVT::v4i32) {
7871     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
7872 
7873     SDValue Zero  = BuildSplatI(  0, 1, MVT::v4i32, DAG, dl);
7874     SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
7875 
7876     SDValue RHSSwap =   // = vrlw RHS, 16
7877       BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
7878 
7879     // Shrinkify inputs to v8i16.
7880     LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
7881     RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
7882     RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
7883 
7884     // Low parts multiplied together, generating 32-bit results (we ignore the
7885     // top parts).
7886     SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
7887                                         LHS, RHS, DAG, dl, MVT::v4i32);
7888 
7889     SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
7890                                       LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
7891     // Shift the high parts up 16 bits.
7892     HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
7893                               Neg16, DAG, dl);
7894     return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
7895   } else if (Op.getValueType() == MVT::v8i16) {
7896     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
7897 
7898     SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
7899 
7900     return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
7901                             LHS, RHS, Zero, DAG, dl);
7902   } else if (Op.getValueType() == MVT::v16i8) {
7903     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
7904     bool isLittleEndian = Subtarget.isLittleEndian();
7905 
7906     // Multiply the even 8-bit parts, producing 16-bit sums.
7907     SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
7908                                            LHS, RHS, DAG, dl, MVT::v8i16);
7909     EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
7910 
7911     // Multiply the odd 8-bit parts, producing 16-bit sums.
7912     SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
7913                                           LHS, RHS, DAG, dl, MVT::v8i16);
7914     OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
7915 
7916     // Merge the results together.  Because vmuleub and vmuloub are
7917     // instructions with a big-endian bias, we must reverse the
7918     // element numbering and reverse the meaning of "odd" and "even"
7919     // when generating little endian code.
7920     int Ops[16];
7921     for (unsigned i = 0; i != 8; ++i) {
7922       if (isLittleEndian) {
7923         Ops[i*2  ] = 2*i;
7924         Ops[i*2+1] = 2*i+16;
7925       } else {
7926         Ops[i*2  ] = 2*i+1;
7927         Ops[i*2+1] = 2*i+1+16;
7928       }
7929     }
7930     if (isLittleEndian)
7931       return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops);
7932     else
7933       return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
7934   } else {
7935     llvm_unreachable("Unknown mul to lower!");
7936   }
7937 }
7938 
7939 /// LowerOperation - Provide custom lowering hooks for some operations.
7940 ///
7941 SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
7942   switch (Op.getOpcode()) {
7943   default: llvm_unreachable("Wasn't expecting to be able to lower this!");
7944   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
7945   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
7946   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
7947   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
7948   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
7949   case ISD::SETCC:              return LowerSETCC(Op, DAG);
7950   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
7951   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
7952   case ISD::VASTART:
7953     return LowerVASTART(Op, DAG, Subtarget);
7954 
7955   case ISD::VAARG:
7956     return LowerVAARG(Op, DAG, Subtarget);
7957 
7958   case ISD::VACOPY:
7959     return LowerVACOPY(Op, DAG, Subtarget);
7960 
7961   case ISD::STACKRESTORE:       return LowerSTACKRESTORE(Op, DAG, Subtarget);
7962   case ISD::DYNAMIC_STACKALLOC:
7963     return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget);
7964   case ISD::GET_DYNAMIC_AREA_OFFSET: return LowerGET_DYNAMIC_AREA_OFFSET(Op, DAG, Subtarget);
7965 
7966   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
7967   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
7968 
7969   case ISD::LOAD:               return LowerLOAD(Op, DAG);
7970   case ISD::STORE:              return LowerSTORE(Op, DAG);
7971   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
7972   case ISD::SELECT_CC:          return LowerSELECT_CC(Op, DAG);
7973   case ISD::FP_TO_UINT:
7974   case ISD::FP_TO_SINT:         return LowerFP_TO_INT(Op, DAG,
7975                                                       SDLoc(Op));
7976   case ISD::UINT_TO_FP:
7977   case ISD::SINT_TO_FP:         return LowerINT_TO_FP(Op, DAG);
7978   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
7979 
7980   // Lower 64-bit shifts.
7981   case ISD::SHL_PARTS:          return LowerSHL_PARTS(Op, DAG);
7982   case ISD::SRL_PARTS:          return LowerSRL_PARTS(Op, DAG);
7983   case ISD::SRA_PARTS:          return LowerSRA_PARTS(Op, DAG);
7984 
7985   // Vector-related lowering.
7986   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
7987   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
7988   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
7989   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
7990   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op, DAG);
7991   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
7992   case ISD::MUL:                return LowerMUL(Op, DAG);
7993 
7994   // For counter-based loop handling.
7995   case ISD::INTRINSIC_W_CHAIN:  return SDValue();
7996 
7997   // Frame & Return address.
7998   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
7999   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
8000   }
8001 }
8002 
8003 void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
8004                                            SmallVectorImpl<SDValue>&Results,
8005                                            SelectionDAG &DAG) const {
8006   SDLoc dl(N);
8007   switch (N->getOpcode()) {
8008   default:
8009     llvm_unreachable("Do not know how to custom type legalize this operation!");
8010   case ISD::READCYCLECOUNTER: {
8011     SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
8012     SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0));
8013 
8014     Results.push_back(RTB);
8015     Results.push_back(RTB.getValue(1));
8016     Results.push_back(RTB.getValue(2));
8017     break;
8018   }
8019   case ISD::INTRINSIC_W_CHAIN: {
8020     if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
8021         Intrinsic::ppc_is_decremented_ctr_nonzero)
8022       break;
8023 
8024     assert(N->getValueType(0) == MVT::i1 &&
8025            "Unexpected result type for CTR decrement intrinsic");
8026     EVT SVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(),
8027                                  N->getValueType(0));
8028     SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
8029     SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
8030                                  N->getOperand(1));
8031 
8032     Results.push_back(NewInt);
8033     Results.push_back(NewInt.getValue(1));
8034     break;
8035   }
8036   case ISD::VAARG: {
8037     if (!Subtarget.isSVR4ABI() || Subtarget.isPPC64())
8038       return;
8039 
8040     EVT VT = N->getValueType(0);
8041 
8042     if (VT == MVT::i64) {
8043       SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget);
8044 
8045       Results.push_back(NewNode);
8046       Results.push_back(NewNode.getValue(1));
8047     }
8048     return;
8049   }
8050   case ISD::FP_ROUND_INREG: {
8051     assert(N->getValueType(0) == MVT::ppcf128);
8052     assert(N->getOperand(0).getValueType() == MVT::ppcf128);
8053     SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
8054                              MVT::f64, N->getOperand(0),
8055                              DAG.getIntPtrConstant(0, dl));
8056     SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
8057                              MVT::f64, N->getOperand(0),
8058                              DAG.getIntPtrConstant(1, dl));
8059 
8060     // Add the two halves of the long double in round-to-zero mode.
8061     SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
8062 
8063     // We know the low half is about to be thrown away, so just use something
8064     // convenient.
8065     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
8066                                 FPreg, FPreg));
8067     return;
8068   }
8069   case ISD::FP_TO_SINT:
8070   case ISD::FP_TO_UINT:
8071     // LowerFP_TO_INT() can only handle f32 and f64.
8072     if (N->getOperand(0).getValueType() == MVT::ppcf128)
8073       return;
8074     Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
8075     return;
8076   }
8077 }
8078 
8079 //===----------------------------------------------------------------------===//
8080 //  Other Lowering Code
8081 //===----------------------------------------------------------------------===//
8082 
8083 static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) {
8084   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
8085   Function *Func = Intrinsic::getDeclaration(M, Id);
8086   return Builder.CreateCall(Func, {});
8087 }
8088 
8089 // The mappings for emitLeading/TrailingFence is taken from
8090 // http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
8091 Instruction* PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
8092                                          AtomicOrdering Ord, bool IsStore,
8093                                          bool IsLoad) const {
8094   if (Ord == SequentiallyConsistent)
8095     return callIntrinsic(Builder, Intrinsic::ppc_sync);
8096   if (isAtLeastRelease(Ord))
8097     return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
8098   return nullptr;
8099 }
8100 
8101 Instruction* PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
8102                                           AtomicOrdering Ord, bool IsStore,
8103                                           bool IsLoad) const {
8104   if (IsLoad && isAtLeastAcquire(Ord))
8105     return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
8106   // FIXME: this is too conservative, a dependent branch + isync is enough.
8107   // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and
8108   // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
8109   // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification.
8110   return nullptr;
8111 }
8112 
8113 MachineBasicBlock *
8114 PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
8115                                     unsigned AtomicSize,
8116                                     unsigned BinOpcode) const {
8117   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
8118   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8119 
8120   auto LoadMnemonic = PPC::LDARX;
8121   auto StoreMnemonic = PPC::STDCX;
8122   switch (AtomicSize) {
8123   default:
8124     llvm_unreachable("Unexpected size of atomic entity");
8125   case 1:
8126     LoadMnemonic = PPC::LBARX;
8127     StoreMnemonic = PPC::STBCX;
8128     assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4");
8129     break;
8130   case 2:
8131     LoadMnemonic = PPC::LHARX;
8132     StoreMnemonic = PPC::STHCX;
8133     assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4");
8134     break;
8135   case 4:
8136     LoadMnemonic = PPC::LWARX;
8137     StoreMnemonic = PPC::STWCX;
8138     break;
8139   case 8:
8140     LoadMnemonic = PPC::LDARX;
8141     StoreMnemonic = PPC::STDCX;
8142     break;
8143   }
8144 
8145   const BasicBlock *LLVM_BB = BB->getBasicBlock();
8146   MachineFunction *F = BB->getParent();
8147   MachineFunction::iterator It = ++BB->getIterator();
8148 
8149   unsigned dest = MI->getOperand(0).getReg();
8150   unsigned ptrA = MI->getOperand(1).getReg();
8151   unsigned ptrB = MI->getOperand(2).getReg();
8152   unsigned incr = MI->getOperand(3).getReg();
8153   DebugLoc dl = MI->getDebugLoc();
8154 
8155   MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
8156   MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8157   F->insert(It, loopMBB);
8158   F->insert(It, exitMBB);
8159   exitMBB->splice(exitMBB->begin(), BB,
8160                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
8161   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8162 
8163   MachineRegisterInfo &RegInfo = F->getRegInfo();
8164   unsigned TmpReg = (!BinOpcode) ? incr :
8165     RegInfo.createVirtualRegister( AtomicSize == 8 ? &PPC::G8RCRegClass
8166                                            : &PPC::GPRCRegClass);
8167 
8168   //  thisMBB:
8169   //   ...
8170   //   fallthrough --> loopMBB
8171   BB->addSuccessor(loopMBB);
8172 
8173   //  loopMBB:
8174   //   l[wd]arx dest, ptr
8175   //   add r0, dest, incr
8176   //   st[wd]cx. r0, ptr
8177   //   bne- loopMBB
8178   //   fallthrough --> exitMBB
8179   BB = loopMBB;
8180   BuildMI(BB, dl, TII->get(LoadMnemonic), dest)
8181     .addReg(ptrA).addReg(ptrB);
8182   if (BinOpcode)
8183     BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
8184   BuildMI(BB, dl, TII->get(StoreMnemonic))
8185     .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
8186   BuildMI(BB, dl, TII->get(PPC::BCC))
8187     .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
8188   BB->addSuccessor(loopMBB);
8189   BB->addSuccessor(exitMBB);
8190 
8191   //  exitMBB:
8192   //   ...
8193   BB = exitMBB;
8194   return BB;
8195 }
8196 
8197 MachineBasicBlock *
8198 PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
8199                                             MachineBasicBlock *BB,
8200                                             bool is8bit,    // operation
8201                                             unsigned BinOpcode) const {
8202   // If we support part-word atomic mnemonics, just use them
8203   if (Subtarget.hasPartwordAtomics())
8204     return EmitAtomicBinary(MI, BB, is8bit ? 1 : 2, BinOpcode);
8205 
8206   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
8207   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8208   // In 64 bit mode we have to use 64 bits for addresses, even though the
8209   // lwarx/stwcx are 32 bits.  With the 32-bit atomics we can use address
8210   // registers without caring whether they're 32 or 64, but here we're
8211   // doing actual arithmetic on the addresses.
8212   bool is64bit = Subtarget.isPPC64();
8213   unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
8214 
8215   const BasicBlock *LLVM_BB = BB->getBasicBlock();
8216   MachineFunction *F = BB->getParent();
8217   MachineFunction::iterator It = ++BB->getIterator();
8218 
8219   unsigned dest = MI->getOperand(0).getReg();
8220   unsigned ptrA = MI->getOperand(1).getReg();
8221   unsigned ptrB = MI->getOperand(2).getReg();
8222   unsigned incr = MI->getOperand(3).getReg();
8223   DebugLoc dl = MI->getDebugLoc();
8224 
8225   MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
8226   MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8227   F->insert(It, loopMBB);
8228   F->insert(It, exitMBB);
8229   exitMBB->splice(exitMBB->begin(), BB,
8230                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
8231   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8232 
8233   MachineRegisterInfo &RegInfo = F->getRegInfo();
8234   const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
8235                                           : &PPC::GPRCRegClass;
8236   unsigned PtrReg = RegInfo.createVirtualRegister(RC);
8237   unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
8238   unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
8239   unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
8240   unsigned MaskReg = RegInfo.createVirtualRegister(RC);
8241   unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
8242   unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
8243   unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
8244   unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
8245   unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
8246   unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
8247   unsigned Ptr1Reg;
8248   unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
8249 
8250   //  thisMBB:
8251   //   ...
8252   //   fallthrough --> loopMBB
8253   BB->addSuccessor(loopMBB);
8254 
8255   // The 4-byte load must be aligned, while a char or short may be
8256   // anywhere in the word.  Hence all this nasty bookkeeping code.
8257   //   add ptr1, ptrA, ptrB [copy if ptrA==0]
8258   //   rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
8259   //   xori shift, shift1, 24 [16]
8260   //   rlwinm ptr, ptr1, 0, 0, 29
8261   //   slw incr2, incr, shift
8262   //   li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
8263   //   slw mask, mask2, shift
8264   //  loopMBB:
8265   //   lwarx tmpDest, ptr
8266   //   add tmp, tmpDest, incr2
8267   //   andc tmp2, tmpDest, mask
8268   //   and tmp3, tmp, mask
8269   //   or tmp4, tmp3, tmp2
8270   //   stwcx. tmp4, ptr
8271   //   bne- loopMBB
8272   //   fallthrough --> exitMBB
8273   //   srw dest, tmpDest, shift
8274   if (ptrA != ZeroReg) {
8275     Ptr1Reg = RegInfo.createVirtualRegister(RC);
8276     BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
8277       .addReg(ptrA).addReg(ptrB);
8278   } else {
8279     Ptr1Reg = ptrB;
8280   }
8281   BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
8282       .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
8283   BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
8284       .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
8285   if (is64bit)
8286     BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
8287       .addReg(Ptr1Reg).addImm(0).addImm(61);
8288   else
8289     BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
8290       .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
8291   BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
8292       .addReg(incr).addReg(ShiftReg);
8293   if (is8bit)
8294     BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
8295   else {
8296     BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
8297     BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
8298   }
8299   BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
8300       .addReg(Mask2Reg).addReg(ShiftReg);
8301 
8302   BB = loopMBB;
8303   BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
8304     .addReg(ZeroReg).addReg(PtrReg);
8305   if (BinOpcode)
8306     BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
8307       .addReg(Incr2Reg).addReg(TmpDestReg);
8308   BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
8309     .addReg(TmpDestReg).addReg(MaskReg);
8310   BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
8311     .addReg(TmpReg).addReg(MaskReg);
8312   BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
8313     .addReg(Tmp3Reg).addReg(Tmp2Reg);
8314   BuildMI(BB, dl, TII->get(PPC::STWCX))
8315     .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
8316   BuildMI(BB, dl, TII->get(PPC::BCC))
8317     .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
8318   BB->addSuccessor(loopMBB);
8319   BB->addSuccessor(exitMBB);
8320 
8321   //  exitMBB:
8322   //   ...
8323   BB = exitMBB;
8324   BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
8325     .addReg(ShiftReg);
8326   return BB;
8327 }
8328 
8329 llvm::MachineBasicBlock*
8330 PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
8331                                     MachineBasicBlock *MBB) const {
8332   DebugLoc DL = MI->getDebugLoc();
8333   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8334 
8335   MachineFunction *MF = MBB->getParent();
8336   MachineRegisterInfo &MRI = MF->getRegInfo();
8337 
8338   const BasicBlock *BB = MBB->getBasicBlock();
8339   MachineFunction::iterator I = ++MBB->getIterator();
8340 
8341   // Memory Reference
8342   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
8343   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
8344 
8345   unsigned DstReg = MI->getOperand(0).getReg();
8346   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
8347   assert(RC->hasType(MVT::i32) && "Invalid destination!");
8348   unsigned mainDstReg = MRI.createVirtualRegister(RC);
8349   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
8350 
8351   MVT PVT = getPointerTy(MF->getDataLayout());
8352   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
8353          "Invalid Pointer Size!");
8354   // For v = setjmp(buf), we generate
8355   //
8356   // thisMBB:
8357   //  SjLjSetup mainMBB
8358   //  bl mainMBB
8359   //  v_restore = 1
8360   //  b sinkMBB
8361   //
8362   // mainMBB:
8363   //  buf[LabelOffset] = LR
8364   //  v_main = 0
8365   //
8366   // sinkMBB:
8367   //  v = phi(main, restore)
8368   //
8369 
8370   MachineBasicBlock *thisMBB = MBB;
8371   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
8372   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
8373   MF->insert(I, mainMBB);
8374   MF->insert(I, sinkMBB);
8375 
8376   MachineInstrBuilder MIB;
8377 
8378   // Transfer the remainder of BB and its successor edges to sinkMBB.
8379   sinkMBB->splice(sinkMBB->begin(), MBB,
8380                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
8381   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
8382 
8383   // Note that the structure of the jmp_buf used here is not compatible
8384   // with that used by libc, and is not designed to be. Specifically, it
8385   // stores only those 'reserved' registers that LLVM does not otherwise
8386   // understand how to spill. Also, by convention, by the time this
8387   // intrinsic is called, Clang has already stored the frame address in the
8388   // first slot of the buffer and stack address in the third. Following the
8389   // X86 target code, we'll store the jump address in the second slot. We also
8390   // need to save the TOC pointer (R2) to handle jumps between shared
8391   // libraries, and that will be stored in the fourth slot. The thread
8392   // identifier (R13) is not affected.
8393 
8394   // thisMBB:
8395   const int64_t LabelOffset = 1 * PVT.getStoreSize();
8396   const int64_t TOCOffset   = 3 * PVT.getStoreSize();
8397   const int64_t BPOffset    = 4 * PVT.getStoreSize();
8398 
8399   // Prepare IP either in reg.
8400   const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
8401   unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
8402   unsigned BufReg = MI->getOperand(1).getReg();
8403 
8404   if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) {
8405     setUsesTOCBasePtr(*MBB->getParent());
8406     MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
8407             .addReg(PPC::X2)
8408             .addImm(TOCOffset)
8409             .addReg(BufReg);
8410     MIB.setMemRefs(MMOBegin, MMOEnd);
8411   }
8412 
8413   // Naked functions never have a base pointer, and so we use r1. For all
8414   // other functions, this decision must be delayed until during PEI.
8415   unsigned BaseReg;
8416   if (MF->getFunction()->hasFnAttribute(Attribute::Naked))
8417     BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
8418   else
8419     BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP;
8420 
8421   MIB = BuildMI(*thisMBB, MI, DL,
8422                 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW))
8423             .addReg(BaseReg)
8424             .addImm(BPOffset)
8425             .addReg(BufReg);
8426   MIB.setMemRefs(MMOBegin, MMOEnd);
8427 
8428   // Setup
8429   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
8430   const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo();
8431   MIB.addRegMask(TRI->getNoPreservedMask());
8432 
8433   BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
8434 
8435   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
8436           .addMBB(mainMBB);
8437   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
8438 
8439   thisMBB->addSuccessor(mainMBB, BranchProbability::getZero());
8440   thisMBB->addSuccessor(sinkMBB, BranchProbability::getOne());
8441 
8442   // mainMBB:
8443   //  mainDstReg = 0
8444   MIB =
8445       BuildMI(mainMBB, DL,
8446               TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
8447 
8448   // Store IP
8449   if (Subtarget.isPPC64()) {
8450     MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
8451             .addReg(LabelReg)
8452             .addImm(LabelOffset)
8453             .addReg(BufReg);
8454   } else {
8455     MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
8456             .addReg(LabelReg)
8457             .addImm(LabelOffset)
8458             .addReg(BufReg);
8459   }
8460 
8461   MIB.setMemRefs(MMOBegin, MMOEnd);
8462 
8463   BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
8464   mainMBB->addSuccessor(sinkMBB);
8465 
8466   // sinkMBB:
8467   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
8468           TII->get(PPC::PHI), DstReg)
8469     .addReg(mainDstReg).addMBB(mainMBB)
8470     .addReg(restoreDstReg).addMBB(thisMBB);
8471 
8472   MI->eraseFromParent();
8473   return sinkMBB;
8474 }
8475 
8476 MachineBasicBlock *
8477 PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
8478                                      MachineBasicBlock *MBB) const {
8479   DebugLoc DL = MI->getDebugLoc();
8480   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8481 
8482   MachineFunction *MF = MBB->getParent();
8483   MachineRegisterInfo &MRI = MF->getRegInfo();
8484 
8485   // Memory Reference
8486   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
8487   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
8488 
8489   MVT PVT = getPointerTy(MF->getDataLayout());
8490   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
8491          "Invalid Pointer Size!");
8492 
8493   const TargetRegisterClass *RC =
8494     (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
8495   unsigned Tmp = MRI.createVirtualRegister(RC);
8496   // Since FP is only updated here but NOT referenced, it's treated as GPR.
8497   unsigned FP  = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
8498   unsigned SP  = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
8499   unsigned BP =
8500       (PVT == MVT::i64)
8501           ? PPC::X30
8502           : (Subtarget.isSVR4ABI() &&
8503                      MF->getTarget().getRelocationModel() == Reloc::PIC_
8504                  ? PPC::R29
8505                  : PPC::R30);
8506 
8507   MachineInstrBuilder MIB;
8508 
8509   const int64_t LabelOffset = 1 * PVT.getStoreSize();
8510   const int64_t SPOffset    = 2 * PVT.getStoreSize();
8511   const int64_t TOCOffset   = 3 * PVT.getStoreSize();
8512   const int64_t BPOffset    = 4 * PVT.getStoreSize();
8513 
8514   unsigned BufReg = MI->getOperand(0).getReg();
8515 
8516   // Reload FP (the jumped-to function may not have had a
8517   // frame pointer, and if so, then its r31 will be restored
8518   // as necessary).
8519   if (PVT == MVT::i64) {
8520     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
8521             .addImm(0)
8522             .addReg(BufReg);
8523   } else {
8524     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
8525             .addImm(0)
8526             .addReg(BufReg);
8527   }
8528   MIB.setMemRefs(MMOBegin, MMOEnd);
8529 
8530   // Reload IP
8531   if (PVT == MVT::i64) {
8532     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
8533             .addImm(LabelOffset)
8534             .addReg(BufReg);
8535   } else {
8536     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
8537             .addImm(LabelOffset)
8538             .addReg(BufReg);
8539   }
8540   MIB.setMemRefs(MMOBegin, MMOEnd);
8541 
8542   // Reload SP
8543   if (PVT == MVT::i64) {
8544     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
8545             .addImm(SPOffset)
8546             .addReg(BufReg);
8547   } else {
8548     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
8549             .addImm(SPOffset)
8550             .addReg(BufReg);
8551   }
8552   MIB.setMemRefs(MMOBegin, MMOEnd);
8553 
8554   // Reload BP
8555   if (PVT == MVT::i64) {
8556     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
8557             .addImm(BPOffset)
8558             .addReg(BufReg);
8559   } else {
8560     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
8561             .addImm(BPOffset)
8562             .addReg(BufReg);
8563   }
8564   MIB.setMemRefs(MMOBegin, MMOEnd);
8565 
8566   // Reload TOC
8567   if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) {
8568     setUsesTOCBasePtr(*MBB->getParent());
8569     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
8570             .addImm(TOCOffset)
8571             .addReg(BufReg);
8572 
8573     MIB.setMemRefs(MMOBegin, MMOEnd);
8574   }
8575 
8576   // Jump
8577   BuildMI(*MBB, MI, DL,
8578           TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
8579   BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
8580 
8581   MI->eraseFromParent();
8582   return MBB;
8583 }
8584 
8585 MachineBasicBlock *
8586 PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
8587                                                MachineBasicBlock *BB) const {
8588   if (MI->getOpcode() == TargetOpcode::STACKMAP ||
8589       MI->getOpcode() == TargetOpcode::PATCHPOINT) {
8590     if (Subtarget.isPPC64() && Subtarget.isSVR4ABI() &&
8591         MI->getOpcode() == TargetOpcode::PATCHPOINT) {
8592       // Call lowering should have added an r2 operand to indicate a dependence
8593       // on the TOC base pointer value. It can't however, because there is no
8594       // way to mark the dependence as implicit there, and so the stackmap code
8595       // will confuse it with a regular operand. Instead, add the dependence
8596       // here.
8597       setUsesTOCBasePtr(*BB->getParent());
8598       MI->addOperand(MachineOperand::CreateReg(PPC::X2, false, true));
8599     }
8600 
8601     return emitPatchPoint(MI, BB);
8602   }
8603 
8604   if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
8605       MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
8606     return emitEHSjLjSetJmp(MI, BB);
8607   } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
8608              MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
8609     return emitEHSjLjLongJmp(MI, BB);
8610   }
8611 
8612   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
8613 
8614   // To "insert" these instructions we actually have to insert their
8615   // control-flow patterns.
8616   const BasicBlock *LLVM_BB = BB->getBasicBlock();
8617   MachineFunction::iterator It = ++BB->getIterator();
8618 
8619   MachineFunction *F = BB->getParent();
8620 
8621   if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8622                               MI->getOpcode() == PPC::SELECT_CC_I8 ||
8623                               MI->getOpcode() == PPC::SELECT_I4 ||
8624                               MI->getOpcode() == PPC::SELECT_I8)) {
8625     SmallVector<MachineOperand, 2> Cond;
8626     if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8627         MI->getOpcode() == PPC::SELECT_CC_I8)
8628       Cond.push_back(MI->getOperand(4));
8629     else
8630       Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
8631     Cond.push_back(MI->getOperand(1));
8632 
8633     DebugLoc dl = MI->getDebugLoc();
8634     TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
8635                       Cond, MI->getOperand(2).getReg(),
8636                       MI->getOperand(3).getReg());
8637   } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
8638              MI->getOpcode() == PPC::SELECT_CC_I8 ||
8639              MI->getOpcode() == PPC::SELECT_CC_F4 ||
8640              MI->getOpcode() == PPC::SELECT_CC_F8 ||
8641              MI->getOpcode() == PPC::SELECT_CC_QFRC ||
8642              MI->getOpcode() == PPC::SELECT_CC_QSRC ||
8643              MI->getOpcode() == PPC::SELECT_CC_QBRC ||
8644              MI->getOpcode() == PPC::SELECT_CC_VRRC ||
8645              MI->getOpcode() == PPC::SELECT_CC_VSFRC ||
8646              MI->getOpcode() == PPC::SELECT_CC_VSSRC ||
8647              MI->getOpcode() == PPC::SELECT_CC_VSRC ||
8648              MI->getOpcode() == PPC::SELECT_I4 ||
8649              MI->getOpcode() == PPC::SELECT_I8 ||
8650              MI->getOpcode() == PPC::SELECT_F4 ||
8651              MI->getOpcode() == PPC::SELECT_F8 ||
8652              MI->getOpcode() == PPC::SELECT_QFRC ||
8653              MI->getOpcode() == PPC::SELECT_QSRC ||
8654              MI->getOpcode() == PPC::SELECT_QBRC ||
8655              MI->getOpcode() == PPC::SELECT_VRRC ||
8656              MI->getOpcode() == PPC::SELECT_VSFRC ||
8657              MI->getOpcode() == PPC::SELECT_VSSRC ||
8658              MI->getOpcode() == PPC::SELECT_VSRC) {
8659     // The incoming instruction knows the destination vreg to set, the
8660     // condition code register to branch on, the true/false values to
8661     // select between, and a branch opcode to use.
8662 
8663     //  thisMBB:
8664     //  ...
8665     //   TrueVal = ...
8666     //   cmpTY ccX, r1, r2
8667     //   bCC copy1MBB
8668     //   fallthrough --> copy0MBB
8669     MachineBasicBlock *thisMBB = BB;
8670     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
8671     MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
8672     DebugLoc dl = MI->getDebugLoc();
8673     F->insert(It, copy0MBB);
8674     F->insert(It, sinkMBB);
8675 
8676     // Transfer the remainder of BB and its successor edges to sinkMBB.
8677     sinkMBB->splice(sinkMBB->begin(), BB,
8678                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8679     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
8680 
8681     // Next, add the true and fallthrough blocks as its successors.
8682     BB->addSuccessor(copy0MBB);
8683     BB->addSuccessor(sinkMBB);
8684 
8685     if (MI->getOpcode() == PPC::SELECT_I4 ||
8686         MI->getOpcode() == PPC::SELECT_I8 ||
8687         MI->getOpcode() == PPC::SELECT_F4 ||
8688         MI->getOpcode() == PPC::SELECT_F8 ||
8689         MI->getOpcode() == PPC::SELECT_QFRC ||
8690         MI->getOpcode() == PPC::SELECT_QSRC ||
8691         MI->getOpcode() == PPC::SELECT_QBRC ||
8692         MI->getOpcode() == PPC::SELECT_VRRC ||
8693         MI->getOpcode() == PPC::SELECT_VSFRC ||
8694         MI->getOpcode() == PPC::SELECT_VSSRC ||
8695         MI->getOpcode() == PPC::SELECT_VSRC) {
8696       BuildMI(BB, dl, TII->get(PPC::BC))
8697         .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
8698     } else {
8699       unsigned SelectPred = MI->getOperand(4).getImm();
8700       BuildMI(BB, dl, TII->get(PPC::BCC))
8701         .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
8702     }
8703 
8704     //  copy0MBB:
8705     //   %FalseValue = ...
8706     //   # fallthrough to sinkMBB
8707     BB = copy0MBB;
8708 
8709     // Update machine-CFG edges
8710     BB->addSuccessor(sinkMBB);
8711 
8712     //  sinkMBB:
8713     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
8714     //  ...
8715     BB = sinkMBB;
8716     BuildMI(*BB, BB->begin(), dl,
8717             TII->get(PPC::PHI), MI->getOperand(0).getReg())
8718       .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
8719       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
8720   } else if (MI->getOpcode() == PPC::ReadTB) {
8721     // To read the 64-bit time-base register on a 32-bit target, we read the
8722     // two halves. Should the counter have wrapped while it was being read, we
8723     // need to try again.
8724     // ...
8725     // readLoop:
8726     // mfspr Rx,TBU # load from TBU
8727     // mfspr Ry,TB  # load from TB
8728     // mfspr Rz,TBU # load from TBU
8729     // cmpw crX,Rx,Rz # check if 'old'='new'
8730     // bne readLoop   # branch if they're not equal
8731     // ...
8732 
8733     MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB);
8734     MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
8735     DebugLoc dl = MI->getDebugLoc();
8736     F->insert(It, readMBB);
8737     F->insert(It, sinkMBB);
8738 
8739     // Transfer the remainder of BB and its successor edges to sinkMBB.
8740     sinkMBB->splice(sinkMBB->begin(), BB,
8741                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8742     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
8743 
8744     BB->addSuccessor(readMBB);
8745     BB = readMBB;
8746 
8747     MachineRegisterInfo &RegInfo = F->getRegInfo();
8748     unsigned ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
8749     unsigned LoReg = MI->getOperand(0).getReg();
8750     unsigned HiReg = MI->getOperand(1).getReg();
8751 
8752     BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269);
8753     BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268);
8754     BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269);
8755 
8756     unsigned CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
8757 
8758     BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg)
8759       .addReg(HiReg).addReg(ReadAgainReg);
8760     BuildMI(BB, dl, TII->get(PPC::BCC))
8761       .addImm(PPC::PRED_NE).addReg(CmpReg).addMBB(readMBB);
8762 
8763     BB->addSuccessor(readMBB);
8764     BB->addSuccessor(sinkMBB);
8765   }
8766   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
8767     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
8768   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
8769     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
8770   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
8771     BB = EmitAtomicBinary(MI, BB, 4, PPC::ADD4);
8772   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
8773     BB = EmitAtomicBinary(MI, BB, 8, PPC::ADD8);
8774 
8775   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
8776     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
8777   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
8778     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
8779   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
8780     BB = EmitAtomicBinary(MI, BB, 4, PPC::AND);
8781   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
8782     BB = EmitAtomicBinary(MI, BB, 8, PPC::AND8);
8783 
8784   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
8785     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
8786   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
8787     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
8788   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
8789     BB = EmitAtomicBinary(MI, BB, 4, PPC::OR);
8790   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
8791     BB = EmitAtomicBinary(MI, BB, 8, PPC::OR8);
8792 
8793   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
8794     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
8795   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
8796     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
8797   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
8798     BB = EmitAtomicBinary(MI, BB, 4, PPC::XOR);
8799   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
8800     BB = EmitAtomicBinary(MI, BB, 8, PPC::XOR8);
8801 
8802   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
8803     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND);
8804   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
8805     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND);
8806   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
8807     BB = EmitAtomicBinary(MI, BB, 4, PPC::NAND);
8808   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
8809     BB = EmitAtomicBinary(MI, BB, 8, PPC::NAND8);
8810 
8811   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
8812     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
8813   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
8814     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
8815   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
8816     BB = EmitAtomicBinary(MI, BB, 4, PPC::SUBF);
8817   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
8818     BB = EmitAtomicBinary(MI, BB, 8, PPC::SUBF8);
8819 
8820   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
8821     BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
8822   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
8823     BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
8824   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
8825     BB = EmitAtomicBinary(MI, BB, 4, 0);
8826   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
8827     BB = EmitAtomicBinary(MI, BB, 8, 0);
8828 
8829   else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
8830            MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64 ||
8831            (Subtarget.hasPartwordAtomics() &&
8832             MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8) ||
8833            (Subtarget.hasPartwordAtomics() &&
8834             MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16)) {
8835     bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
8836 
8837     auto LoadMnemonic = PPC::LDARX;
8838     auto StoreMnemonic = PPC::STDCX;
8839     switch(MI->getOpcode()) {
8840     default:
8841       llvm_unreachable("Compare and swap of unknown size");
8842     case PPC::ATOMIC_CMP_SWAP_I8:
8843       LoadMnemonic = PPC::LBARX;
8844       StoreMnemonic = PPC::STBCX;
8845       assert(Subtarget.hasPartwordAtomics() && "No support partword atomics.");
8846       break;
8847     case PPC::ATOMIC_CMP_SWAP_I16:
8848       LoadMnemonic = PPC::LHARX;
8849       StoreMnemonic = PPC::STHCX;
8850       assert(Subtarget.hasPartwordAtomics() && "No support partword atomics.");
8851       break;
8852     case PPC::ATOMIC_CMP_SWAP_I32:
8853       LoadMnemonic = PPC::LWARX;
8854       StoreMnemonic = PPC::STWCX;
8855       break;
8856     case PPC::ATOMIC_CMP_SWAP_I64:
8857       LoadMnemonic = PPC::LDARX;
8858       StoreMnemonic = PPC::STDCX;
8859       break;
8860     }
8861     unsigned dest   = MI->getOperand(0).getReg();
8862     unsigned ptrA   = MI->getOperand(1).getReg();
8863     unsigned ptrB   = MI->getOperand(2).getReg();
8864     unsigned oldval = MI->getOperand(3).getReg();
8865     unsigned newval = MI->getOperand(4).getReg();
8866     DebugLoc dl     = MI->getDebugLoc();
8867 
8868     MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
8869     MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
8870     MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
8871     MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8872     F->insert(It, loop1MBB);
8873     F->insert(It, loop2MBB);
8874     F->insert(It, midMBB);
8875     F->insert(It, exitMBB);
8876     exitMBB->splice(exitMBB->begin(), BB,
8877                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8878     exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8879 
8880     //  thisMBB:
8881     //   ...
8882     //   fallthrough --> loopMBB
8883     BB->addSuccessor(loop1MBB);
8884 
8885     // loop1MBB:
8886     //   l[bhwd]arx dest, ptr
8887     //   cmp[wd] dest, oldval
8888     //   bne- midMBB
8889     // loop2MBB:
8890     //   st[bhwd]cx. newval, ptr
8891     //   bne- loopMBB
8892     //   b exitBB
8893     // midMBB:
8894     //   st[bhwd]cx. dest, ptr
8895     // exitBB:
8896     BB = loop1MBB;
8897     BuildMI(BB, dl, TII->get(LoadMnemonic), dest)
8898       .addReg(ptrA).addReg(ptrB);
8899     BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
8900       .addReg(oldval).addReg(dest);
8901     BuildMI(BB, dl, TII->get(PPC::BCC))
8902       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
8903     BB->addSuccessor(loop2MBB);
8904     BB->addSuccessor(midMBB);
8905 
8906     BB = loop2MBB;
8907     BuildMI(BB, dl, TII->get(StoreMnemonic))
8908       .addReg(newval).addReg(ptrA).addReg(ptrB);
8909     BuildMI(BB, dl, TII->get(PPC::BCC))
8910       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
8911     BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
8912     BB->addSuccessor(loop1MBB);
8913     BB->addSuccessor(exitMBB);
8914 
8915     BB = midMBB;
8916     BuildMI(BB, dl, TII->get(StoreMnemonic))
8917       .addReg(dest).addReg(ptrA).addReg(ptrB);
8918     BB->addSuccessor(exitMBB);
8919 
8920     //  exitMBB:
8921     //   ...
8922     BB = exitMBB;
8923   } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
8924              MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
8925     // We must use 64-bit registers for addresses when targeting 64-bit,
8926     // since we're actually doing arithmetic on them.  Other registers
8927     // can be 32-bit.
8928     bool is64bit = Subtarget.isPPC64();
8929     bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
8930 
8931     unsigned dest   = MI->getOperand(0).getReg();
8932     unsigned ptrA   = MI->getOperand(1).getReg();
8933     unsigned ptrB   = MI->getOperand(2).getReg();
8934     unsigned oldval = MI->getOperand(3).getReg();
8935     unsigned newval = MI->getOperand(4).getReg();
8936     DebugLoc dl     = MI->getDebugLoc();
8937 
8938     MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
8939     MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
8940     MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
8941     MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
8942     F->insert(It, loop1MBB);
8943     F->insert(It, loop2MBB);
8944     F->insert(It, midMBB);
8945     F->insert(It, exitMBB);
8946     exitMBB->splice(exitMBB->begin(), BB,
8947                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
8948     exitMBB->transferSuccessorsAndUpdatePHIs(BB);
8949 
8950     MachineRegisterInfo &RegInfo = F->getRegInfo();
8951     const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
8952                                             : &PPC::GPRCRegClass;
8953     unsigned PtrReg = RegInfo.createVirtualRegister(RC);
8954     unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
8955     unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
8956     unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
8957     unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
8958     unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
8959     unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
8960     unsigned MaskReg = RegInfo.createVirtualRegister(RC);
8961     unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
8962     unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
8963     unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
8964     unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
8965     unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
8966     unsigned Ptr1Reg;
8967     unsigned TmpReg = RegInfo.createVirtualRegister(RC);
8968     unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
8969     //  thisMBB:
8970     //   ...
8971     //   fallthrough --> loopMBB
8972     BB->addSuccessor(loop1MBB);
8973 
8974     // The 4-byte load must be aligned, while a char or short may be
8975     // anywhere in the word.  Hence all this nasty bookkeeping code.
8976     //   add ptr1, ptrA, ptrB [copy if ptrA==0]
8977     //   rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
8978     //   xori shift, shift1, 24 [16]
8979     //   rlwinm ptr, ptr1, 0, 0, 29
8980     //   slw newval2, newval, shift
8981     //   slw oldval2, oldval,shift
8982     //   li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
8983     //   slw mask, mask2, shift
8984     //   and newval3, newval2, mask
8985     //   and oldval3, oldval2, mask
8986     // loop1MBB:
8987     //   lwarx tmpDest, ptr
8988     //   and tmp, tmpDest, mask
8989     //   cmpw tmp, oldval3
8990     //   bne- midMBB
8991     // loop2MBB:
8992     //   andc tmp2, tmpDest, mask
8993     //   or tmp4, tmp2, newval3
8994     //   stwcx. tmp4, ptr
8995     //   bne- loop1MBB
8996     //   b exitBB
8997     // midMBB:
8998     //   stwcx. tmpDest, ptr
8999     // exitBB:
9000     //   srw dest, tmpDest, shift
9001     if (ptrA != ZeroReg) {
9002       Ptr1Reg = RegInfo.createVirtualRegister(RC);
9003       BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
9004         .addReg(ptrA).addReg(ptrB);
9005     } else {
9006       Ptr1Reg = ptrB;
9007     }
9008     BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
9009         .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
9010     BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
9011         .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
9012     if (is64bit)
9013       BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
9014         .addReg(Ptr1Reg).addImm(0).addImm(61);
9015     else
9016       BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
9017         .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
9018     BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
9019         .addReg(newval).addReg(ShiftReg);
9020     BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
9021         .addReg(oldval).addReg(ShiftReg);
9022     if (is8bit)
9023       BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
9024     else {
9025       BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
9026       BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
9027         .addReg(Mask3Reg).addImm(65535);
9028     }
9029     BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
9030         .addReg(Mask2Reg).addReg(ShiftReg);
9031     BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
9032         .addReg(NewVal2Reg).addReg(MaskReg);
9033     BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
9034         .addReg(OldVal2Reg).addReg(MaskReg);
9035 
9036     BB = loop1MBB;
9037     BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
9038         .addReg(ZeroReg).addReg(PtrReg);
9039     BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
9040         .addReg(TmpDestReg).addReg(MaskReg);
9041     BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
9042         .addReg(TmpReg).addReg(OldVal3Reg);
9043     BuildMI(BB, dl, TII->get(PPC::BCC))
9044         .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
9045     BB->addSuccessor(loop2MBB);
9046     BB->addSuccessor(midMBB);
9047 
9048     BB = loop2MBB;
9049     BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
9050         .addReg(TmpDestReg).addReg(MaskReg);
9051     BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
9052         .addReg(Tmp2Reg).addReg(NewVal3Reg);
9053     BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
9054         .addReg(ZeroReg).addReg(PtrReg);
9055     BuildMI(BB, dl, TII->get(PPC::BCC))
9056       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
9057     BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
9058     BB->addSuccessor(loop1MBB);
9059     BB->addSuccessor(exitMBB);
9060 
9061     BB = midMBB;
9062     BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
9063       .addReg(ZeroReg).addReg(PtrReg);
9064     BB->addSuccessor(exitMBB);
9065 
9066     //  exitMBB:
9067     //   ...
9068     BB = exitMBB;
9069     BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
9070       .addReg(ShiftReg);
9071   } else if (MI->getOpcode() == PPC::FADDrtz) {
9072     // This pseudo performs an FADD with rounding mode temporarily forced
9073     // to round-to-zero.  We emit this via custom inserter since the FPSCR
9074     // is not modeled at the SelectionDAG level.
9075     unsigned Dest = MI->getOperand(0).getReg();
9076     unsigned Src1 = MI->getOperand(1).getReg();
9077     unsigned Src2 = MI->getOperand(2).getReg();
9078     DebugLoc dl   = MI->getDebugLoc();
9079 
9080     MachineRegisterInfo &RegInfo = F->getRegInfo();
9081     unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
9082 
9083     // Save FPSCR value.
9084     BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
9085 
9086     // Set rounding mode to round-to-zero.
9087     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
9088     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
9089 
9090     // Perform addition.
9091     BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
9092 
9093     // Restore FPSCR value.
9094     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg);
9095   } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
9096              MI->getOpcode() == PPC::ANDIo_1_GT_BIT ||
9097              MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
9098              MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) {
9099     unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
9100                        MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ?
9101                       PPC::ANDIo8 : PPC::ANDIo;
9102     bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
9103                  MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8);
9104 
9105     MachineRegisterInfo &RegInfo = F->getRegInfo();
9106     unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ?
9107                                                   &PPC::GPRCRegClass :
9108                                                   &PPC::G8RCRegClass);
9109 
9110     DebugLoc dl   = MI->getDebugLoc();
9111     BuildMI(*BB, MI, dl, TII->get(Opcode), Dest)
9112       .addReg(MI->getOperand(1).getReg()).addImm(1);
9113     BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY),
9114             MI->getOperand(0).getReg())
9115       .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT);
9116   } else if (MI->getOpcode() == PPC::TCHECK_RET) {
9117     DebugLoc Dl = MI->getDebugLoc();
9118     MachineRegisterInfo &RegInfo = F->getRegInfo();
9119     unsigned CRReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
9120     BuildMI(*BB, MI, Dl, TII->get(PPC::TCHECK), CRReg);
9121     return BB;
9122   } else {
9123     llvm_unreachable("Unexpected instr type to insert");
9124   }
9125 
9126   MI->eraseFromParent();   // The pseudo instruction is gone now.
9127   return BB;
9128 }
9129 
9130 //===----------------------------------------------------------------------===//
9131 // Target Optimization Hooks
9132 //===----------------------------------------------------------------------===//
9133 
9134 static std::string getRecipOp(const char *Base, EVT VT) {
9135   std::string RecipOp(Base);
9136   if (VT.getScalarType() == MVT::f64)
9137     RecipOp += "d";
9138   else
9139     RecipOp += "f";
9140 
9141   if (VT.isVector())
9142     RecipOp = "vec-" + RecipOp;
9143 
9144   return RecipOp;
9145 }
9146 
9147 SDValue PPCTargetLowering::getRsqrtEstimate(SDValue Operand,
9148                                             DAGCombinerInfo &DCI,
9149                                             unsigned &RefinementSteps,
9150                                             bool &UseOneConstNR) const {
9151   EVT VT = Operand.getValueType();
9152   if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) ||
9153       (VT == MVT::f64 && Subtarget.hasFRSQRTE()) ||
9154       (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
9155       (VT == MVT::v2f64 && Subtarget.hasVSX()) ||
9156       (VT == MVT::v4f32 && Subtarget.hasQPX()) ||
9157       (VT == MVT::v4f64 && Subtarget.hasQPX())) {
9158     TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
9159     std::string RecipOp = getRecipOp("sqrt", VT);
9160     if (!Recips.isEnabled(RecipOp))
9161       return SDValue();
9162 
9163     RefinementSteps = Recips.getRefinementSteps(RecipOp);
9164     UseOneConstNR = true;
9165     return DCI.DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand);
9166   }
9167   return SDValue();
9168 }
9169 
9170 SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand,
9171                                             DAGCombinerInfo &DCI,
9172                                             unsigned &RefinementSteps) const {
9173   EVT VT = Operand.getValueType();
9174   if ((VT == MVT::f32 && Subtarget.hasFRES()) ||
9175       (VT == MVT::f64 && Subtarget.hasFRE()) ||
9176       (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
9177       (VT == MVT::v2f64 && Subtarget.hasVSX()) ||
9178       (VT == MVT::v4f32 && Subtarget.hasQPX()) ||
9179       (VT == MVT::v4f64 && Subtarget.hasQPX())) {
9180     TargetRecip Recips = DCI.DAG.getTarget().Options.Reciprocals;
9181     std::string RecipOp = getRecipOp("div", VT);
9182     if (!Recips.isEnabled(RecipOp))
9183       return SDValue();
9184 
9185     RefinementSteps = Recips.getRefinementSteps(RecipOp);
9186     return DCI.DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand);
9187   }
9188   return SDValue();
9189 }
9190 
9191 unsigned PPCTargetLowering::combineRepeatedFPDivisors() const {
9192   // Note: This functionality is used only when unsafe-fp-math is enabled, and
9193   // on cores with reciprocal estimates (which are used when unsafe-fp-math is
9194   // enabled for division), this functionality is redundant with the default
9195   // combiner logic (once the division -> reciprocal/multiply transformation
9196   // has taken place). As a result, this matters more for older cores than for
9197   // newer ones.
9198 
9199   // Combine multiple FDIVs with the same divisor into multiple FMULs by the
9200   // reciprocal if there are two or more FDIVs (for embedded cores with only
9201   // one FP pipeline) for three or more FDIVs (for generic OOO cores).
9202   switch (Subtarget.getDarwinDirective()) {
9203   default:
9204     return 3;
9205   case PPC::DIR_440:
9206   case PPC::DIR_A2:
9207   case PPC::DIR_E500mc:
9208   case PPC::DIR_E5500:
9209     return 2;
9210   }
9211 }
9212 
9213 // isConsecutiveLSLoc needs to work even if all adds have not yet been
9214 // collapsed, and so we need to look through chains of them.
9215 static void getBaseWithConstantOffset(SDValue Loc, SDValue &Base,
9216                                      int64_t& Offset, SelectionDAG &DAG) {
9217   if (DAG.isBaseWithConstantOffset(Loc)) {
9218     Base = Loc.getOperand(0);
9219     Offset += cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue();
9220 
9221     // The base might itself be a base plus an offset, and if so, accumulate
9222     // that as well.
9223     getBaseWithConstantOffset(Loc.getOperand(0), Base, Offset, DAG);
9224   }
9225 }
9226 
9227 static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base,
9228                             unsigned Bytes, int Dist,
9229                             SelectionDAG &DAG) {
9230   if (VT.getSizeInBits() / 8 != Bytes)
9231     return false;
9232 
9233   SDValue BaseLoc = Base->getBasePtr();
9234   if (Loc.getOpcode() == ISD::FrameIndex) {
9235     if (BaseLoc.getOpcode() != ISD::FrameIndex)
9236       return false;
9237     const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9238     int FI  = cast<FrameIndexSDNode>(Loc)->getIndex();
9239     int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
9240     int FS  = MFI->getObjectSize(FI);
9241     int BFS = MFI->getObjectSize(BFI);
9242     if (FS != BFS || FS != (int)Bytes) return false;
9243     return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
9244   }
9245 
9246   SDValue Base1 = Loc, Base2 = BaseLoc;
9247   int64_t Offset1 = 0, Offset2 = 0;
9248   getBaseWithConstantOffset(Loc, Base1, Offset1, DAG);
9249   getBaseWithConstantOffset(BaseLoc, Base2, Offset2, DAG);
9250   if (Base1 == Base2 && Offset1 == (Offset2 + Dist * Bytes))
9251     return true;
9252 
9253   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9254   const GlobalValue *GV1 = nullptr;
9255   const GlobalValue *GV2 = nullptr;
9256   Offset1 = 0;
9257   Offset2 = 0;
9258   bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
9259   bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
9260   if (isGA1 && isGA2 && GV1 == GV2)
9261     return Offset1 == (Offset2 + Dist*Bytes);
9262   return false;
9263 }
9264 
9265 // Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
9266 // not enforce equality of the chain operands.
9267 static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base,
9268                             unsigned Bytes, int Dist,
9269                             SelectionDAG &DAG) {
9270   if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) {
9271     EVT VT = LS->getMemoryVT();
9272     SDValue Loc = LS->getBasePtr();
9273     return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG);
9274   }
9275 
9276   if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
9277     EVT VT;
9278     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9279     default: return false;
9280     case Intrinsic::ppc_qpx_qvlfd:
9281     case Intrinsic::ppc_qpx_qvlfda:
9282       VT = MVT::v4f64;
9283       break;
9284     case Intrinsic::ppc_qpx_qvlfs:
9285     case Intrinsic::ppc_qpx_qvlfsa:
9286       VT = MVT::v4f32;
9287       break;
9288     case Intrinsic::ppc_qpx_qvlfcd:
9289     case Intrinsic::ppc_qpx_qvlfcda:
9290       VT = MVT::v2f64;
9291       break;
9292     case Intrinsic::ppc_qpx_qvlfcs:
9293     case Intrinsic::ppc_qpx_qvlfcsa:
9294       VT = MVT::v2f32;
9295       break;
9296     case Intrinsic::ppc_qpx_qvlfiwa:
9297     case Intrinsic::ppc_qpx_qvlfiwz:
9298     case Intrinsic::ppc_altivec_lvx:
9299     case Intrinsic::ppc_altivec_lvxl:
9300     case Intrinsic::ppc_vsx_lxvw4x:
9301       VT = MVT::v4i32;
9302       break;
9303     case Intrinsic::ppc_vsx_lxvd2x:
9304       VT = MVT::v2f64;
9305       break;
9306     case Intrinsic::ppc_altivec_lvebx:
9307       VT = MVT::i8;
9308       break;
9309     case Intrinsic::ppc_altivec_lvehx:
9310       VT = MVT::i16;
9311       break;
9312     case Intrinsic::ppc_altivec_lvewx:
9313       VT = MVT::i32;
9314       break;
9315     }
9316 
9317     return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG);
9318   }
9319 
9320   if (N->getOpcode() == ISD::INTRINSIC_VOID) {
9321     EVT VT;
9322     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9323     default: return false;
9324     case Intrinsic::ppc_qpx_qvstfd:
9325     case Intrinsic::ppc_qpx_qvstfda:
9326       VT = MVT::v4f64;
9327       break;
9328     case Intrinsic::ppc_qpx_qvstfs:
9329     case Intrinsic::ppc_qpx_qvstfsa:
9330       VT = MVT::v4f32;
9331       break;
9332     case Intrinsic::ppc_qpx_qvstfcd:
9333     case Intrinsic::ppc_qpx_qvstfcda:
9334       VT = MVT::v2f64;
9335       break;
9336     case Intrinsic::ppc_qpx_qvstfcs:
9337     case Intrinsic::ppc_qpx_qvstfcsa:
9338       VT = MVT::v2f32;
9339       break;
9340     case Intrinsic::ppc_qpx_qvstfiw:
9341     case Intrinsic::ppc_qpx_qvstfiwa:
9342     case Intrinsic::ppc_altivec_stvx:
9343     case Intrinsic::ppc_altivec_stvxl:
9344     case Intrinsic::ppc_vsx_stxvw4x:
9345       VT = MVT::v4i32;
9346       break;
9347     case Intrinsic::ppc_vsx_stxvd2x:
9348       VT = MVT::v2f64;
9349       break;
9350     case Intrinsic::ppc_altivec_stvebx:
9351       VT = MVT::i8;
9352       break;
9353     case Intrinsic::ppc_altivec_stvehx:
9354       VT = MVT::i16;
9355       break;
9356     case Intrinsic::ppc_altivec_stvewx:
9357       VT = MVT::i32;
9358       break;
9359     }
9360 
9361     return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG);
9362   }
9363 
9364   return false;
9365 }
9366 
9367 // Return true is there is a nearyby consecutive load to the one provided
9368 // (regardless of alignment). We search up and down the chain, looking though
9369 // token factors and other loads (but nothing else). As a result, a true result
9370 // indicates that it is safe to create a new consecutive load adjacent to the
9371 // load provided.
9372 static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
9373   SDValue Chain = LD->getChain();
9374   EVT VT = LD->getMemoryVT();
9375 
9376   SmallSet<SDNode *, 16> LoadRoots;
9377   SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
9378   SmallSet<SDNode *, 16> Visited;
9379 
9380   // First, search up the chain, branching to follow all token-factor operands.
9381   // If we find a consecutive load, then we're done, otherwise, record all
9382   // nodes just above the top-level loads and token factors.
9383   while (!Queue.empty()) {
9384     SDNode *ChainNext = Queue.pop_back_val();
9385     if (!Visited.insert(ChainNext).second)
9386       continue;
9387 
9388     if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) {
9389       if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
9390         return true;
9391 
9392       if (!Visited.count(ChainLD->getChain().getNode()))
9393         Queue.push_back(ChainLD->getChain().getNode());
9394     } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
9395       for (const SDUse &O : ChainNext->ops())
9396         if (!Visited.count(O.getNode()))
9397           Queue.push_back(O.getNode());
9398     } else
9399       LoadRoots.insert(ChainNext);
9400   }
9401 
9402   // Second, search down the chain, starting from the top-level nodes recorded
9403   // in the first phase. These top-level nodes are the nodes just above all
9404   // loads and token factors. Starting with their uses, recursively look though
9405   // all loads (just the chain uses) and token factors to find a consecutive
9406   // load.
9407   Visited.clear();
9408   Queue.clear();
9409 
9410   for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
9411        IE = LoadRoots.end(); I != IE; ++I) {
9412     Queue.push_back(*I);
9413 
9414     while (!Queue.empty()) {
9415       SDNode *LoadRoot = Queue.pop_back_val();
9416       if (!Visited.insert(LoadRoot).second)
9417         continue;
9418 
9419       if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot))
9420         if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
9421           return true;
9422 
9423       for (SDNode::use_iterator UI = LoadRoot->use_begin(),
9424            UE = LoadRoot->use_end(); UI != UE; ++UI)
9425         if (((isa<MemSDNode>(*UI) &&
9426             cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
9427             UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
9428           Queue.push_back(*UI);
9429     }
9430   }
9431 
9432   return false;
9433 }
9434 
9435 SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N,
9436                                                   DAGCombinerInfo &DCI) const {
9437   SelectionDAG &DAG = DCI.DAG;
9438   SDLoc dl(N);
9439 
9440   assert(Subtarget.useCRBits() && "Expecting to be tracking CR bits");
9441   // If we're tracking CR bits, we need to be careful that we don't have:
9442   //   trunc(binary-ops(zext(x), zext(y)))
9443   // or
9444   //   trunc(binary-ops(binary-ops(zext(x), zext(y)), ...)
9445   // such that we're unnecessarily moving things into GPRs when it would be
9446   // better to keep them in CR bits.
9447 
9448   // Note that trunc here can be an actual i1 trunc, or can be the effective
9449   // truncation that comes from a setcc or select_cc.
9450   if (N->getOpcode() == ISD::TRUNCATE &&
9451       N->getValueType(0) != MVT::i1)
9452     return SDValue();
9453 
9454   if (N->getOperand(0).getValueType() != MVT::i32 &&
9455       N->getOperand(0).getValueType() != MVT::i64)
9456     return SDValue();
9457 
9458   if (N->getOpcode() == ISD::SETCC ||
9459       N->getOpcode() == ISD::SELECT_CC) {
9460     // If we're looking at a comparison, then we need to make sure that the
9461     // high bits (all except for the first) don't matter the result.
9462     ISD::CondCode CC =
9463       cast<CondCodeSDNode>(N->getOperand(
9464         N->getOpcode() == ISD::SETCC ? 2 : 4))->get();
9465     unsigned OpBits = N->getOperand(0).getValueSizeInBits();
9466 
9467     if (ISD::isSignedIntSetCC(CC)) {
9468       if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
9469           DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
9470         return SDValue();
9471     } else if (ISD::isUnsignedIntSetCC(CC)) {
9472       if (!DAG.MaskedValueIsZero(N->getOperand(0),
9473                                  APInt::getHighBitsSet(OpBits, OpBits-1)) ||
9474           !DAG.MaskedValueIsZero(N->getOperand(1),
9475                                  APInt::getHighBitsSet(OpBits, OpBits-1)))
9476         return SDValue();
9477     } else {
9478       // This is neither a signed nor an unsigned comparison, just make sure
9479       // that the high bits are equal.
9480       APInt Op1Zero, Op1One;
9481       APInt Op2Zero, Op2One;
9482       DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One);
9483       DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One);
9484 
9485       // We don't really care about what is known about the first bit (if
9486       // anything), so clear it in all masks prior to comparing them.
9487       Op1Zero.clearBit(0); Op1One.clearBit(0);
9488       Op2Zero.clearBit(0); Op2One.clearBit(0);
9489 
9490       if (Op1Zero != Op2Zero || Op1One != Op2One)
9491         return SDValue();
9492     }
9493   }
9494 
9495   // We now know that the higher-order bits are irrelevant, we just need to
9496   // make sure that all of the intermediate operations are bit operations, and
9497   // all inputs are extensions.
9498   if (N->getOperand(0).getOpcode() != ISD::AND &&
9499       N->getOperand(0).getOpcode() != ISD::OR  &&
9500       N->getOperand(0).getOpcode() != ISD::XOR &&
9501       N->getOperand(0).getOpcode() != ISD::SELECT &&
9502       N->getOperand(0).getOpcode() != ISD::SELECT_CC &&
9503       N->getOperand(0).getOpcode() != ISD::TRUNCATE &&
9504       N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND &&
9505       N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND &&
9506       N->getOperand(0).getOpcode() != ISD::ANY_EXTEND)
9507     return SDValue();
9508 
9509   if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) &&
9510       N->getOperand(1).getOpcode() != ISD::AND &&
9511       N->getOperand(1).getOpcode() != ISD::OR  &&
9512       N->getOperand(1).getOpcode() != ISD::XOR &&
9513       N->getOperand(1).getOpcode() != ISD::SELECT &&
9514       N->getOperand(1).getOpcode() != ISD::SELECT_CC &&
9515       N->getOperand(1).getOpcode() != ISD::TRUNCATE &&
9516       N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND &&
9517       N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND &&
9518       N->getOperand(1).getOpcode() != ISD::ANY_EXTEND)
9519     return SDValue();
9520 
9521   SmallVector<SDValue, 4> Inputs;
9522   SmallVector<SDValue, 8> BinOps, PromOps;
9523   SmallPtrSet<SDNode *, 16> Visited;
9524 
9525   for (unsigned i = 0; i < 2; ++i) {
9526     if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9527           N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9528           N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
9529           N->getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
9530         isa<ConstantSDNode>(N->getOperand(i)))
9531       Inputs.push_back(N->getOperand(i));
9532     else
9533       BinOps.push_back(N->getOperand(i));
9534 
9535     if (N->getOpcode() == ISD::TRUNCATE)
9536       break;
9537   }
9538 
9539   // Visit all inputs, collect all binary operations (and, or, xor and
9540   // select) that are all fed by extensions.
9541   while (!BinOps.empty()) {
9542     SDValue BinOp = BinOps.back();
9543     BinOps.pop_back();
9544 
9545     if (!Visited.insert(BinOp.getNode()).second)
9546       continue;
9547 
9548     PromOps.push_back(BinOp);
9549 
9550     for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
9551       // The condition of the select is not promoted.
9552       if (BinOp.getOpcode() == ISD::SELECT && i == 0)
9553         continue;
9554       if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
9555         continue;
9556 
9557       if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9558             BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9559             BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
9560            BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
9561           isa<ConstantSDNode>(BinOp.getOperand(i))) {
9562         Inputs.push_back(BinOp.getOperand(i));
9563       } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
9564                  BinOp.getOperand(i).getOpcode() == ISD::OR  ||
9565                  BinOp.getOperand(i).getOpcode() == ISD::XOR ||
9566                  BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
9567                  BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC ||
9568                  BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
9569                  BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
9570                  BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
9571                  BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) {
9572         BinOps.push_back(BinOp.getOperand(i));
9573       } else {
9574         // We have an input that is not an extension or another binary
9575         // operation; we'll abort this transformation.
9576         return SDValue();
9577       }
9578     }
9579   }
9580 
9581   // Make sure that this is a self-contained cluster of operations (which
9582   // is not quite the same thing as saying that everything has only one
9583   // use).
9584   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9585     if (isa<ConstantSDNode>(Inputs[i]))
9586       continue;
9587 
9588     for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
9589                               UE = Inputs[i].getNode()->use_end();
9590          UI != UE; ++UI) {
9591       SDNode *User = *UI;
9592       if (User != N && !Visited.count(User))
9593         return SDValue();
9594 
9595       // Make sure that we're not going to promote the non-output-value
9596       // operand(s) or SELECT or SELECT_CC.
9597       // FIXME: Although we could sometimes handle this, and it does occur in
9598       // practice that one of the condition inputs to the select is also one of
9599       // the outputs, we currently can't deal with this.
9600       if (User->getOpcode() == ISD::SELECT) {
9601         if (User->getOperand(0) == Inputs[i])
9602           return SDValue();
9603       } else if (User->getOpcode() == ISD::SELECT_CC) {
9604         if (User->getOperand(0) == Inputs[i] ||
9605             User->getOperand(1) == Inputs[i])
9606           return SDValue();
9607       }
9608     }
9609   }
9610 
9611   for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
9612     for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
9613                               UE = PromOps[i].getNode()->use_end();
9614          UI != UE; ++UI) {
9615       SDNode *User = *UI;
9616       if (User != N && !Visited.count(User))
9617         return SDValue();
9618 
9619       // Make sure that we're not going to promote the non-output-value
9620       // operand(s) or SELECT or SELECT_CC.
9621       // FIXME: Although we could sometimes handle this, and it does occur in
9622       // practice that one of the condition inputs to the select is also one of
9623       // the outputs, we currently can't deal with this.
9624       if (User->getOpcode() == ISD::SELECT) {
9625         if (User->getOperand(0) == PromOps[i])
9626           return SDValue();
9627       } else if (User->getOpcode() == ISD::SELECT_CC) {
9628         if (User->getOperand(0) == PromOps[i] ||
9629             User->getOperand(1) == PromOps[i])
9630           return SDValue();
9631       }
9632     }
9633   }
9634 
9635   // Replace all inputs with the extension operand.
9636   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9637     // Constants may have users outside the cluster of to-be-promoted nodes,
9638     // and so we need to replace those as we do the promotions.
9639     if (isa<ConstantSDNode>(Inputs[i]))
9640       continue;
9641     else
9642       DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0));
9643   }
9644 
9645   // Replace all operations (these are all the same, but have a different
9646   // (i1) return type). DAG.getNode will validate that the types of
9647   // a binary operator match, so go through the list in reverse so that
9648   // we've likely promoted both operands first. Any intermediate truncations or
9649   // extensions disappear.
9650   while (!PromOps.empty()) {
9651     SDValue PromOp = PromOps.back();
9652     PromOps.pop_back();
9653 
9654     if (PromOp.getOpcode() == ISD::TRUNCATE ||
9655         PromOp.getOpcode() == ISD::SIGN_EXTEND ||
9656         PromOp.getOpcode() == ISD::ZERO_EXTEND ||
9657         PromOp.getOpcode() == ISD::ANY_EXTEND) {
9658       if (!isa<ConstantSDNode>(PromOp.getOperand(0)) &&
9659           PromOp.getOperand(0).getValueType() != MVT::i1) {
9660         // The operand is not yet ready (see comment below).
9661         PromOps.insert(PromOps.begin(), PromOp);
9662         continue;
9663       }
9664 
9665       SDValue RepValue = PromOp.getOperand(0);
9666       if (isa<ConstantSDNode>(RepValue))
9667         RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue);
9668 
9669       DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue);
9670       continue;
9671     }
9672 
9673     unsigned C;
9674     switch (PromOp.getOpcode()) {
9675     default:             C = 0; break;
9676     case ISD::SELECT:    C = 1; break;
9677     case ISD::SELECT_CC: C = 2; break;
9678     }
9679 
9680     if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
9681          PromOp.getOperand(C).getValueType() != MVT::i1) ||
9682         (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
9683          PromOp.getOperand(C+1).getValueType() != MVT::i1)) {
9684       // The to-be-promoted operands of this node have not yet been
9685       // promoted (this should be rare because we're going through the
9686       // list backward, but if one of the operands has several users in
9687       // this cluster of to-be-promoted nodes, it is possible).
9688       PromOps.insert(PromOps.begin(), PromOp);
9689       continue;
9690     }
9691 
9692     SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
9693                                 PromOp.getNode()->op_end());
9694 
9695     // If there are any constant inputs, make sure they're replaced now.
9696     for (unsigned i = 0; i < 2; ++i)
9697       if (isa<ConstantSDNode>(Ops[C+i]))
9698         Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]);
9699 
9700     DAG.ReplaceAllUsesOfValueWith(PromOp,
9701       DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops));
9702   }
9703 
9704   // Now we're left with the initial truncation itself.
9705   if (N->getOpcode() == ISD::TRUNCATE)
9706     return N->getOperand(0);
9707 
9708   // Otherwise, this is a comparison. The operands to be compared have just
9709   // changed type (to i1), but everything else is the same.
9710   return SDValue(N, 0);
9711 }
9712 
9713 SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N,
9714                                                   DAGCombinerInfo &DCI) const {
9715   SelectionDAG &DAG = DCI.DAG;
9716   SDLoc dl(N);
9717 
9718   // If we're tracking CR bits, we need to be careful that we don't have:
9719   //   zext(binary-ops(trunc(x), trunc(y)))
9720   // or
9721   //   zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...)
9722   // such that we're unnecessarily moving things into CR bits that can more
9723   // efficiently stay in GPRs. Note that if we're not certain that the high
9724   // bits are set as required by the final extension, we still may need to do
9725   // some masking to get the proper behavior.
9726 
9727   // This same functionality is important on PPC64 when dealing with
9728   // 32-to-64-bit extensions; these occur often when 32-bit values are used as
9729   // the return values of functions. Because it is so similar, it is handled
9730   // here as well.
9731 
9732   if (N->getValueType(0) != MVT::i32 &&
9733       N->getValueType(0) != MVT::i64)
9734     return SDValue();
9735 
9736   if (!((N->getOperand(0).getValueType() == MVT::i1 && Subtarget.useCRBits()) ||
9737         (N->getOperand(0).getValueType() == MVT::i32 && Subtarget.isPPC64())))
9738     return SDValue();
9739 
9740   if (N->getOperand(0).getOpcode() != ISD::AND &&
9741       N->getOperand(0).getOpcode() != ISD::OR  &&
9742       N->getOperand(0).getOpcode() != ISD::XOR &&
9743       N->getOperand(0).getOpcode() != ISD::SELECT &&
9744       N->getOperand(0).getOpcode() != ISD::SELECT_CC)
9745     return SDValue();
9746 
9747   SmallVector<SDValue, 4> Inputs;
9748   SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps;
9749   SmallPtrSet<SDNode *, 16> Visited;
9750 
9751   // Visit all inputs, collect all binary operations (and, or, xor and
9752   // select) that are all fed by truncations.
9753   while (!BinOps.empty()) {
9754     SDValue BinOp = BinOps.back();
9755     BinOps.pop_back();
9756 
9757     if (!Visited.insert(BinOp.getNode()).second)
9758       continue;
9759 
9760     PromOps.push_back(BinOp);
9761 
9762     for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
9763       // The condition of the select is not promoted.
9764       if (BinOp.getOpcode() == ISD::SELECT && i == 0)
9765         continue;
9766       if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
9767         continue;
9768 
9769       if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
9770           isa<ConstantSDNode>(BinOp.getOperand(i))) {
9771         Inputs.push_back(BinOp.getOperand(i));
9772       } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
9773                  BinOp.getOperand(i).getOpcode() == ISD::OR  ||
9774                  BinOp.getOperand(i).getOpcode() == ISD::XOR ||
9775                  BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
9776                  BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) {
9777         BinOps.push_back(BinOp.getOperand(i));
9778       } else {
9779         // We have an input that is not a truncation or another binary
9780         // operation; we'll abort this transformation.
9781         return SDValue();
9782       }
9783     }
9784   }
9785 
9786   // The operands of a select that must be truncated when the select is
9787   // promoted because the operand is actually part of the to-be-promoted set.
9788   DenseMap<SDNode *, EVT> SelectTruncOp[2];
9789 
9790   // Make sure that this is a self-contained cluster of operations (which
9791   // is not quite the same thing as saying that everything has only one
9792   // use).
9793   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9794     if (isa<ConstantSDNode>(Inputs[i]))
9795       continue;
9796 
9797     for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
9798                               UE = Inputs[i].getNode()->use_end();
9799          UI != UE; ++UI) {
9800       SDNode *User = *UI;
9801       if (User != N && !Visited.count(User))
9802         return SDValue();
9803 
9804       // If we're going to promote the non-output-value operand(s) or SELECT or
9805       // SELECT_CC, record them for truncation.
9806       if (User->getOpcode() == ISD::SELECT) {
9807         if (User->getOperand(0) == Inputs[i])
9808           SelectTruncOp[0].insert(std::make_pair(User,
9809                                     User->getOperand(0).getValueType()));
9810       } else if (User->getOpcode() == ISD::SELECT_CC) {
9811         if (User->getOperand(0) == Inputs[i])
9812           SelectTruncOp[0].insert(std::make_pair(User,
9813                                     User->getOperand(0).getValueType()));
9814         if (User->getOperand(1) == Inputs[i])
9815           SelectTruncOp[1].insert(std::make_pair(User,
9816                                     User->getOperand(1).getValueType()));
9817       }
9818     }
9819   }
9820 
9821   for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
9822     for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
9823                               UE = PromOps[i].getNode()->use_end();
9824          UI != UE; ++UI) {
9825       SDNode *User = *UI;
9826       if (User != N && !Visited.count(User))
9827         return SDValue();
9828 
9829       // If we're going to promote the non-output-value operand(s) or SELECT or
9830       // SELECT_CC, record them for truncation.
9831       if (User->getOpcode() == ISD::SELECT) {
9832         if (User->getOperand(0) == PromOps[i])
9833           SelectTruncOp[0].insert(std::make_pair(User,
9834                                     User->getOperand(0).getValueType()));
9835       } else if (User->getOpcode() == ISD::SELECT_CC) {
9836         if (User->getOperand(0) == PromOps[i])
9837           SelectTruncOp[0].insert(std::make_pair(User,
9838                                     User->getOperand(0).getValueType()));
9839         if (User->getOperand(1) == PromOps[i])
9840           SelectTruncOp[1].insert(std::make_pair(User,
9841                                     User->getOperand(1).getValueType()));
9842       }
9843     }
9844   }
9845 
9846   unsigned PromBits = N->getOperand(0).getValueSizeInBits();
9847   bool ReallyNeedsExt = false;
9848   if (N->getOpcode() != ISD::ANY_EXTEND) {
9849     // If all of the inputs are not already sign/zero extended, then
9850     // we'll still need to do that at the end.
9851     for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9852       if (isa<ConstantSDNode>(Inputs[i]))
9853         continue;
9854 
9855       unsigned OpBits =
9856         Inputs[i].getOperand(0).getValueSizeInBits();
9857       assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
9858 
9859       if ((N->getOpcode() == ISD::ZERO_EXTEND &&
9860            !DAG.MaskedValueIsZero(Inputs[i].getOperand(0),
9861                                   APInt::getHighBitsSet(OpBits,
9862                                                         OpBits-PromBits))) ||
9863           (N->getOpcode() == ISD::SIGN_EXTEND &&
9864            DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) <
9865              (OpBits-(PromBits-1)))) {
9866         ReallyNeedsExt = true;
9867         break;
9868       }
9869     }
9870   }
9871 
9872   // Replace all inputs, either with the truncation operand, or a
9873   // truncation or extension to the final output type.
9874   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
9875     // Constant inputs need to be replaced with the to-be-promoted nodes that
9876     // use them because they might have users outside of the cluster of
9877     // promoted nodes.
9878     if (isa<ConstantSDNode>(Inputs[i]))
9879       continue;
9880 
9881     SDValue InSrc = Inputs[i].getOperand(0);
9882     if (Inputs[i].getValueType() == N->getValueType(0))
9883       DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc);
9884     else if (N->getOpcode() == ISD::SIGN_EXTEND)
9885       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
9886         DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0)));
9887     else if (N->getOpcode() == ISD::ZERO_EXTEND)
9888       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
9889         DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0)));
9890     else
9891       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
9892         DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0)));
9893   }
9894 
9895   // Replace all operations (these are all the same, but have a different
9896   // (promoted) return type). DAG.getNode will validate that the types of
9897   // a binary operator match, so go through the list in reverse so that
9898   // we've likely promoted both operands first.
9899   while (!PromOps.empty()) {
9900     SDValue PromOp = PromOps.back();
9901     PromOps.pop_back();
9902 
9903     unsigned C;
9904     switch (PromOp.getOpcode()) {
9905     default:             C = 0; break;
9906     case ISD::SELECT:    C = 1; break;
9907     case ISD::SELECT_CC: C = 2; break;
9908     }
9909 
9910     if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
9911          PromOp.getOperand(C).getValueType() != N->getValueType(0)) ||
9912         (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
9913          PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) {
9914       // The to-be-promoted operands of this node have not yet been
9915       // promoted (this should be rare because we're going through the
9916       // list backward, but if one of the operands has several users in
9917       // this cluster of to-be-promoted nodes, it is possible).
9918       PromOps.insert(PromOps.begin(), PromOp);
9919       continue;
9920     }
9921 
9922     // For SELECT and SELECT_CC nodes, we do a similar check for any
9923     // to-be-promoted comparison inputs.
9924     if (PromOp.getOpcode() == ISD::SELECT ||
9925         PromOp.getOpcode() == ISD::SELECT_CC) {
9926       if ((SelectTruncOp[0].count(PromOp.getNode()) &&
9927            PromOp.getOperand(0).getValueType() != N->getValueType(0)) ||
9928           (SelectTruncOp[1].count(PromOp.getNode()) &&
9929            PromOp.getOperand(1).getValueType() != N->getValueType(0))) {
9930         PromOps.insert(PromOps.begin(), PromOp);
9931         continue;
9932       }
9933     }
9934 
9935     SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
9936                                 PromOp.getNode()->op_end());
9937 
9938     // If this node has constant inputs, then they'll need to be promoted here.
9939     for (unsigned i = 0; i < 2; ++i) {
9940       if (!isa<ConstantSDNode>(Ops[C+i]))
9941         continue;
9942       if (Ops[C+i].getValueType() == N->getValueType(0))
9943         continue;
9944 
9945       if (N->getOpcode() == ISD::SIGN_EXTEND)
9946         Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
9947       else if (N->getOpcode() == ISD::ZERO_EXTEND)
9948         Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
9949       else
9950         Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
9951     }
9952 
9953     // If we've promoted the comparison inputs of a SELECT or SELECT_CC,
9954     // truncate them again to the original value type.
9955     if (PromOp.getOpcode() == ISD::SELECT ||
9956         PromOp.getOpcode() == ISD::SELECT_CC) {
9957       auto SI0 = SelectTruncOp[0].find(PromOp.getNode());
9958       if (SI0 != SelectTruncOp[0].end())
9959         Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]);
9960       auto SI1 = SelectTruncOp[1].find(PromOp.getNode());
9961       if (SI1 != SelectTruncOp[1].end())
9962         Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]);
9963     }
9964 
9965     DAG.ReplaceAllUsesOfValueWith(PromOp,
9966       DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops));
9967   }
9968 
9969   // Now we're left with the initial extension itself.
9970   if (!ReallyNeedsExt)
9971     return N->getOperand(0);
9972 
9973   // To zero extend, just mask off everything except for the first bit (in the
9974   // i1 case).
9975   if (N->getOpcode() == ISD::ZERO_EXTEND)
9976     return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0),
9977                        DAG.getConstant(APInt::getLowBitsSet(
9978                                          N->getValueSizeInBits(0), PromBits),
9979                                        dl, N->getValueType(0)));
9980 
9981   assert(N->getOpcode() == ISD::SIGN_EXTEND &&
9982          "Invalid extension type");
9983   EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0), DAG.getDataLayout());
9984   SDValue ShiftCst =
9985       DAG.getConstant(N->getValueSizeInBits(0) - PromBits, dl, ShiftAmountTy);
9986   return DAG.getNode(
9987       ISD::SRA, dl, N->getValueType(0),
9988       DAG.getNode(ISD::SHL, dl, N->getValueType(0), N->getOperand(0), ShiftCst),
9989       ShiftCst);
9990 }
9991 
9992 SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N,
9993                                               DAGCombinerInfo &DCI) const {
9994   assert((N->getOpcode() == ISD::SINT_TO_FP ||
9995           N->getOpcode() == ISD::UINT_TO_FP) &&
9996          "Need an int -> FP conversion node here");
9997 
9998   if (!Subtarget.has64BitSupport())
9999     return SDValue();
10000 
10001   SelectionDAG &DAG = DCI.DAG;
10002   SDLoc dl(N);
10003   SDValue Op(N, 0);
10004 
10005   // Don't handle ppc_fp128 here or i1 conversions.
10006   if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
10007     return SDValue();
10008   if (Op.getOperand(0).getValueType() == MVT::i1)
10009     return SDValue();
10010 
10011   // For i32 intermediate values, unfortunately, the conversion functions
10012   // leave the upper 32 bits of the value are undefined. Within the set of
10013   // scalar instructions, we have no method for zero- or sign-extending the
10014   // value. Thus, we cannot handle i32 intermediate values here.
10015   if (Op.getOperand(0).getValueType() == MVT::i32)
10016     return SDValue();
10017 
10018   assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
10019          "UINT_TO_FP is supported only with FPCVT");
10020 
10021   // If we have FCFIDS, then use it when converting to single-precision.
10022   // Otherwise, convert to double-precision and then round.
10023   unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
10024                        ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
10025                                                             : PPCISD::FCFIDS)
10026                        : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
10027                                                             : PPCISD::FCFID);
10028   MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
10029                   ? MVT::f32
10030                   : MVT::f64;
10031 
10032   // If we're converting from a float, to an int, and back to a float again,
10033   // then we don't need the store/load pair at all.
10034   if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT &&
10035        Subtarget.hasFPCVT()) ||
10036       (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) {
10037     SDValue Src = Op.getOperand(0).getOperand(0);
10038     if (Src.getValueType() == MVT::f32) {
10039       Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
10040       DCI.AddToWorklist(Src.getNode());
10041     } else if (Src.getValueType() != MVT::f64) {
10042       // Make sure that we don't pick up a ppc_fp128 source value.
10043       return SDValue();
10044     }
10045 
10046     unsigned FCTOp =
10047       Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
10048                                                         PPCISD::FCTIDUZ;
10049 
10050     SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src);
10051     SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp);
10052 
10053     if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) {
10054       FP = DAG.getNode(ISD::FP_ROUND, dl,
10055                        MVT::f32, FP, DAG.getIntPtrConstant(0, dl));
10056       DCI.AddToWorklist(FP.getNode());
10057     }
10058 
10059     return FP;
10060   }
10061 
10062   return SDValue();
10063 }
10064 
10065 // expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for
10066 // builtins) into loads with swaps.
10067 SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N,
10068                                               DAGCombinerInfo &DCI) const {
10069   SelectionDAG &DAG = DCI.DAG;
10070   SDLoc dl(N);
10071   SDValue Chain;
10072   SDValue Base;
10073   MachineMemOperand *MMO;
10074 
10075   switch (N->getOpcode()) {
10076   default:
10077     llvm_unreachable("Unexpected opcode for little endian VSX load");
10078   case ISD::LOAD: {
10079     LoadSDNode *LD = cast<LoadSDNode>(N);
10080     Chain = LD->getChain();
10081     Base = LD->getBasePtr();
10082     MMO = LD->getMemOperand();
10083     // If the MMO suggests this isn't a load of a full vector, leave
10084     // things alone.  For a built-in, we have to make the change for
10085     // correctness, so if there is a size problem that will be a bug.
10086     if (MMO->getSize() < 16)
10087       return SDValue();
10088     break;
10089   }
10090   case ISD::INTRINSIC_W_CHAIN: {
10091     MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
10092     Chain = Intrin->getChain();
10093     // Similarly to the store case below, Intrin->getBasePtr() doesn't get
10094     // us what we want. Get operand 2 instead.
10095     Base = Intrin->getOperand(2);
10096     MMO = Intrin->getMemOperand();
10097     break;
10098   }
10099   }
10100 
10101   MVT VecTy = N->getValueType(0).getSimpleVT();
10102   SDValue LoadOps[] = { Chain, Base };
10103   SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl,
10104                                          DAG.getVTList(VecTy, MVT::Other),
10105                                          LoadOps, VecTy, MMO);
10106   DCI.AddToWorklist(Load.getNode());
10107   Chain = Load.getValue(1);
10108   SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
10109                              DAG.getVTList(VecTy, MVT::Other), Chain, Load);
10110   DCI.AddToWorklist(Swap.getNode());
10111   return Swap;
10112 }
10113 
10114 // expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for
10115 // builtins) into stores with swaps.
10116 SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N,
10117                                                DAGCombinerInfo &DCI) const {
10118   SelectionDAG &DAG = DCI.DAG;
10119   SDLoc dl(N);
10120   SDValue Chain;
10121   SDValue Base;
10122   unsigned SrcOpnd;
10123   MachineMemOperand *MMO;
10124 
10125   switch (N->getOpcode()) {
10126   default:
10127     llvm_unreachable("Unexpected opcode for little endian VSX store");
10128   case ISD::STORE: {
10129     StoreSDNode *ST = cast<StoreSDNode>(N);
10130     Chain = ST->getChain();
10131     Base = ST->getBasePtr();
10132     MMO = ST->getMemOperand();
10133     SrcOpnd = 1;
10134     // If the MMO suggests this isn't a store of a full vector, leave
10135     // things alone.  For a built-in, we have to make the change for
10136     // correctness, so if there is a size problem that will be a bug.
10137     if (MMO->getSize() < 16)
10138       return SDValue();
10139     break;
10140   }
10141   case ISD::INTRINSIC_VOID: {
10142     MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
10143     Chain = Intrin->getChain();
10144     // Intrin->getBasePtr() oddly does not get what we want.
10145     Base = Intrin->getOperand(3);
10146     MMO = Intrin->getMemOperand();
10147     SrcOpnd = 2;
10148     break;
10149   }
10150   }
10151 
10152   SDValue Src = N->getOperand(SrcOpnd);
10153   MVT VecTy = Src.getValueType().getSimpleVT();
10154   SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
10155                              DAG.getVTList(VecTy, MVT::Other), Chain, Src);
10156   DCI.AddToWorklist(Swap.getNode());
10157   Chain = Swap.getValue(1);
10158   SDValue StoreOps[] = { Chain, Swap, Base };
10159   SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl,
10160                                           DAG.getVTList(MVT::Other),
10161                                           StoreOps, VecTy, MMO);
10162   DCI.AddToWorklist(Store.getNode());
10163   return Store;
10164 }
10165 
10166 SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
10167                                              DAGCombinerInfo &DCI) const {
10168   SelectionDAG &DAG = DCI.DAG;
10169   SDLoc dl(N);
10170   switch (N->getOpcode()) {
10171   default: break;
10172   case PPCISD::SHL:
10173     if (isNullConstant(N->getOperand(0))) // 0 << V -> 0.
10174         return N->getOperand(0);
10175     break;
10176   case PPCISD::SRL:
10177     if (isNullConstant(N->getOperand(0))) // 0 >>u V -> 0.
10178         return N->getOperand(0);
10179     break;
10180   case PPCISD::SRA:
10181     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10182       if (C->isNullValue() ||   //  0 >>s V -> 0.
10183           C->isAllOnesValue())    // -1 >>s V -> -1.
10184         return N->getOperand(0);
10185     }
10186     break;
10187   case ISD::SIGN_EXTEND:
10188   case ISD::ZERO_EXTEND:
10189   case ISD::ANY_EXTEND:
10190     return DAGCombineExtBoolTrunc(N, DCI);
10191   case ISD::TRUNCATE:
10192   case ISD::SETCC:
10193   case ISD::SELECT_CC:
10194     return DAGCombineTruncBoolExt(N, DCI);
10195   case ISD::SINT_TO_FP:
10196   case ISD::UINT_TO_FP:
10197     return combineFPToIntToFP(N, DCI);
10198   case ISD::STORE: {
10199     // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
10200     if (Subtarget.hasSTFIWX() && !cast<StoreSDNode>(N)->isTruncatingStore() &&
10201         N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
10202         N->getOperand(1).getValueType() == MVT::i32 &&
10203         N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
10204       SDValue Val = N->getOperand(1).getOperand(0);
10205       if (Val.getValueType() == MVT::f32) {
10206         Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
10207         DCI.AddToWorklist(Val.getNode());
10208       }
10209       Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
10210       DCI.AddToWorklist(Val.getNode());
10211 
10212       SDValue Ops[] = {
10213         N->getOperand(0), Val, N->getOperand(2),
10214         DAG.getValueType(N->getOperand(1).getValueType())
10215       };
10216 
10217       Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
10218               DAG.getVTList(MVT::Other), Ops,
10219               cast<StoreSDNode>(N)->getMemoryVT(),
10220               cast<StoreSDNode>(N)->getMemOperand());
10221       DCI.AddToWorklist(Val.getNode());
10222       return Val;
10223     }
10224 
10225     // Turn STORE (BSWAP) -> sthbrx/stwbrx.
10226     if (cast<StoreSDNode>(N)->isUnindexed() &&
10227         N->getOperand(1).getOpcode() == ISD::BSWAP &&
10228         N->getOperand(1).getNode()->hasOneUse() &&
10229         (N->getOperand(1).getValueType() == MVT::i32 ||
10230          N->getOperand(1).getValueType() == MVT::i16 ||
10231          (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
10232           N->getOperand(1).getValueType() == MVT::i64))) {
10233       SDValue BSwapOp = N->getOperand(1).getOperand(0);
10234       // Do an any-extend to 32-bits if this is a half-word input.
10235       if (BSwapOp.getValueType() == MVT::i16)
10236         BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
10237 
10238       SDValue Ops[] = {
10239         N->getOperand(0), BSwapOp, N->getOperand(2),
10240         DAG.getValueType(N->getOperand(1).getValueType())
10241       };
10242       return
10243         DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
10244                                 Ops, cast<StoreSDNode>(N)->getMemoryVT(),
10245                                 cast<StoreSDNode>(N)->getMemOperand());
10246     }
10247 
10248     // For little endian, VSX stores require generating xxswapd/lxvd2x.
10249     EVT VT = N->getOperand(1).getValueType();
10250     if (VT.isSimple()) {
10251       MVT StoreVT = VT.getSimpleVT();
10252       if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
10253           (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 ||
10254            StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32))
10255         return expandVSXStoreForLE(N, DCI);
10256     }
10257     break;
10258   }
10259   case ISD::LOAD: {
10260     LoadSDNode *LD = cast<LoadSDNode>(N);
10261     EVT VT = LD->getValueType(0);
10262 
10263     // For little endian, VSX loads require generating lxvd2x/xxswapd.
10264     if (VT.isSimple()) {
10265       MVT LoadVT = VT.getSimpleVT();
10266       if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
10267           (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 ||
10268            LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32))
10269         return expandVSXLoadForLE(N, DCI);
10270     }
10271 
10272     EVT MemVT = LD->getMemoryVT();
10273     Type *Ty = MemVT.getTypeForEVT(*DAG.getContext());
10274     unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
10275     Type *STy = MemVT.getScalarType().getTypeForEVT(*DAG.getContext());
10276     unsigned ScalarABIAlignment = DAG.getDataLayout().getABITypeAlignment(STy);
10277     if (LD->isUnindexed() && VT.isVector() &&
10278         ((Subtarget.hasAltivec() && ISD::isNON_EXTLoad(N) &&
10279           // P8 and later hardware should just use LOAD.
10280           !Subtarget.hasP8Vector() && (VT == MVT::v16i8 || VT == MVT::v8i16 ||
10281                                        VT == MVT::v4i32 || VT == MVT::v4f32)) ||
10282          (Subtarget.hasQPX() && (VT == MVT::v4f64 || VT == MVT::v4f32) &&
10283           LD->getAlignment() >= ScalarABIAlignment)) &&
10284         LD->getAlignment() < ABIAlignment) {
10285       // This is a type-legal unaligned Altivec or QPX load.
10286       SDValue Chain = LD->getChain();
10287       SDValue Ptr = LD->getBasePtr();
10288       bool isLittleEndian = Subtarget.isLittleEndian();
10289 
10290       // This implements the loading of unaligned vectors as described in
10291       // the venerable Apple Velocity Engine overview. Specifically:
10292       // https://developer.apple.com/hardwaredrivers/ve/alignment.html
10293       // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
10294       //
10295       // The general idea is to expand a sequence of one or more unaligned
10296       // loads into an alignment-based permutation-control instruction (lvsl
10297       // or lvsr), a series of regular vector loads (which always truncate
10298       // their input address to an aligned address), and a series of
10299       // permutations.  The results of these permutations are the requested
10300       // loaded values.  The trick is that the last "extra" load is not taken
10301       // from the address you might suspect (sizeof(vector) bytes after the
10302       // last requested load), but rather sizeof(vector) - 1 bytes after the
10303       // last requested vector. The point of this is to avoid a page fault if
10304       // the base address happened to be aligned. This works because if the
10305       // base address is aligned, then adding less than a full vector length
10306       // will cause the last vector in the sequence to be (re)loaded.
10307       // Otherwise, the next vector will be fetched as you might suspect was
10308       // necessary.
10309 
10310       // We might be able to reuse the permutation generation from
10311       // a different base address offset from this one by an aligned amount.
10312       // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
10313       // optimization later.
10314       Intrinsic::ID Intr, IntrLD, IntrPerm;
10315       MVT PermCntlTy, PermTy, LDTy;
10316       if (Subtarget.hasAltivec()) {
10317         Intr = isLittleEndian ?  Intrinsic::ppc_altivec_lvsr :
10318                                  Intrinsic::ppc_altivec_lvsl;
10319         IntrLD = Intrinsic::ppc_altivec_lvx;
10320         IntrPerm = Intrinsic::ppc_altivec_vperm;
10321         PermCntlTy = MVT::v16i8;
10322         PermTy = MVT::v4i32;
10323         LDTy = MVT::v4i32;
10324       } else {
10325         Intr =   MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlpcld :
10326                                        Intrinsic::ppc_qpx_qvlpcls;
10327         IntrLD = MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlfd :
10328                                        Intrinsic::ppc_qpx_qvlfs;
10329         IntrPerm = Intrinsic::ppc_qpx_qvfperm;
10330         PermCntlTy = MVT::v4f64;
10331         PermTy = MVT::v4f64;
10332         LDTy = MemVT.getSimpleVT();
10333       }
10334 
10335       SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, PermCntlTy);
10336 
10337       // Create the new MMO for the new base load. It is like the original MMO,
10338       // but represents an area in memory almost twice the vector size centered
10339       // on the original address. If the address is unaligned, we might start
10340       // reading up to (sizeof(vector)-1) bytes below the address of the
10341       // original unaligned load.
10342       MachineFunction &MF = DAG.getMachineFunction();
10343       MachineMemOperand *BaseMMO =
10344         MF.getMachineMemOperand(LD->getMemOperand(),
10345                                 -(long)MemVT.getStoreSize()+1,
10346                                 2*MemVT.getStoreSize()-1);
10347 
10348       // Create the new base load.
10349       SDValue LDXIntID =
10350           DAG.getTargetConstant(IntrLD, dl, getPointerTy(MF.getDataLayout()));
10351       SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr };
10352       SDValue BaseLoad =
10353         DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
10354                                 DAG.getVTList(PermTy, MVT::Other),
10355                                 BaseLoadOps, LDTy, BaseMMO);
10356 
10357       // Note that the value of IncOffset (which is provided to the next
10358       // load's pointer info offset value, and thus used to calculate the
10359       // alignment), and the value of IncValue (which is actually used to
10360       // increment the pointer value) are different! This is because we
10361       // require the next load to appear to be aligned, even though it
10362       // is actually offset from the base pointer by a lesser amount.
10363       int IncOffset = VT.getSizeInBits() / 8;
10364       int IncValue = IncOffset;
10365 
10366       // Walk (both up and down) the chain looking for another load at the real
10367       // (aligned) offset (the alignment of the other load does not matter in
10368       // this case). If found, then do not use the offset reduction trick, as
10369       // that will prevent the loads from being later combined (as they would
10370       // otherwise be duplicates).
10371       if (!findConsecutiveLoad(LD, DAG))
10372         --IncValue;
10373 
10374       SDValue Increment =
10375           DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout()));
10376       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
10377 
10378       MachineMemOperand *ExtraMMO =
10379         MF.getMachineMemOperand(LD->getMemOperand(),
10380                                 1, 2*MemVT.getStoreSize()-1);
10381       SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr };
10382       SDValue ExtraLoad =
10383         DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
10384                                 DAG.getVTList(PermTy, MVT::Other),
10385                                 ExtraLoadOps, LDTy, ExtraMMO);
10386 
10387       SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
10388         BaseLoad.getValue(1), ExtraLoad.getValue(1));
10389 
10390       // Because vperm has a big-endian bias, we must reverse the order
10391       // of the input vectors and complement the permute control vector
10392       // when generating little endian code.  We have already handled the
10393       // latter by using lvsr instead of lvsl, so just reverse BaseLoad
10394       // and ExtraLoad here.
10395       SDValue Perm;
10396       if (isLittleEndian)
10397         Perm = BuildIntrinsicOp(IntrPerm,
10398                                 ExtraLoad, BaseLoad, PermCntl, DAG, dl);
10399       else
10400         Perm = BuildIntrinsicOp(IntrPerm,
10401                                 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
10402 
10403       if (VT != PermTy)
10404         Perm = Subtarget.hasAltivec() ?
10405                  DAG.getNode(ISD::BITCAST, dl, VT, Perm) :
10406                  DAG.getNode(ISD::FP_ROUND, dl, VT, Perm, // QPX
10407                                DAG.getTargetConstant(1, dl, MVT::i64));
10408                                // second argument is 1 because this rounding
10409                                // is always exact.
10410 
10411       // The output of the permutation is our loaded result, the TokenFactor is
10412       // our new chain.
10413       DCI.CombineTo(N, Perm, TF);
10414       return SDValue(N, 0);
10415     }
10416     }
10417     break;
10418     case ISD::INTRINSIC_WO_CHAIN: {
10419       bool isLittleEndian = Subtarget.isLittleEndian();
10420       unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
10421       Intrinsic::ID Intr = (isLittleEndian ? Intrinsic::ppc_altivec_lvsr
10422                                            : Intrinsic::ppc_altivec_lvsl);
10423       if ((IID == Intr ||
10424            IID == Intrinsic::ppc_qpx_qvlpcld  ||
10425            IID == Intrinsic::ppc_qpx_qvlpcls) &&
10426         N->getOperand(1)->getOpcode() == ISD::ADD) {
10427         SDValue Add = N->getOperand(1);
10428 
10429         int Bits = IID == Intrinsic::ppc_qpx_qvlpcld ?
10430                    5 /* 32 byte alignment */ : 4 /* 16 byte alignment */;
10431 
10432         if (DAG.MaskedValueIsZero(
10433                 Add->getOperand(1),
10434                 APInt::getAllOnesValue(Bits /* alignment */)
10435                     .zext(
10436                         Add.getValueType().getScalarType().getSizeInBits()))) {
10437           SDNode *BasePtr = Add->getOperand(0).getNode();
10438           for (SDNode::use_iterator UI = BasePtr->use_begin(),
10439                                     UE = BasePtr->use_end();
10440                UI != UE; ++UI) {
10441             if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10442                 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() == IID) {
10443               // We've found another LVSL/LVSR, and this address is an aligned
10444               // multiple of that one. The results will be the same, so use the
10445               // one we've just found instead.
10446 
10447               return SDValue(*UI, 0);
10448             }
10449           }
10450         }
10451 
10452         if (isa<ConstantSDNode>(Add->getOperand(1))) {
10453           SDNode *BasePtr = Add->getOperand(0).getNode();
10454           for (SDNode::use_iterator UI = BasePtr->use_begin(),
10455                UE = BasePtr->use_end(); UI != UE; ++UI) {
10456             if (UI->getOpcode() == ISD::ADD &&
10457                 isa<ConstantSDNode>(UI->getOperand(1)) &&
10458                 (cast<ConstantSDNode>(Add->getOperand(1))->getZExtValue() -
10459                  cast<ConstantSDNode>(UI->getOperand(1))->getZExtValue()) %
10460                 (1ULL << Bits) == 0) {
10461               SDNode *OtherAdd = *UI;
10462               for (SDNode::use_iterator VI = OtherAdd->use_begin(),
10463                    VE = OtherAdd->use_end(); VI != VE; ++VI) {
10464                 if (VI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10465                     cast<ConstantSDNode>(VI->getOperand(0))->getZExtValue() == IID) {
10466                   return SDValue(*VI, 0);
10467                 }
10468               }
10469             }
10470           }
10471         }
10472       }
10473     }
10474 
10475     break;
10476   case ISD::INTRINSIC_W_CHAIN: {
10477     // For little endian, VSX loads require generating lxvd2x/xxswapd.
10478     if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
10479       switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10480       default:
10481         break;
10482       case Intrinsic::ppc_vsx_lxvw4x:
10483       case Intrinsic::ppc_vsx_lxvd2x:
10484         return expandVSXLoadForLE(N, DCI);
10485       }
10486     }
10487     break;
10488   }
10489   case ISD::INTRINSIC_VOID: {
10490     // For little endian, VSX stores require generating xxswapd/stxvd2x.
10491     if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
10492       switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10493       default:
10494         break;
10495       case Intrinsic::ppc_vsx_stxvw4x:
10496       case Intrinsic::ppc_vsx_stxvd2x:
10497         return expandVSXStoreForLE(N, DCI);
10498       }
10499     }
10500     break;
10501   }
10502   case ISD::BSWAP:
10503     // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
10504     if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
10505         N->getOperand(0).hasOneUse() &&
10506         (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
10507          (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
10508           N->getValueType(0) == MVT::i64))) {
10509       SDValue Load = N->getOperand(0);
10510       LoadSDNode *LD = cast<LoadSDNode>(Load);
10511       // Create the byte-swapping load.
10512       SDValue Ops[] = {
10513         LD->getChain(),    // Chain
10514         LD->getBasePtr(),  // Ptr
10515         DAG.getValueType(N->getValueType(0)) // VT
10516       };
10517       SDValue BSLoad =
10518         DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
10519                                 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
10520                                               MVT::i64 : MVT::i32, MVT::Other),
10521                                 Ops, LD->getMemoryVT(), LD->getMemOperand());
10522 
10523       // If this is an i16 load, insert the truncate.
10524       SDValue ResVal = BSLoad;
10525       if (N->getValueType(0) == MVT::i16)
10526         ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
10527 
10528       // First, combine the bswap away.  This makes the value produced by the
10529       // load dead.
10530       DCI.CombineTo(N, ResVal);
10531 
10532       // Next, combine the load away, we give it a bogus result value but a real
10533       // chain result.  The result value is dead because the bswap is dead.
10534       DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
10535 
10536       // Return N so it doesn't get rechecked!
10537       return SDValue(N, 0);
10538     }
10539 
10540     break;
10541   case PPCISD::VCMP: {
10542     // If a VCMPo node already exists with exactly the same operands as this
10543     // node, use its result instead of this node (VCMPo computes both a CR6 and
10544     // a normal output).
10545     //
10546     if (!N->getOperand(0).hasOneUse() &&
10547         !N->getOperand(1).hasOneUse() &&
10548         !N->getOperand(2).hasOneUse()) {
10549 
10550       // Scan all of the users of the LHS, looking for VCMPo's that match.
10551       SDNode *VCMPoNode = nullptr;
10552 
10553       SDNode *LHSN = N->getOperand(0).getNode();
10554       for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
10555            UI != E; ++UI)
10556         if (UI->getOpcode() == PPCISD::VCMPo &&
10557             UI->getOperand(1) == N->getOperand(1) &&
10558             UI->getOperand(2) == N->getOperand(2) &&
10559             UI->getOperand(0) == N->getOperand(0)) {
10560           VCMPoNode = *UI;
10561           break;
10562         }
10563 
10564       // If there is no VCMPo node, or if the flag value has a single use, don't
10565       // transform this.
10566       if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
10567         break;
10568 
10569       // Look at the (necessarily single) use of the flag value.  If it has a
10570       // chain, this transformation is more complex.  Note that multiple things
10571       // could use the value result, which we should ignore.
10572       SDNode *FlagUser = nullptr;
10573       for (SDNode::use_iterator UI = VCMPoNode->use_begin();
10574            FlagUser == nullptr; ++UI) {
10575         assert(UI != VCMPoNode->use_end() && "Didn't find user!");
10576         SDNode *User = *UI;
10577         for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
10578           if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
10579             FlagUser = User;
10580             break;
10581           }
10582         }
10583       }
10584 
10585       // If the user is a MFOCRF instruction, we know this is safe.
10586       // Otherwise we give up for right now.
10587       if (FlagUser->getOpcode() == PPCISD::MFOCRF)
10588         return SDValue(VCMPoNode, 0);
10589     }
10590     break;
10591   }
10592   case ISD::BRCOND: {
10593     SDValue Cond = N->getOperand(1);
10594     SDValue Target = N->getOperand(2);
10595 
10596     if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10597         cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() ==
10598           Intrinsic::ppc_is_decremented_ctr_nonzero) {
10599 
10600       // We now need to make the intrinsic dead (it cannot be instruction
10601       // selected).
10602       DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0));
10603       assert(Cond.getNode()->hasOneUse() &&
10604              "Counter decrement has more than one use");
10605 
10606       return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other,
10607                          N->getOperand(0), Target);
10608     }
10609   }
10610   break;
10611   case ISD::BR_CC: {
10612     // If this is a branch on an altivec predicate comparison, lower this so
10613     // that we don't have to do a MFOCRF: instead, branch directly on CR6.  This
10614     // lowering is done pre-legalize, because the legalizer lowers the predicate
10615     // compare down to code that is difficult to reassemble.
10616     ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
10617     SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
10618 
10619     // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
10620     // value. If so, pass-through the AND to get to the intrinsic.
10621     if (LHS.getOpcode() == ISD::AND &&
10622         LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10623         cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
10624           Intrinsic::ppc_is_decremented_ctr_nonzero &&
10625         isa<ConstantSDNode>(LHS.getOperand(1)) &&
10626         !isNullConstant(LHS.getOperand(1)))
10627       LHS = LHS.getOperand(0);
10628 
10629     if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
10630         cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
10631           Intrinsic::ppc_is_decremented_ctr_nonzero &&
10632         isa<ConstantSDNode>(RHS)) {
10633       assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
10634              "Counter decrement comparison is not EQ or NE");
10635 
10636       unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
10637       bool isBDNZ = (CC == ISD::SETEQ && Val) ||
10638                     (CC == ISD::SETNE && !Val);
10639 
10640       // We now need to make the intrinsic dead (it cannot be instruction
10641       // selected).
10642       DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
10643       assert(LHS.getNode()->hasOneUse() &&
10644              "Counter decrement has more than one use");
10645 
10646       return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
10647                          N->getOperand(0), N->getOperand(4));
10648     }
10649 
10650     int CompareOpc;
10651     bool isDot;
10652 
10653     if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
10654         isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
10655         getVectorCompareInfo(LHS, CompareOpc, isDot, Subtarget)) {
10656       assert(isDot && "Can't compare against a vector result!");
10657 
10658       // If this is a comparison against something other than 0/1, then we know
10659       // that the condition is never/always true.
10660       unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
10661       if (Val != 0 && Val != 1) {
10662         if (CC == ISD::SETEQ)      // Cond never true, remove branch.
10663           return N->getOperand(0);
10664         // Always !=, turn it into an unconditional branch.
10665         return DAG.getNode(ISD::BR, dl, MVT::Other,
10666                            N->getOperand(0), N->getOperand(4));
10667       }
10668 
10669       bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
10670 
10671       // Create the PPCISD altivec 'dot' comparison node.
10672       SDValue Ops[] = {
10673         LHS.getOperand(2),  // LHS of compare
10674         LHS.getOperand(3),  // RHS of compare
10675         DAG.getConstant(CompareOpc, dl, MVT::i32)
10676       };
10677       EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
10678       SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
10679 
10680       // Unpack the result based on how the target uses it.
10681       PPC::Predicate CompOpc;
10682       switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
10683       default:  // Can't happen, don't crash on invalid number though.
10684       case 0:   // Branch on the value of the EQ bit of CR6.
10685         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
10686         break;
10687       case 1:   // Branch on the inverted value of the EQ bit of CR6.
10688         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
10689         break;
10690       case 2:   // Branch on the value of the LT bit of CR6.
10691         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
10692         break;
10693       case 3:   // Branch on the inverted value of the LT bit of CR6.
10694         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
10695         break;
10696       }
10697 
10698       return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
10699                          DAG.getConstant(CompOpc, dl, MVT::i32),
10700                          DAG.getRegister(PPC::CR6, MVT::i32),
10701                          N->getOperand(4), CompNode.getValue(1));
10702     }
10703     break;
10704   }
10705   }
10706 
10707   return SDValue();
10708 }
10709 
10710 SDValue
10711 PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
10712                                   SelectionDAG &DAG,
10713                                   std::vector<SDNode *> *Created) const {
10714   // fold (sdiv X, pow2)
10715   EVT VT = N->getValueType(0);
10716   if (VT == MVT::i64 && !Subtarget.isPPC64())
10717     return SDValue();
10718   if ((VT != MVT::i32 && VT != MVT::i64) ||
10719       !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
10720     return SDValue();
10721 
10722   SDLoc DL(N);
10723   SDValue N0 = N->getOperand(0);
10724 
10725   bool IsNegPow2 = (-Divisor).isPowerOf2();
10726   unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros();
10727   SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT);
10728 
10729   SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt);
10730   if (Created)
10731     Created->push_back(Op.getNode());
10732 
10733   if (IsNegPow2) {
10734     Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Op);
10735     if (Created)
10736       Created->push_back(Op.getNode());
10737   }
10738 
10739   return Op;
10740 }
10741 
10742 //===----------------------------------------------------------------------===//
10743 // Inline Assembly Support
10744 //===----------------------------------------------------------------------===//
10745 
10746 void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
10747                                                       APInt &KnownZero,
10748                                                       APInt &KnownOne,
10749                                                       const SelectionDAG &DAG,
10750                                                       unsigned Depth) const {
10751   KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
10752   switch (Op.getOpcode()) {
10753   default: break;
10754   case PPCISD::LBRX: {
10755     // lhbrx is known to have the top bits cleared out.
10756     if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
10757       KnownZero = 0xFFFF0000;
10758     break;
10759   }
10760   case ISD::INTRINSIC_WO_CHAIN: {
10761     switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
10762     default: break;
10763     case Intrinsic::ppc_altivec_vcmpbfp_p:
10764     case Intrinsic::ppc_altivec_vcmpeqfp_p:
10765     case Intrinsic::ppc_altivec_vcmpequb_p:
10766     case Intrinsic::ppc_altivec_vcmpequh_p:
10767     case Intrinsic::ppc_altivec_vcmpequw_p:
10768     case Intrinsic::ppc_altivec_vcmpequd_p:
10769     case Intrinsic::ppc_altivec_vcmpgefp_p:
10770     case Intrinsic::ppc_altivec_vcmpgtfp_p:
10771     case Intrinsic::ppc_altivec_vcmpgtsb_p:
10772     case Intrinsic::ppc_altivec_vcmpgtsh_p:
10773     case Intrinsic::ppc_altivec_vcmpgtsw_p:
10774     case Intrinsic::ppc_altivec_vcmpgtsd_p:
10775     case Intrinsic::ppc_altivec_vcmpgtub_p:
10776     case Intrinsic::ppc_altivec_vcmpgtuh_p:
10777     case Intrinsic::ppc_altivec_vcmpgtuw_p:
10778     case Intrinsic::ppc_altivec_vcmpgtud_p:
10779       KnownZero = ~1U;  // All bits but the low one are known to be zero.
10780       break;
10781     }
10782   }
10783   }
10784 }
10785 
10786 unsigned PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const {
10787   switch (Subtarget.getDarwinDirective()) {
10788   default: break;
10789   case PPC::DIR_970:
10790   case PPC::DIR_PWR4:
10791   case PPC::DIR_PWR5:
10792   case PPC::DIR_PWR5X:
10793   case PPC::DIR_PWR6:
10794   case PPC::DIR_PWR6X:
10795   case PPC::DIR_PWR7:
10796   case PPC::DIR_PWR8: {
10797     if (!ML)
10798       break;
10799 
10800     const PPCInstrInfo *TII = Subtarget.getInstrInfo();
10801 
10802     // For small loops (between 5 and 8 instructions), align to a 32-byte
10803     // boundary so that the entire loop fits in one instruction-cache line.
10804     uint64_t LoopSize = 0;
10805     for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I)
10806       for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J) {
10807         LoopSize += TII->GetInstSizeInBytes(J);
10808         if (LoopSize > 32)
10809           break;
10810       }
10811 
10812     if (LoopSize > 16 && LoopSize <= 32)
10813       return 5;
10814 
10815     break;
10816   }
10817   }
10818 
10819   return TargetLowering::getPrefLoopAlignment(ML);
10820 }
10821 
10822 /// getConstraintType - Given a constraint, return the type of
10823 /// constraint it is for this target.
10824 PPCTargetLowering::ConstraintType
10825 PPCTargetLowering::getConstraintType(StringRef Constraint) const {
10826   if (Constraint.size() == 1) {
10827     switch (Constraint[0]) {
10828     default: break;
10829     case 'b':
10830     case 'r':
10831     case 'f':
10832     case 'v':
10833     case 'y':
10834       return C_RegisterClass;
10835     case 'Z':
10836       // FIXME: While Z does indicate a memory constraint, it specifically
10837       // indicates an r+r address (used in conjunction with the 'y' modifier
10838       // in the replacement string). Currently, we're forcing the base
10839       // register to be r0 in the asm printer (which is interpreted as zero)
10840       // and forming the complete address in the second register. This is
10841       // suboptimal.
10842       return C_Memory;
10843     }
10844   } else if (Constraint == "wc") { // individual CR bits.
10845     return C_RegisterClass;
10846   } else if (Constraint == "wa" || Constraint == "wd" ||
10847              Constraint == "wf" || Constraint == "ws") {
10848     return C_RegisterClass; // VSX registers.
10849   }
10850   return TargetLowering::getConstraintType(Constraint);
10851 }
10852 
10853 /// Examine constraint type and operand type and determine a weight value.
10854 /// This object must already have been set up with the operand type
10855 /// and the current alternative constraint selected.
10856 TargetLowering::ConstraintWeight
10857 PPCTargetLowering::getSingleConstraintMatchWeight(
10858     AsmOperandInfo &info, const char *constraint) const {
10859   ConstraintWeight weight = CW_Invalid;
10860   Value *CallOperandVal = info.CallOperandVal;
10861     // If we don't have a value, we can't do a match,
10862     // but allow it at the lowest weight.
10863   if (!CallOperandVal)
10864     return CW_Default;
10865   Type *type = CallOperandVal->getType();
10866 
10867   // Look at the constraint type.
10868   if (StringRef(constraint) == "wc" && type->isIntegerTy(1))
10869     return CW_Register; // an individual CR bit.
10870   else if ((StringRef(constraint) == "wa" ||
10871             StringRef(constraint) == "wd" ||
10872             StringRef(constraint) == "wf") &&
10873            type->isVectorTy())
10874     return CW_Register;
10875   else if (StringRef(constraint) == "ws" && type->isDoubleTy())
10876     return CW_Register;
10877 
10878   switch (*constraint) {
10879   default:
10880     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
10881     break;
10882   case 'b':
10883     if (type->isIntegerTy())
10884       weight = CW_Register;
10885     break;
10886   case 'f':
10887     if (type->isFloatTy())
10888       weight = CW_Register;
10889     break;
10890   case 'd':
10891     if (type->isDoubleTy())
10892       weight = CW_Register;
10893     break;
10894   case 'v':
10895     if (type->isVectorTy())
10896       weight = CW_Register;
10897     break;
10898   case 'y':
10899     weight = CW_Register;
10900     break;
10901   case 'Z':
10902     weight = CW_Memory;
10903     break;
10904   }
10905   return weight;
10906 }
10907 
10908 std::pair<unsigned, const TargetRegisterClass *>
10909 PPCTargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
10910                                                 StringRef Constraint,
10911                                                 MVT VT) const {
10912   if (Constraint.size() == 1) {
10913     // GCC RS6000 Constraint Letters
10914     switch (Constraint[0]) {
10915     case 'b':   // R1-R31
10916       if (VT == MVT::i64 && Subtarget.isPPC64())
10917         return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
10918       return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
10919     case 'r':   // R0-R31
10920       if (VT == MVT::i64 && Subtarget.isPPC64())
10921         return std::make_pair(0U, &PPC::G8RCRegClass);
10922       return std::make_pair(0U, &PPC::GPRCRegClass);
10923     case 'f':
10924       if (VT == MVT::f32 || VT == MVT::i32)
10925         return std::make_pair(0U, &PPC::F4RCRegClass);
10926       if (VT == MVT::f64 || VT == MVT::i64)
10927         return std::make_pair(0U, &PPC::F8RCRegClass);
10928       if (VT == MVT::v4f64 && Subtarget.hasQPX())
10929         return std::make_pair(0U, &PPC::QFRCRegClass);
10930       if (VT == MVT::v4f32 && Subtarget.hasQPX())
10931         return std::make_pair(0U, &PPC::QSRCRegClass);
10932       break;
10933     case 'v':
10934       if (VT == MVT::v4f64 && Subtarget.hasQPX())
10935         return std::make_pair(0U, &PPC::QFRCRegClass);
10936       if (VT == MVT::v4f32 && Subtarget.hasQPX())
10937         return std::make_pair(0U, &PPC::QSRCRegClass);
10938       if (Subtarget.hasAltivec())
10939         return std::make_pair(0U, &PPC::VRRCRegClass);
10940     case 'y':   // crrc
10941       return std::make_pair(0U, &PPC::CRRCRegClass);
10942     }
10943   } else if (Constraint == "wc" && Subtarget.useCRBits()) {
10944     // An individual CR bit.
10945     return std::make_pair(0U, &PPC::CRBITRCRegClass);
10946   } else if ((Constraint == "wa" || Constraint == "wd" ||
10947              Constraint == "wf") && Subtarget.hasVSX()) {
10948     return std::make_pair(0U, &PPC::VSRCRegClass);
10949   } else if (Constraint == "ws" && Subtarget.hasVSX()) {
10950     if (VT == MVT::f32 && Subtarget.hasP8Vector())
10951       return std::make_pair(0U, &PPC::VSSRCRegClass);
10952     else
10953       return std::make_pair(0U, &PPC::VSFRCRegClass);
10954   }
10955 
10956   std::pair<unsigned, const TargetRegisterClass *> R =
10957       TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
10958 
10959   // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
10960   // (which we call X[0-9]+). If a 64-bit value has been requested, and a
10961   // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
10962   // register.
10963   // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
10964   // the AsmName field from *RegisterInfo.td, then this would not be necessary.
10965   if (R.first && VT == MVT::i64 && Subtarget.isPPC64() &&
10966       PPC::GPRCRegClass.contains(R.first))
10967     return std::make_pair(TRI->getMatchingSuperReg(R.first,
10968                             PPC::sub_32, &PPC::G8RCRegClass),
10969                           &PPC::G8RCRegClass);
10970 
10971   // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same.
10972   if (!R.second && StringRef("{cc}").equals_lower(Constraint)) {
10973     R.first = PPC::CR0;
10974     R.second = &PPC::CRRCRegClass;
10975   }
10976 
10977   return R;
10978 }
10979 
10980 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
10981 /// vector.  If it is invalid, don't add anything to Ops.
10982 void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
10983                                                      std::string &Constraint,
10984                                                      std::vector<SDValue>&Ops,
10985                                                      SelectionDAG &DAG) const {
10986   SDValue Result;
10987 
10988   // Only support length 1 constraints.
10989   if (Constraint.length() > 1) return;
10990 
10991   char Letter = Constraint[0];
10992   switch (Letter) {
10993   default: break;
10994   case 'I':
10995   case 'J':
10996   case 'K':
10997   case 'L':
10998   case 'M':
10999   case 'N':
11000   case 'O':
11001   case 'P': {
11002     ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
11003     if (!CST) return; // Must be an immediate to match.
11004     SDLoc dl(Op);
11005     int64_t Value = CST->getSExtValue();
11006     EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative
11007                          // numbers are printed as such.
11008     switch (Letter) {
11009     default: llvm_unreachable("Unknown constraint letter!");
11010     case 'I':  // "I" is a signed 16-bit constant.
11011       if (isInt<16>(Value))
11012         Result = DAG.getTargetConstant(Value, dl, TCVT);
11013       break;
11014     case 'J':  // "J" is a constant with only the high-order 16 bits nonzero.
11015       if (isShiftedUInt<16, 16>(Value))
11016         Result = DAG.getTargetConstant(Value, dl, TCVT);
11017       break;
11018     case 'L':  // "L" is a signed 16-bit constant shifted left 16 bits.
11019       if (isShiftedInt<16, 16>(Value))
11020         Result = DAG.getTargetConstant(Value, dl, TCVT);
11021       break;
11022     case 'K':  // "K" is a constant with only the low-order 16 bits nonzero.
11023       if (isUInt<16>(Value))
11024         Result = DAG.getTargetConstant(Value, dl, TCVT);
11025       break;
11026     case 'M':  // "M" is a constant that is greater than 31.
11027       if (Value > 31)
11028         Result = DAG.getTargetConstant(Value, dl, TCVT);
11029       break;
11030     case 'N':  // "N" is a positive constant that is an exact power of two.
11031       if (Value > 0 && isPowerOf2_64(Value))
11032         Result = DAG.getTargetConstant(Value, dl, TCVT);
11033       break;
11034     case 'O':  // "O" is the constant zero.
11035       if (Value == 0)
11036         Result = DAG.getTargetConstant(Value, dl, TCVT);
11037       break;
11038     case 'P':  // "P" is a constant whose negation is a signed 16-bit constant.
11039       if (isInt<16>(-Value))
11040         Result = DAG.getTargetConstant(Value, dl, TCVT);
11041       break;
11042     }
11043     break;
11044   }
11045   }
11046 
11047   if (Result.getNode()) {
11048     Ops.push_back(Result);
11049     return;
11050   }
11051 
11052   // Handle standard constraint letters.
11053   TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
11054 }
11055 
11056 // isLegalAddressingMode - Return true if the addressing mode represented
11057 // by AM is legal for this target, for a load/store of the specified type.
11058 bool PPCTargetLowering::isLegalAddressingMode(const DataLayout &DL,
11059                                               const AddrMode &AM, Type *Ty,
11060                                               unsigned AS) const {
11061   // PPC does not allow r+i addressing modes for vectors!
11062   if (Ty->isVectorTy() && AM.BaseOffs != 0)
11063     return false;
11064 
11065   // PPC allows a sign-extended 16-bit immediate field.
11066   if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
11067     return false;
11068 
11069   // No global is ever allowed as a base.
11070   if (AM.BaseGV)
11071     return false;
11072 
11073   // PPC only support r+r,
11074   switch (AM.Scale) {
11075   case 0:  // "r+i" or just "i", depending on HasBaseReg.
11076     break;
11077   case 1:
11078     if (AM.HasBaseReg && AM.BaseOffs)  // "r+r+i" is not allowed.
11079       return false;
11080     // Otherwise we have r+r or r+i.
11081     break;
11082   case 2:
11083     if (AM.HasBaseReg || AM.BaseOffs)  // 2*r+r  or  2*r+i is not allowed.
11084       return false;
11085     // Allow 2*r as r+r.
11086     break;
11087   default:
11088     // No other scales are supported.
11089     return false;
11090   }
11091 
11092   return true;
11093 }
11094 
11095 SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
11096                                            SelectionDAG &DAG) const {
11097   MachineFunction &MF = DAG.getMachineFunction();
11098   MachineFrameInfo *MFI = MF.getFrameInfo();
11099   MFI->setReturnAddressIsTaken(true);
11100 
11101   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
11102     return SDValue();
11103 
11104   SDLoc dl(Op);
11105   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11106 
11107   // Make sure the function does not optimize away the store of the RA to
11108   // the stack.
11109   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
11110   FuncInfo->setLRStoreRequired();
11111   bool isPPC64 = Subtarget.isPPC64();
11112   auto PtrVT = getPointerTy(MF.getDataLayout());
11113 
11114   if (Depth > 0) {
11115     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11116     SDValue Offset =
11117         DAG.getConstant(Subtarget.getFrameLowering()->getReturnSaveOffset(), dl,
11118                         isPPC64 ? MVT::i64 : MVT::i32);
11119     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11120                        DAG.getNode(ISD::ADD, dl, PtrVT, FrameAddr, Offset),
11121                        MachinePointerInfo(), false, false, false, 0);
11122   }
11123 
11124   // Just load the return address off the stack.
11125   SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
11126   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), RetAddrFI,
11127                      MachinePointerInfo(), false, false, false, 0);
11128 }
11129 
11130 SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
11131                                           SelectionDAG &DAG) const {
11132   SDLoc dl(Op);
11133   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11134 
11135   MachineFunction &MF = DAG.getMachineFunction();
11136   MachineFrameInfo *MFI = MF.getFrameInfo();
11137   MFI->setFrameAddressIsTaken(true);
11138 
11139   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(MF.getDataLayout());
11140   bool isPPC64 = PtrVT == MVT::i64;
11141 
11142   // Naked functions never have a frame pointer, and so we use r1. For all
11143   // other functions, this decision must be delayed until during PEI.
11144   unsigned FrameReg;
11145   if (MF.getFunction()->hasFnAttribute(Attribute::Naked))
11146     FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
11147   else
11148     FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
11149 
11150   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
11151                                          PtrVT);
11152   while (Depth--)
11153     FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
11154                             FrameAddr, MachinePointerInfo(), false, false,
11155                             false, 0);
11156   return FrameAddr;
11157 }
11158 
11159 // FIXME? Maybe this could be a TableGen attribute on some registers and
11160 // this table could be generated automatically from RegInfo.
11161 unsigned PPCTargetLowering::getRegisterByName(const char* RegName, EVT VT,
11162                                               SelectionDAG &DAG) const {
11163   bool isPPC64 = Subtarget.isPPC64();
11164   bool isDarwinABI = Subtarget.isDarwinABI();
11165 
11166   if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) ||
11167       (!isPPC64 && VT != MVT::i32))
11168     report_fatal_error("Invalid register global variable type");
11169 
11170   bool is64Bit = isPPC64 && VT == MVT::i64;
11171   unsigned Reg = StringSwitch<unsigned>(RegName)
11172                    .Case("r1", is64Bit ? PPC::X1 : PPC::R1)
11173                    .Case("r2", (isDarwinABI || isPPC64) ? 0 : PPC::R2)
11174                    .Case("r13", (!isPPC64 && isDarwinABI) ? 0 :
11175                                   (is64Bit ? PPC::X13 : PPC::R13))
11176                    .Default(0);
11177 
11178   if (Reg)
11179     return Reg;
11180   report_fatal_error("Invalid register name global variable");
11181 }
11182 
11183 bool
11184 PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
11185   // The PowerPC target isn't yet aware of offsets.
11186   return false;
11187 }
11188 
11189 bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
11190                                            const CallInst &I,
11191                                            unsigned Intrinsic) const {
11192 
11193   switch (Intrinsic) {
11194   case Intrinsic::ppc_qpx_qvlfd:
11195   case Intrinsic::ppc_qpx_qvlfs:
11196   case Intrinsic::ppc_qpx_qvlfcd:
11197   case Intrinsic::ppc_qpx_qvlfcs:
11198   case Intrinsic::ppc_qpx_qvlfiwa:
11199   case Intrinsic::ppc_qpx_qvlfiwz:
11200   case Intrinsic::ppc_altivec_lvx:
11201   case Intrinsic::ppc_altivec_lvxl:
11202   case Intrinsic::ppc_altivec_lvebx:
11203   case Intrinsic::ppc_altivec_lvehx:
11204   case Intrinsic::ppc_altivec_lvewx:
11205   case Intrinsic::ppc_vsx_lxvd2x:
11206   case Intrinsic::ppc_vsx_lxvw4x: {
11207     EVT VT;
11208     switch (Intrinsic) {
11209     case Intrinsic::ppc_altivec_lvebx:
11210       VT = MVT::i8;
11211       break;
11212     case Intrinsic::ppc_altivec_lvehx:
11213       VT = MVT::i16;
11214       break;
11215     case Intrinsic::ppc_altivec_lvewx:
11216       VT = MVT::i32;
11217       break;
11218     case Intrinsic::ppc_vsx_lxvd2x:
11219       VT = MVT::v2f64;
11220       break;
11221     case Intrinsic::ppc_qpx_qvlfd:
11222       VT = MVT::v4f64;
11223       break;
11224     case Intrinsic::ppc_qpx_qvlfs:
11225       VT = MVT::v4f32;
11226       break;
11227     case Intrinsic::ppc_qpx_qvlfcd:
11228       VT = MVT::v2f64;
11229       break;
11230     case Intrinsic::ppc_qpx_qvlfcs:
11231       VT = MVT::v2f32;
11232       break;
11233     default:
11234       VT = MVT::v4i32;
11235       break;
11236     }
11237 
11238     Info.opc = ISD::INTRINSIC_W_CHAIN;
11239     Info.memVT = VT;
11240     Info.ptrVal = I.getArgOperand(0);
11241     Info.offset = -VT.getStoreSize()+1;
11242     Info.size = 2*VT.getStoreSize()-1;
11243     Info.align = 1;
11244     Info.vol = false;
11245     Info.readMem = true;
11246     Info.writeMem = false;
11247     return true;
11248   }
11249   case Intrinsic::ppc_qpx_qvlfda:
11250   case Intrinsic::ppc_qpx_qvlfsa:
11251   case Intrinsic::ppc_qpx_qvlfcda:
11252   case Intrinsic::ppc_qpx_qvlfcsa:
11253   case Intrinsic::ppc_qpx_qvlfiwaa:
11254   case Intrinsic::ppc_qpx_qvlfiwza: {
11255     EVT VT;
11256     switch (Intrinsic) {
11257     case Intrinsic::ppc_qpx_qvlfda:
11258       VT = MVT::v4f64;
11259       break;
11260     case Intrinsic::ppc_qpx_qvlfsa:
11261       VT = MVT::v4f32;
11262       break;
11263     case Intrinsic::ppc_qpx_qvlfcda:
11264       VT = MVT::v2f64;
11265       break;
11266     case Intrinsic::ppc_qpx_qvlfcsa:
11267       VT = MVT::v2f32;
11268       break;
11269     default:
11270       VT = MVT::v4i32;
11271       break;
11272     }
11273 
11274     Info.opc = ISD::INTRINSIC_W_CHAIN;
11275     Info.memVT = VT;
11276     Info.ptrVal = I.getArgOperand(0);
11277     Info.offset = 0;
11278     Info.size = VT.getStoreSize();
11279     Info.align = 1;
11280     Info.vol = false;
11281     Info.readMem = true;
11282     Info.writeMem = false;
11283     return true;
11284   }
11285   case Intrinsic::ppc_qpx_qvstfd:
11286   case Intrinsic::ppc_qpx_qvstfs:
11287   case Intrinsic::ppc_qpx_qvstfcd:
11288   case Intrinsic::ppc_qpx_qvstfcs:
11289   case Intrinsic::ppc_qpx_qvstfiw:
11290   case Intrinsic::ppc_altivec_stvx:
11291   case Intrinsic::ppc_altivec_stvxl:
11292   case Intrinsic::ppc_altivec_stvebx:
11293   case Intrinsic::ppc_altivec_stvehx:
11294   case Intrinsic::ppc_altivec_stvewx:
11295   case Intrinsic::ppc_vsx_stxvd2x:
11296   case Intrinsic::ppc_vsx_stxvw4x: {
11297     EVT VT;
11298     switch (Intrinsic) {
11299     case Intrinsic::ppc_altivec_stvebx:
11300       VT = MVT::i8;
11301       break;
11302     case Intrinsic::ppc_altivec_stvehx:
11303       VT = MVT::i16;
11304       break;
11305     case Intrinsic::ppc_altivec_stvewx:
11306       VT = MVT::i32;
11307       break;
11308     case Intrinsic::ppc_vsx_stxvd2x:
11309       VT = MVT::v2f64;
11310       break;
11311     case Intrinsic::ppc_qpx_qvstfd:
11312       VT = MVT::v4f64;
11313       break;
11314     case Intrinsic::ppc_qpx_qvstfs:
11315       VT = MVT::v4f32;
11316       break;
11317     case Intrinsic::ppc_qpx_qvstfcd:
11318       VT = MVT::v2f64;
11319       break;
11320     case Intrinsic::ppc_qpx_qvstfcs:
11321       VT = MVT::v2f32;
11322       break;
11323     default:
11324       VT = MVT::v4i32;
11325       break;
11326     }
11327 
11328     Info.opc = ISD::INTRINSIC_VOID;
11329     Info.memVT = VT;
11330     Info.ptrVal = I.getArgOperand(1);
11331     Info.offset = -VT.getStoreSize()+1;
11332     Info.size = 2*VT.getStoreSize()-1;
11333     Info.align = 1;
11334     Info.vol = false;
11335     Info.readMem = false;
11336     Info.writeMem = true;
11337     return true;
11338   }
11339   case Intrinsic::ppc_qpx_qvstfda:
11340   case Intrinsic::ppc_qpx_qvstfsa:
11341   case Intrinsic::ppc_qpx_qvstfcda:
11342   case Intrinsic::ppc_qpx_qvstfcsa:
11343   case Intrinsic::ppc_qpx_qvstfiwa: {
11344     EVT VT;
11345     switch (Intrinsic) {
11346     case Intrinsic::ppc_qpx_qvstfda:
11347       VT = MVT::v4f64;
11348       break;
11349     case Intrinsic::ppc_qpx_qvstfsa:
11350       VT = MVT::v4f32;
11351       break;
11352     case Intrinsic::ppc_qpx_qvstfcda:
11353       VT = MVT::v2f64;
11354       break;
11355     case Intrinsic::ppc_qpx_qvstfcsa:
11356       VT = MVT::v2f32;
11357       break;
11358     default:
11359       VT = MVT::v4i32;
11360       break;
11361     }
11362 
11363     Info.opc = ISD::INTRINSIC_VOID;
11364     Info.memVT = VT;
11365     Info.ptrVal = I.getArgOperand(1);
11366     Info.offset = 0;
11367     Info.size = VT.getStoreSize();
11368     Info.align = 1;
11369     Info.vol = false;
11370     Info.readMem = false;
11371     Info.writeMem = true;
11372     return true;
11373   }
11374   default:
11375     break;
11376   }
11377 
11378   return false;
11379 }
11380 
11381 /// getOptimalMemOpType - Returns the target specific optimal type for load
11382 /// and store operations as a result of memset, memcpy, and memmove
11383 /// lowering. If DstAlign is zero that means it's safe to destination
11384 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
11385 /// means there isn't a need to check it against alignment requirement,
11386 /// probably because the source does not need to be loaded. If 'IsMemset' is
11387 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
11388 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
11389 /// source is constant so it does not need to be loaded.
11390 /// It returns EVT::Other if the type should be determined using generic
11391 /// target-independent logic.
11392 EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
11393                                            unsigned DstAlign, unsigned SrcAlign,
11394                                            bool IsMemset, bool ZeroMemset,
11395                                            bool MemcpyStrSrc,
11396                                            MachineFunction &MF) const {
11397   if (getTargetMachine().getOptLevel() != CodeGenOpt::None) {
11398     const Function *F = MF.getFunction();
11399     // When expanding a memset, require at least two QPX instructions to cover
11400     // the cost of loading the value to be stored from the constant pool.
11401     if (Subtarget.hasQPX() && Size >= 32 && (!IsMemset || Size >= 64) &&
11402        (!SrcAlign || SrcAlign >= 32) && (!DstAlign || DstAlign >= 32) &&
11403         !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
11404       return MVT::v4f64;
11405     }
11406 
11407     // We should use Altivec/VSX loads and stores when available. For unaligned
11408     // addresses, unaligned VSX loads are only fast starting with the P8.
11409     if (Subtarget.hasAltivec() && Size >= 16 &&
11410         (((!SrcAlign || SrcAlign >= 16) && (!DstAlign || DstAlign >= 16)) ||
11411          ((IsMemset && Subtarget.hasVSX()) || Subtarget.hasP8Vector())))
11412       return MVT::v4i32;
11413   }
11414 
11415   if (Subtarget.isPPC64()) {
11416     return MVT::i64;
11417   }
11418 
11419   return MVT::i32;
11420 }
11421 
11422 /// \brief Returns true if it is beneficial to convert a load of a constant
11423 /// to just the constant itself.
11424 bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
11425                                                           Type *Ty) const {
11426   assert(Ty->isIntegerTy());
11427 
11428   unsigned BitSize = Ty->getPrimitiveSizeInBits();
11429   return !(BitSize == 0 || BitSize > 64);
11430 }
11431 
11432 bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
11433   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
11434     return false;
11435   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
11436   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
11437   return NumBits1 == 64 && NumBits2 == 32;
11438 }
11439 
11440 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
11441   if (!VT1.isInteger() || !VT2.isInteger())
11442     return false;
11443   unsigned NumBits1 = VT1.getSizeInBits();
11444   unsigned NumBits2 = VT2.getSizeInBits();
11445   return NumBits1 == 64 && NumBits2 == 32;
11446 }
11447 
11448 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
11449   // Generally speaking, zexts are not free, but they are free when they can be
11450   // folded with other operations.
11451   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) {
11452     EVT MemVT = LD->getMemoryVT();
11453     if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 ||
11454          (Subtarget.isPPC64() && MemVT == MVT::i32)) &&
11455         (LD->getExtensionType() == ISD::NON_EXTLOAD ||
11456          LD->getExtensionType() == ISD::ZEXTLOAD))
11457       return true;
11458   }
11459 
11460   // FIXME: Add other cases...
11461   //  - 32-bit shifts with a zext to i64
11462   //  - zext after ctlz, bswap, etc.
11463   //  - zext after and by a constant mask
11464 
11465   return TargetLowering::isZExtFree(Val, VT2);
11466 }
11467 
11468 bool PPCTargetLowering::isFPExtFree(EVT VT) const {
11469   assert(VT.isFloatingPoint());
11470   return true;
11471 }
11472 
11473 bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
11474   return isInt<16>(Imm) || isUInt<16>(Imm);
11475 }
11476 
11477 bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
11478   return isInt<16>(Imm) || isUInt<16>(Imm);
11479 }
11480 
11481 bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
11482                                                        unsigned,
11483                                                        unsigned,
11484                                                        bool *Fast) const {
11485   if (DisablePPCUnaligned)
11486     return false;
11487 
11488   // PowerPC supports unaligned memory access for simple non-vector types.
11489   // Although accessing unaligned addresses is not as efficient as accessing
11490   // aligned addresses, it is generally more efficient than manual expansion,
11491   // and generally only traps for software emulation when crossing page
11492   // boundaries.
11493 
11494   if (!VT.isSimple())
11495     return false;
11496 
11497   if (VT.getSimpleVT().isVector()) {
11498     if (Subtarget.hasVSX()) {
11499       if (VT != MVT::v2f64 && VT != MVT::v2i64 &&
11500           VT != MVT::v4f32 && VT != MVT::v4i32)
11501         return false;
11502     } else {
11503       return false;
11504     }
11505   }
11506 
11507   if (VT == MVT::ppcf128)
11508     return false;
11509 
11510   if (Fast)
11511     *Fast = true;
11512 
11513   return true;
11514 }
11515 
11516 bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
11517   VT = VT.getScalarType();
11518 
11519   if (!VT.isSimple())
11520     return false;
11521 
11522   switch (VT.getSimpleVT().SimpleTy) {
11523   case MVT::f32:
11524   case MVT::f64:
11525     return true;
11526   default:
11527     break;
11528   }
11529 
11530   return false;
11531 }
11532 
11533 const MCPhysReg *
11534 PPCTargetLowering::getScratchRegisters(CallingConv::ID) const {
11535   // LR is a callee-save register, but we must treat it as clobbered by any call
11536   // site. Hence we include LR in the scratch registers, which are in turn added
11537   // as implicit-defs for stackmaps and patchpoints. The same reasoning applies
11538   // to CTR, which is used by any indirect call.
11539   static const MCPhysReg ScratchRegs[] = {
11540     PPC::X12, PPC::LR8, PPC::CTR8, 0
11541   };
11542 
11543   return ScratchRegs;
11544 }
11545 
11546 unsigned PPCTargetLowering::getExceptionPointerRegister(
11547     const Constant *PersonalityFn) const {
11548   return Subtarget.isPPC64() ? PPC::X3 : PPC::R3;
11549 }
11550 
11551 unsigned PPCTargetLowering::getExceptionSelectorRegister(
11552     const Constant *PersonalityFn) const {
11553   return Subtarget.isPPC64() ? PPC::X4 : PPC::R4;
11554 }
11555 
11556 bool
11557 PPCTargetLowering::shouldExpandBuildVectorWithShuffles(
11558                      EVT VT , unsigned DefinedValues) const {
11559   if (VT == MVT::v2i64)
11560     return Subtarget.hasDirectMove(); // Don't need stack ops with direct moves
11561 
11562   if (Subtarget.hasQPX()) {
11563     if (VT == MVT::v4f32 || VT == MVT::v4f64 || VT == MVT::v4i1)
11564       return true;
11565   }
11566 
11567   return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
11568 }
11569 
11570 Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
11571   if (DisableILPPref || Subtarget.enableMachineScheduler())
11572     return TargetLowering::getSchedulingPreference(N);
11573 
11574   return Sched::ILP;
11575 }
11576 
11577 // Create a fast isel object.
11578 FastISel *
11579 PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
11580                                   const TargetLibraryInfo *LibInfo) const {
11581   return PPC::createFastISel(FuncInfo, LibInfo);
11582 }
11583