Stash the TargetMachine on the subtarget so we can access it later.
[oota-llvm.git] / lib / Target / PowerPC / PPCISelLowering.cpp
1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the PPCISelLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PPCISelLowering.h"
15 #include "MCTargetDesc/PPCPredicates.h"
16 #include "PPCCallingConv.h"
17 #include "PPCMachineFunctionInfo.h"
18 #include "PPCPerfectShuffle.h"
19 #include "PPCTargetMachine.h"
20 #include "PPCTargetObjectFile.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/ADT/StringSwitch.h"
23 #include "llvm/ADT/Triple.h"
24 #include "llvm/CodeGen/CallingConvLower.h"
25 #include "llvm/CodeGen/MachineFrameInfo.h"
26 #include "llvm/CodeGen/MachineFunction.h"
27 #include "llvm/CodeGen/MachineInstrBuilder.h"
28 #include "llvm/CodeGen/MachineLoopInfo.h"
29 #include "llvm/CodeGen/MachineRegisterInfo.h"
30 #include "llvm/CodeGen/SelectionDAG.h"
31 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
32 #include "llvm/IR/CallingConv.h"
33 #include "llvm/IR/Constants.h"
34 #include "llvm/IR/DerivedTypes.h"
35 #include "llvm/IR/Function.h"
36 #include "llvm/IR/Intrinsics.h"
37 #include "llvm/Support/CommandLine.h"
38 #include "llvm/Support/ErrorHandling.h"
39 #include "llvm/Support/MathExtras.h"
40 #include "llvm/Support/raw_ostream.h"
41 #include "llvm/Target/TargetOptions.h"
42 using namespace llvm;
43
44 // FIXME: Remove this once soft-float is supported.
45 static cl::opt<bool> DisablePPCFloatInVariadic("disable-ppc-float-in-variadic",
46 cl::desc("disable saving float registers for va_start on PPC"), cl::Hidden);
47
48 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
49 cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
50
51 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
52 cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden);
53
54 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
55 cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
56
57 // FIXME: Remove this once the bug has been fixed!
58 extern cl::opt<bool> ANDIGlueBug;
59
60 PPCTargetLowering::PPCTargetLowering(const PPCTargetMachine &TM,
61                                      const PPCSubtarget &STI)
62     : TargetLowering(TM), Subtarget(STI) {
63   // Use _setjmp/_longjmp instead of setjmp/longjmp.
64   setUseUnderscoreSetJmp(true);
65   setUseUnderscoreLongJmp(true);
66
67   // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all
68   // arguments are at least 4/8 bytes aligned.
69   bool isPPC64 = Subtarget.isPPC64();
70   setMinStackArgumentAlignment(isPPC64 ? 8:4);
71
72   // Set up the register classes.
73   addRegisterClass(MVT::i32, &PPC::GPRCRegClass);
74   addRegisterClass(MVT::f32, &PPC::F4RCRegClass);
75   addRegisterClass(MVT::f64, &PPC::F8RCRegClass);
76
77   // PowerPC has an i16 but no i8 (or i1) SEXTLOAD
78   for (MVT VT : MVT::integer_valuetypes()) {
79     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
80     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand);
81   }
82
83   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
84
85   // PowerPC has pre-inc load and store's.
86   setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
87   setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
88   setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
89   setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
90   setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
91   setIndexedLoadAction(ISD::PRE_INC, MVT::f32, Legal);
92   setIndexedLoadAction(ISD::PRE_INC, MVT::f64, Legal);
93   setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
94   setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
95   setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
96   setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
97   setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
98   setIndexedStoreAction(ISD::PRE_INC, MVT::f32, Legal);
99   setIndexedStoreAction(ISD::PRE_INC, MVT::f64, Legal);
100
101   if (Subtarget.useCRBits()) {
102     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
103
104     if (isPPC64 || Subtarget.hasFPCVT()) {
105       setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
106       AddPromotedToType (ISD::SINT_TO_FP, MVT::i1,
107                          isPPC64 ? MVT::i64 : MVT::i32);
108       setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
109       AddPromotedToType (ISD::UINT_TO_FP, MVT::i1, 
110                          isPPC64 ? MVT::i64 : MVT::i32);
111     } else {
112       setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom);
113       setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom);
114     }
115
116     // PowerPC does not support direct load / store of condition registers
117     setOperationAction(ISD::LOAD, MVT::i1, Custom);
118     setOperationAction(ISD::STORE, MVT::i1, Custom);
119
120     // FIXME: Remove this once the ANDI glue bug is fixed:
121     if (ANDIGlueBug)
122       setOperationAction(ISD::TRUNCATE, MVT::i1, Custom);
123
124     for (MVT VT : MVT::integer_valuetypes()) {
125       setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
126       setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote);
127       setTruncStoreAction(VT, MVT::i1, Expand);
128     }
129
130     addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass);
131   }
132
133   // This is used in the ppcf128->int sequence.  Note it has different semantics
134   // from FP_ROUND:  that rounds to nearest, this rounds to zero.
135   setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom);
136
137   // We do not currently implement these libm ops for PowerPC.
138   setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand);
139   setOperationAction(ISD::FCEIL,  MVT::ppcf128, Expand);
140   setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand);
141   setOperationAction(ISD::FRINT,  MVT::ppcf128, Expand);
142   setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand);
143   setOperationAction(ISD::FREM, MVT::ppcf128, Expand);
144
145   // PowerPC has no SREM/UREM instructions
146   setOperationAction(ISD::SREM, MVT::i32, Expand);
147   setOperationAction(ISD::UREM, MVT::i32, Expand);
148   setOperationAction(ISD::SREM, MVT::i64, Expand);
149   setOperationAction(ISD::UREM, MVT::i64, Expand);
150
151   // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM.
152   setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
153   setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
154   setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
155   setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
156   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
157   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
158   setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
159   setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
160
161   // We don't support sin/cos/sqrt/fmod/pow
162   setOperationAction(ISD::FSIN , MVT::f64, Expand);
163   setOperationAction(ISD::FCOS , MVT::f64, Expand);
164   setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
165   setOperationAction(ISD::FREM , MVT::f64, Expand);
166   setOperationAction(ISD::FPOW , MVT::f64, Expand);
167   setOperationAction(ISD::FMA  , MVT::f64, Legal);
168   setOperationAction(ISD::FSIN , MVT::f32, Expand);
169   setOperationAction(ISD::FCOS , MVT::f32, Expand);
170   setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
171   setOperationAction(ISD::FREM , MVT::f32, Expand);
172   setOperationAction(ISD::FPOW , MVT::f32, Expand);
173   setOperationAction(ISD::FMA  , MVT::f32, Legal);
174
175   setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
176
177   // If we're enabling GP optimizations, use hardware square root
178   if (!Subtarget.hasFSQRT() &&
179       !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTE() &&
180         Subtarget.hasFRE()))
181     setOperationAction(ISD::FSQRT, MVT::f64, Expand);
182
183   if (!Subtarget.hasFSQRT() &&
184       !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTES() &&
185         Subtarget.hasFRES()))
186     setOperationAction(ISD::FSQRT, MVT::f32, Expand);
187
188   if (Subtarget.hasFCPSGN()) {
189     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal);
190     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal);
191   } else {
192     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
193     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
194   }
195
196   if (Subtarget.hasFPRND()) {
197     setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
198     setOperationAction(ISD::FCEIL,  MVT::f64, Legal);
199     setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
200     setOperationAction(ISD::FROUND, MVT::f64, Legal);
201
202     setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
203     setOperationAction(ISD::FCEIL,  MVT::f32, Legal);
204     setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
205     setOperationAction(ISD::FROUND, MVT::f32, Legal);
206   }
207
208   // PowerPC does not have BSWAP, CTPOP or CTTZ
209   setOperationAction(ISD::BSWAP, MVT::i32  , Expand);
210   setOperationAction(ISD::CTTZ , MVT::i32  , Expand);
211   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
212   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
213   setOperationAction(ISD::BSWAP, MVT::i64  , Expand);
214   setOperationAction(ISD::CTTZ , MVT::i64  , Expand);
215   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
216   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
217
218   if (Subtarget.hasPOPCNTD()) {
219     setOperationAction(ISD::CTPOP, MVT::i32  , Legal);
220     setOperationAction(ISD::CTPOP, MVT::i64  , Legal);
221   } else {
222     setOperationAction(ISD::CTPOP, MVT::i32  , Expand);
223     setOperationAction(ISD::CTPOP, MVT::i64  , Expand);
224   }
225
226   // PowerPC does not have ROTR
227   setOperationAction(ISD::ROTR, MVT::i32   , Expand);
228   setOperationAction(ISD::ROTR, MVT::i64   , Expand);
229
230   if (!Subtarget.useCRBits()) {
231     // PowerPC does not have Select
232     setOperationAction(ISD::SELECT, MVT::i32, Expand);
233     setOperationAction(ISD::SELECT, MVT::i64, Expand);
234     setOperationAction(ISD::SELECT, MVT::f32, Expand);
235     setOperationAction(ISD::SELECT, MVT::f64, Expand);
236   }
237
238   // PowerPC wants to turn select_cc of FP into fsel when possible.
239   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
240   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
241
242   // PowerPC wants to optimize integer setcc a bit
243   if (!Subtarget.useCRBits())
244     setOperationAction(ISD::SETCC, MVT::i32, Custom);
245
246   // PowerPC does not have BRCOND which requires SetCC
247   if (!Subtarget.useCRBits())
248     setOperationAction(ISD::BRCOND, MVT::Other, Expand);
249
250   setOperationAction(ISD::BR_JT,  MVT::Other, Expand);
251
252   // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores.
253   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
254
255   // PowerPC does not have [U|S]INT_TO_FP
256   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
257   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
258
259   setOperationAction(ISD::BITCAST, MVT::f32, Expand);
260   setOperationAction(ISD::BITCAST, MVT::i32, Expand);
261   setOperationAction(ISD::BITCAST, MVT::i64, Expand);
262   setOperationAction(ISD::BITCAST, MVT::f64, Expand);
263
264   // We cannot sextinreg(i1).  Expand to shifts.
265   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
266
267   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
268   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
269   // support continuation, user-level threading, and etc.. As a result, no
270   // other SjLj exception interfaces are implemented and please don't build
271   // your own exception handling based on them.
272   // LLVM/Clang supports zero-cost DWARF exception handling.
273   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
274   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
275
276   // We want to legalize GlobalAddress and ConstantPool nodes into the
277   // appropriate instructions to materialize the address.
278   setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
279   setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
280   setOperationAction(ISD::BlockAddress,  MVT::i32, Custom);
281   setOperationAction(ISD::ConstantPool,  MVT::i32, Custom);
282   setOperationAction(ISD::JumpTable,     MVT::i32, Custom);
283   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
284   setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
285   setOperationAction(ISD::BlockAddress,  MVT::i64, Custom);
286   setOperationAction(ISD::ConstantPool,  MVT::i64, Custom);
287   setOperationAction(ISD::JumpTable,     MVT::i64, Custom);
288
289   // TRAP is legal.
290   setOperationAction(ISD::TRAP, MVT::Other, Legal);
291
292   // TRAMPOLINE is custom lowered.
293   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
294   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
295
296   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
297   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
298
299   if (Subtarget.isSVR4ABI()) {
300     if (isPPC64) {
301       // VAARG always uses double-word chunks, so promote anything smaller.
302       setOperationAction(ISD::VAARG, MVT::i1, Promote);
303       AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64);
304       setOperationAction(ISD::VAARG, MVT::i8, Promote);
305       AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64);
306       setOperationAction(ISD::VAARG, MVT::i16, Promote);
307       AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64);
308       setOperationAction(ISD::VAARG, MVT::i32, Promote);
309       AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64);
310       setOperationAction(ISD::VAARG, MVT::Other, Expand);
311     } else {
312       // VAARG is custom lowered with the 32-bit SVR4 ABI.
313       setOperationAction(ISD::VAARG, MVT::Other, Custom);
314       setOperationAction(ISD::VAARG, MVT::i64, Custom);
315     }
316   } else
317     setOperationAction(ISD::VAARG, MVT::Other, Expand);
318
319   if (Subtarget.isSVR4ABI() && !isPPC64)
320     // VACOPY is custom lowered with the 32-bit SVR4 ABI.
321     setOperationAction(ISD::VACOPY            , MVT::Other, Custom);
322   else
323     setOperationAction(ISD::VACOPY            , MVT::Other, Expand);
324
325   // Use the default implementation.
326   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
327   setOperationAction(ISD::STACKSAVE         , MVT::Other, Expand);
328   setOperationAction(ISD::STACKRESTORE      , MVT::Other, Custom);
329   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32  , Custom);
330   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64  , Custom);
331
332   // We want to custom lower some of our intrinsics.
333   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
334
335   // To handle counter-based loop conditions.
336   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom);
337
338   // Comparisons that require checking two conditions.
339   setCondCodeAction(ISD::SETULT, MVT::f32, Expand);
340   setCondCodeAction(ISD::SETULT, MVT::f64, Expand);
341   setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
342   setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
343   setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand);
344   setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand);
345   setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
346   setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
347   setCondCodeAction(ISD::SETOLE, MVT::f32, Expand);
348   setCondCodeAction(ISD::SETOLE, MVT::f64, Expand);
349   setCondCodeAction(ISD::SETONE, MVT::f32, Expand);
350   setCondCodeAction(ISD::SETONE, MVT::f64, Expand);
351
352   if (Subtarget.has64BitSupport()) {
353     // They also have instructions for converting between i64 and fp.
354     setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
355     setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand);
356     setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
357     setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
358     // This is just the low 32 bits of a (signed) fp->i64 conversion.
359     // We cannot do this with Promote because i64 is not a legal type.
360     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
361
362     if (Subtarget.hasLFIWAX() || Subtarget.isPPC64())
363       setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
364   } else {
365     // PowerPC does not have FP_TO_UINT on 32-bit implementations.
366     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
367   }
368
369   // With the instructions enabled under FPCVT, we can do everything.
370   if (Subtarget.hasFPCVT()) {
371     if (Subtarget.has64BitSupport()) {
372       setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
373       setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
374       setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
375       setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
376     }
377
378     setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
379     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
380     setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
381     setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
382   }
383
384   if (Subtarget.use64BitRegs()) {
385     // 64-bit PowerPC implementations can support i64 types directly
386     addRegisterClass(MVT::i64, &PPC::G8RCRegClass);
387     // BUILD_PAIR can't be handled natively, and should be expanded to shl/or
388     setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
389     // 64-bit PowerPC wants to expand i128 shifts itself.
390     setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
391     setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
392     setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
393   } else {
394     // 32-bit PowerPC wants to expand i64 shifts itself.
395     setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
396     setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
397     setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
398   }
399
400   if (Subtarget.hasAltivec()) {
401     // First set operation action for all vector types to expand. Then we
402     // will selectively turn on ones that can be effectively codegen'd.
403     for (MVT VT : MVT::vector_valuetypes()) {
404       // add/sub are legal for all supported vector VT's.
405       setOperationAction(ISD::ADD , VT, Legal);
406       setOperationAction(ISD::SUB , VT, Legal);
407
408       // Vector instructions introduced in P8
409       if (Subtarget.hasP8Altivec()) {
410         setOperationAction(ISD::CTPOP, VT, Legal);
411         setOperationAction(ISD::CTLZ, VT, Legal);
412       }
413       else {
414         setOperationAction(ISD::CTPOP, VT, Expand);
415         setOperationAction(ISD::CTLZ, VT, Expand);
416       }
417
418       // We promote all shuffles to v16i8.
419       setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote);
420       AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8);
421
422       // We promote all non-typed operations to v4i32.
423       setOperationAction(ISD::AND   , VT, Promote);
424       AddPromotedToType (ISD::AND   , VT, MVT::v4i32);
425       setOperationAction(ISD::OR    , VT, Promote);
426       AddPromotedToType (ISD::OR    , VT, MVT::v4i32);
427       setOperationAction(ISD::XOR   , VT, Promote);
428       AddPromotedToType (ISD::XOR   , VT, MVT::v4i32);
429       setOperationAction(ISD::LOAD  , VT, Promote);
430       AddPromotedToType (ISD::LOAD  , VT, MVT::v4i32);
431       setOperationAction(ISD::SELECT, VT, Promote);
432       AddPromotedToType (ISD::SELECT, VT, MVT::v4i32);
433       setOperationAction(ISD::STORE, VT, Promote);
434       AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
435
436       // No other operations are legal.
437       setOperationAction(ISD::MUL , VT, Expand);
438       setOperationAction(ISD::SDIV, VT, Expand);
439       setOperationAction(ISD::SREM, VT, Expand);
440       setOperationAction(ISD::UDIV, VT, Expand);
441       setOperationAction(ISD::UREM, VT, Expand);
442       setOperationAction(ISD::FDIV, VT, Expand);
443       setOperationAction(ISD::FREM, VT, Expand);
444       setOperationAction(ISD::FNEG, VT, Expand);
445       setOperationAction(ISD::FSQRT, VT, Expand);
446       setOperationAction(ISD::FLOG, VT, Expand);
447       setOperationAction(ISD::FLOG10, VT, Expand);
448       setOperationAction(ISD::FLOG2, VT, Expand);
449       setOperationAction(ISD::FEXP, VT, Expand);
450       setOperationAction(ISD::FEXP2, VT, Expand);
451       setOperationAction(ISD::FSIN, VT, Expand);
452       setOperationAction(ISD::FCOS, VT, Expand);
453       setOperationAction(ISD::FABS, VT, Expand);
454       setOperationAction(ISD::FPOWI, VT, Expand);
455       setOperationAction(ISD::FFLOOR, VT, Expand);
456       setOperationAction(ISD::FCEIL,  VT, Expand);
457       setOperationAction(ISD::FTRUNC, VT, Expand);
458       setOperationAction(ISD::FRINT,  VT, Expand);
459       setOperationAction(ISD::FNEARBYINT, VT, Expand);
460       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand);
461       setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
462       setOperationAction(ISD::BUILD_VECTOR, VT, Expand);
463       setOperationAction(ISD::MULHU, VT, Expand);
464       setOperationAction(ISD::MULHS, VT, Expand);
465       setOperationAction(ISD::UMUL_LOHI, VT, Expand);
466       setOperationAction(ISD::SMUL_LOHI, VT, Expand);
467       setOperationAction(ISD::UDIVREM, VT, Expand);
468       setOperationAction(ISD::SDIVREM, VT, Expand);
469       setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand);
470       setOperationAction(ISD::FPOW, VT, Expand);
471       setOperationAction(ISD::BSWAP, VT, Expand);
472       setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
473       setOperationAction(ISD::CTTZ, VT, Expand);
474       setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
475       setOperationAction(ISD::VSELECT, VT, Expand);
476       setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
477
478       for (MVT InnerVT : MVT::vector_valuetypes()) {
479         setTruncStoreAction(VT, InnerVT, Expand);
480         setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
481         setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
482         setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
483       }
484     }
485
486     // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle
487     // with merges, splats, etc.
488     setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom);
489
490     setOperationAction(ISD::AND   , MVT::v4i32, Legal);
491     setOperationAction(ISD::OR    , MVT::v4i32, Legal);
492     setOperationAction(ISD::XOR   , MVT::v4i32, Legal);
493     setOperationAction(ISD::LOAD  , MVT::v4i32, Legal);
494     setOperationAction(ISD::SELECT, MVT::v4i32,
495                        Subtarget.useCRBits() ? Legal : Expand);
496     setOperationAction(ISD::STORE , MVT::v4i32, Legal);
497     setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
498     setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal);
499     setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
500     setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal);
501     setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal);
502     setOperationAction(ISD::FCEIL, MVT::v4f32, Legal);
503     setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal);
504     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal);
505
506     addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass);
507     addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass);
508     addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass);
509     addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass);
510
511     setOperationAction(ISD::MUL, MVT::v4f32, Legal);
512     setOperationAction(ISD::FMA, MVT::v4f32, Legal);
513
514     if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) {
515       setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
516       setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
517     }
518
519     setOperationAction(ISD::MUL, MVT::v4i32, Custom);
520     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
521     setOperationAction(ISD::MUL, MVT::v16i8, Custom);
522
523     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom);
524     setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom);
525
526     setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom);
527     setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom);
528     setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom);
529     setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
530
531     // Altivec does not contain unordered floating-point compare instructions
532     setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand);
533     setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand);
534     setCondCodeAction(ISD::SETO,   MVT::v4f32, Expand);
535     setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand);
536
537     if (Subtarget.hasVSX()) {
538       setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal);
539       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal);
540
541       setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal);
542       setOperationAction(ISD::FCEIL, MVT::v2f64, Legal);
543       setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal);
544       setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal);
545       setOperationAction(ISD::FROUND, MVT::v2f64, Legal);
546
547       setOperationAction(ISD::FROUND, MVT::v4f32, Legal);
548
549       setOperationAction(ISD::MUL, MVT::v2f64, Legal);
550       setOperationAction(ISD::FMA, MVT::v2f64, Legal);
551
552       setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
553       setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
554
555       setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
556       setOperationAction(ISD::VSELECT, MVT::v8i16, Legal);
557       setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
558       setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
559       setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
560
561       // Share the Altivec comparison restrictions.
562       setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand);
563       setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand);
564       setCondCodeAction(ISD::SETO,   MVT::v2f64, Expand);
565       setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand);
566
567       setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
568       setOperationAction(ISD::STORE, MVT::v2f64, Legal);
569
570       setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal);
571
572       addRegisterClass(MVT::f64, &PPC::VSFRCRegClass);
573
574       addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass);
575       addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass);
576
577       // VSX v2i64 only supports non-arithmetic operations.
578       setOperationAction(ISD::ADD, MVT::v2i64, Expand);
579       setOperationAction(ISD::SUB, MVT::v2i64, Expand);
580
581       setOperationAction(ISD::SHL, MVT::v2i64, Expand);
582       setOperationAction(ISD::SRA, MVT::v2i64, Expand);
583       setOperationAction(ISD::SRL, MVT::v2i64, Expand);
584
585       setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
586
587       setOperationAction(ISD::LOAD, MVT::v2i64, Promote);
588       AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64);
589       setOperationAction(ISD::STORE, MVT::v2i64, Promote);
590       AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64);
591
592       setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal);
593
594       setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal);
595       setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal);
596       setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal);
597       setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal);
598
599       // Vector operation legalization checks the result type of
600       // SIGN_EXTEND_INREG, overall legalization checks the inner type.
601       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal);
602       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal);
603       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
604       setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
605
606       addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass);
607     }
608
609     if (Subtarget.hasP8Altivec()) 
610       addRegisterClass(MVT::v2i64, &PPC::VRRCRegClass);
611   }
612
613   if (Subtarget.has64BitSupport())
614     setOperationAction(ISD::PREFETCH, MVT::Other, Legal);
615
616   setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, isPPC64 ? Legal : Custom);
617
618   if (!isPPC64) {
619     setOperationAction(ISD::ATOMIC_LOAD,  MVT::i64, Expand);
620     setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand);
621   }
622
623   setBooleanContents(ZeroOrOneBooleanContent);
624   // Altivec instructions set fields to all zeros or all ones.
625   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
626
627   if (!isPPC64) {
628     // These libcalls are not available in 32-bit.
629     setLibcallName(RTLIB::SHL_I128, nullptr);
630     setLibcallName(RTLIB::SRL_I128, nullptr);
631     setLibcallName(RTLIB::SRA_I128, nullptr);
632   }
633
634   if (isPPC64) {
635     setStackPointerRegisterToSaveRestore(PPC::X1);
636     setExceptionPointerRegister(PPC::X3);
637     setExceptionSelectorRegister(PPC::X4);
638   } else {
639     setStackPointerRegisterToSaveRestore(PPC::R1);
640     setExceptionPointerRegister(PPC::R3);
641     setExceptionSelectorRegister(PPC::R4);
642   }
643
644   // We have target-specific dag combine patterns for the following nodes:
645   setTargetDAGCombine(ISD::SINT_TO_FP);
646   if (Subtarget.hasFPCVT())
647     setTargetDAGCombine(ISD::UINT_TO_FP);
648   setTargetDAGCombine(ISD::LOAD);
649   setTargetDAGCombine(ISD::STORE);
650   setTargetDAGCombine(ISD::BR_CC);
651   if (Subtarget.useCRBits())
652     setTargetDAGCombine(ISD::BRCOND);
653   setTargetDAGCombine(ISD::BSWAP);
654   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
655   setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
656   setTargetDAGCombine(ISD::INTRINSIC_VOID);
657
658   setTargetDAGCombine(ISD::SIGN_EXTEND);
659   setTargetDAGCombine(ISD::ZERO_EXTEND);
660   setTargetDAGCombine(ISD::ANY_EXTEND);
661
662   if (Subtarget.useCRBits()) {
663     setTargetDAGCombine(ISD::TRUNCATE);
664     setTargetDAGCombine(ISD::SETCC);
665     setTargetDAGCombine(ISD::SELECT_CC);
666   }
667
668   // Use reciprocal estimates.
669   if (TM.Options.UnsafeFPMath) {
670     setTargetDAGCombine(ISD::FDIV);
671     setTargetDAGCombine(ISD::FSQRT);
672   }
673
674   // Darwin long double math library functions have $LDBL128 appended.
675   if (Subtarget.isDarwin()) {
676     setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128");
677     setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128");
678     setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128");
679     setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128");
680     setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128");
681     setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128");
682     setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128");
683     setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128");
684     setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128");
685     setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128");
686   }
687
688   // With 32 condition bits, we don't need to sink (and duplicate) compares
689   // aggressively in CodeGenPrep.
690   if (Subtarget.useCRBits()) {
691     setHasMultipleConditionRegisters();
692     setJumpIsExpensive();
693   }
694
695   setMinFunctionAlignment(2);
696   if (Subtarget.isDarwin())
697     setPrefFunctionAlignment(4);
698
699   switch (Subtarget.getDarwinDirective()) {
700   default: break;
701   case PPC::DIR_970:
702   case PPC::DIR_A2:
703   case PPC::DIR_E500mc:
704   case PPC::DIR_E5500:
705   case PPC::DIR_PWR4:
706   case PPC::DIR_PWR5:
707   case PPC::DIR_PWR5X:
708   case PPC::DIR_PWR6:
709   case PPC::DIR_PWR6X:
710   case PPC::DIR_PWR7:
711   case PPC::DIR_PWR8:
712     setPrefFunctionAlignment(4);
713     setPrefLoopAlignment(4);
714     break;
715   }
716
717   setInsertFencesForAtomic(true);
718
719   if (Subtarget.enableMachineScheduler())
720     setSchedulingPreference(Sched::Source);
721   else
722     setSchedulingPreference(Sched::Hybrid);
723
724   computeRegisterProperties();
725
726   // The Freescale cores do better with aggressive inlining of memcpy and
727   // friends. GCC uses same threshold of 128 bytes (= 32 word stores).
728   if (Subtarget.getDarwinDirective() == PPC::DIR_E500mc ||
729       Subtarget.getDarwinDirective() == PPC::DIR_E5500) {
730     MaxStoresPerMemset = 32;
731     MaxStoresPerMemsetOptSize = 16;
732     MaxStoresPerMemcpy = 32;
733     MaxStoresPerMemcpyOptSize = 8;
734     MaxStoresPerMemmove = 32;
735     MaxStoresPerMemmoveOptSize = 8;
736   }
737 }
738
739 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
740 /// the desired ByVal argument alignment.
741 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign,
742                              unsigned MaxMaxAlign) {
743   if (MaxAlign == MaxMaxAlign)
744     return;
745   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
746     if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256)
747       MaxAlign = 32;
748     else if (VTy->getBitWidth() >= 128 && MaxAlign < 16)
749       MaxAlign = 16;
750   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
751     unsigned EltAlign = 0;
752     getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign);
753     if (EltAlign > MaxAlign)
754       MaxAlign = EltAlign;
755   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
756     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
757       unsigned EltAlign = 0;
758       getMaxByValAlign(STy->getElementType(i), EltAlign, MaxMaxAlign);
759       if (EltAlign > MaxAlign)
760         MaxAlign = EltAlign;
761       if (MaxAlign == MaxMaxAlign)
762         break;
763     }
764   }
765 }
766
767 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
768 /// function arguments in the caller parameter area.
769 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
770   // Darwin passes everything on 4 byte boundary.
771   if (Subtarget.isDarwin())
772     return 4;
773
774   // 16byte and wider vectors are passed on 16byte boundary.
775   // The rest is 8 on PPC64 and 4 on PPC32 boundary.
776   unsigned Align = Subtarget.isPPC64() ? 8 : 4;
777   if (Subtarget.hasAltivec() || Subtarget.hasQPX())
778     getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16);
779   return Align;
780 }
781
782 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
783   switch (Opcode) {
784   default: return nullptr;
785   case PPCISD::FSEL:            return "PPCISD::FSEL";
786   case PPCISD::FCFID:           return "PPCISD::FCFID";
787   case PPCISD::FCFIDU:          return "PPCISD::FCFIDU";
788   case PPCISD::FCFIDS:          return "PPCISD::FCFIDS";
789   case PPCISD::FCFIDUS:         return "PPCISD::FCFIDUS";
790   case PPCISD::FCTIDZ:          return "PPCISD::FCTIDZ";
791   case PPCISD::FCTIWZ:          return "PPCISD::FCTIWZ";
792   case PPCISD::FCTIDUZ:         return "PPCISD::FCTIDUZ";
793   case PPCISD::FCTIWUZ:         return "PPCISD::FCTIWUZ";
794   case PPCISD::FRE:             return "PPCISD::FRE";
795   case PPCISD::FRSQRTE:         return "PPCISD::FRSQRTE";
796   case PPCISD::STFIWX:          return "PPCISD::STFIWX";
797   case PPCISD::VMADDFP:         return "PPCISD::VMADDFP";
798   case PPCISD::VNMSUBFP:        return "PPCISD::VNMSUBFP";
799   case PPCISD::VPERM:           return "PPCISD::VPERM";
800   case PPCISD::CMPB:            return "PPCISD::CMPB";
801   case PPCISD::Hi:              return "PPCISD::Hi";
802   case PPCISD::Lo:              return "PPCISD::Lo";
803   case PPCISD::TOC_ENTRY:       return "PPCISD::TOC_ENTRY";
804   case PPCISD::DYNALLOC:        return "PPCISD::DYNALLOC";
805   case PPCISD::GlobalBaseReg:   return "PPCISD::GlobalBaseReg";
806   case PPCISD::SRL:             return "PPCISD::SRL";
807   case PPCISD::SRA:             return "PPCISD::SRA";
808   case PPCISD::SHL:             return "PPCISD::SHL";
809   case PPCISD::CALL:            return "PPCISD::CALL";
810   case PPCISD::CALL_NOP:        return "PPCISD::CALL_NOP";
811   case PPCISD::MTCTR:           return "PPCISD::MTCTR";
812   case PPCISD::BCTRL:           return "PPCISD::BCTRL";
813   case PPCISD::BCTRL_LOAD_TOC:  return "PPCISD::BCTRL_LOAD_TOC";
814   case PPCISD::RET_FLAG:        return "PPCISD::RET_FLAG";
815   case PPCISD::READ_TIME_BASE:  return "PPCISD::READ_TIME_BASE";
816   case PPCISD::EH_SJLJ_SETJMP:  return "PPCISD::EH_SJLJ_SETJMP";
817   case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP";
818   case PPCISD::MFOCRF:          return "PPCISD::MFOCRF";
819   case PPCISD::VCMP:            return "PPCISD::VCMP";
820   case PPCISD::VCMPo:           return "PPCISD::VCMPo";
821   case PPCISD::LBRX:            return "PPCISD::LBRX";
822   case PPCISD::STBRX:           return "PPCISD::STBRX";
823   case PPCISD::LFIWAX:          return "PPCISD::LFIWAX";
824   case PPCISD::LFIWZX:          return "PPCISD::LFIWZX";
825   case PPCISD::LARX:            return "PPCISD::LARX";
826   case PPCISD::STCX:            return "PPCISD::STCX";
827   case PPCISD::COND_BRANCH:     return "PPCISD::COND_BRANCH";
828   case PPCISD::BDNZ:            return "PPCISD::BDNZ";
829   case PPCISD::BDZ:             return "PPCISD::BDZ";
830   case PPCISD::MFFS:            return "PPCISD::MFFS";
831   case PPCISD::FADDRTZ:         return "PPCISD::FADDRTZ";
832   case PPCISD::TC_RETURN:       return "PPCISD::TC_RETURN";
833   case PPCISD::CR6SET:          return "PPCISD::CR6SET";
834   case PPCISD::CR6UNSET:        return "PPCISD::CR6UNSET";
835   case PPCISD::ADDIS_TOC_HA:    return "PPCISD::ADDIS_TOC_HA";
836   case PPCISD::LD_TOC_L:        return "PPCISD::LD_TOC_L";
837   case PPCISD::ADDI_TOC_L:      return "PPCISD::ADDI_TOC_L";
838   case PPCISD::PPC32_GOT:       return "PPCISD::PPC32_GOT";
839   case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA";
840   case PPCISD::LD_GOT_TPREL_L:  return "PPCISD::LD_GOT_TPREL_L";
841   case PPCISD::ADD_TLS:         return "PPCISD::ADD_TLS";
842   case PPCISD::ADDIS_TLSGD_HA:  return "PPCISD::ADDIS_TLSGD_HA";
843   case PPCISD::ADDI_TLSGD_L:    return "PPCISD::ADDI_TLSGD_L";
844   case PPCISD::GET_TLS_ADDR:    return "PPCISD::GET_TLS_ADDR";
845   case PPCISD::ADDI_TLSGD_L_ADDR: return "PPCISD::ADDI_TLSGD_L_ADDR";
846   case PPCISD::ADDIS_TLSLD_HA:  return "PPCISD::ADDIS_TLSLD_HA";
847   case PPCISD::ADDI_TLSLD_L:    return "PPCISD::ADDI_TLSLD_L";
848   case PPCISD::GET_TLSLD_ADDR:  return "PPCISD::GET_TLSLD_ADDR";
849   case PPCISD::ADDI_TLSLD_L_ADDR: return "PPCISD::ADDI_TLSLD_L_ADDR";
850   case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA";
851   case PPCISD::ADDI_DTPREL_L:   return "PPCISD::ADDI_DTPREL_L";
852   case PPCISD::VADD_SPLAT:      return "PPCISD::VADD_SPLAT";
853   case PPCISD::SC:              return "PPCISD::SC";
854   }
855 }
856
857 EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
858   if (!VT.isVector())
859     return Subtarget.useCRBits() ? MVT::i1 : MVT::i32;
860   return VT.changeVectorElementTypeToInteger();
861 }
862
863 bool PPCTargetLowering::enableAggressiveFMAFusion(EVT VT) const {
864   assert(VT.isFloatingPoint() && "Non-floating-point FMA?");
865   return true;
866 }
867
868 //===----------------------------------------------------------------------===//
869 // Node matching predicates, for use by the tblgen matching code.
870 //===----------------------------------------------------------------------===//
871
872 /// isFloatingPointZero - Return true if this is 0.0 or -0.0.
873 static bool isFloatingPointZero(SDValue Op) {
874   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
875     return CFP->getValueAPF().isZero();
876   else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
877     // Maybe this has already been legalized into the constant pool?
878     if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1)))
879       if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
880         return CFP->getValueAPF().isZero();
881   }
882   return false;
883 }
884
885 /// isConstantOrUndef - Op is either an undef node or a ConstantSDNode.  Return
886 /// true if Op is undef or if it matches the specified value.
887 static bool isConstantOrUndef(int Op, int Val) {
888   return Op < 0 || Op == Val;
889 }
890
891 /// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a
892 /// VPKUHUM instruction.
893 /// The ShuffleKind distinguishes between big-endian operations with
894 /// two different inputs (0), either-endian operations with two identical
895 /// inputs (1), and little-endian operantion with two different inputs (2).
896 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
897 bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
898                                SelectionDAG &DAG) {
899   bool IsLE = DAG.getTarget().getDataLayout()->isLittleEndian();
900   if (ShuffleKind == 0) {
901     if (IsLE)
902       return false;
903     for (unsigned i = 0; i != 16; ++i)
904       if (!isConstantOrUndef(N->getMaskElt(i), i*2+1))
905         return false;
906   } else if (ShuffleKind == 2) {
907     if (!IsLE)
908       return false;
909     for (unsigned i = 0; i != 16; ++i)
910       if (!isConstantOrUndef(N->getMaskElt(i), i*2))
911         return false;
912   } else if (ShuffleKind == 1) {
913     unsigned j = IsLE ? 0 : 1;
914     for (unsigned i = 0; i != 8; ++i)
915       if (!isConstantOrUndef(N->getMaskElt(i),    i*2+j) ||
916           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j))
917         return false;
918   }
919   return true;
920 }
921
922 /// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a
923 /// VPKUWUM instruction.
924 /// The ShuffleKind distinguishes between big-endian operations with
925 /// two different inputs (0), either-endian operations with two identical
926 /// inputs (1), and little-endian operantion with two different inputs (2).
927 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td).
928 bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind,
929                                SelectionDAG &DAG) {
930   bool IsLE = DAG.getTarget().getDataLayout()->isLittleEndian();
931   if (ShuffleKind == 0) {
932     if (IsLE)
933       return false;
934     for (unsigned i = 0; i != 16; i += 2)
935       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+2) ||
936           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+3))
937         return false;
938   } else if (ShuffleKind == 2) {
939     if (!IsLE)
940       return false;
941     for (unsigned i = 0; i != 16; i += 2)
942       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2) ||
943           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+1))
944         return false;
945   } else if (ShuffleKind == 1) {
946     unsigned j = IsLE ? 0 : 2;
947     for (unsigned i = 0; i != 8; i += 2)
948       if (!isConstantOrUndef(N->getMaskElt(i  ),  i*2+j)   ||
949           !isConstantOrUndef(N->getMaskElt(i+1),  i*2+j+1) ||
950           !isConstantOrUndef(N->getMaskElt(i+8),  i*2+j)   ||
951           !isConstantOrUndef(N->getMaskElt(i+9),  i*2+j+1))
952         return false;
953   }
954   return true;
955 }
956
957 /// isVMerge - Common function, used to match vmrg* shuffles.
958 ///
959 static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize,
960                      unsigned LHSStart, unsigned RHSStart) {
961   if (N->getValueType(0) != MVT::v16i8)
962     return false;
963   assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) &&
964          "Unsupported merge size!");
965
966   for (unsigned i = 0; i != 8/UnitSize; ++i)     // Step over units
967     for (unsigned j = 0; j != UnitSize; ++j) {   // Step over bytes within unit
968       if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j),
969                              LHSStart+j+i*UnitSize) ||
970           !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j),
971                              RHSStart+j+i*UnitSize))
972         return false;
973     }
974   return true;
975 }
976
977 /// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for
978 /// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes).
979 /// The ShuffleKind distinguishes between big-endian merges with two 
980 /// different inputs (0), either-endian merges with two identical inputs (1),
981 /// and little-endian merges with two different inputs (2).  For the latter,
982 /// the input operands are swapped (see PPCInstrAltivec.td).
983 bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
984                              unsigned ShuffleKind, SelectionDAG &DAG) {
985   if (DAG.getTarget().getDataLayout()->isLittleEndian()) {
986     if (ShuffleKind == 1) // unary
987       return isVMerge(N, UnitSize, 0, 0);
988     else if (ShuffleKind == 2) // swapped
989       return isVMerge(N, UnitSize, 0, 16);
990     else
991       return false;
992   } else {
993     if (ShuffleKind == 1) // unary
994       return isVMerge(N, UnitSize, 8, 8);
995     else if (ShuffleKind == 0) // normal
996       return isVMerge(N, UnitSize, 8, 24);
997     else
998       return false;
999   }
1000 }
1001
1002 /// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for
1003 /// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes).
1004 /// The ShuffleKind distinguishes between big-endian merges with two 
1005 /// different inputs (0), either-endian merges with two identical inputs (1),
1006 /// and little-endian merges with two different inputs (2).  For the latter,
1007 /// the input operands are swapped (see PPCInstrAltivec.td).
1008 bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize,
1009                              unsigned ShuffleKind, SelectionDAG &DAG) {
1010   if (DAG.getTarget().getDataLayout()->isLittleEndian()) {
1011     if (ShuffleKind == 1) // unary
1012       return isVMerge(N, UnitSize, 8, 8);
1013     else if (ShuffleKind == 2) // swapped
1014       return isVMerge(N, UnitSize, 8, 24);
1015     else
1016       return false;
1017   } else {
1018     if (ShuffleKind == 1) // unary
1019       return isVMerge(N, UnitSize, 0, 0);
1020     else if (ShuffleKind == 0) // normal
1021       return isVMerge(N, UnitSize, 0, 16);
1022     else
1023       return false;
1024   }
1025 }
1026
1027
1028 /// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift
1029 /// amount, otherwise return -1.
1030 /// The ShuffleKind distinguishes between big-endian operations with two 
1031 /// different inputs (0), either-endian operations with two identical inputs
1032 /// (1), and little-endian operations with two different inputs (2).  For the
1033 /// latter, the input operands are swapped (see PPCInstrAltivec.td).
1034 int PPC::isVSLDOIShuffleMask(SDNode *N, unsigned ShuffleKind,
1035                              SelectionDAG &DAG) {
1036   if (N->getValueType(0) != MVT::v16i8)
1037     return -1;
1038
1039   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1040
1041   // Find the first non-undef value in the shuffle mask.
1042   unsigned i;
1043   for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i)
1044     /*search*/;
1045
1046   if (i == 16) return -1;  // all undef.
1047
1048   // Otherwise, check to see if the rest of the elements are consecutively
1049   // numbered from this value.
1050   unsigned ShiftAmt = SVOp->getMaskElt(i);
1051   if (ShiftAmt < i) return -1;
1052
1053   ShiftAmt -= i;
1054   bool isLE = DAG.getTarget().getDataLayout()->isLittleEndian();
1055
1056   if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) {
1057     // Check the rest of the elements to see if they are consecutive.
1058     for (++i; i != 16; ++i)
1059       if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1060         return -1;
1061   } else if (ShuffleKind == 1) {
1062     // Check the rest of the elements to see if they are consecutive.
1063     for (++i; i != 16; ++i)
1064       if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
1065         return -1;
1066   } else
1067     return -1;
1068
1069   if (ShuffleKind == 2 && isLE)
1070     ShiftAmt = 16 - ShiftAmt;
1071
1072   return ShiftAmt;
1073 }
1074
1075 /// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
1076 /// specifies a splat of a single element that is suitable for input to
1077 /// VSPLTB/VSPLTH/VSPLTW.
1078 bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) {
1079   assert(N->getValueType(0) == MVT::v16i8 &&
1080          (EltSize == 1 || EltSize == 2 || EltSize == 4));
1081
1082   // This is a splat operation if each element of the permute is the same, and
1083   // if the value doesn't reference the second vector.
1084   unsigned ElementBase = N->getMaskElt(0);
1085
1086   // FIXME: Handle UNDEF elements too!
1087   if (ElementBase >= 16)
1088     return false;
1089
1090   // Check that the indices are consecutive, in the case of a multi-byte element
1091   // splatted with a v16i8 mask.
1092   for (unsigned i = 1; i != EltSize; ++i)
1093     if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase))
1094       return false;
1095
1096   for (unsigned i = EltSize, e = 16; i != e; i += EltSize) {
1097     if (N->getMaskElt(i) < 0) continue;
1098     for (unsigned j = 0; j != EltSize; ++j)
1099       if (N->getMaskElt(i+j) != N->getMaskElt(j))
1100         return false;
1101   }
1102   return true;
1103 }
1104
1105 /// isAllNegativeZeroVector - Returns true if all elements of build_vector
1106 /// are -0.0.
1107 bool PPC::isAllNegativeZeroVector(SDNode *N) {
1108   BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N);
1109
1110   APInt APVal, APUndef;
1111   unsigned BitSize;
1112   bool HasAnyUndefs;
1113
1114   if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true))
1115     if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
1116       return CFP->getValueAPF().isNegZero();
1117
1118   return false;
1119 }
1120
1121 /// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
1122 /// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
1123 unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize,
1124                                 SelectionDAG &DAG) {
1125   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
1126   assert(isSplatShuffleMask(SVOp, EltSize));
1127   if (DAG.getTarget().getDataLayout()->isLittleEndian())
1128     return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize);
1129   else
1130     return SVOp->getMaskElt(0) / EltSize;
1131 }
1132
1133 /// get_VSPLTI_elt - If this is a build_vector of constants which can be formed
1134 /// by using a vspltis[bhw] instruction of the specified element size, return
1135 /// the constant being splatted.  The ByteSize field indicates the number of
1136 /// bytes of each element [124] -> [bhw].
1137 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
1138   SDValue OpVal(nullptr, 0);
1139
1140   // If ByteSize of the splat is bigger than the element size of the
1141   // build_vector, then we have a case where we are checking for a splat where
1142   // multiple elements of the buildvector are folded together into a single
1143   // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8).
1144   unsigned EltSize = 16/N->getNumOperands();
1145   if (EltSize < ByteSize) {
1146     unsigned Multiple = ByteSize/EltSize;   // Number of BV entries per spltval.
1147     SDValue UniquedVals[4];
1148     assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
1149
1150     // See if all of the elements in the buildvector agree across.
1151     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1152       if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1153       // If the element isn't a constant, bail fully out.
1154       if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue();
1155
1156
1157       if (!UniquedVals[i&(Multiple-1)].getNode())
1158         UniquedVals[i&(Multiple-1)] = N->getOperand(i);
1159       else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
1160         return SDValue();  // no match.
1161     }
1162
1163     // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
1164     // either constant or undef values that are identical for each chunk.  See
1165     // if these chunks can form into a larger vspltis*.
1166
1167     // Check to see if all of the leading entries are either 0 or -1.  If
1168     // neither, then this won't fit into the immediate field.
1169     bool LeadingZero = true;
1170     bool LeadingOnes = true;
1171     for (unsigned i = 0; i != Multiple-1; ++i) {
1172       if (!UniquedVals[i].getNode()) continue;  // Must have been undefs.
1173
1174       LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue();
1175       LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue();
1176     }
1177     // Finally, check the least significant entry.
1178     if (LeadingZero) {
1179       if (!UniquedVals[Multiple-1].getNode())
1180         return DAG.getTargetConstant(0, MVT::i32);  // 0,0,0,undef
1181       int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue();
1182       if (Val < 16)
1183         return DAG.getTargetConstant(Val, MVT::i32);  // 0,0,0,4 -> vspltisw(4)
1184     }
1185     if (LeadingOnes) {
1186       if (!UniquedVals[Multiple-1].getNode())
1187         return DAG.getTargetConstant(~0U, MVT::i32);  // -1,-1,-1,undef
1188       int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue();
1189       if (Val >= -16)                            // -1,-1,-1,-2 -> vspltisw(-2)
1190         return DAG.getTargetConstant(Val, MVT::i32);
1191     }
1192
1193     return SDValue();
1194   }
1195
1196   // Check to see if this buildvec has a single non-undef value in its elements.
1197   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
1198     if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1199     if (!OpVal.getNode())
1200       OpVal = N->getOperand(i);
1201     else if (OpVal != N->getOperand(i))
1202       return SDValue();
1203   }
1204
1205   if (!OpVal.getNode()) return SDValue();  // All UNDEF: use implicit def.
1206
1207   unsigned ValSizeInBytes = EltSize;
1208   uint64_t Value = 0;
1209   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
1210     Value = CN->getZExtValue();
1211   } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
1212     assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!");
1213     Value = FloatToBits(CN->getValueAPF().convertToFloat());
1214   }
1215
1216   // If the splat value is larger than the element value, then we can never do
1217   // this splat.  The only case that we could fit the replicated bits into our
1218   // immediate field for would be zero, and we prefer to use vxor for it.
1219   if (ValSizeInBytes < ByteSize) return SDValue();
1220
1221   // If the element value is larger than the splat value, cut it in half and
1222   // check to see if the two halves are equal.  Continue doing this until we
1223   // get to ByteSize.  This allows us to handle 0x01010101 as 0x01.
1224   while (ValSizeInBytes > ByteSize) {
1225     ValSizeInBytes >>= 1;
1226
1227     // If the top half equals the bottom half, we're still ok.
1228     if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) !=
1229          (Value                        & ((1 << (8*ValSizeInBytes))-1)))
1230       return SDValue();
1231   }
1232
1233   // Properly sign extend the value.
1234   int MaskVal = SignExtend32(Value, ByteSize * 8);
1235
1236   // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros.
1237   if (MaskVal == 0) return SDValue();
1238
1239   // Finally, if this value fits in a 5 bit sext field, return it
1240   if (SignExtend32<5>(MaskVal) == MaskVal)
1241     return DAG.getTargetConstant(MaskVal, MVT::i32);
1242   return SDValue();
1243 }
1244
1245 //===----------------------------------------------------------------------===//
1246 //  Addressing Mode Selection
1247 //===----------------------------------------------------------------------===//
1248
1249 /// isIntS16Immediate - This method tests to see if the node is either a 32-bit
1250 /// or 64-bit immediate, and if the value can be accurately represented as a
1251 /// sign extension from a 16-bit value.  If so, this returns true and the
1252 /// immediate.
1253 static bool isIntS16Immediate(SDNode *N, short &Imm) {
1254   if (!isa<ConstantSDNode>(N))
1255     return false;
1256
1257   Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
1258   if (N->getValueType(0) == MVT::i32)
1259     return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
1260   else
1261     return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
1262 }
1263 static bool isIntS16Immediate(SDValue Op, short &Imm) {
1264   return isIntS16Immediate(Op.getNode(), Imm);
1265 }
1266
1267
1268 /// SelectAddressRegReg - Given the specified addressed, check to see if it
1269 /// can be represented as an indexed [r+r] operation.  Returns false if it
1270 /// can be more efficiently represented with [r+imm].
1271 bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base,
1272                                             SDValue &Index,
1273                                             SelectionDAG &DAG) const {
1274   short imm = 0;
1275   if (N.getOpcode() == ISD::ADD) {
1276     if (isIntS16Immediate(N.getOperand(1), imm))
1277       return false;    // r+i
1278     if (N.getOperand(1).getOpcode() == PPCISD::Lo)
1279       return false;    // r+i
1280
1281     Base = N.getOperand(0);
1282     Index = N.getOperand(1);
1283     return true;
1284   } else if (N.getOpcode() == ISD::OR) {
1285     if (isIntS16Immediate(N.getOperand(1), imm))
1286       return false;    // r+i can fold it if we can.
1287
1288     // If this is an or of disjoint bitfields, we can codegen this as an add
1289     // (for better address arithmetic) if the LHS and RHS of the OR are provably
1290     // disjoint.
1291     APInt LHSKnownZero, LHSKnownOne;
1292     APInt RHSKnownZero, RHSKnownOne;
1293     DAG.computeKnownBits(N.getOperand(0),
1294                          LHSKnownZero, LHSKnownOne);
1295
1296     if (LHSKnownZero.getBoolValue()) {
1297       DAG.computeKnownBits(N.getOperand(1),
1298                            RHSKnownZero, RHSKnownOne);
1299       // If all of the bits are known zero on the LHS or RHS, the add won't
1300       // carry.
1301       if (~(LHSKnownZero | RHSKnownZero) == 0) {
1302         Base = N.getOperand(0);
1303         Index = N.getOperand(1);
1304         return true;
1305       }
1306     }
1307   }
1308
1309   return false;
1310 }
1311
1312 // If we happen to be doing an i64 load or store into a stack slot that has
1313 // less than a 4-byte alignment, then the frame-index elimination may need to
1314 // use an indexed load or store instruction (because the offset may not be a
1315 // multiple of 4). The extra register needed to hold the offset comes from the
1316 // register scavenger, and it is possible that the scavenger will need to use
1317 // an emergency spill slot. As a result, we need to make sure that a spill slot
1318 // is allocated when doing an i64 load/store into a less-than-4-byte-aligned
1319 // stack slot.
1320 static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) {
1321   // FIXME: This does not handle the LWA case.
1322   if (VT != MVT::i64)
1323     return;
1324
1325   // NOTE: We'll exclude negative FIs here, which come from argument
1326   // lowering, because there are no known test cases triggering this problem
1327   // using packed structures (or similar). We can remove this exclusion if
1328   // we find such a test case. The reason why this is so test-case driven is
1329   // because this entire 'fixup' is only to prevent crashes (from the
1330   // register scavenger) on not-really-valid inputs. For example, if we have:
1331   //   %a = alloca i1
1332   //   %b = bitcast i1* %a to i64*
1333   //   store i64* a, i64 b
1334   // then the store should really be marked as 'align 1', but is not. If it
1335   // were marked as 'align 1' then the indexed form would have been
1336   // instruction-selected initially, and the problem this 'fixup' is preventing
1337   // won't happen regardless.
1338   if (FrameIdx < 0)
1339     return;
1340
1341   MachineFunction &MF = DAG.getMachineFunction();
1342   MachineFrameInfo *MFI = MF.getFrameInfo();
1343
1344   unsigned Align = MFI->getObjectAlignment(FrameIdx);
1345   if (Align >= 4)
1346     return;
1347
1348   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1349   FuncInfo->setHasNonRISpills();
1350 }
1351
1352 /// Returns true if the address N can be represented by a base register plus
1353 /// a signed 16-bit displacement [r+imm], and if it is not better
1354 /// represented as reg+reg.  If Aligned is true, only accept displacements
1355 /// suitable for STD and friends, i.e. multiples of 4.
1356 bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
1357                                             SDValue &Base,
1358                                             SelectionDAG &DAG,
1359                                             bool Aligned) const {
1360   // FIXME dl should come from parent load or store, not from address
1361   SDLoc dl(N);
1362   // If this can be more profitably realized as r+r, fail.
1363   if (SelectAddressRegReg(N, Disp, Base, DAG))
1364     return false;
1365
1366   if (N.getOpcode() == ISD::ADD) {
1367     short imm = 0;
1368     if (isIntS16Immediate(N.getOperand(1), imm) &&
1369         (!Aligned || (imm & 3) == 0)) {
1370       Disp = DAG.getTargetConstant(imm, N.getValueType());
1371       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1372         Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1373         fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1374       } else {
1375         Base = N.getOperand(0);
1376       }
1377       return true; // [r+i]
1378     } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) {
1379       // Match LOAD (ADD (X, Lo(G))).
1380       assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue()
1381              && "Cannot handle constant offsets yet!");
1382       Disp = N.getOperand(1).getOperand(0);  // The global address.
1383       assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
1384              Disp.getOpcode() == ISD::TargetGlobalTLSAddress ||
1385              Disp.getOpcode() == ISD::TargetConstantPool ||
1386              Disp.getOpcode() == ISD::TargetJumpTable);
1387       Base = N.getOperand(0);
1388       return true;  // [&g+r]
1389     }
1390   } else if (N.getOpcode() == ISD::OR) {
1391     short imm = 0;
1392     if (isIntS16Immediate(N.getOperand(1), imm) &&
1393         (!Aligned || (imm & 3) == 0)) {
1394       // If this is an or of disjoint bitfields, we can codegen this as an add
1395       // (for better address arithmetic) if the LHS and RHS of the OR are
1396       // provably disjoint.
1397       APInt LHSKnownZero, LHSKnownOne;
1398       DAG.computeKnownBits(N.getOperand(0), LHSKnownZero, LHSKnownOne);
1399
1400       if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) {
1401         // If all of the bits are known zero on the LHS or RHS, the add won't
1402         // carry.
1403         if (FrameIndexSDNode *FI =
1404               dyn_cast<FrameIndexSDNode>(N.getOperand(0))) {
1405           Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1406           fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1407         } else {
1408           Base = N.getOperand(0);
1409         }
1410         Disp = DAG.getTargetConstant(imm, N.getValueType());
1411         return true;
1412       }
1413     }
1414   } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1415     // Loading from a constant address.
1416
1417     // If this address fits entirely in a 16-bit sext immediate field, codegen
1418     // this as "d, 0"
1419     short Imm;
1420     if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) {
1421       Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
1422       Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1423                              CN->getValueType(0));
1424       return true;
1425     }
1426
1427     // Handle 32-bit sext immediates with LIS + addr mode.
1428     if ((CN->getValueType(0) == MVT::i32 ||
1429          (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) &&
1430         (!Aligned || (CN->getZExtValue() & 3) == 0)) {
1431       int Addr = (int)CN->getZExtValue();
1432
1433       // Otherwise, break this down into an LIS + disp.
1434       Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
1435
1436       Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32);
1437       unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8;
1438       Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0);
1439       return true;
1440     }
1441   }
1442
1443   Disp = DAG.getTargetConstant(0, getPointerTy());
1444   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) {
1445     Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType());
1446     fixupFuncForFI(DAG, FI->getIndex(), N.getValueType());
1447   } else
1448     Base = N;
1449   return true;      // [r+0]
1450 }
1451
1452 /// SelectAddressRegRegOnly - Given the specified addressed, force it to be
1453 /// represented as an indexed [r+r] operation.
1454 bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base,
1455                                                 SDValue &Index,
1456                                                 SelectionDAG &DAG) const {
1457   // Check to see if we can easily represent this as an [r+r] address.  This
1458   // will fail if it thinks that the address is more profitably represented as
1459   // reg+imm, e.g. where imm = 0.
1460   if (SelectAddressRegReg(N, Base, Index, DAG))
1461     return true;
1462
1463   // If the operand is an addition, always emit this as [r+r], since this is
1464   // better (for code size, and execution, as the memop does the add for free)
1465   // than emitting an explicit add.
1466   if (N.getOpcode() == ISD::ADD) {
1467     Base = N.getOperand(0);
1468     Index = N.getOperand(1);
1469     return true;
1470   }
1471
1472   // Otherwise, do it the hard way, using R0 as the base register.
1473   Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO,
1474                          N.getValueType());
1475   Index = N;
1476   return true;
1477 }
1478
1479 /// getPreIndexedAddressParts - returns true by value, base pointer and
1480 /// offset pointer and addressing mode by reference if the node's address
1481 /// can be legally represented as pre-indexed load / store address.
1482 bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
1483                                                   SDValue &Offset,
1484                                                   ISD::MemIndexedMode &AM,
1485                                                   SelectionDAG &DAG) const {
1486   if (DisablePPCPreinc) return false;
1487
1488   bool isLoad = true;
1489   SDValue Ptr;
1490   EVT VT;
1491   unsigned Alignment;
1492   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1493     Ptr = LD->getBasePtr();
1494     VT = LD->getMemoryVT();
1495     Alignment = LD->getAlignment();
1496   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
1497     Ptr = ST->getBasePtr();
1498     VT  = ST->getMemoryVT();
1499     Alignment = ST->getAlignment();
1500     isLoad = false;
1501   } else
1502     return false;
1503
1504   // PowerPC doesn't have preinc load/store instructions for vectors.
1505   if (VT.isVector())
1506     return false;
1507
1508   if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) {
1509
1510     // Common code will reject creating a pre-inc form if the base pointer
1511     // is a frame index, or if N is a store and the base pointer is either
1512     // the same as or a predecessor of the value being stored.  Check for
1513     // those situations here, and try with swapped Base/Offset instead.
1514     bool Swap = false;
1515
1516     if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base))
1517       Swap = true;
1518     else if (!isLoad) {
1519       SDValue Val = cast<StoreSDNode>(N)->getValue();
1520       if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode()))
1521         Swap = true;
1522     }
1523
1524     if (Swap)
1525       std::swap(Base, Offset);
1526
1527     AM = ISD::PRE_INC;
1528     return true;
1529   }
1530
1531   // LDU/STU can only handle immediates that are a multiple of 4.
1532   if (VT != MVT::i64) {
1533     if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false))
1534       return false;
1535   } else {
1536     // LDU/STU need an address with at least 4-byte alignment.
1537     if (Alignment < 4)
1538       return false;
1539
1540     if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true))
1541       return false;
1542   }
1543
1544   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
1545     // PPC64 doesn't have lwau, but it does have lwaux.  Reject preinc load of
1546     // sext i32 to i64 when addr mode is r+i.
1547     if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 &&
1548         LD->getExtensionType() == ISD::SEXTLOAD &&
1549         isa<ConstantSDNode>(Offset))
1550       return false;
1551   }
1552
1553   AM = ISD::PRE_INC;
1554   return true;
1555 }
1556
1557 //===----------------------------------------------------------------------===//
1558 //  LowerOperation implementation
1559 //===----------------------------------------------------------------------===//
1560
1561 /// GetLabelAccessInfo - Return true if we should reference labels using a
1562 /// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags.
1563 static bool GetLabelAccessInfo(const TargetMachine &TM,
1564                                const PPCSubtarget &Subtarget,
1565                                unsigned &HiOpFlags, unsigned &LoOpFlags,
1566                                const GlobalValue *GV = nullptr) {
1567   HiOpFlags = PPCII::MO_HA;
1568   LoOpFlags = PPCII::MO_LO;
1569
1570   // Don't use the pic base if not in PIC relocation model.
1571   bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
1572
1573   if (isPIC) {
1574     HiOpFlags |= PPCII::MO_PIC_FLAG;
1575     LoOpFlags |= PPCII::MO_PIC_FLAG;
1576   }
1577
1578   // If this is a reference to a global value that requires a non-lazy-ptr, make
1579   // sure that instruction lowering adds it.
1580   if (GV && Subtarget.hasLazyResolverStub(GV)) {
1581     HiOpFlags |= PPCII::MO_NLP_FLAG;
1582     LoOpFlags |= PPCII::MO_NLP_FLAG;
1583
1584     if (GV->hasHiddenVisibility()) {
1585       HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1586       LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG;
1587     }
1588   }
1589
1590   return isPIC;
1591 }
1592
1593 static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC,
1594                              SelectionDAG &DAG) {
1595   EVT PtrVT = HiPart.getValueType();
1596   SDValue Zero = DAG.getConstant(0, PtrVT);
1597   SDLoc DL(HiPart);
1598
1599   SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero);
1600   SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero);
1601
1602   // With PIC, the first instruction is actually "GR+hi(&G)".
1603   if (isPIC)
1604     Hi = DAG.getNode(ISD::ADD, DL, PtrVT,
1605                      DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi);
1606
1607   // Generate non-pic code that has direct accesses to the constant pool.
1608   // The address of the global is just (hi(&g)+lo(&g)).
1609   return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo);
1610 }
1611
1612 static void setUsesTOCBasePtr(MachineFunction &MF) {
1613   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
1614   FuncInfo->setUsesTOCBasePtr();
1615 }
1616
1617 static void setUsesTOCBasePtr(SelectionDAG &DAG) {
1618   setUsesTOCBasePtr(DAG.getMachineFunction());
1619 }
1620
1621 SDValue PPCTargetLowering::LowerConstantPool(SDValue Op,
1622                                              SelectionDAG &DAG) const {
1623   EVT PtrVT = Op.getValueType();
1624   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
1625   const Constant *C = CP->getConstVal();
1626
1627   // 64-bit SVR4 ABI code is always position-independent.
1628   // The actual address of the GlobalValue is stored in the TOC.
1629   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
1630     setUsesTOCBasePtr(DAG);
1631     SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0);
1632     return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA,
1633                        DAG.getRegister(PPC::X2, MVT::i64));
1634   }
1635
1636   unsigned MOHiFlag, MOLoFlag;
1637   bool isPIC =
1638       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
1639
1640   if (isPIC && Subtarget.isSVR4ABI()) {
1641     SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(),
1642                                            PPCII::MO_PIC_FLAG);
1643     SDLoc DL(CP);
1644     return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1645                        DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1646   }
1647
1648   SDValue CPIHi =
1649     DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag);
1650   SDValue CPILo =
1651     DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag);
1652   return LowerLabelRef(CPIHi, CPILo, isPIC, DAG);
1653 }
1654
1655 SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
1656   EVT PtrVT = Op.getValueType();
1657   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
1658
1659   // 64-bit SVR4 ABI code is always position-independent.
1660   // The actual address of the GlobalValue is stored in the TOC.
1661   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
1662     setUsesTOCBasePtr(DAG);
1663     SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
1664     return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA,
1665                        DAG.getRegister(PPC::X2, MVT::i64));
1666   }
1667
1668   unsigned MOHiFlag, MOLoFlag;
1669   bool isPIC =
1670       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
1671
1672   if (isPIC && Subtarget.isSVR4ABI()) {
1673     SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
1674                                         PPCII::MO_PIC_FLAG);
1675     SDLoc DL(GA);
1676     return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), PtrVT, GA,
1677                        DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT));
1678   }
1679
1680   SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag);
1681   SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag);
1682   return LowerLabelRef(JTIHi, JTILo, isPIC, DAG);
1683 }
1684
1685 SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op,
1686                                              SelectionDAG &DAG) const {
1687   EVT PtrVT = Op.getValueType();
1688   BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op);
1689   const BlockAddress *BA = BASDN->getBlockAddress();
1690
1691   // 64-bit SVR4 ABI code is always position-independent.
1692   // The actual BlockAddress is stored in the TOC.
1693   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
1694     setUsesTOCBasePtr(DAG);
1695     SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset());
1696     return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(BASDN), MVT::i64, GA,
1697                        DAG.getRegister(PPC::X2, MVT::i64));
1698   }
1699
1700   unsigned MOHiFlag, MOLoFlag;
1701   bool isPIC =
1702       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag);
1703   SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
1704   SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
1705   return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG);
1706 }
1707
1708 SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1709                                               SelectionDAG &DAG) const {
1710
1711   // FIXME: TLS addresses currently use medium model code sequences,
1712   // which is the most useful form.  Eventually support for small and
1713   // large models could be added if users need it, at the cost of
1714   // additional complexity.
1715   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
1716   SDLoc dl(GA);
1717   const GlobalValue *GV = GA->getGlobal();
1718   EVT PtrVT = getPointerTy();
1719   bool is64bit = Subtarget.isPPC64();
1720   const Module *M = DAG.getMachineFunction().getFunction()->getParent();
1721   PICLevel::Level picLevel = M->getPICLevel();
1722
1723   TLSModel::Model Model = getTargetMachine().getTLSModel(GV);
1724
1725   if (Model == TLSModel::LocalExec) {
1726     SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1727                                                PPCII::MO_TPREL_HA);
1728     SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1729                                                PPCII::MO_TPREL_LO);
1730     SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
1731                                      is64bit ? MVT::i64 : MVT::i32);
1732     SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
1733     return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
1734   }
1735
1736   if (Model == TLSModel::InitialExec) {
1737     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1738     SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
1739                                                 PPCII::MO_TLS);
1740     SDValue GOTPtr;
1741     if (is64bit) {
1742       setUsesTOCBasePtr(DAG);
1743       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1744       GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl,
1745                            PtrVT, GOTReg, TGA);
1746     } else
1747       GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT);
1748     SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl,
1749                                    PtrVT, TGA, GOTPtr);
1750     return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS);
1751   }
1752
1753   if (Model == TLSModel::GeneralDynamic) {
1754     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1755     SDValue GOTPtr;
1756     if (is64bit) {
1757       setUsesTOCBasePtr(DAG);
1758       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1759       GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT,
1760                                    GOTReg, TGA);
1761     } else {
1762       if (picLevel == PICLevel::Small)
1763         GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
1764       else
1765         GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
1766     }
1767     return DAG.getNode(PPCISD::ADDI_TLSGD_L_ADDR, dl, PtrVT,
1768                        GOTPtr, TGA, TGA);
1769   }
1770
1771   if (Model == TLSModel::LocalDynamic) {
1772     SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0);
1773     SDValue GOTPtr;
1774     if (is64bit) {
1775       setUsesTOCBasePtr(DAG);
1776       SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64);
1777       GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT,
1778                            GOTReg, TGA);
1779     } else {
1780       if (picLevel == PICLevel::Small)
1781         GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT);
1782       else
1783         GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT);
1784     }
1785     SDValue TLSAddr = DAG.getNode(PPCISD::ADDI_TLSLD_L_ADDR, dl,
1786                                   PtrVT, GOTPtr, TGA, TGA);
1787     SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl,
1788                                       PtrVT, TLSAddr, TGA);
1789     return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA);
1790   }
1791
1792   llvm_unreachable("Unknown TLS model!");
1793 }
1794
1795 SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op,
1796                                               SelectionDAG &DAG) const {
1797   EVT PtrVT = Op.getValueType();
1798   GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
1799   SDLoc DL(GSDN);
1800   const GlobalValue *GV = GSDN->getGlobal();
1801
1802   // 64-bit SVR4 ABI code is always position-independent.
1803   // The actual address of the GlobalValue is stored in the TOC.
1804   if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) {
1805     setUsesTOCBasePtr(DAG);
1806     SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset());
1807     return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA,
1808                        DAG.getRegister(PPC::X2, MVT::i64));
1809   }
1810
1811   unsigned MOHiFlag, MOLoFlag;
1812   bool isPIC =
1813       GetLabelAccessInfo(DAG.getTarget(), Subtarget, MOHiFlag, MOLoFlag, GV);
1814
1815   if (isPIC && Subtarget.isSVR4ABI()) {
1816     SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT,
1817                                             GSDN->getOffset(),
1818                                             PPCII::MO_PIC_FLAG);
1819     return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA,
1820                        DAG.getNode(PPCISD::GlobalBaseReg, DL, MVT::i32));
1821   }
1822
1823   SDValue GAHi =
1824     DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag);
1825   SDValue GALo =
1826     DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag);
1827
1828   SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG);
1829
1830   // If the global reference is actually to a non-lazy-pointer, we have to do an
1831   // extra load to get the address of the global.
1832   if (MOHiFlag & PPCII::MO_NLP_FLAG)
1833     Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(),
1834                       false, false, false, 0);
1835   return Ptr;
1836 }
1837
1838 SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
1839   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
1840   SDLoc dl(Op);
1841
1842   if (Op.getValueType() == MVT::v2i64) {
1843     // When the operands themselves are v2i64 values, we need to do something
1844     // special because VSX has no underlying comparison operations for these.
1845     if (Op.getOperand(0).getValueType() == MVT::v2i64) {
1846       // Equality can be handled by casting to the legal type for Altivec
1847       // comparisons, everything else needs to be expanded.
1848       if (CC == ISD::SETEQ || CC == ISD::SETNE) {
1849         return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
1850                  DAG.getSetCC(dl, MVT::v4i32,
1851                    DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)),
1852                    DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)),
1853                    CC));
1854       }
1855
1856       return SDValue();
1857     }
1858
1859     // We handle most of these in the usual way.
1860     return Op;
1861   }
1862
1863   // If we're comparing for equality to zero, expose the fact that this is
1864   // implented as a ctlz/srl pair on ppc, so that the dag combiner can
1865   // fold the new nodes.
1866   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1867     if (C->isNullValue() && CC == ISD::SETEQ) {
1868       EVT VT = Op.getOperand(0).getValueType();
1869       SDValue Zext = Op.getOperand(0);
1870       if (VT.bitsLT(MVT::i32)) {
1871         VT = MVT::i32;
1872         Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
1873       }
1874       unsigned Log2b = Log2_32(VT.getSizeInBits());
1875       SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
1876       SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz,
1877                                 DAG.getConstant(Log2b, MVT::i32));
1878       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc);
1879     }
1880     // Leave comparisons against 0 and -1 alone for now, since they're usually
1881     // optimized.  FIXME: revisit this when we can custom lower all setcc
1882     // optimizations.
1883     if (C->isAllOnesValue() || C->isNullValue())
1884       return SDValue();
1885   }
1886
1887   // If we have an integer seteq/setne, turn it into a compare against zero
1888   // by xor'ing the rhs with the lhs, which is faster than setting a
1889   // condition register, reading it back out, and masking the correct bit.  The
1890   // normal approach here uses sub to do this instead of xor.  Using xor exposes
1891   // the result to other bit-twiddling opportunities.
1892   EVT LHSVT = Op.getOperand(0).getValueType();
1893   if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1894     EVT VT = Op.getValueType();
1895     SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0),
1896                                 Op.getOperand(1));
1897     return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC);
1898   }
1899   return SDValue();
1900 }
1901
1902 SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG,
1903                                       const PPCSubtarget &Subtarget) const {
1904   SDNode *Node = Op.getNode();
1905   EVT VT = Node->getValueType(0);
1906   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1907   SDValue InChain = Node->getOperand(0);
1908   SDValue VAListPtr = Node->getOperand(1);
1909   const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
1910   SDLoc dl(Node);
1911
1912   assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only");
1913
1914   // gpr_index
1915   SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1916                                     VAListPtr, MachinePointerInfo(SV), MVT::i8,
1917                                     false, false, false, 0);
1918   InChain = GprIndex.getValue(1);
1919
1920   if (VT == MVT::i64) {
1921     // Check if GprIndex is even
1922     SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex,
1923                                  DAG.getConstant(1, MVT::i32));
1924     SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd,
1925                                 DAG.getConstant(0, MVT::i32), ISD::SETNE);
1926     SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex,
1927                                           DAG.getConstant(1, MVT::i32));
1928     // Align GprIndex to be even if it isn't
1929     GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne,
1930                            GprIndex);
1931   }
1932
1933   // fpr index is 1 byte after gpr
1934   SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1935                                DAG.getConstant(1, MVT::i32));
1936
1937   // fpr
1938   SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain,
1939                                     FprPtr, MachinePointerInfo(SV), MVT::i8,
1940                                     false, false, false, 0);
1941   InChain = FprIndex.getValue(1);
1942
1943   SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1944                                        DAG.getConstant(8, MVT::i32));
1945
1946   SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr,
1947                                         DAG.getConstant(4, MVT::i32));
1948
1949   // areas
1950   SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr,
1951                                      MachinePointerInfo(), false, false,
1952                                      false, 0);
1953   InChain = OverflowArea.getValue(1);
1954
1955   SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr,
1956                                     MachinePointerInfo(), false, false,
1957                                     false, 0);
1958   InChain = RegSaveArea.getValue(1);
1959
1960   // select overflow_area if index > 8
1961   SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex,
1962                             DAG.getConstant(8, MVT::i32), ISD::SETLT);
1963
1964   // adjustment constant gpr_index * 4/8
1965   SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32,
1966                                     VT.isInteger() ? GprIndex : FprIndex,
1967                                     DAG.getConstant(VT.isInteger() ? 4 : 8,
1968                                                     MVT::i32));
1969
1970   // OurReg = RegSaveArea + RegConstant
1971   SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea,
1972                                RegConstant);
1973
1974   // Floating types are 32 bytes into RegSaveArea
1975   if (VT.isFloatingPoint())
1976     OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg,
1977                          DAG.getConstant(32, MVT::i32));
1978
1979   // increase {f,g}pr_index by 1 (or 2 if VT is i64)
1980   SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32,
1981                                    VT.isInteger() ? GprIndex : FprIndex,
1982                                    DAG.getConstant(VT == MVT::i64 ? 2 : 1,
1983                                                    MVT::i32));
1984
1985   InChain = DAG.getTruncStore(InChain, dl, IndexPlus1,
1986                               VT.isInteger() ? VAListPtr : FprPtr,
1987                               MachinePointerInfo(SV),
1988                               MVT::i8, false, false, 0);
1989
1990   // determine if we should load from reg_save_area or overflow_area
1991   SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea);
1992
1993   // increase overflow_area by 4/8 if gpr/fpr > 8
1994   SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea,
1995                                           DAG.getConstant(VT.isInteger() ? 4 : 8,
1996                                           MVT::i32));
1997
1998   OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea,
1999                              OverflowAreaPlusN);
2000
2001   InChain = DAG.getTruncStore(InChain, dl, OverflowArea,
2002                               OverflowAreaPtr,
2003                               MachinePointerInfo(),
2004                               MVT::i32, false, false, 0);
2005
2006   return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(),
2007                      false, false, false, 0);
2008 }
2009
2010 SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG,
2011                                        const PPCSubtarget &Subtarget) const {
2012   assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only");
2013
2014   // We have to copy the entire va_list struct:
2015   // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte
2016   return DAG.getMemcpy(Op.getOperand(0), Op,
2017                        Op.getOperand(1), Op.getOperand(2),
2018                        DAG.getConstant(12, MVT::i32), 8, false, true,
2019                        MachinePointerInfo(), MachinePointerInfo());
2020 }
2021
2022 SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
2023                                                   SelectionDAG &DAG) const {
2024   return Op.getOperand(0);
2025 }
2026
2027 SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
2028                                                 SelectionDAG &DAG) const {
2029   SDValue Chain = Op.getOperand(0);
2030   SDValue Trmp = Op.getOperand(1); // trampoline
2031   SDValue FPtr = Op.getOperand(2); // nested function
2032   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
2033   SDLoc dl(Op);
2034
2035   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2036   bool isPPC64 = (PtrVT == MVT::i64);
2037   Type *IntPtrTy =
2038     DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType(
2039                                                              *DAG.getContext());
2040
2041   TargetLowering::ArgListTy Args;
2042   TargetLowering::ArgListEntry Entry;
2043
2044   Entry.Ty = IntPtrTy;
2045   Entry.Node = Trmp; Args.push_back(Entry);
2046
2047   // TrampSize == (isPPC64 ? 48 : 40);
2048   Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
2049                                isPPC64 ? MVT::i64 : MVT::i32);
2050   Args.push_back(Entry);
2051
2052   Entry.Node = FPtr; Args.push_back(Entry);
2053   Entry.Node = Nest; Args.push_back(Entry);
2054
2055   // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg)
2056   TargetLowering::CallLoweringInfo CLI(DAG);
2057   CLI.setDebugLoc(dl).setChain(Chain)
2058     .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
2059                DAG.getExternalSymbol("__trampoline_setup", PtrVT),
2060                std::move(Args), 0);
2061
2062   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2063   return CallResult.second;
2064 }
2065
2066 SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG,
2067                                         const PPCSubtarget &Subtarget) const {
2068   MachineFunction &MF = DAG.getMachineFunction();
2069   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2070
2071   SDLoc dl(Op);
2072
2073   if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) {
2074     // vastart just stores the address of the VarArgsFrameIndex slot into the
2075     // memory location argument.
2076     EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2077     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2078     const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2079     return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2080                         MachinePointerInfo(SV),
2081                         false, false, 0);
2082   }
2083
2084   // For the 32-bit SVR4 ABI we follow the layout of the va_list struct.
2085   // We suppose the given va_list is already allocated.
2086   //
2087   // typedef struct {
2088   //  char gpr;     /* index into the array of 8 GPRs
2089   //                 * stored in the register save area
2090   //                 * gpr=0 corresponds to r3,
2091   //                 * gpr=1 to r4, etc.
2092   //                 */
2093   //  char fpr;     /* index into the array of 8 FPRs
2094   //                 * stored in the register save area
2095   //                 * fpr=0 corresponds to f1,
2096   //                 * fpr=1 to f2, etc.
2097   //                 */
2098   //  char *overflow_arg_area;
2099   //                /* location on stack that holds
2100   //                 * the next overflow argument
2101   //                 */
2102   //  char *reg_save_area;
2103   //               /* where r3:r10 and f1:f8 (if saved)
2104   //                * are stored
2105   //                */
2106   // } va_list[1];
2107
2108
2109   SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32);
2110   SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32);
2111
2112
2113   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2114
2115   SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(),
2116                                             PtrVT);
2117   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
2118                                  PtrVT);
2119
2120   uint64_t FrameOffset = PtrVT.getSizeInBits()/8;
2121   SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT);
2122
2123   uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1;
2124   SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT);
2125
2126   uint64_t FPROffset = 1;
2127   SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT);
2128
2129   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2130
2131   // Store first byte : number of int regs
2132   SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR,
2133                                          Op.getOperand(1),
2134                                          MachinePointerInfo(SV),
2135                                          MVT::i8, false, false, 0);
2136   uint64_t nextOffset = FPROffset;
2137   SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1),
2138                                   ConstFPROffset);
2139
2140   // Store second byte : number of float regs
2141   SDValue secondStore =
2142     DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr,
2143                       MachinePointerInfo(SV, nextOffset), MVT::i8,
2144                       false, false, 0);
2145   nextOffset += StackOffset;
2146   nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset);
2147
2148   // Store second word : arguments given on stack
2149   SDValue thirdStore =
2150     DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr,
2151                  MachinePointerInfo(SV, nextOffset),
2152                  false, false, 0);
2153   nextOffset += FrameOffset;
2154   nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset);
2155
2156   // Store third word : arguments given in registers
2157   return DAG.getStore(thirdStore, dl, FR, nextPtr,
2158                       MachinePointerInfo(SV, nextOffset),
2159                       false, false, 0);
2160
2161 }
2162
2163 #include "PPCGenCallingConv.inc"
2164
2165 // Function whose sole purpose is to kill compiler warnings 
2166 // stemming from unused functions included from PPCGenCallingConv.inc.
2167 CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const {
2168   return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS;
2169 }
2170
2171 bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT,
2172                                       CCValAssign::LocInfo &LocInfo,
2173                                       ISD::ArgFlagsTy &ArgFlags,
2174                                       CCState &State) {
2175   return true;
2176 }
2177
2178 bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT,
2179                                              MVT &LocVT,
2180                                              CCValAssign::LocInfo &LocInfo,
2181                                              ISD::ArgFlagsTy &ArgFlags,
2182                                              CCState &State) {
2183   static const MCPhysReg ArgRegs[] = {
2184     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2185     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2186   };
2187   const unsigned NumArgRegs = array_lengthof(ArgRegs);
2188
2189   unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2190
2191   // Skip one register if the first unallocated register has an even register
2192   // number and there are still argument registers available which have not been
2193   // allocated yet. RegNum is actually an index into ArgRegs, which means we
2194   // need to skip a register if RegNum is odd.
2195   if (RegNum != NumArgRegs && RegNum % 2 == 1) {
2196     State.AllocateReg(ArgRegs[RegNum]);
2197   }
2198
2199   // Always return false here, as this function only makes sure that the first
2200   // unallocated register has an odd register number and does not actually
2201   // allocate a register for the current argument.
2202   return false;
2203 }
2204
2205 bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT,
2206                                                MVT &LocVT,
2207                                                CCValAssign::LocInfo &LocInfo,
2208                                                ISD::ArgFlagsTy &ArgFlags,
2209                                                CCState &State) {
2210   static const MCPhysReg ArgRegs[] = {
2211     PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2212     PPC::F8
2213   };
2214
2215   const unsigned NumArgRegs = array_lengthof(ArgRegs);
2216
2217   unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs);
2218
2219   // If there is only one Floating-point register left we need to put both f64
2220   // values of a split ppc_fp128 value on the stack.
2221   if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) {
2222     State.AllocateReg(ArgRegs[RegNum]);
2223   }
2224
2225   // Always return false here, as this function only makes sure that the two f64
2226   // values a ppc_fp128 value is split into are both passed in registers or both
2227   // passed on the stack and does not actually allocate a register for the
2228   // current argument.
2229   return false;
2230 }
2231
2232 /// GetFPR - Get the set of FP registers that should be allocated for arguments,
2233 /// on Darwin.
2234 static const MCPhysReg *GetFPR() {
2235   static const MCPhysReg FPR[] = {
2236     PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2237     PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
2238   };
2239
2240   return FPR;
2241 }
2242
2243 /// CalculateStackSlotSize - Calculates the size reserved for this argument on
2244 /// the stack.
2245 static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags,
2246                                        unsigned PtrByteSize) {
2247   unsigned ArgSize = ArgVT.getStoreSize();
2248   if (Flags.isByVal())
2249     ArgSize = Flags.getByValSize();
2250
2251   // Round up to multiples of the pointer size, except for array members,
2252   // which are always packed.
2253   if (!Flags.isInConsecutiveRegs())
2254     ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2255
2256   return ArgSize;
2257 }
2258
2259 /// CalculateStackSlotAlignment - Calculates the alignment of this argument
2260 /// on the stack.
2261 static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT,
2262                                             ISD::ArgFlagsTy Flags,
2263                                             unsigned PtrByteSize) {
2264   unsigned Align = PtrByteSize;
2265
2266   // Altivec parameters are padded to a 16 byte boundary.
2267   if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2268       ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2269       ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2270     Align = 16;
2271
2272   // ByVal parameters are aligned as requested.
2273   if (Flags.isByVal()) {
2274     unsigned BVAlign = Flags.getByValAlign();
2275     if (BVAlign > PtrByteSize) {
2276       if (BVAlign % PtrByteSize != 0)
2277           llvm_unreachable(
2278             "ByVal alignment is not a multiple of the pointer size");
2279
2280       Align = BVAlign;
2281     }
2282   }
2283
2284   // Array members are always packed to their original alignment.
2285   if (Flags.isInConsecutiveRegs()) {
2286     // If the array member was split into multiple registers, the first
2287     // needs to be aligned to the size of the full type.  (Except for
2288     // ppcf128, which is only aligned as its f64 components.)
2289     if (Flags.isSplit() && OrigVT != MVT::ppcf128)
2290       Align = OrigVT.getStoreSize();
2291     else
2292       Align = ArgVT.getStoreSize();
2293   }
2294
2295   return Align;
2296 }
2297
2298 /// CalculateStackSlotUsed - Return whether this argument will use its
2299 /// stack slot (instead of being passed in registers).  ArgOffset,
2300 /// AvailableFPRs, and AvailableVRs must hold the current argument
2301 /// position, and will be updated to account for this argument.
2302 static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT,
2303                                    ISD::ArgFlagsTy Flags,
2304                                    unsigned PtrByteSize,
2305                                    unsigned LinkageSize,
2306                                    unsigned ParamAreaSize,
2307                                    unsigned &ArgOffset,
2308                                    unsigned &AvailableFPRs,
2309                                    unsigned &AvailableVRs) {
2310   bool UseMemory = false;
2311
2312   // Respect alignment of argument on the stack.
2313   unsigned Align =
2314     CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
2315   ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2316   // If there's no space left in the argument save area, we must
2317   // use memory (this check also catches zero-sized arguments).
2318   if (ArgOffset >= LinkageSize + ParamAreaSize)
2319     UseMemory = true;
2320
2321   // Allocate argument on the stack.
2322   ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
2323   if (Flags.isInConsecutiveRegsLast())
2324     ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2325   // If we overran the argument save area, we must use memory
2326   // (this check catches arguments passed partially in memory)
2327   if (ArgOffset > LinkageSize + ParamAreaSize)
2328     UseMemory = true;
2329
2330   // However, if the argument is actually passed in an FPR or a VR,
2331   // we don't use memory after all.
2332   if (!Flags.isByVal()) {
2333     if (ArgVT == MVT::f32 || ArgVT == MVT::f64)
2334       if (AvailableFPRs > 0) {
2335         --AvailableFPRs;
2336         return false;
2337       }
2338     if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
2339         ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
2340         ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64)
2341       if (AvailableVRs > 0) {
2342         --AvailableVRs;
2343         return false;
2344       }
2345   }
2346
2347   return UseMemory;
2348 }
2349
2350 /// EnsureStackAlignment - Round stack frame size up from NumBytes to
2351 /// ensure minimum alignment required for target.
2352 static unsigned EnsureStackAlignment(const PPCFrameLowering *Lowering,
2353                                      unsigned NumBytes) {
2354   unsigned TargetAlign = Lowering->getStackAlignment();
2355   unsigned AlignMask = TargetAlign - 1;
2356   NumBytes = (NumBytes + AlignMask) & ~AlignMask;
2357   return NumBytes;
2358 }
2359
2360 SDValue
2361 PPCTargetLowering::LowerFormalArguments(SDValue Chain,
2362                                         CallingConv::ID CallConv, bool isVarArg,
2363                                         const SmallVectorImpl<ISD::InputArg>
2364                                           &Ins,
2365                                         SDLoc dl, SelectionDAG &DAG,
2366                                         SmallVectorImpl<SDValue> &InVals)
2367                                           const {
2368   if (Subtarget.isSVR4ABI()) {
2369     if (Subtarget.isPPC64())
2370       return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins,
2371                                          dl, DAG, InVals);
2372     else
2373       return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins,
2374                                          dl, DAG, InVals);
2375   } else {
2376     return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins,
2377                                        dl, DAG, InVals);
2378   }
2379 }
2380
2381 SDValue
2382 PPCTargetLowering::LowerFormalArguments_32SVR4(
2383                                       SDValue Chain,
2384                                       CallingConv::ID CallConv, bool isVarArg,
2385                                       const SmallVectorImpl<ISD::InputArg>
2386                                         &Ins,
2387                                       SDLoc dl, SelectionDAG &DAG,
2388                                       SmallVectorImpl<SDValue> &InVals) const {
2389
2390   // 32-bit SVR4 ABI Stack Frame Layout:
2391   //              +-----------------------------------+
2392   //        +-->  |            Back chain             |
2393   //        |     +-----------------------------------+
2394   //        |     | Floating-point register save area |
2395   //        |     +-----------------------------------+
2396   //        |     |    General register save area     |
2397   //        |     +-----------------------------------+
2398   //        |     |          CR save word             |
2399   //        |     +-----------------------------------+
2400   //        |     |         VRSAVE save word          |
2401   //        |     +-----------------------------------+
2402   //        |     |         Alignment padding         |
2403   //        |     +-----------------------------------+
2404   //        |     |     Vector register save area     |
2405   //        |     +-----------------------------------+
2406   //        |     |       Local variable space        |
2407   //        |     +-----------------------------------+
2408   //        |     |        Parameter list area        |
2409   //        |     +-----------------------------------+
2410   //        |     |           LR save word            |
2411   //        |     +-----------------------------------+
2412   // SP-->  +---  |            Back chain             |
2413   //              +-----------------------------------+
2414   //
2415   // Specifications:
2416   //   System V Application Binary Interface PowerPC Processor Supplement
2417   //   AltiVec Technology Programming Interface Manual
2418
2419   MachineFunction &MF = DAG.getMachineFunction();
2420   MachineFrameInfo *MFI = MF.getFrameInfo();
2421   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2422
2423   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2424   // Potential tail calls could cause overwriting of argument stack slots.
2425   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2426                        (CallConv == CallingConv::Fast));
2427   unsigned PtrByteSize = 4;
2428
2429   // Assign locations to all of the incoming arguments.
2430   SmallVector<CCValAssign, 16> ArgLocs;
2431   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2432                  *DAG.getContext());
2433
2434   // Reserve space for the linkage area on the stack.
2435   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
2436   CCInfo.AllocateStack(LinkageSize, PtrByteSize);
2437
2438   CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4);
2439
2440   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2441     CCValAssign &VA = ArgLocs[i];
2442
2443     // Arguments stored in registers.
2444     if (VA.isRegLoc()) {
2445       const TargetRegisterClass *RC;
2446       EVT ValVT = VA.getValVT();
2447
2448       switch (ValVT.getSimpleVT().SimpleTy) {
2449         default:
2450           llvm_unreachable("ValVT not supported by formal arguments Lowering");
2451         case MVT::i1:
2452         case MVT::i32:
2453           RC = &PPC::GPRCRegClass;
2454           break;
2455         case MVT::f32:
2456           RC = &PPC::F4RCRegClass;
2457           break;
2458         case MVT::f64:
2459           if (Subtarget.hasVSX())
2460             RC = &PPC::VSFRCRegClass;
2461           else
2462             RC = &PPC::F8RCRegClass;
2463           break;
2464         case MVT::v16i8:
2465         case MVT::v8i16:
2466         case MVT::v4i32:
2467         case MVT::v4f32:
2468           RC = &PPC::VRRCRegClass;
2469           break;
2470         case MVT::v2f64:
2471         case MVT::v2i64:
2472           RC = &PPC::VSHRCRegClass;
2473           break;
2474       }
2475
2476       // Transform the arguments stored in physical registers into virtual ones.
2477       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2478       SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg,
2479                                             ValVT == MVT::i1 ? MVT::i32 : ValVT);
2480
2481       if (ValVT == MVT::i1)
2482         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue);
2483
2484       InVals.push_back(ArgValue);
2485     } else {
2486       // Argument stored in memory.
2487       assert(VA.isMemLoc());
2488
2489       unsigned ArgSize = VA.getLocVT().getStoreSize();
2490       int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(),
2491                                       isImmutable);
2492
2493       // Create load nodes to retrieve arguments from the stack.
2494       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2495       InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
2496                                    MachinePointerInfo(),
2497                                    false, false, false, 0));
2498     }
2499   }
2500
2501   // Assign locations to all of the incoming aggregate by value arguments.
2502   // Aggregates passed by value are stored in the local variable space of the
2503   // caller's stack frame, right above the parameter list area.
2504   SmallVector<CCValAssign, 16> ByValArgLocs;
2505   CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2506                       ByValArgLocs, *DAG.getContext());
2507
2508   // Reserve stack space for the allocations in CCInfo.
2509   CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
2510
2511   CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal);
2512
2513   // Area that is at least reserved in the caller of this function.
2514   unsigned MinReservedArea = CCByValInfo.getNextStackOffset();
2515   MinReservedArea = std::max(MinReservedArea, LinkageSize);
2516
2517   // Set the size that is at least reserved in caller of this function.  Tail
2518   // call optimized function's reserved stack space needs to be aligned so that
2519   // taking the difference between two stack areas will result in an aligned
2520   // stack.
2521   MinReservedArea =
2522       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
2523   FuncInfo->setMinReservedArea(MinReservedArea);
2524
2525   SmallVector<SDValue, 8> MemOps;
2526
2527   // If the function takes variable number of arguments, make a frame index for
2528   // the start of the first vararg value... for expansion of llvm.va_start.
2529   if (isVarArg) {
2530     static const MCPhysReg GPArgRegs[] = {
2531       PPC::R3, PPC::R4, PPC::R5, PPC::R6,
2532       PPC::R7, PPC::R8, PPC::R9, PPC::R10,
2533     };
2534     const unsigned NumGPArgRegs = array_lengthof(GPArgRegs);
2535
2536     static const MCPhysReg FPArgRegs[] = {
2537       PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
2538       PPC::F8
2539     };
2540     unsigned NumFPArgRegs = array_lengthof(FPArgRegs);
2541     if (DisablePPCFloatInVariadic)
2542       NumFPArgRegs = 0;
2543
2544     FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs,
2545                                                           NumGPArgRegs));
2546     FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs,
2547                                                           NumFPArgRegs));
2548
2549     // Make room for NumGPArgRegs and NumFPArgRegs.
2550     int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 +
2551                 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8;
2552
2553     FuncInfo->setVarArgsStackOffset(
2554       MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
2555                              CCInfo.getNextStackOffset(), true));
2556
2557     FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false));
2558     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2559
2560     // The fixed integer arguments of a variadic function are stored to the
2561     // VarArgsFrameIndex on the stack so that they may be loaded by deferencing
2562     // the result of va_next.
2563     for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) {
2564       // Get an existing live-in vreg, or add a new one.
2565       unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]);
2566       if (!VReg)
2567         VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass);
2568
2569       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2570       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2571                                    MachinePointerInfo(), false, false, 0);
2572       MemOps.push_back(Store);
2573       // Increment the address by four for the next argument to store
2574       SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
2575       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2576     }
2577
2578     // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6
2579     // is set.
2580     // The double arguments are stored to the VarArgsFrameIndex
2581     // on the stack.
2582     for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) {
2583       // Get an existing live-in vreg, or add a new one.
2584       unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]);
2585       if (!VReg)
2586         VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass);
2587
2588       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64);
2589       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2590                                    MachinePointerInfo(), false, false, 0);
2591       MemOps.push_back(Store);
2592       // Increment the address by eight for the next argument to store
2593       SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8,
2594                                          PtrVT);
2595       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2596     }
2597   }
2598
2599   if (!MemOps.empty())
2600     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2601
2602   return Chain;
2603 }
2604
2605 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2606 // value to MVT::i64 and then truncate to the correct register size.
2607 SDValue
2608 PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT,
2609                                      SelectionDAG &DAG, SDValue ArgVal,
2610                                      SDLoc dl) const {
2611   if (Flags.isSExt())
2612     ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal,
2613                          DAG.getValueType(ObjectVT));
2614   else if (Flags.isZExt())
2615     ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal,
2616                          DAG.getValueType(ObjectVT));
2617
2618   return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal);
2619 }
2620
2621 SDValue
2622 PPCTargetLowering::LowerFormalArguments_64SVR4(
2623                                       SDValue Chain,
2624                                       CallingConv::ID CallConv, bool isVarArg,
2625                                       const SmallVectorImpl<ISD::InputArg>
2626                                         &Ins,
2627                                       SDLoc dl, SelectionDAG &DAG,
2628                                       SmallVectorImpl<SDValue> &InVals) const {
2629   // TODO: add description of PPC stack frame format, or at least some docs.
2630   //
2631   bool isELFv2ABI = Subtarget.isELFv2ABI();
2632   bool isLittleEndian = Subtarget.isLittleEndian();
2633   MachineFunction &MF = DAG.getMachineFunction();
2634   MachineFrameInfo *MFI = MF.getFrameInfo();
2635   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
2636
2637   assert(!(CallConv == CallingConv::Fast && isVarArg) &&
2638          "fastcc not supported on varargs functions");
2639
2640   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2641   // Potential tail calls could cause overwriting of argument stack slots.
2642   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
2643                        (CallConv == CallingConv::Fast));
2644   unsigned PtrByteSize = 8;
2645   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
2646
2647   static const MCPhysReg GPR[] = {
2648     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
2649     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
2650   };
2651
2652   static const MCPhysReg *FPR = GetFPR();
2653
2654   static const MCPhysReg VR[] = {
2655     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
2656     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
2657   };
2658   static const MCPhysReg VSRH[] = {
2659     PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
2660     PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
2661   };
2662
2663   const unsigned Num_GPR_Regs = array_lengthof(GPR);
2664   const unsigned Num_FPR_Regs = 13;
2665   const unsigned Num_VR_Regs  = array_lengthof(VR);
2666
2667   // Do a first pass over the arguments to determine whether the ABI
2668   // guarantees that our caller has allocated the parameter save area
2669   // on its stack frame.  In the ELFv1 ABI, this is always the case;
2670   // in the ELFv2 ABI, it is true if this is a vararg function or if
2671   // any parameter is located in a stack slot.
2672
2673   bool HasParameterArea = !isELFv2ABI || isVarArg;
2674   unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize;
2675   unsigned NumBytes = LinkageSize;
2676   unsigned AvailableFPRs = Num_FPR_Regs;
2677   unsigned AvailableVRs = Num_VR_Regs;
2678   for (unsigned i = 0, e = Ins.size(); i != e; ++i)
2679     if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags,
2680                                PtrByteSize, LinkageSize, ParamAreaSize,
2681                                NumBytes, AvailableFPRs, AvailableVRs))
2682       HasParameterArea = true;
2683
2684   // Add DAG nodes to load the arguments or copy them out of registers.  On
2685   // entry to a function on PPC, the arguments start after the linkage area,
2686   // although the first ones are often in registers.
2687
2688   unsigned ArgOffset = LinkageSize;
2689   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
2690   SmallVector<SDValue, 8> MemOps;
2691   Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
2692   unsigned CurArgIdx = 0;
2693   for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
2694     SDValue ArgVal;
2695     bool needsLoad = false;
2696     EVT ObjectVT = Ins[ArgNo].VT;
2697     EVT OrigVT = Ins[ArgNo].ArgVT;
2698     unsigned ObjSize = ObjectVT.getStoreSize();
2699     unsigned ArgSize = ObjSize;
2700     ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
2701     std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
2702     CurArgIdx = Ins[ArgNo].OrigArgIndex;
2703
2704     // We re-align the argument offset for each argument, except when using the
2705     // fast calling convention, when we need to make sure we do that only when
2706     // we'll actually use a stack slot.
2707     unsigned CurArgOffset, Align;
2708     auto ComputeArgOffset = [&]() {
2709       /* Respect alignment of argument on the stack.  */
2710       Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize);
2711       ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
2712       CurArgOffset = ArgOffset;
2713     };
2714
2715     if (CallConv != CallingConv::Fast) {
2716       ComputeArgOffset();
2717
2718       /* Compute GPR index associated with argument offset.  */
2719       GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2720       GPR_idx = std::min(GPR_idx, Num_GPR_Regs);
2721     }
2722
2723     // FIXME the codegen can be much improved in some cases.
2724     // We do not have to keep everything in memory.
2725     if (Flags.isByVal()) {
2726       if (CallConv == CallingConv::Fast)
2727         ComputeArgOffset();
2728
2729       // ObjSize is the true size, ArgSize rounded up to multiple of registers.
2730       ObjSize = Flags.getByValSize();
2731       ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2732       // Empty aggregate parameters do not take up registers.  Examples:
2733       //   struct { } a;
2734       //   union  { } b;
2735       //   int c[0];
2736       // etc.  However, we have to provide a place-holder in InVals, so
2737       // pretend we have an 8-byte item at the current address for that
2738       // purpose.
2739       if (!ObjSize) {
2740         int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
2741         SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2742         InVals.push_back(FIN);
2743         continue;
2744       }
2745
2746       // Create a stack object covering all stack doublewords occupied
2747       // by the argument.  If the argument is (fully or partially) on
2748       // the stack, or if the argument is fully in registers but the
2749       // caller has allocated the parameter save anyway, we can refer
2750       // directly to the caller's stack frame.  Otherwise, create a
2751       // local copy in our own frame.
2752       int FI;
2753       if (HasParameterArea ||
2754           ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize)
2755         FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false, true);
2756       else
2757         FI = MFI->CreateStackObject(ArgSize, Align, false);
2758       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2759
2760       // Handle aggregates smaller than 8 bytes.
2761       if (ObjSize < PtrByteSize) {
2762         // The value of the object is its address, which differs from the
2763         // address of the enclosing doubleword on big-endian systems.
2764         SDValue Arg = FIN;
2765         if (!isLittleEndian) {
2766           SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, PtrVT);
2767           Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff);
2768         }
2769         InVals.push_back(Arg);
2770
2771         if (GPR_idx != Num_GPR_Regs) {
2772           unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
2773           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2774           SDValue Store;
2775
2776           if (ObjSize==1 || ObjSize==2 || ObjSize==4) {
2777             EVT ObjType = (ObjSize == 1 ? MVT::i8 :
2778                            (ObjSize == 2 ? MVT::i16 : MVT::i32));
2779             Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg,
2780                                       MachinePointerInfo(FuncArg),
2781                                       ObjType, false, false, 0);
2782           } else {
2783             // For sizes that don't fit a truncating store (3, 5, 6, 7),
2784             // store the whole register as-is to the parameter save area
2785             // slot.
2786             Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2787                                  MachinePointerInfo(FuncArg),
2788                                  false, false, 0);
2789           }
2790
2791           MemOps.push_back(Store);
2792         }
2793         // Whether we copied from a register or not, advance the offset
2794         // into the parameter save area by a full doubleword.
2795         ArgOffset += PtrByteSize;
2796         continue;
2797       }
2798
2799       // The value of the object is its address, which is the address of
2800       // its first stack doubleword.
2801       InVals.push_back(FIN);
2802
2803       // Store whatever pieces of the object are in registers to memory.
2804       for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
2805         if (GPR_idx == Num_GPR_Regs)
2806           break;
2807
2808         unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2809         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2810         SDValue Addr = FIN;
2811         if (j) {
2812           SDValue Off = DAG.getConstant(j, PtrVT);
2813           Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off);
2814         }
2815         SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, Addr,
2816                                      MachinePointerInfo(FuncArg, j),
2817                                      false, false, 0);
2818         MemOps.push_back(Store);
2819         ++GPR_idx;
2820       }
2821       ArgOffset += ArgSize;
2822       continue;
2823     }
2824
2825     switch (ObjectVT.getSimpleVT().SimpleTy) {
2826     default: llvm_unreachable("Unhandled argument type!");
2827     case MVT::i1:
2828     case MVT::i32:
2829     case MVT::i64:
2830       // These can be scalar arguments or elements of an integer array type
2831       // passed directly.  Clang may use those instead of "byval" aggregate
2832       // types to avoid forcing arguments to memory unnecessarily.
2833       if (GPR_idx != Num_GPR_Regs) {
2834         unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
2835         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2836
2837         if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
2838           // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
2839           // value to MVT::i64 and then truncate to the correct register size.
2840           ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
2841       } else {
2842         if (CallConv == CallingConv::Fast)
2843           ComputeArgOffset();
2844
2845         needsLoad = true;
2846         ArgSize = PtrByteSize;
2847       }
2848       if (CallConv != CallingConv::Fast || needsLoad)
2849         ArgOffset += 8;
2850       break;
2851
2852     case MVT::f32:
2853     case MVT::f64:
2854       // These can be scalar arguments or elements of a float array type
2855       // passed directly.  The latter are used to implement ELFv2 homogenous
2856       // float aggregates.
2857       if (FPR_idx != Num_FPR_Regs) {
2858         unsigned VReg;
2859
2860         if (ObjectVT == MVT::f32)
2861           VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
2862         else
2863           VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX()
2864                                                 ? &PPC::VSFRCRegClass
2865                                                 : &PPC::F8RCRegClass);
2866
2867         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2868         ++FPR_idx;
2869       } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) {
2870         // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
2871         // once we support fp <-> gpr moves.
2872
2873         // This can only ever happen in the presence of f32 array types,
2874         // since otherwise we never run out of FPRs before running out
2875         // of GPRs.
2876         unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass);
2877         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2878
2879         if (ObjectVT == MVT::f32) {
2880           if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0))
2881             ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal,
2882                                  DAG.getConstant(32, MVT::i32));
2883           ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal);
2884         }
2885
2886         ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal);
2887       } else {
2888         if (CallConv == CallingConv::Fast)
2889           ComputeArgOffset();
2890
2891         needsLoad = true;
2892       }
2893
2894       // When passing an array of floats, the array occupies consecutive
2895       // space in the argument area; only round up to the next doubleword
2896       // at the end of the array.  Otherwise, each float takes 8 bytes.
2897       if (CallConv != CallingConv::Fast || needsLoad) {
2898         ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize;
2899         ArgOffset += ArgSize;
2900         if (Flags.isInConsecutiveRegsLast())
2901           ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
2902       }
2903       break;
2904     case MVT::v4f32:
2905     case MVT::v4i32:
2906     case MVT::v8i16:
2907     case MVT::v16i8:
2908     case MVT::v2f64:
2909     case MVT::v2i64:
2910       // These can be scalar arguments or elements of a vector array type
2911       // passed directly.  The latter are used to implement ELFv2 homogenous
2912       // vector aggregates.
2913       if (VR_idx != Num_VR_Regs) {
2914         unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ?
2915                         MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) :
2916                         MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
2917         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
2918         ++VR_idx;
2919       } else {
2920         if (CallConv == CallingConv::Fast)
2921           ComputeArgOffset();
2922
2923         needsLoad = true;
2924       }
2925       if (CallConv != CallingConv::Fast || needsLoad)
2926         ArgOffset += 16;
2927       break;
2928     }
2929
2930     // We need to load the argument to a virtual register if we determined
2931     // above that we ran out of physical registers of the appropriate type.
2932     if (needsLoad) {
2933       if (ObjSize < ArgSize && !isLittleEndian)
2934         CurArgOffset += ArgSize - ObjSize;
2935       int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable);
2936       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
2937       ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
2938                            false, false, false, 0);
2939     }
2940
2941     InVals.push_back(ArgVal);
2942   }
2943
2944   // Area that is at least reserved in the caller of this function.
2945   unsigned MinReservedArea;
2946   if (HasParameterArea)
2947     MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize);
2948   else
2949     MinReservedArea = LinkageSize;
2950
2951   // Set the size that is at least reserved in caller of this function.  Tail
2952   // call optimized functions' reserved stack space needs to be aligned so that
2953   // taking the difference between two stack areas will result in an aligned
2954   // stack.
2955   MinReservedArea =
2956       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
2957   FuncInfo->setMinReservedArea(MinReservedArea);
2958
2959   // If the function takes variable number of arguments, make a frame index for
2960   // the start of the first vararg value... for expansion of llvm.va_start.
2961   if (isVarArg) {
2962     int Depth = ArgOffset;
2963
2964     FuncInfo->setVarArgsFrameIndex(
2965       MFI->CreateFixedObject(PtrByteSize, Depth, true));
2966     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2967
2968     // If this function is vararg, store any remaining integer argument regs
2969     // to their spots on the stack so that they may be loaded by deferencing the
2970     // result of va_next.
2971     for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
2972          GPR_idx < Num_GPR_Regs; ++GPR_idx) {
2973       unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
2974       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
2975       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
2976                                    MachinePointerInfo(), false, false, 0);
2977       MemOps.push_back(Store);
2978       // Increment the address by four for the next argument to store
2979       SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT);
2980       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
2981     }
2982   }
2983
2984   if (!MemOps.empty())
2985     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2986
2987   return Chain;
2988 }
2989
2990 SDValue
2991 PPCTargetLowering::LowerFormalArguments_Darwin(
2992                                       SDValue Chain,
2993                                       CallingConv::ID CallConv, bool isVarArg,
2994                                       const SmallVectorImpl<ISD::InputArg>
2995                                         &Ins,
2996                                       SDLoc dl, SelectionDAG &DAG,
2997                                       SmallVectorImpl<SDValue> &InVals) const {
2998   // TODO: add description of PPC stack frame format, or at least some docs.
2999   //
3000   MachineFunction &MF = DAG.getMachineFunction();
3001   MachineFrameInfo *MFI = MF.getFrameInfo();
3002   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
3003
3004   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3005   bool isPPC64 = PtrVT == MVT::i64;
3006   // Potential tail calls could cause overwriting of argument stack slots.
3007   bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt &&
3008                        (CallConv == CallingConv::Fast));
3009   unsigned PtrByteSize = isPPC64 ? 8 : 4;
3010   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
3011   unsigned ArgOffset = LinkageSize;
3012   // Area that is at least reserved in caller of this function.
3013   unsigned MinReservedArea = ArgOffset;
3014
3015   static const MCPhysReg GPR_32[] = {           // 32-bit registers.
3016     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
3017     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
3018   };
3019   static const MCPhysReg GPR_64[] = {           // 64-bit registers.
3020     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
3021     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
3022   };
3023
3024   static const MCPhysReg *FPR = GetFPR();
3025
3026   static const MCPhysReg VR[] = {
3027     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
3028     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
3029   };
3030
3031   const unsigned Num_GPR_Regs = array_lengthof(GPR_32);
3032   const unsigned Num_FPR_Regs = 13;
3033   const unsigned Num_VR_Regs  = array_lengthof( VR);
3034
3035   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
3036
3037   const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
3038
3039   // In 32-bit non-varargs functions, the stack space for vectors is after the
3040   // stack space for non-vectors.  We do not use this space unless we have
3041   // too many vectors to fit in registers, something that only occurs in
3042   // constructed examples:), but we have to walk the arglist to figure
3043   // that out...for the pathological case, compute VecArgOffset as the
3044   // start of the vector parameter area.  Computing VecArgOffset is the
3045   // entire point of the following loop.
3046   unsigned VecArgOffset = ArgOffset;
3047   if (!isVarArg && !isPPC64) {
3048     for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e;
3049          ++ArgNo) {
3050       EVT ObjectVT = Ins[ArgNo].VT;
3051       ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3052
3053       if (Flags.isByVal()) {
3054         // ObjSize is the true size, ArgSize rounded up to multiple of regs.
3055         unsigned ObjSize = Flags.getByValSize();
3056         unsigned ArgSize =
3057                 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3058         VecArgOffset += ArgSize;
3059         continue;
3060       }
3061
3062       switch(ObjectVT.getSimpleVT().SimpleTy) {
3063       default: llvm_unreachable("Unhandled argument type!");
3064       case MVT::i1:
3065       case MVT::i32:
3066       case MVT::f32:
3067         VecArgOffset += 4;
3068         break;
3069       case MVT::i64:  // PPC64
3070       case MVT::f64:
3071         // FIXME: We are guaranteed to be !isPPC64 at this point.
3072         // Does MVT::i64 apply?
3073         VecArgOffset += 8;
3074         break;
3075       case MVT::v4f32:
3076       case MVT::v4i32:
3077       case MVT::v8i16:
3078       case MVT::v16i8:
3079         // Nothing to do, we're only looking at Nonvector args here.
3080         break;
3081       }
3082     }
3083   }
3084   // We've found where the vector parameter area in memory is.  Skip the
3085   // first 12 parameters; these don't use that memory.
3086   VecArgOffset = ((VecArgOffset+15)/16)*16;
3087   VecArgOffset += 12*16;
3088
3089   // Add DAG nodes to load the arguments or copy them out of registers.  On
3090   // entry to a function on PPC, the arguments start after the linkage area,
3091   // although the first ones are often in registers.
3092
3093   SmallVector<SDValue, 8> MemOps;
3094   unsigned nAltivecParamsAtEnd = 0;
3095   Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin();
3096   unsigned CurArgIdx = 0;
3097   for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) {
3098     SDValue ArgVal;
3099     bool needsLoad = false;
3100     EVT ObjectVT = Ins[ArgNo].VT;
3101     unsigned ObjSize = ObjectVT.getSizeInBits()/8;
3102     unsigned ArgSize = ObjSize;
3103     ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags;
3104     std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx);
3105     CurArgIdx = Ins[ArgNo].OrigArgIndex;
3106
3107     unsigned CurArgOffset = ArgOffset;
3108
3109     // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary.
3110     if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 ||
3111         ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) {
3112       if (isVarArg || isPPC64) {
3113         MinReservedArea = ((MinReservedArea+15)/16)*16;
3114         MinReservedArea += CalculateStackSlotSize(ObjectVT,
3115                                                   Flags,
3116                                                   PtrByteSize);
3117       } else  nAltivecParamsAtEnd++;
3118     } else
3119       // Calculate min reserved area.
3120       MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT,
3121                                                 Flags,
3122                                                 PtrByteSize);
3123
3124     // FIXME the codegen can be much improved in some cases.
3125     // We do not have to keep everything in memory.
3126     if (Flags.isByVal()) {
3127       // ObjSize is the true size, ArgSize rounded up to multiple of registers.
3128       ObjSize = Flags.getByValSize();
3129       ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3130       // Objects of size 1 and 2 are right justified, everything else is
3131       // left justified.  This means the memory address is adjusted forwards.
3132       if (ObjSize==1 || ObjSize==2) {
3133         CurArgOffset = CurArgOffset + (4 - ObjSize);
3134       }
3135       // The value of the object is its address.
3136       int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, false, true);
3137       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3138       InVals.push_back(FIN);
3139       if (ObjSize==1 || ObjSize==2) {
3140         if (GPR_idx != Num_GPR_Regs) {
3141           unsigned VReg;
3142           if (isPPC64)
3143             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3144           else
3145             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3146           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3147           EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16;
3148           SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN,
3149                                             MachinePointerInfo(FuncArg),
3150                                             ObjType, false, false, 0);
3151           MemOps.push_back(Store);
3152           ++GPR_idx;
3153         }
3154
3155         ArgOffset += PtrByteSize;
3156
3157         continue;
3158       }
3159       for (unsigned j = 0; j < ArgSize; j += PtrByteSize) {
3160         // Store whatever pieces of the object are in registers
3161         // to memory.  ArgOffset will be the address of the beginning
3162         // of the object.
3163         if (GPR_idx != Num_GPR_Regs) {
3164           unsigned VReg;
3165           if (isPPC64)
3166             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3167           else
3168             VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3169           int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true);
3170           SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3171           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3172           SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3173                                        MachinePointerInfo(FuncArg, j),
3174                                        false, false, 0);
3175           MemOps.push_back(Store);
3176           ++GPR_idx;
3177           ArgOffset += PtrByteSize;
3178         } else {
3179           ArgOffset += ArgSize - (ArgOffset-CurArgOffset);
3180           break;
3181         }
3182       }
3183       continue;
3184     }
3185
3186     switch (ObjectVT.getSimpleVT().SimpleTy) {
3187     default: llvm_unreachable("Unhandled argument type!");
3188     case MVT::i1:
3189     case MVT::i32:
3190       if (!isPPC64) {
3191         if (GPR_idx != Num_GPR_Regs) {
3192           unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3193           ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
3194
3195           if (ObjectVT == MVT::i1)
3196             ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal);
3197
3198           ++GPR_idx;
3199         } else {
3200           needsLoad = true;
3201           ArgSize = PtrByteSize;
3202         }
3203         // All int arguments reserve stack space in the Darwin ABI.
3204         ArgOffset += PtrByteSize;
3205         break;
3206       }
3207       // FALLTHROUGH
3208     case MVT::i64:  // PPC64
3209       if (GPR_idx != Num_GPR_Regs) {
3210         unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3211         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
3212
3213         if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1)
3214           // PPC64 passes i8, i16, and i32 values in i64 registers. Promote
3215           // value to MVT::i64 and then truncate to the correct register size.
3216           ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl);
3217
3218         ++GPR_idx;
3219       } else {
3220         needsLoad = true;
3221         ArgSize = PtrByteSize;
3222       }
3223       // All int arguments reserve stack space in the Darwin ABI.
3224       ArgOffset += 8;
3225       break;
3226
3227     case MVT::f32:
3228     case MVT::f64:
3229       // Every 4 bytes of argument space consumes one of the GPRs available for
3230       // argument passing.
3231       if (GPR_idx != Num_GPR_Regs) {
3232         ++GPR_idx;
3233         if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64)
3234           ++GPR_idx;
3235       }
3236       if (FPR_idx != Num_FPR_Regs) {
3237         unsigned VReg;
3238
3239         if (ObjectVT == MVT::f32)
3240           VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass);
3241         else
3242           VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass);
3243
3244         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3245         ++FPR_idx;
3246       } else {
3247         needsLoad = true;
3248       }
3249
3250       // All FP arguments reserve stack space in the Darwin ABI.
3251       ArgOffset += isPPC64 ? 8 : ObjSize;
3252       break;
3253     case MVT::v4f32:
3254     case MVT::v4i32:
3255     case MVT::v8i16:
3256     case MVT::v16i8:
3257       // Note that vector arguments in registers don't reserve stack space,
3258       // except in varargs functions.
3259       if (VR_idx != Num_VR_Regs) {
3260         unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
3261         ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT);
3262         if (isVarArg) {
3263           while ((ArgOffset % 16) != 0) {
3264             ArgOffset += PtrByteSize;
3265             if (GPR_idx != Num_GPR_Regs)
3266               GPR_idx++;
3267           }
3268           ArgOffset += 16;
3269           GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64?
3270         }
3271         ++VR_idx;
3272       } else {
3273         if (!isVarArg && !isPPC64) {
3274           // Vectors go after all the nonvectors.
3275           CurArgOffset = VecArgOffset;
3276           VecArgOffset += 16;
3277         } else {
3278           // Vectors are aligned.
3279           ArgOffset = ((ArgOffset+15)/16)*16;
3280           CurArgOffset = ArgOffset;
3281           ArgOffset += 16;
3282         }
3283         needsLoad = true;
3284       }
3285       break;
3286     }
3287
3288     // We need to load the argument to a virtual register if we determined above
3289     // that we ran out of physical registers of the appropriate type.
3290     if (needsLoad) {
3291       int FI = MFI->CreateFixedObject(ObjSize,
3292                                       CurArgOffset + (ArgSize - ObjSize),
3293                                       isImmutable);
3294       SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3295       ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(),
3296                            false, false, false, 0);
3297     }
3298
3299     InVals.push_back(ArgVal);
3300   }
3301
3302   // Allow for Altivec parameters at the end, if needed.
3303   if (nAltivecParamsAtEnd) {
3304     MinReservedArea = ((MinReservedArea+15)/16)*16;
3305     MinReservedArea += 16*nAltivecParamsAtEnd;
3306   }
3307
3308   // Area that is at least reserved in the caller of this function.
3309   MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize);
3310
3311   // Set the size that is at least reserved in caller of this function.  Tail
3312   // call optimized functions' reserved stack space needs to be aligned so that
3313   // taking the difference between two stack areas will result in an aligned
3314   // stack.
3315   MinReservedArea =
3316       EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea);
3317   FuncInfo->setMinReservedArea(MinReservedArea);
3318
3319   // If the function takes variable number of arguments, make a frame index for
3320   // the start of the first vararg value... for expansion of llvm.va_start.
3321   if (isVarArg) {
3322     int Depth = ArgOffset;
3323
3324     FuncInfo->setVarArgsFrameIndex(
3325       MFI->CreateFixedObject(PtrVT.getSizeInBits()/8,
3326                              Depth, true));
3327     SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
3328
3329     // If this function is vararg, store any remaining integer argument regs
3330     // to their spots on the stack so that they may be loaded by deferencing the
3331     // result of va_next.
3332     for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) {
3333       unsigned VReg;
3334
3335       if (isPPC64)
3336         VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass);
3337       else
3338         VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass);
3339
3340       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT);
3341       SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN,
3342                                    MachinePointerInfo(), false, false, 0);
3343       MemOps.push_back(Store);
3344       // Increment the address by four for the next argument to store
3345       SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT);
3346       FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff);
3347     }
3348   }
3349
3350   if (!MemOps.empty())
3351     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
3352
3353   return Chain;
3354 }
3355
3356 /// CalculateTailCallSPDiff - Get the amount the stack pointer has to be
3357 /// adjusted to accommodate the arguments for the tailcall.
3358 static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall,
3359                                    unsigned ParamSize) {
3360
3361   if (!isTailCall) return 0;
3362
3363   PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>();
3364   unsigned CallerMinReservedArea = FI->getMinReservedArea();
3365   int SPDiff = (int)CallerMinReservedArea - (int)ParamSize;
3366   // Remember only if the new adjustement is bigger.
3367   if (SPDiff < FI->getTailCallSPDelta())
3368     FI->setTailCallSPDelta(SPDiff);
3369
3370   return SPDiff;
3371 }
3372
3373 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3374 /// for tail call optimization. Targets which want to do tail call
3375 /// optimization should implement this function.
3376 bool
3377 PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3378                                                      CallingConv::ID CalleeCC,
3379                                                      bool isVarArg,
3380                                       const SmallVectorImpl<ISD::InputArg> &Ins,
3381                                                      SelectionDAG& DAG) const {
3382   if (!getTargetMachine().Options.GuaranteedTailCallOpt)
3383     return false;
3384
3385   // Variable argument functions are not supported.
3386   if (isVarArg)
3387     return false;
3388
3389   MachineFunction &MF = DAG.getMachineFunction();
3390   CallingConv::ID CallerCC = MF.getFunction()->getCallingConv();
3391   if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
3392     // Functions containing by val parameters are not supported.
3393     for (unsigned i = 0; i != Ins.size(); i++) {
3394        ISD::ArgFlagsTy Flags = Ins[i].Flags;
3395        if (Flags.isByVal()) return false;
3396     }
3397
3398     // Non-PIC/GOT tail calls are supported.
3399     if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
3400       return true;
3401
3402     // At the moment we can only do local tail calls (in same module, hidden
3403     // or protected) if we are generating PIC.
3404     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3405       return G->getGlobal()->hasHiddenVisibility()
3406           || G->getGlobal()->hasProtectedVisibility();
3407   }
3408
3409   return false;
3410 }
3411
3412 /// isCallCompatibleAddress - Return the immediate to use if the specified
3413 /// 32-bit value is representable in the immediate field of a BxA instruction.
3414 static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) {
3415   ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
3416   if (!C) return nullptr;
3417
3418   int Addr = C->getZExtValue();
3419   if ((Addr & 3) != 0 ||  // Low 2 bits are implicitly zero.
3420       SignExtend32<26>(Addr) != Addr)
3421     return nullptr;  // Top 6 bits have to be sext of immediate.
3422
3423   return DAG.getConstant((int)C->getZExtValue() >> 2,
3424                          DAG.getTargetLoweringInfo().getPointerTy()).getNode();
3425 }
3426
3427 namespace {
3428
3429 struct TailCallArgumentInfo {
3430   SDValue Arg;
3431   SDValue FrameIdxOp;
3432   int       FrameIdx;
3433
3434   TailCallArgumentInfo() : FrameIdx(0) {}
3435 };
3436
3437 }
3438
3439 /// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot.
3440 static void
3441 StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG,
3442                                            SDValue Chain,
3443                    const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs,
3444                    SmallVectorImpl<SDValue> &MemOpChains,
3445                    SDLoc dl) {
3446   for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) {
3447     SDValue Arg = TailCallArgs[i].Arg;
3448     SDValue FIN = TailCallArgs[i].FrameIdxOp;
3449     int FI = TailCallArgs[i].FrameIdx;
3450     // Store relative to framepointer.
3451     MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN,
3452                                        MachinePointerInfo::getFixedStack(FI),
3453                                        false, false, 0));
3454   }
3455 }
3456
3457 /// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to
3458 /// the appropriate stack slot for the tail call optimized function call.
3459 static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG,
3460                                                MachineFunction &MF,
3461                                                SDValue Chain,
3462                                                SDValue OldRetAddr,
3463                                                SDValue OldFP,
3464                                                int SPDiff,
3465                                                bool isPPC64,
3466                                                bool isDarwinABI,
3467                                                SDLoc dl) {
3468   if (SPDiff) {
3469     // Calculate the new stack slot for the return address.
3470     int SlotSize = isPPC64 ? 8 : 4;
3471     const PPCFrameLowering *FL =
3472         MF.getSubtarget<PPCSubtarget>().getFrameLowering();
3473     int NewRetAddrLoc = SPDiff + FL->getReturnSaveOffset();
3474     int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3475                                                           NewRetAddrLoc, true);
3476     EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
3477     SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT);
3478     Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx,
3479                          MachinePointerInfo::getFixedStack(NewRetAddr),
3480                          false, false, 0);
3481
3482     // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack
3483     // slot as the FP is never overwritten.
3484     if (isDarwinABI) {
3485       int NewFPLoc = SPDiff + FL->getFramePointerSaveOffset();
3486       int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc,
3487                                                           true);
3488       SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT);
3489       Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx,
3490                            MachinePointerInfo::getFixedStack(NewFPIdx),
3491                            false, false, 0);
3492     }
3493   }
3494   return Chain;
3495 }
3496
3497 /// CalculateTailCallArgDest - Remember Argument for later processing. Calculate
3498 /// the position of the argument.
3499 static void
3500 CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64,
3501                          SDValue Arg, int SPDiff, unsigned ArgOffset,
3502                      SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) {
3503   int Offset = ArgOffset + SPDiff;
3504   uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8;
3505   int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
3506   EVT VT = isPPC64 ? MVT::i64 : MVT::i32;
3507   SDValue FIN = DAG.getFrameIndex(FI, VT);
3508   TailCallArgumentInfo Info;
3509   Info.Arg = Arg;
3510   Info.FrameIdxOp = FIN;
3511   Info.FrameIdx = FI;
3512   TailCallArguments.push_back(Info);
3513 }
3514
3515 /// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address
3516 /// stack slot. Returns the chain as result and the loaded frame pointers in
3517 /// LROpOut/FPOpout. Used when tail calling.
3518 SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG,
3519                                                         int SPDiff,
3520                                                         SDValue Chain,
3521                                                         SDValue &LROpOut,
3522                                                         SDValue &FPOpOut,
3523                                                         bool isDarwinABI,
3524                                                         SDLoc dl) const {
3525   if (SPDiff) {
3526     // Load the LR and FP stack slot for later adjusting.
3527     EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32;
3528     LROpOut = getReturnAddrFrameIndex(DAG);
3529     LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(),
3530                           false, false, false, 0);
3531     Chain = SDValue(LROpOut.getNode(), 1);
3532
3533     // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack
3534     // slot as the FP is never overwritten.
3535     if (isDarwinABI) {
3536       FPOpOut = getFramePointerFrameIndex(DAG);
3537       FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(),
3538                             false, false, false, 0);
3539       Chain = SDValue(FPOpOut.getNode(), 1);
3540     }
3541   }
3542   return Chain;
3543 }
3544
3545 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
3546 /// by "Src" to address "Dst" of size "Size".  Alignment information is
3547 /// specified by the specific parameter attribute. The copy will be passed as
3548 /// a byval function parameter.
3549 /// Sometimes what we are copying is the end of a larger object, the part that
3550 /// does not fit in registers.
3551 static SDValue
3552 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
3553                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
3554                           SDLoc dl) {
3555   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
3556   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
3557                        false, false, MachinePointerInfo(),
3558                        MachinePointerInfo());
3559 }
3560
3561 /// LowerMemOpCallTo - Store the argument to the stack or remember it in case of
3562 /// tail calls.
3563 static void
3564 LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain,
3565                  SDValue Arg, SDValue PtrOff, int SPDiff,
3566                  unsigned ArgOffset, bool isPPC64, bool isTailCall,
3567                  bool isVector, SmallVectorImpl<SDValue> &MemOpChains,
3568                  SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments,
3569                  SDLoc dl) {
3570   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3571   if (!isTailCall) {
3572     if (isVector) {
3573       SDValue StackPtr;
3574       if (isPPC64)
3575         StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
3576       else
3577         StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
3578       PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
3579                            DAG.getConstant(ArgOffset, PtrVT));
3580     }
3581     MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
3582                                        MachinePointerInfo(), false, false, 0));
3583   // Calculate and remember argument location.
3584   } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset,
3585                                   TailCallArguments);
3586 }
3587
3588 static
3589 void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain,
3590                      SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes,
3591                      SDValue LROp, SDValue FPOp, bool isDarwinABI,
3592                      SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) {
3593   MachineFunction &MF = DAG.getMachineFunction();
3594
3595   // Emit a sequence of copyto/copyfrom virtual registers for arguments that
3596   // might overwrite each other in case of tail call optimization.
3597   SmallVector<SDValue, 8> MemOpChains2;
3598   // Do not flag preceding copytoreg stuff together with the following stuff.
3599   InFlag = SDValue();
3600   StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments,
3601                                     MemOpChains2, dl);
3602   if (!MemOpChains2.empty())
3603     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2);
3604
3605   // Store the return address to the appropriate stack slot.
3606   Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff,
3607                                         isPPC64, isDarwinABI, dl);
3608
3609   // Emit callseq_end just before tailcall node.
3610   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3611                              DAG.getIntPtrConstant(0, true), InFlag, dl);
3612   InFlag = Chain.getValue(1);
3613 }
3614
3615 // Is this global address that of a function that can be called by name? (as
3616 // opposed to something that must hold a descriptor for an indirect call).
3617 static bool isFunctionGlobalAddress(SDValue Callee) {
3618   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3619     if (Callee.getOpcode() == ISD::GlobalTLSAddress ||
3620         Callee.getOpcode() == ISD::TargetGlobalTLSAddress)
3621       return false;
3622
3623     return G->getGlobal()->getType()->getElementType()->isFunctionTy();
3624   }
3625
3626   return false;
3627 }
3628
3629 static
3630 unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag,
3631                      SDValue &Chain, SDValue CallSeqStart, SDLoc dl, int SPDiff,
3632                      bool isTailCall, bool IsPatchPoint,
3633                      SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass,
3634                      SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys,
3635                      ImmutableCallSite *CS, const PPCSubtarget &Subtarget) {
3636
3637   bool isPPC64 = Subtarget.isPPC64();
3638   bool isSVR4ABI = Subtarget.isSVR4ABI();
3639   bool isELFv2ABI = Subtarget.isELFv2ABI();
3640
3641   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3642   NodeTys.push_back(MVT::Other);   // Returns a chain
3643   NodeTys.push_back(MVT::Glue);    // Returns a flag for retval copy to use.
3644
3645   unsigned CallOpc = PPCISD::CALL;
3646
3647   bool needIndirectCall = true;
3648   if (!isSVR4ABI || !isPPC64)
3649     if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) {
3650       // If this is an absolute destination address, use the munged value.
3651       Callee = SDValue(Dest, 0);
3652       needIndirectCall = false;
3653     }
3654
3655   if (isFunctionGlobalAddress(Callee)) {
3656     GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee);
3657     // A call to a TLS address is actually an indirect call to a
3658     // thread-specific pointer.
3659     unsigned OpFlags = 0;
3660     if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
3661          (Subtarget.getTargetTriple().isMacOSX() &&
3662           Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) &&
3663          (G->getGlobal()->isDeclaration() ||
3664           G->getGlobal()->isWeakForLinker())) ||
3665         (Subtarget.isTargetELF() && !isPPC64 &&
3666          !G->getGlobal()->hasLocalLinkage() &&
3667          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3668       // PC-relative references to external symbols should go through $stub,
3669       // unless we're building with the leopard linker or later, which
3670       // automatically synthesizes these stubs.
3671       OpFlags = PPCII::MO_PLT_OR_STUB;
3672     }
3673
3674     // If the callee is a GlobalAddress/ExternalSymbol node (quite common,
3675     // every direct call is) turn it into a TargetGlobalAddress /
3676     // TargetExternalSymbol node so that legalize doesn't hack it.
3677     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl,
3678                                         Callee.getValueType(), 0, OpFlags);
3679     needIndirectCall = false;
3680   }
3681
3682   if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3683     unsigned char OpFlags = 0;
3684
3685     if ((DAG.getTarget().getRelocationModel() != Reloc::Static &&
3686          (Subtarget.getTargetTriple().isMacOSX() &&
3687           Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) ||
3688         (Subtarget.isTargetELF() && !isPPC64 &&
3689          DAG.getTarget().getRelocationModel() == Reloc::PIC_)) {
3690       // PC-relative references to external symbols should go through $stub,
3691       // unless we're building with the leopard linker or later, which
3692       // automatically synthesizes these stubs.
3693       OpFlags = PPCII::MO_PLT_OR_STUB;
3694     }
3695
3696     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(),
3697                                          OpFlags);
3698     needIndirectCall = false;
3699   }
3700
3701   if (IsPatchPoint) {
3702     // We'll form an invalid direct call when lowering a patchpoint; the full
3703     // sequence for an indirect call is complicated, and many of the
3704     // instructions introduced might have side effects (and, thus, can't be
3705     // removed later). The call itself will be removed as soon as the
3706     // argument/return lowering is complete, so the fact that it has the wrong
3707     // kind of operands should not really matter.
3708     needIndirectCall = false;
3709   }
3710
3711   if (needIndirectCall) {
3712     // Otherwise, this is an indirect call.  We have to use a MTCTR/BCTRL pair
3713     // to do the call, we can't use PPCISD::CALL.
3714     SDValue MTCTROps[] = {Chain, Callee, InFlag};
3715
3716     if (isSVR4ABI && isPPC64 && !isELFv2ABI) {
3717       // Function pointers in the 64-bit SVR4 ABI do not point to the function
3718       // entry point, but to the function descriptor (the function entry point
3719       // address is part of the function descriptor though).
3720       // The function descriptor is a three doubleword structure with the
3721       // following fields: function entry point, TOC base address and
3722       // environment pointer.
3723       // Thus for a call through a function pointer, the following actions need
3724       // to be performed:
3725       //   1. Save the TOC of the caller in the TOC save area of its stack
3726       //      frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()).
3727       //   2. Load the address of the function entry point from the function
3728       //      descriptor.
3729       //   3. Load the TOC of the callee from the function descriptor into r2.
3730       //   4. Load the environment pointer from the function descriptor into
3731       //      r11.
3732       //   5. Branch to the function entry point address.
3733       //   6. On return of the callee, the TOC of the caller needs to be
3734       //      restored (this is done in FinishCall()).
3735       //
3736       // The loads are scheduled at the beginning of the call sequence, and the
3737       // register copies are flagged together to ensure that no other
3738       // operations can be scheduled in between. E.g. without flagging the
3739       // copies together, a TOC access in the caller could be scheduled between
3740       // the assignment of the callee TOC and the branch to the callee, which
3741       // results in the TOC access going through the TOC of the callee instead
3742       // of going through the TOC of the caller, which leads to incorrect code.
3743
3744       // Load the address of the function entry point from the function
3745       // descriptor.
3746       SDValue LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-1);
3747       if (LDChain.getValueType() == MVT::Glue)
3748         LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-2);
3749
3750       bool LoadsInv = Subtarget.hasInvariantFunctionDescriptors();
3751
3752       MachinePointerInfo MPI(CS ? CS->getCalledValue() : nullptr);
3753       SDValue LoadFuncPtr = DAG.getLoad(MVT::i64, dl, LDChain, Callee, MPI,
3754                                         false, false, LoadsInv, 8);
3755
3756       // Load environment pointer into r11.
3757       SDValue PtrOff = DAG.getIntPtrConstant(16);
3758       SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff);
3759       SDValue LoadEnvPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddPtr,
3760                                        MPI.getWithOffset(16), false, false,
3761                                        LoadsInv, 8);
3762
3763       SDValue TOCOff = DAG.getIntPtrConstant(8);
3764       SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff);
3765       SDValue TOCPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddTOC,
3766                                    MPI.getWithOffset(8), false, false,
3767                                    LoadsInv, 8);
3768
3769       setUsesTOCBasePtr(DAG);
3770       SDValue TOCVal = DAG.getCopyToReg(Chain, dl, PPC::X2, TOCPtr,
3771                                         InFlag);
3772       Chain = TOCVal.getValue(0);
3773       InFlag = TOCVal.getValue(1);
3774
3775       SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr,
3776                                         InFlag);
3777
3778       Chain = EnvVal.getValue(0);
3779       InFlag = EnvVal.getValue(1);
3780
3781       MTCTROps[0] = Chain;
3782       MTCTROps[1] = LoadFuncPtr;
3783       MTCTROps[2] = InFlag;
3784     }
3785
3786     Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys,
3787                         makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2));
3788     InFlag = Chain.getValue(1);
3789
3790     NodeTys.clear();
3791     NodeTys.push_back(MVT::Other);
3792     NodeTys.push_back(MVT::Glue);
3793     Ops.push_back(Chain);
3794     CallOpc = PPCISD::BCTRL;
3795     Callee.setNode(nullptr);
3796     // Add use of X11 (holding environment pointer)
3797     if (isSVR4ABI && isPPC64 && !isELFv2ABI)
3798       Ops.push_back(DAG.getRegister(PPC::X11, PtrVT));
3799     // Add CTR register as callee so a bctr can be emitted later.
3800     if (isTailCall)
3801       Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT));
3802   }
3803
3804   // If this is a direct call, pass the chain and the callee.
3805   if (Callee.getNode()) {
3806     Ops.push_back(Chain);
3807     Ops.push_back(Callee);
3808   }
3809   // If this is a tail call add stack pointer delta.
3810   if (isTailCall)
3811     Ops.push_back(DAG.getConstant(SPDiff, MVT::i32));
3812
3813   // Add argument registers to the end of the list so that they are known live
3814   // into the call.
3815   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
3816     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
3817                                   RegsToPass[i].second.getValueType()));
3818
3819   // All calls, in both the ELF V1 and V2 ABIs, need the TOC register live
3820   // into the call.
3821   if (isSVR4ABI && isPPC64 && !IsPatchPoint) {
3822     setUsesTOCBasePtr(DAG);
3823     Ops.push_back(DAG.getRegister(PPC::X2, PtrVT));
3824   }
3825
3826   return CallOpc;
3827 }
3828
3829 static
3830 bool isLocalCall(const SDValue &Callee)
3831 {
3832   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
3833     return !G->getGlobal()->isDeclaration() &&
3834            !G->getGlobal()->isWeakForLinker();
3835   return false;
3836 }
3837
3838 SDValue
3839 PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
3840                                    CallingConv::ID CallConv, bool isVarArg,
3841                                    const SmallVectorImpl<ISD::InputArg> &Ins,
3842                                    SDLoc dl, SelectionDAG &DAG,
3843                                    SmallVectorImpl<SDValue> &InVals) const {
3844
3845   SmallVector<CCValAssign, 16> RVLocs;
3846   CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
3847                     *DAG.getContext());
3848   CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC);
3849
3850   // Copy all of the result registers out of their specified physreg.
3851   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3852     CCValAssign &VA = RVLocs[i];
3853     assert(VA.isRegLoc() && "Can only return in registers!");
3854
3855     SDValue Val = DAG.getCopyFromReg(Chain, dl,
3856                                      VA.getLocReg(), VA.getLocVT(), InFlag);
3857     Chain = Val.getValue(1);
3858     InFlag = Val.getValue(2);
3859
3860     switch (VA.getLocInfo()) {
3861     default: llvm_unreachable("Unknown loc info!");
3862     case CCValAssign::Full: break;
3863     case CCValAssign::AExt:
3864       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3865       break;
3866     case CCValAssign::ZExt:
3867       Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val,
3868                         DAG.getValueType(VA.getValVT()));
3869       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3870       break;
3871     case CCValAssign::SExt:
3872       Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val,
3873                         DAG.getValueType(VA.getValVT()));
3874       Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val);
3875       break;
3876     }
3877
3878     InVals.push_back(Val);
3879   }
3880
3881   return Chain;
3882 }
3883
3884 SDValue
3885 PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl,
3886                               bool isTailCall, bool isVarArg, bool IsPatchPoint,
3887                               SelectionDAG &DAG,
3888                               SmallVector<std::pair<unsigned, SDValue>, 8>
3889                                 &RegsToPass,
3890                               SDValue InFlag, SDValue Chain,
3891                               SDValue CallSeqStart, SDValue &Callee,
3892                               int SPDiff, unsigned NumBytes,
3893                               const SmallVectorImpl<ISD::InputArg> &Ins,
3894                               SmallVectorImpl<SDValue> &InVals,
3895                               ImmutableCallSite *CS) const {
3896
3897   std::vector<EVT> NodeTys;
3898   SmallVector<SDValue, 8> Ops;
3899   unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, CallSeqStart, dl,
3900                                  SPDiff, isTailCall, IsPatchPoint, RegsToPass,
3901                                  Ops, NodeTys, CS, Subtarget);
3902
3903   // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls
3904   if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64())
3905     Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32));
3906
3907   // When performing tail call optimization the callee pops its arguments off
3908   // the stack. Account for this here so these bytes can be pushed back on in
3909   // PPCFrameLowering::eliminateCallFramePseudoInstr.
3910   int BytesCalleePops =
3911     (CallConv == CallingConv::Fast &&
3912      getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0;
3913
3914   // Add a register mask operand representing the call-preserved registers.
3915   const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
3916   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
3917   assert(Mask && "Missing call preserved mask for calling convention");
3918   Ops.push_back(DAG.getRegisterMask(Mask));
3919
3920   if (InFlag.getNode())
3921     Ops.push_back(InFlag);
3922
3923   // Emit tail call.
3924   if (isTailCall) {
3925     assert(((Callee.getOpcode() == ISD::Register &&
3926              cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) ||
3927             Callee.getOpcode() == ISD::TargetExternalSymbol ||
3928             Callee.getOpcode() == ISD::TargetGlobalAddress ||
3929             isa<ConstantSDNode>(Callee)) &&
3930     "Expecting an global address, external symbol, absolute value or register");
3931
3932     return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops);
3933   }
3934
3935   // Add a NOP immediately after the branch instruction when using the 64-bit
3936   // SVR4 ABI. At link time, if caller and callee are in a different module and
3937   // thus have a different TOC, the call will be replaced with a call to a stub
3938   // function which saves the current TOC, loads the TOC of the callee and
3939   // branches to the callee. The NOP will be replaced with a load instruction
3940   // which restores the TOC of the caller from the TOC save slot of the current
3941   // stack frame. If caller and callee belong to the same module (and have the
3942   // same TOC), the NOP will remain unchanged.
3943
3944   if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64() &&
3945       !IsPatchPoint) {
3946     if (CallOpc == PPCISD::BCTRL) {
3947       // This is a call through a function pointer.
3948       // Restore the caller TOC from the save area into R2.
3949       // See PrepareCall() for more information about calls through function
3950       // pointers in the 64-bit SVR4 ABI.
3951       // We are using a target-specific load with r2 hard coded, because the
3952       // result of a target-independent load would never go directly into r2,
3953       // since r2 is a reserved register (which prevents the register allocator
3954       // from allocating it), resulting in an additional register being
3955       // allocated and an unnecessary move instruction being generated.
3956       CallOpc = PPCISD::BCTRL_LOAD_TOC;
3957
3958       EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
3959       SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT);
3960       unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
3961       SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset);
3962       SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff);
3963
3964       // The address needs to go after the chain input but before the flag (or
3965       // any other variadic arguments).
3966       Ops.insert(std::next(Ops.begin()), AddTOC);
3967     } else if ((CallOpc == PPCISD::CALL) &&
3968                (!isLocalCall(Callee) ||
3969                 DAG.getTarget().getRelocationModel() == Reloc::PIC_))
3970       // Otherwise insert NOP for non-local calls.
3971       CallOpc = PPCISD::CALL_NOP;
3972   }
3973
3974   Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
3975   InFlag = Chain.getValue(1);
3976
3977   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
3978                              DAG.getIntPtrConstant(BytesCalleePops, true),
3979                              InFlag, dl);
3980   if (!Ins.empty())
3981     InFlag = Chain.getValue(1);
3982
3983   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
3984                          Ins, dl, DAG, InVals);
3985 }
3986
3987 SDValue
3988 PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
3989                              SmallVectorImpl<SDValue> &InVals) const {
3990   SelectionDAG &DAG                     = CLI.DAG;
3991   SDLoc &dl                             = CLI.DL;
3992   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
3993   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
3994   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
3995   SDValue Chain                         = CLI.Chain;
3996   SDValue Callee                        = CLI.Callee;
3997   bool &isTailCall                      = CLI.IsTailCall;
3998   CallingConv::ID CallConv              = CLI.CallConv;
3999   bool isVarArg                         = CLI.IsVarArg;
4000   bool IsPatchPoint                     = CLI.IsPatchPoint;
4001   ImmutableCallSite *CS                 = CLI.CS;
4002
4003   if (isTailCall)
4004     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
4005                                                    Ins, DAG);
4006
4007   if (!isTailCall && CS && CS->isMustTailCall())
4008     report_fatal_error("failed to perform tail call elimination on a call "
4009                        "site marked musttail");
4010
4011   if (Subtarget.isSVR4ABI()) {
4012     if (Subtarget.isPPC64())
4013       return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg,
4014                               isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4015                               dl, DAG, InVals, CS);
4016     else
4017       return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg,
4018                               isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4019                               dl, DAG, InVals, CS);
4020   }
4021
4022   return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg,
4023                           isTailCall, IsPatchPoint, Outs, OutVals, Ins,
4024                           dl, DAG, InVals, CS);
4025 }
4026
4027 SDValue
4028 PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee,
4029                                     CallingConv::ID CallConv, bool isVarArg,
4030                                     bool isTailCall, bool IsPatchPoint,
4031                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
4032                                     const SmallVectorImpl<SDValue> &OutVals,
4033                                     const SmallVectorImpl<ISD::InputArg> &Ins,
4034                                     SDLoc dl, SelectionDAG &DAG,
4035                                     SmallVectorImpl<SDValue> &InVals,
4036                                     ImmutableCallSite *CS) const {
4037   // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description
4038   // of the 32-bit SVR4 ABI stack frame layout.
4039
4040   assert((CallConv == CallingConv::C ||
4041           CallConv == CallingConv::Fast) && "Unknown calling convention!");
4042
4043   unsigned PtrByteSize = 4;
4044
4045   MachineFunction &MF = DAG.getMachineFunction();
4046
4047   // Mark this function as potentially containing a function that contains a
4048   // tail call. As a consequence the frame pointer will be used for dynamicalloc
4049   // and restoring the callers stack pointer in this functions epilog. This is
4050   // done because by tail calling the called function might overwrite the value
4051   // in this function's (MF) stack pointer stack slot 0(SP).
4052   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4053       CallConv == CallingConv::Fast)
4054     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4055
4056   // Count how many bytes are to be pushed on the stack, including the linkage
4057   // area, parameter list area and the part of the local variable space which
4058   // contains copies of aggregates which are passed by value.
4059
4060   // Assign locations to all of the outgoing arguments.
4061   SmallVector<CCValAssign, 16> ArgLocs;
4062   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
4063                  *DAG.getContext());
4064
4065   // Reserve space for the linkage area on the stack.
4066   CCInfo.AllocateStack(Subtarget.getFrameLowering()->getLinkageSize(),
4067                        PtrByteSize);
4068
4069   if (isVarArg) {
4070     // Handle fixed and variable vector arguments differently.
4071     // Fixed vector arguments go into registers as long as registers are
4072     // available. Variable vector arguments always go into memory.
4073     unsigned NumArgs = Outs.size();
4074
4075     for (unsigned i = 0; i != NumArgs; ++i) {
4076       MVT ArgVT = Outs[i].VT;
4077       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
4078       bool Result;
4079
4080       if (Outs[i].IsFixed) {
4081         Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags,
4082                                CCInfo);
4083       } else {
4084         Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full,
4085                                       ArgFlags, CCInfo);
4086       }
4087
4088       if (Result) {
4089 #ifndef NDEBUG
4090         errs() << "Call operand #" << i << " has unhandled type "
4091              << EVT(ArgVT).getEVTString() << "\n";
4092 #endif
4093         llvm_unreachable(nullptr);
4094       }
4095     }
4096   } else {
4097     // All arguments are treated the same.
4098     CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4);
4099   }
4100
4101   // Assign locations to all of the outgoing aggregate by value arguments.
4102   SmallVector<CCValAssign, 16> ByValArgLocs;
4103   CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(),
4104                       ByValArgLocs, *DAG.getContext());
4105
4106   // Reserve stack space for the allocations in CCInfo.
4107   CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize);
4108
4109   CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal);
4110
4111   // Size of the linkage area, parameter list area and the part of the local
4112   // space variable where copies of aggregates which are passed by value are
4113   // stored.
4114   unsigned NumBytes = CCByValInfo.getNextStackOffset();
4115
4116   // Calculate by how many bytes the stack has to be adjusted in case of tail
4117   // call optimization.
4118   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4119
4120   // Adjust the stack pointer for the new arguments...
4121   // These operations are automatically eliminated by the prolog/epilog pass
4122   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4123                                dl);
4124   SDValue CallSeqStart = Chain;
4125
4126   // Load the return address and frame pointer so it can be moved somewhere else
4127   // later.
4128   SDValue LROp, FPOp;
4129   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false,
4130                                        dl);
4131
4132   // Set up a copy of the stack pointer for use loading and storing any
4133   // arguments that may not fit in the registers available for argument
4134   // passing.
4135   SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
4136
4137   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4138   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4139   SmallVector<SDValue, 8> MemOpChains;
4140
4141   bool seenFloatArg = false;
4142   // Walk the register/memloc assignments, inserting copies/loads.
4143   for (unsigned i = 0, j = 0, e = ArgLocs.size();
4144        i != e;
4145        ++i) {
4146     CCValAssign &VA = ArgLocs[i];
4147     SDValue Arg = OutVals[i];
4148     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4149
4150     if (Flags.isByVal()) {
4151       // Argument is an aggregate which is passed by value, thus we need to
4152       // create a copy of it in the local variable space of the current stack
4153       // frame (which is the stack frame of the caller) and pass the address of
4154       // this copy to the callee.
4155       assert((j < ByValArgLocs.size()) && "Index out of bounds!");
4156       CCValAssign &ByValVA = ByValArgLocs[j++];
4157       assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!");
4158
4159       // Memory reserved in the local variable space of the callers stack frame.
4160       unsigned LocMemOffset = ByValVA.getLocMemOffset();
4161
4162       SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4163       PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
4164
4165       // Create a copy of the argument in the local area of the current
4166       // stack frame.
4167       SDValue MemcpyCall =
4168         CreateCopyOfByValArgument(Arg, PtrOff,
4169                                   CallSeqStart.getNode()->getOperand(0),
4170                                   Flags, DAG, dl);
4171
4172       // This must go outside the CALLSEQ_START..END.
4173       SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
4174                            CallSeqStart.getNode()->getOperand(1),
4175                            SDLoc(MemcpyCall));
4176       DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4177                              NewCallSeqStart.getNode());
4178       Chain = CallSeqStart = NewCallSeqStart;
4179
4180       // Pass the address of the aggregate copy on the stack either in a
4181       // physical register or in the parameter list area of the current stack
4182       // frame to the callee.
4183       Arg = PtrOff;
4184     }
4185
4186     if (VA.isRegLoc()) {
4187       if (Arg.getValueType() == MVT::i1)
4188         Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg);
4189
4190       seenFloatArg |= VA.getLocVT().isFloatingPoint();
4191       // Put argument in a physical register.
4192       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
4193     } else {
4194       // Put argument in the parameter list area of the current stack frame.
4195       assert(VA.isMemLoc());
4196       unsigned LocMemOffset = VA.getLocMemOffset();
4197
4198       if (!isTailCall) {
4199         SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
4200         PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
4201
4202         MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
4203                                            MachinePointerInfo(),
4204                                            false, false, 0));
4205       } else {
4206         // Calculate and remember argument location.
4207         CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset,
4208                                  TailCallArguments);
4209       }
4210     }
4211   }
4212
4213   if (!MemOpChains.empty())
4214     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
4215
4216   // Build a sequence of copy-to-reg nodes chained together with token chain
4217   // and flag operands which copy the outgoing args into the appropriate regs.
4218   SDValue InFlag;
4219   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4220     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4221                              RegsToPass[i].second, InFlag);
4222     InFlag = Chain.getValue(1);
4223   }
4224
4225   // Set CR bit 6 to true if this is a vararg call with floating args passed in
4226   // registers.
4227   if (isVarArg) {
4228     SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
4229     SDValue Ops[] = { Chain, InFlag };
4230
4231     Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET,
4232                         dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1));
4233
4234     InFlag = Chain.getValue(1);
4235   }
4236
4237   if (isTailCall)
4238     PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp,
4239                     false, TailCallArguments);
4240
4241   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
4242                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4243                     NumBytes, Ins, InVals, CS);
4244 }
4245
4246 // Copy an argument into memory, being careful to do this outside the
4247 // call sequence for the call to which the argument belongs.
4248 SDValue
4249 PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff,
4250                                               SDValue CallSeqStart,
4251                                               ISD::ArgFlagsTy Flags,
4252                                               SelectionDAG &DAG,
4253                                               SDLoc dl) const {
4254   SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff,
4255                         CallSeqStart.getNode()->getOperand(0),
4256                         Flags, DAG, dl);
4257   // The MEMCPY must go outside the CALLSEQ_START..END.
4258   SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall,
4259                              CallSeqStart.getNode()->getOperand(1),
4260                              SDLoc(MemcpyCall));
4261   DAG.ReplaceAllUsesWith(CallSeqStart.getNode(),
4262                          NewCallSeqStart.getNode());
4263   return NewCallSeqStart;
4264 }
4265
4266 SDValue
4267 PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee,
4268                                     CallingConv::ID CallConv, bool isVarArg,
4269                                     bool isTailCall, bool IsPatchPoint,
4270                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
4271                                     const SmallVectorImpl<SDValue> &OutVals,
4272                                     const SmallVectorImpl<ISD::InputArg> &Ins,
4273                                     SDLoc dl, SelectionDAG &DAG,
4274                                     SmallVectorImpl<SDValue> &InVals,
4275                                     ImmutableCallSite *CS) const {
4276
4277   bool isELFv2ABI = Subtarget.isELFv2ABI();
4278   bool isLittleEndian = Subtarget.isLittleEndian();
4279   unsigned NumOps = Outs.size();
4280
4281   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
4282   unsigned PtrByteSize = 8;
4283
4284   MachineFunction &MF = DAG.getMachineFunction();
4285
4286   // Mark this function as potentially containing a function that contains a
4287   // tail call. As a consequence the frame pointer will be used for dynamicalloc
4288   // and restoring the callers stack pointer in this functions epilog. This is
4289   // done because by tail calling the called function might overwrite the value
4290   // in this function's (MF) stack pointer stack slot 0(SP).
4291   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4292       CallConv == CallingConv::Fast)
4293     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4294
4295   assert(!(CallConv == CallingConv::Fast && isVarArg) &&
4296          "fastcc not supported on varargs functions");
4297
4298   // Count how many bytes are to be pushed on the stack, including the linkage
4299   // area, and parameter passing area.  On ELFv1, the linkage area is 48 bytes
4300   // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage
4301   // area is 32 bytes reserved space for [SP][CR][LR][TOC].
4302   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
4303   unsigned NumBytes = LinkageSize;
4304   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
4305
4306   static const MCPhysReg GPR[] = {
4307     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4308     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4309   };
4310   static const MCPhysReg *FPR = GetFPR();
4311
4312   static const MCPhysReg VR[] = {
4313     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4314     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4315   };
4316   static const MCPhysReg VSRH[] = {
4317     PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8,
4318     PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13
4319   };
4320
4321   const unsigned NumGPRs = array_lengthof(GPR);
4322   const unsigned NumFPRs = 13;
4323   const unsigned NumVRs  = array_lengthof(VR);
4324
4325   // When using the fast calling convention, we don't provide backing for
4326   // arguments that will be in registers.
4327   unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0;
4328
4329   // Add up all the space actually used.
4330   for (unsigned i = 0; i != NumOps; ++i) {
4331     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4332     EVT ArgVT = Outs[i].VT;
4333     EVT OrigVT = Outs[i].ArgVT;
4334
4335     if (CallConv == CallingConv::Fast) {
4336       if (Flags.isByVal())
4337         NumGPRsUsed += (Flags.getByValSize()+7)/8;
4338       else
4339         switch (ArgVT.getSimpleVT().SimpleTy) {
4340         default: llvm_unreachable("Unexpected ValueType for argument!");
4341         case MVT::i1:
4342         case MVT::i32:
4343         case MVT::i64:
4344           if (++NumGPRsUsed <= NumGPRs)
4345             continue;
4346           break;
4347         case MVT::f32:
4348         case MVT::f64:
4349           if (++NumFPRsUsed <= NumFPRs)
4350             continue;
4351           break;
4352         case MVT::v4f32:
4353         case MVT::v4i32:
4354         case MVT::v8i16:
4355         case MVT::v16i8:
4356         case MVT::v2f64:
4357         case MVT::v2i64:
4358           if (++NumVRsUsed <= NumVRs)
4359             continue;
4360           break;
4361         }
4362     }
4363
4364     /* Respect alignment of argument on the stack.  */
4365     unsigned Align =
4366       CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4367     NumBytes = ((NumBytes + Align - 1) / Align) * Align;
4368
4369     NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
4370     if (Flags.isInConsecutiveRegsLast())
4371       NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
4372   }
4373
4374   unsigned NumBytesActuallyUsed = NumBytes;
4375
4376   // The prolog code of the callee may store up to 8 GPR argument registers to
4377   // the stack, allowing va_start to index over them in memory if its varargs.
4378   // Because we cannot tell if this is needed on the caller side, we have to
4379   // conservatively assume that it is needed.  As such, make sure we have at
4380   // least enough stack space for the caller to store the 8 GPRs.
4381   // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area.
4382   NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
4383
4384   // Tail call needs the stack to be aligned.
4385   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4386       CallConv == CallingConv::Fast)
4387     NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
4388
4389   // Calculate by how many bytes the stack has to be adjusted in case of tail
4390   // call optimization.
4391   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4392
4393   // To protect arguments on the stack from being clobbered in a tail call,
4394   // force all the loads to happen before doing any other lowering.
4395   if (isTailCall)
4396     Chain = DAG.getStackArgumentTokenFactor(Chain);
4397
4398   // Adjust the stack pointer for the new arguments...
4399   // These operations are automatically eliminated by the prolog/epilog pass
4400   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4401                                dl);
4402   SDValue CallSeqStart = Chain;
4403
4404   // Load the return address and frame pointer so it can be move somewhere else
4405   // later.
4406   SDValue LROp, FPOp;
4407   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4408                                        dl);
4409
4410   // Set up a copy of the stack pointer for use loading and storing any
4411   // arguments that may not fit in the registers available for argument
4412   // passing.
4413   SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4414
4415   // Figure out which arguments are going to go in registers, and which in
4416   // memory.  Also, if this is a vararg function, floating point operations
4417   // must be stored to our stack, and loaded into integer regs as well, if
4418   // any integer regs are available for argument passing.
4419   unsigned ArgOffset = LinkageSize;
4420
4421   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4422   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4423
4424   SmallVector<SDValue, 8> MemOpChains;
4425   for (unsigned i = 0; i != NumOps; ++i) {
4426     SDValue Arg = OutVals[i];
4427     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4428     EVT ArgVT = Outs[i].VT;
4429     EVT OrigVT = Outs[i].ArgVT;
4430
4431     // PtrOff will be used to store the current argument to the stack if a
4432     // register cannot be found for it.
4433     SDValue PtrOff;
4434
4435     // We re-align the argument offset for each argument, except when using the
4436     // fast calling convention, when we need to make sure we do that only when
4437     // we'll actually use a stack slot.
4438     auto ComputePtrOff = [&]() {
4439       /* Respect alignment of argument on the stack.  */
4440       unsigned Align =
4441         CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize);
4442       ArgOffset = ((ArgOffset + Align - 1) / Align) * Align;
4443
4444       PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
4445
4446       PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4447     };
4448
4449     if (CallConv != CallingConv::Fast) {
4450       ComputePtrOff();
4451
4452       /* Compute GPR index associated with argument offset.  */
4453       GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize;
4454       GPR_idx = std::min(GPR_idx, NumGPRs);
4455     }
4456
4457     // Promote integers to 64-bit values.
4458     if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) {
4459       // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4460       unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4461       Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
4462     }
4463
4464     // FIXME memcpy is used way more than necessary.  Correctness first.
4465     // Note: "by value" is code for passing a structure by value, not
4466     // basic types.
4467     if (Flags.isByVal()) {
4468       // Note: Size includes alignment padding, so
4469       //   struct x { short a; char b; }
4470       // will have Size = 4.  With #pragma pack(1), it will have Size = 3.
4471       // These are the proper values we need for right-justifying the
4472       // aggregate in a parameter register.
4473       unsigned Size = Flags.getByValSize();
4474
4475       // An empty aggregate parameter takes up no storage and no
4476       // registers.
4477       if (Size == 0)
4478         continue;
4479
4480       if (CallConv == CallingConv::Fast)
4481         ComputePtrOff();
4482
4483       // All aggregates smaller than 8 bytes must be passed right-justified.
4484       if (Size==1 || Size==2 || Size==4) {
4485         EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32);
4486         if (GPR_idx != NumGPRs) {
4487           SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
4488                                         MachinePointerInfo(), VT,
4489                                         false, false, false, 0);
4490           MemOpChains.push_back(Load.getValue(1));
4491           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4492
4493           ArgOffset += PtrByteSize;
4494           continue;
4495         }
4496       }
4497
4498       if (GPR_idx == NumGPRs && Size < 8) {
4499         SDValue AddPtr = PtrOff;
4500         if (!isLittleEndian) {
4501           SDValue Const = DAG.getConstant(PtrByteSize - Size,
4502                                           PtrOff.getValueType());
4503           AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4504         }
4505         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4506                                                           CallSeqStart,
4507                                                           Flags, DAG, dl);
4508         ArgOffset += PtrByteSize;
4509         continue;
4510       }
4511       // Copy entire object into memory.  There are cases where gcc-generated
4512       // code assumes it is there, even if it could be put entirely into
4513       // registers.  (This is not what the doc says.)
4514
4515       // FIXME: The above statement is likely due to a misunderstanding of the
4516       // documents.  All arguments must be copied into the parameter area BY
4517       // THE CALLEE in the event that the callee takes the address of any
4518       // formal argument.  That has not yet been implemented.  However, it is
4519       // reasonable to use the stack area as a staging area for the register
4520       // load.
4521
4522       // Skip this for small aggregates, as we will use the same slot for a
4523       // right-justified copy, below.
4524       if (Size >= 8)
4525         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
4526                                                           CallSeqStart,
4527                                                           Flags, DAG, dl);
4528
4529       // When a register is available, pass a small aggregate right-justified.
4530       if (Size < 8 && GPR_idx != NumGPRs) {
4531         // The easiest way to get this right-justified in a register
4532         // is to copy the structure into the rightmost portion of a
4533         // local variable slot, then load the whole slot into the
4534         // register.
4535         // FIXME: The memcpy seems to produce pretty awful code for
4536         // small aggregates, particularly for packed ones.
4537         // FIXME: It would be preferable to use the slot in the
4538         // parameter save area instead of a new local variable.
4539         SDValue AddPtr = PtrOff;
4540         if (!isLittleEndian) {
4541           SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType());
4542           AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4543         }
4544         Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4545                                                           CallSeqStart,
4546                                                           Flags, DAG, dl);
4547
4548         // Load the slot into the register.
4549         SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff,
4550                                    MachinePointerInfo(),
4551                                    false, false, false, 0);
4552         MemOpChains.push_back(Load.getValue(1));
4553         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4554
4555         // Done with this argument.
4556         ArgOffset += PtrByteSize;
4557         continue;
4558       }
4559
4560       // For aggregates larger than PtrByteSize, copy the pieces of the
4561       // object that fit into registers from the parameter save area.
4562       for (unsigned j=0; j<Size; j+=PtrByteSize) {
4563         SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
4564         SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
4565         if (GPR_idx != NumGPRs) {
4566           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
4567                                      MachinePointerInfo(),
4568                                      false, false, false, 0);
4569           MemOpChains.push_back(Load.getValue(1));
4570           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4571           ArgOffset += PtrByteSize;
4572         } else {
4573           ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
4574           break;
4575         }
4576       }
4577       continue;
4578     }
4579
4580     switch (Arg.getSimpleValueType().SimpleTy) {
4581     default: llvm_unreachable("Unexpected ValueType for argument!");
4582     case MVT::i1:
4583     case MVT::i32:
4584     case MVT::i64:
4585       // These can be scalar arguments or elements of an integer array type
4586       // passed directly.  Clang may use those instead of "byval" aggregate
4587       // types to avoid forcing arguments to memory unnecessarily.
4588       if (GPR_idx != NumGPRs) {
4589         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
4590       } else {
4591         if (CallConv == CallingConv::Fast)
4592           ComputePtrOff();
4593
4594         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4595                          true, isTailCall, false, MemOpChains,
4596                          TailCallArguments, dl);
4597         if (CallConv == CallingConv::Fast)
4598           ArgOffset += PtrByteSize;
4599       }
4600       if (CallConv != CallingConv::Fast)
4601         ArgOffset += PtrByteSize;
4602       break;
4603     case MVT::f32:
4604     case MVT::f64: {
4605       // These can be scalar arguments or elements of a float array type
4606       // passed directly.  The latter are used to implement ELFv2 homogenous
4607       // float aggregates.
4608
4609       // Named arguments go into FPRs first, and once they overflow, the
4610       // remaining arguments go into GPRs and then the parameter save area.
4611       // Unnamed arguments for vararg functions always go to GPRs and
4612       // then the parameter save area.  For now, put all arguments to vararg
4613       // routines always in both locations (FPR *and* GPR or stack slot).
4614       bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs;
4615       bool NeededLoad = false;
4616
4617       // First load the argument into the next available FPR.
4618       if (FPR_idx != NumFPRs)
4619         RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
4620
4621       // Next, load the argument into GPR or stack slot if needed.
4622       if (!NeedGPROrStack)
4623         ;
4624       else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) {
4625         // FIXME: We may want to re-enable this for CallingConv::Fast on the P8
4626         // once we support fp <-> gpr moves.
4627
4628         // In the non-vararg case, this can only ever happen in the
4629         // presence of f32 array types, since otherwise we never run
4630         // out of FPRs before running out of GPRs.
4631         SDValue ArgVal;
4632
4633         // Double values are always passed in a single GPR.
4634         if (Arg.getValueType() != MVT::f32) {
4635           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
4636
4637         // Non-array float values are extended and passed in a GPR.
4638         } else if (!Flags.isInConsecutiveRegs()) {
4639           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4640           ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4641
4642         // If we have an array of floats, we collect every odd element
4643         // together with its predecessor into one GPR.
4644         } else if (ArgOffset % PtrByteSize != 0) {
4645           SDValue Lo, Hi;
4646           Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]);
4647           Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4648           if (!isLittleEndian)
4649             std::swap(Lo, Hi);
4650           ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4651
4652         // The final element, if even, goes into the first half of a GPR.
4653         } else if (Flags.isInConsecutiveRegsLast()) {
4654           ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
4655           ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal);
4656           if (!isLittleEndian)
4657             ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal,
4658                                  DAG.getConstant(32, MVT::i32));
4659
4660         // Non-final even elements are skipped; they will be handled
4661         // together the with subsequent argument on the next go-around.
4662         } else
4663           ArgVal = SDValue();
4664
4665         if (ArgVal.getNode())
4666           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal));
4667       } else {
4668         if (CallConv == CallingConv::Fast)
4669           ComputePtrOff();
4670
4671         // Single-precision floating-point values are mapped to the
4672         // second (rightmost) word of the stack doubleword.
4673         if (Arg.getValueType() == MVT::f32 &&
4674             !isLittleEndian && !Flags.isInConsecutiveRegs()) {
4675           SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
4676           PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
4677         }
4678
4679         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4680                          true, isTailCall, false, MemOpChains,
4681                          TailCallArguments, dl);
4682
4683         NeededLoad = true;
4684       }
4685       // When passing an array of floats, the array occupies consecutive
4686       // space in the argument area; only round up to the next doubleword
4687       // at the end of the array.  Otherwise, each float takes 8 bytes.
4688       if (CallConv != CallingConv::Fast || NeededLoad) {
4689         ArgOffset += (Arg.getValueType() == MVT::f32 &&
4690                       Flags.isInConsecutiveRegs()) ? 4 : 8;
4691         if (Flags.isInConsecutiveRegsLast())
4692           ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
4693       }
4694       break;
4695     }
4696     case MVT::v4f32:
4697     case MVT::v4i32:
4698     case MVT::v8i16:
4699     case MVT::v16i8:
4700     case MVT::v2f64:
4701     case MVT::v2i64:
4702       // These can be scalar arguments or elements of a vector array type
4703       // passed directly.  The latter are used to implement ELFv2 homogenous
4704       // vector aggregates.
4705
4706       // For a varargs call, named arguments go into VRs or on the stack as
4707       // usual; unnamed arguments always go to the stack or the corresponding
4708       // GPRs when within range.  For now, we always put the value in both
4709       // locations (or even all three).
4710       if (isVarArg) {
4711         // We could elide this store in the case where the object fits
4712         // entirely in R registers.  Maybe later.
4713         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
4714                                      MachinePointerInfo(), false, false, 0);
4715         MemOpChains.push_back(Store);
4716         if (VR_idx != NumVRs) {
4717           SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
4718                                      MachinePointerInfo(),
4719                                      false, false, false, 0);
4720           MemOpChains.push_back(Load.getValue(1));
4721
4722           unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4723                            Arg.getSimpleValueType() == MVT::v2i64) ?
4724                           VSRH[VR_idx] : VR[VR_idx];
4725           ++VR_idx;
4726
4727           RegsToPass.push_back(std::make_pair(VReg, Load));
4728         }
4729         ArgOffset += 16;
4730         for (unsigned i=0; i<16; i+=PtrByteSize) {
4731           if (GPR_idx == NumGPRs)
4732             break;
4733           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
4734                                   DAG.getConstant(i, PtrVT));
4735           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
4736                                      false, false, false, 0);
4737           MemOpChains.push_back(Load.getValue(1));
4738           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4739         }
4740         break;
4741       }
4742
4743       // Non-varargs Altivec params go into VRs or on the stack.
4744       if (VR_idx != NumVRs) {
4745         unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 ||
4746                          Arg.getSimpleValueType() == MVT::v2i64) ?
4747                         VSRH[VR_idx] : VR[VR_idx];
4748         ++VR_idx;
4749
4750         RegsToPass.push_back(std::make_pair(VReg, Arg));
4751       } else {
4752         if (CallConv == CallingConv::Fast)
4753           ComputePtrOff();
4754
4755         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
4756                          true, isTailCall, true, MemOpChains,
4757                          TailCallArguments, dl);
4758         if (CallConv == CallingConv::Fast)
4759           ArgOffset += 16;
4760       }
4761
4762       if (CallConv != CallingConv::Fast)
4763         ArgOffset += 16;
4764       break;
4765     }
4766   }
4767
4768   assert(NumBytesActuallyUsed == ArgOffset);
4769   (void)NumBytesActuallyUsed;
4770
4771   if (!MemOpChains.empty())
4772     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
4773
4774   // Check if this is an indirect call (MTCTR/BCTRL).
4775   // See PrepareCall() for more information about calls through function
4776   // pointers in the 64-bit SVR4 ABI.
4777   if (!isTailCall && !IsPatchPoint &&
4778       !isFunctionGlobalAddress(Callee) &&
4779       !isa<ExternalSymbolSDNode>(Callee)) {
4780     // Load r2 into a virtual register and store it to the TOC save area.
4781     setUsesTOCBasePtr(DAG);
4782     SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64);
4783     // TOC save area offset.
4784     unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset();
4785     SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset);
4786     SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4787     Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr,
4788                          MachinePointerInfo::getStack(TOCSaveOffset),
4789                          false, false, 0);
4790     // In the ELFv2 ABI, R12 must contain the address of an indirect callee.
4791     // This does not mean the MTCTR instruction must use R12; it's easier
4792     // to model this as an extra parameter, so do that.
4793     if (isELFv2ABI && !IsPatchPoint)
4794       RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee));
4795   }
4796
4797   // Build a sequence of copy-to-reg nodes chained together with token chain
4798   // and flag operands which copy the outgoing args into the appropriate regs.
4799   SDValue InFlag;
4800   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
4801     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
4802                              RegsToPass[i].second, InFlag);
4803     InFlag = Chain.getValue(1);
4804   }
4805
4806   if (isTailCall)
4807     PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp,
4808                     FPOp, true, TailCallArguments);
4809
4810   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
4811                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
4812                     NumBytes, Ins, InVals, CS);
4813 }
4814
4815 SDValue
4816 PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
4817                                     CallingConv::ID CallConv, bool isVarArg,
4818                                     bool isTailCall, bool IsPatchPoint,
4819                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
4820                                     const SmallVectorImpl<SDValue> &OutVals,
4821                                     const SmallVectorImpl<ISD::InputArg> &Ins,
4822                                     SDLoc dl, SelectionDAG &DAG,
4823                                     SmallVectorImpl<SDValue> &InVals,
4824                                     ImmutableCallSite *CS) const {
4825
4826   unsigned NumOps = Outs.size();
4827
4828   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
4829   bool isPPC64 = PtrVT == MVT::i64;
4830   unsigned PtrByteSize = isPPC64 ? 8 : 4;
4831
4832   MachineFunction &MF = DAG.getMachineFunction();
4833
4834   // Mark this function as potentially containing a function that contains a
4835   // tail call. As a consequence the frame pointer will be used for dynamicalloc
4836   // and restoring the callers stack pointer in this functions epilog. This is
4837   // done because by tail calling the called function might overwrite the value
4838   // in this function's (MF) stack pointer stack slot 0(SP).
4839   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4840       CallConv == CallingConv::Fast)
4841     MF.getInfo<PPCFunctionInfo>()->setHasFastCall();
4842
4843   // Count how many bytes are to be pushed on the stack, including the linkage
4844   // area, and parameter passing area.  We start with 24/48 bytes, which is
4845   // prereserved space for [SP][CR][LR][3 x unused].
4846   unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize();
4847   unsigned NumBytes = LinkageSize;
4848
4849   // Add up all the space actually used.
4850   // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually
4851   // they all go in registers, but we must reserve stack space for them for
4852   // possible use by the caller.  In varargs or 64-bit calls, parameters are
4853   // assigned stack space in order, with padding so Altivec parameters are
4854   // 16-byte aligned.
4855   unsigned nAltivecParamsAtEnd = 0;
4856   for (unsigned i = 0; i != NumOps; ++i) {
4857     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4858     EVT ArgVT = Outs[i].VT;
4859     // Varargs Altivec parameters are padded to a 16 byte boundary.
4860     if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 ||
4861         ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 ||
4862         ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) {
4863       if (!isVarArg && !isPPC64) {
4864         // Non-varargs Altivec parameters go after all the non-Altivec
4865         // parameters; handle those later so we know how much padding we need.
4866         nAltivecParamsAtEnd++;
4867         continue;
4868       }
4869       // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary.
4870       NumBytes = ((NumBytes+15)/16)*16;
4871     }
4872     NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize);
4873   }
4874
4875   // Allow for Altivec parameters at the end, if needed.
4876   if (nAltivecParamsAtEnd) {
4877     NumBytes = ((NumBytes+15)/16)*16;
4878     NumBytes += 16*nAltivecParamsAtEnd;
4879   }
4880
4881   // The prolog code of the callee may store up to 8 GPR argument registers to
4882   // the stack, allowing va_start to index over them in memory if its varargs.
4883   // Because we cannot tell if this is needed on the caller side, we have to
4884   // conservatively assume that it is needed.  As such, make sure we have at
4885   // least enough stack space for the caller to store the 8 GPRs.
4886   NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize);
4887
4888   // Tail call needs the stack to be aligned.
4889   if (getTargetMachine().Options.GuaranteedTailCallOpt &&
4890       CallConv == CallingConv::Fast)
4891     NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes);
4892
4893   // Calculate by how many bytes the stack has to be adjusted in case of tail
4894   // call optimization.
4895   int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes);
4896
4897   // To protect arguments on the stack from being clobbered in a tail call,
4898   // force all the loads to happen before doing any other lowering.
4899   if (isTailCall)
4900     Chain = DAG.getStackArgumentTokenFactor(Chain);
4901
4902   // Adjust the stack pointer for the new arguments...
4903   // These operations are automatically eliminated by the prolog/epilog pass
4904   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
4905                                dl);
4906   SDValue CallSeqStart = Chain;
4907
4908   // Load the return address and frame pointer so it can be move somewhere else
4909   // later.
4910   SDValue LROp, FPOp;
4911   Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true,
4912                                        dl);
4913
4914   // Set up a copy of the stack pointer for use loading and storing any
4915   // arguments that may not fit in the registers available for argument
4916   // passing.
4917   SDValue StackPtr;
4918   if (isPPC64)
4919     StackPtr = DAG.getRegister(PPC::X1, MVT::i64);
4920   else
4921     StackPtr = DAG.getRegister(PPC::R1, MVT::i32);
4922
4923   // Figure out which arguments are going to go in registers, and which in
4924   // memory.  Also, if this is a vararg function, floating point operations
4925   // must be stored to our stack, and loaded into integer regs as well, if
4926   // any integer regs are available for argument passing.
4927   unsigned ArgOffset = LinkageSize;
4928   unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0;
4929
4930   static const MCPhysReg GPR_32[] = {           // 32-bit registers.
4931     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
4932     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
4933   };
4934   static const MCPhysReg GPR_64[] = {           // 64-bit registers.
4935     PPC::X3, PPC::X4, PPC::X5, PPC::X6,
4936     PPC::X7, PPC::X8, PPC::X9, PPC::X10,
4937   };
4938   static const MCPhysReg *FPR = GetFPR();
4939
4940   static const MCPhysReg VR[] = {
4941     PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8,
4942     PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13
4943   };
4944   const unsigned NumGPRs = array_lengthof(GPR_32);
4945   const unsigned NumFPRs = 13;
4946   const unsigned NumVRs  = array_lengthof(VR);
4947
4948   const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32;
4949
4950   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
4951   SmallVector<TailCallArgumentInfo, 8> TailCallArguments;
4952
4953   SmallVector<SDValue, 8> MemOpChains;
4954   for (unsigned i = 0; i != NumOps; ++i) {
4955     SDValue Arg = OutVals[i];
4956     ISD::ArgFlagsTy Flags = Outs[i].Flags;
4957
4958     // PtrOff will be used to store the current argument to the stack if a
4959     // register cannot be found for it.
4960     SDValue PtrOff;
4961
4962     PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType());
4963
4964     PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
4965
4966     // On PPC64, promote integers to 64-bit values.
4967     if (isPPC64 && Arg.getValueType() == MVT::i32) {
4968       // FIXME: Should this use ANY_EXTEND if neither sext nor zext?
4969       unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4970       Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg);
4971     }
4972
4973     // FIXME memcpy is used way more than necessary.  Correctness first.
4974     // Note: "by value" is code for passing a structure by value, not
4975     // basic types.
4976     if (Flags.isByVal()) {
4977       unsigned Size = Flags.getByValSize();
4978       // Very small objects are passed right-justified.  Everything else is
4979       // passed left-justified.
4980       if (Size==1 || Size==2) {
4981         EVT VT = (Size==1) ? MVT::i8 : MVT::i16;
4982         if (GPR_idx != NumGPRs) {
4983           SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg,
4984                                         MachinePointerInfo(), VT,
4985                                         false, false, false, 0);
4986           MemOpChains.push_back(Load.getValue(1));
4987           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
4988
4989           ArgOffset += PtrByteSize;
4990         } else {
4991           SDValue Const = DAG.getConstant(PtrByteSize - Size,
4992                                           PtrOff.getValueType());
4993           SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const);
4994           Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr,
4995                                                             CallSeqStart,
4996                                                             Flags, DAG, dl);
4997           ArgOffset += PtrByteSize;
4998         }
4999         continue;
5000       }
5001       // Copy entire object into memory.  There are cases where gcc-generated
5002       // code assumes it is there, even if it could be put entirely into
5003       // registers.  (This is not what the doc says.)
5004       Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff,
5005                                                         CallSeqStart,
5006                                                         Flags, DAG, dl);
5007
5008       // For small aggregates (Darwin only) and aggregates >= PtrByteSize,
5009       // copy the pieces of the object that fit into registers from the
5010       // parameter save area.
5011       for (unsigned j=0; j<Size; j+=PtrByteSize) {
5012         SDValue Const = DAG.getConstant(j, PtrOff.getValueType());
5013         SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
5014         if (GPR_idx != NumGPRs) {
5015           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
5016                                      MachinePointerInfo(),
5017                                      false, false, false, 0);
5018           MemOpChains.push_back(Load.getValue(1));
5019           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5020           ArgOffset += PtrByteSize;
5021         } else {
5022           ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize;
5023           break;
5024         }
5025       }
5026       continue;
5027     }
5028
5029     switch (Arg.getSimpleValueType().SimpleTy) {
5030     default: llvm_unreachable("Unexpected ValueType for argument!");
5031     case MVT::i1:
5032     case MVT::i32:
5033     case MVT::i64:
5034       if (GPR_idx != NumGPRs) {
5035         if (Arg.getValueType() == MVT::i1)
5036           Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg);
5037
5038         RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg));
5039       } else {
5040         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5041                          isPPC64, isTailCall, false, MemOpChains,
5042                          TailCallArguments, dl);
5043       }
5044       ArgOffset += PtrByteSize;
5045       break;
5046     case MVT::f32:
5047     case MVT::f64:
5048       if (FPR_idx != NumFPRs) {
5049         RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg));
5050
5051         if (isVarArg) {
5052           SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5053                                        MachinePointerInfo(), false, false, 0);
5054           MemOpChains.push_back(Store);
5055
5056           // Float varargs are always shadowed in available integer registers
5057           if (GPR_idx != NumGPRs) {
5058             SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5059                                        MachinePointerInfo(), false, false,
5060                                        false, 0);
5061             MemOpChains.push_back(Load.getValue(1));
5062             RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5063           }
5064           if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){
5065             SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType());
5066             PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour);
5067             SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff,
5068                                        MachinePointerInfo(),
5069                                        false, false, false, 0);
5070             MemOpChains.push_back(Load.getValue(1));
5071             RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5072           }
5073         } else {
5074           // If we have any FPRs remaining, we may also have GPRs remaining.
5075           // Args passed in FPRs consume either 1 (f32) or 2 (f64) available
5076           // GPRs.
5077           if (GPR_idx != NumGPRs)
5078             ++GPR_idx;
5079           if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 &&
5080               !isPPC64)  // PPC64 has 64-bit GPR's obviously :)
5081             ++GPR_idx;
5082         }
5083       } else
5084         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5085                          isPPC64, isTailCall, false, MemOpChains,
5086                          TailCallArguments, dl);
5087       if (isPPC64)
5088         ArgOffset += 8;
5089       else
5090         ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8;
5091       break;
5092     case MVT::v4f32:
5093     case MVT::v4i32:
5094     case MVT::v8i16:
5095     case MVT::v16i8:
5096       if (isVarArg) {
5097         // These go aligned on the stack, or in the corresponding R registers
5098         // when within range.  The Darwin PPC ABI doc claims they also go in
5099         // V registers; in fact gcc does this only for arguments that are
5100         // prototyped, not for those that match the ...  We do it for all
5101         // arguments, seems to work.
5102         while (ArgOffset % 16 !=0) {
5103           ArgOffset += PtrByteSize;
5104           if (GPR_idx != NumGPRs)
5105             GPR_idx++;
5106         }
5107         // We could elide this store in the case where the object fits
5108         // entirely in R registers.  Maybe later.
5109         PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr,
5110                             DAG.getConstant(ArgOffset, PtrVT));
5111         SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff,
5112                                      MachinePointerInfo(), false, false, 0);
5113         MemOpChains.push_back(Store);
5114         if (VR_idx != NumVRs) {
5115           SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff,
5116                                      MachinePointerInfo(),
5117                                      false, false, false, 0);
5118           MemOpChains.push_back(Load.getValue(1));
5119           RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load));
5120         }
5121         ArgOffset += 16;
5122         for (unsigned i=0; i<16; i+=PtrByteSize) {
5123           if (GPR_idx == NumGPRs)
5124             break;
5125           SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff,
5126                                   DAG.getConstant(i, PtrVT));
5127           SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(),
5128                                      false, false, false, 0);
5129           MemOpChains.push_back(Load.getValue(1));
5130           RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load));
5131         }
5132         break;
5133       }
5134
5135       // Non-varargs Altivec params generally go in registers, but have
5136       // stack space allocated at the end.
5137       if (VR_idx != NumVRs) {
5138         // Doesn't have GPR space allocated.
5139         RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg));
5140       } else if (nAltivecParamsAtEnd==0) {
5141         // We are emitting Altivec params in order.
5142         LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5143                          isPPC64, isTailCall, true, MemOpChains,
5144                          TailCallArguments, dl);
5145         ArgOffset += 16;
5146       }
5147       break;
5148     }
5149   }
5150   // If all Altivec parameters fit in registers, as they usually do,
5151   // they get stack space following the non-Altivec parameters.  We
5152   // don't track this here because nobody below needs it.
5153   // If there are more Altivec parameters than fit in registers emit
5154   // the stores here.
5155   if (!isVarArg && nAltivecParamsAtEnd > NumVRs) {
5156     unsigned j = 0;
5157     // Offset is aligned; skip 1st 12 params which go in V registers.
5158     ArgOffset = ((ArgOffset+15)/16)*16;
5159     ArgOffset += 12*16;
5160     for (unsigned i = 0; i != NumOps; ++i) {
5161       SDValue Arg = OutVals[i];
5162       EVT ArgType = Outs[i].VT;
5163       if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 ||
5164           ArgType==MVT::v8i16 || ArgType==MVT::v16i8) {
5165         if (++j > NumVRs) {
5166           SDValue PtrOff;
5167           // We are emitting Altivec params in order.
5168           LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset,
5169                            isPPC64, isTailCall, true, MemOpChains,
5170                            TailCallArguments, dl);
5171           ArgOffset += 16;
5172         }
5173       }
5174     }
5175   }
5176
5177   if (!MemOpChains.empty())
5178     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
5179
5180   // On Darwin, R12 must contain the address of an indirect callee.  This does
5181   // not mean the MTCTR instruction must use R12; it's easier to model this as
5182   // an extra parameter, so do that.
5183   if (!isTailCall &&
5184       !isFunctionGlobalAddress(Callee) &&
5185       !isa<ExternalSymbolSDNode>(Callee) &&
5186       !isBLACompatibleAddress(Callee, DAG))
5187     RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 :
5188                                                    PPC::R12), Callee));
5189
5190   // Build a sequence of copy-to-reg nodes chained together with token chain
5191   // and flag operands which copy the outgoing args into the appropriate regs.
5192   SDValue InFlag;
5193   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
5194     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
5195                              RegsToPass[i].second, InFlag);
5196     InFlag = Chain.getValue(1);
5197   }
5198
5199   if (isTailCall)
5200     PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp,
5201                     FPOp, true, TailCallArguments);
5202
5203   return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG,
5204                     RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff,
5205                     NumBytes, Ins, InVals, CS);
5206 }
5207
5208 bool
5209 PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
5210                                   MachineFunction &MF, bool isVarArg,
5211                                   const SmallVectorImpl<ISD::OutputArg> &Outs,
5212                                   LLVMContext &Context) const {
5213   SmallVector<CCValAssign, 16> RVLocs;
5214   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
5215   return CCInfo.CheckReturn(Outs, RetCC_PPC);
5216 }
5217
5218 SDValue
5219 PPCTargetLowering::LowerReturn(SDValue Chain,
5220                                CallingConv::ID CallConv, bool isVarArg,
5221                                const SmallVectorImpl<ISD::OutputArg> &Outs,
5222                                const SmallVectorImpl<SDValue> &OutVals,
5223                                SDLoc dl, SelectionDAG &DAG) const {
5224
5225   SmallVector<CCValAssign, 16> RVLocs;
5226   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
5227                  *DAG.getContext());
5228   CCInfo.AnalyzeReturn(Outs, RetCC_PPC);
5229
5230   SDValue Flag;
5231   SmallVector<SDValue, 4> RetOps(1, Chain);
5232
5233   // Copy the result values into the output registers.
5234   for (unsigned i = 0; i != RVLocs.size(); ++i) {
5235     CCValAssign &VA = RVLocs[i];
5236     assert(VA.isRegLoc() && "Can only return in registers!");
5237
5238     SDValue Arg = OutVals[i];
5239
5240     switch (VA.getLocInfo()) {
5241     default: llvm_unreachable("Unknown loc info!");
5242     case CCValAssign::Full: break;
5243     case CCValAssign::AExt:
5244       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
5245       break;
5246     case CCValAssign::ZExt:
5247       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
5248       break;
5249     case CCValAssign::SExt:
5250       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
5251       break;
5252     }
5253
5254     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
5255     Flag = Chain.getValue(1);
5256     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
5257   }
5258
5259   RetOps[0] = Chain;  // Update chain.
5260
5261   // Add the flag if we have it.
5262   if (Flag.getNode())
5263     RetOps.push_back(Flag);
5264
5265   return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps);
5266 }
5267
5268 SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG,
5269                                    const PPCSubtarget &Subtarget) const {
5270   // When we pop the dynamic allocation we need to restore the SP link.
5271   SDLoc dl(Op);
5272
5273   // Get the corect type for pointers.
5274   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5275
5276   // Construct the stack pointer operand.
5277   bool isPPC64 = Subtarget.isPPC64();
5278   unsigned SP = isPPC64 ? PPC::X1 : PPC::R1;
5279   SDValue StackPtr = DAG.getRegister(SP, PtrVT);
5280
5281   // Get the operands for the STACKRESTORE.
5282   SDValue Chain = Op.getOperand(0);
5283   SDValue SaveSP = Op.getOperand(1);
5284
5285   // Load the old link SP.
5286   SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr,
5287                                    MachinePointerInfo(),
5288                                    false, false, false, 0);
5289
5290   // Restore the stack pointer.
5291   Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP);
5292
5293   // Store the old link SP.
5294   return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(),
5295                       false, false, 0);
5296 }
5297
5298
5299
5300 SDValue
5301 PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const {
5302   MachineFunction &MF = DAG.getMachineFunction();
5303   bool isPPC64 = Subtarget.isPPC64();
5304   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5305
5306   // Get current frame pointer save index.  The users of this index will be
5307   // primarily DYNALLOC instructions.
5308   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5309   int RASI = FI->getReturnAddrSaveIndex();
5310
5311   // If the frame pointer save index hasn't been defined yet.
5312   if (!RASI) {
5313     // Find out what the fix offset of the frame pointer save area.
5314     int LROffset = Subtarget.getFrameLowering()->getReturnSaveOffset();
5315     // Allocate the frame index for frame pointer save area.
5316     RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, false);
5317     // Save the result.
5318     FI->setReturnAddrSaveIndex(RASI);
5319   }
5320   return DAG.getFrameIndex(RASI, PtrVT);
5321 }
5322
5323 SDValue
5324 PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const {
5325   MachineFunction &MF = DAG.getMachineFunction();
5326   bool isPPC64 = Subtarget.isPPC64();
5327   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5328
5329   // Get current frame pointer save index.  The users of this index will be
5330   // primarily DYNALLOC instructions.
5331   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
5332   int FPSI = FI->getFramePointerSaveIndex();
5333
5334   // If the frame pointer save index hasn't been defined yet.
5335   if (!FPSI) {
5336     // Find out what the fix offset of the frame pointer save area.
5337     int FPOffset = Subtarget.getFrameLowering()->getFramePointerSaveOffset();
5338     // Allocate the frame index for frame pointer save area.
5339     FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
5340     // Save the result.
5341     FI->setFramePointerSaveIndex(FPSI);
5342   }
5343   return DAG.getFrameIndex(FPSI, PtrVT);
5344 }
5345
5346 SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
5347                                          SelectionDAG &DAG,
5348                                          const PPCSubtarget &Subtarget) const {
5349   // Get the inputs.
5350   SDValue Chain = Op.getOperand(0);
5351   SDValue Size  = Op.getOperand(1);
5352   SDLoc dl(Op);
5353
5354   // Get the corect type for pointers.
5355   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5356   // Negate the size.
5357   SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT,
5358                                   DAG.getConstant(0, PtrVT), Size);
5359   // Construct a node for the frame pointer save index.
5360   SDValue FPSIdx = getFramePointerFrameIndex(DAG);
5361   // Build a DYNALLOC node.
5362   SDValue Ops[3] = { Chain, NegSize, FPSIdx };
5363   SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other);
5364   return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops);
5365 }
5366
5367 SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
5368                                                SelectionDAG &DAG) const {
5369   SDLoc DL(Op);
5370   return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL,
5371                      DAG.getVTList(MVT::i32, MVT::Other),
5372                      Op.getOperand(0), Op.getOperand(1));
5373 }
5374
5375 SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
5376                                                 SelectionDAG &DAG) const {
5377   SDLoc DL(Op);
5378   return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
5379                      Op.getOperand(0), Op.getOperand(1));
5380 }
5381
5382 SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
5383   assert(Op.getValueType() == MVT::i1 &&
5384          "Custom lowering only for i1 loads");
5385
5386   // First, load 8 bits into 32 bits, then truncate to 1 bit.
5387
5388   SDLoc dl(Op);
5389   LoadSDNode *LD = cast<LoadSDNode>(Op);
5390
5391   SDValue Chain = LD->getChain();
5392   SDValue BasePtr = LD->getBasePtr();
5393   MachineMemOperand *MMO = LD->getMemOperand();
5394
5395   SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(), Chain,
5396                                  BasePtr, MVT::i8, MMO);
5397   SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD);
5398
5399   SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) };
5400   return DAG.getMergeValues(Ops, dl);
5401 }
5402
5403 SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
5404   assert(Op.getOperand(1).getValueType() == MVT::i1 &&
5405          "Custom lowering only for i1 stores");
5406
5407   // First, zero extend to 32 bits, then use a truncating store to 8 bits.
5408
5409   SDLoc dl(Op);
5410   StoreSDNode *ST = cast<StoreSDNode>(Op);
5411
5412   SDValue Chain = ST->getChain();
5413   SDValue BasePtr = ST->getBasePtr();
5414   SDValue Value = ST->getValue();
5415   MachineMemOperand *MMO = ST->getMemOperand();
5416
5417   Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(), Value);
5418   return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO);
5419 }
5420
5421 // FIXME: Remove this once the ANDI glue bug is fixed:
5422 SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
5423   assert(Op.getValueType() == MVT::i1 &&
5424          "Custom lowering only for i1 results");
5425
5426   SDLoc DL(Op);
5427   return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1,
5428                      Op.getOperand(0));
5429 }
5430
5431 /// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when
5432 /// possible.
5433 SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
5434   // Not FP? Not a fsel.
5435   if (!Op.getOperand(0).getValueType().isFloatingPoint() ||
5436       !Op.getOperand(2).getValueType().isFloatingPoint())
5437     return Op;
5438
5439   // We might be able to do better than this under some circumstances, but in
5440   // general, fsel-based lowering of select is a finite-math-only optimization.
5441   // For more information, see section F.3 of the 2.06 ISA specification.
5442   if (!DAG.getTarget().Options.NoInfsFPMath ||
5443       !DAG.getTarget().Options.NoNaNsFPMath)
5444     return Op;
5445
5446   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
5447
5448   EVT ResVT = Op.getValueType();
5449   EVT CmpVT = Op.getOperand(0).getValueType();
5450   SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
5451   SDValue TV  = Op.getOperand(2), FV  = Op.getOperand(3);
5452   SDLoc dl(Op);
5453
5454   // If the RHS of the comparison is a 0.0, we don't need to do the
5455   // subtraction at all.
5456   SDValue Sel1;
5457   if (isFloatingPointZero(RHS))
5458     switch (CC) {
5459     default: break;       // SETUO etc aren't handled by fsel.
5460     case ISD::SETNE:
5461       std::swap(TV, FV);
5462     case ISD::SETEQ:
5463       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
5464         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5465       Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
5466       if (Sel1.getValueType() == MVT::f32)   // Comparison is always 64-bits
5467         Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5468       return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5469                          DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV);
5470     case ISD::SETULT:
5471     case ISD::SETLT:
5472       std::swap(TV, FV);  // fsel is natively setge, swap operands for setlt
5473     case ISD::SETOGE:
5474     case ISD::SETGE:
5475       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
5476         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5477       return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV);
5478     case ISD::SETUGT:
5479     case ISD::SETGT:
5480       std::swap(TV, FV);  // fsel is natively setge, swap operands for setlt
5481     case ISD::SETOLE:
5482     case ISD::SETLE:
5483       if (LHS.getValueType() == MVT::f32)   // Comparison is always 64-bits
5484         LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS);
5485       return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5486                          DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV);
5487     }
5488
5489   SDValue Cmp;
5490   switch (CC) {
5491   default: break;       // SETUO etc aren't handled by fsel.
5492   case ISD::SETNE:
5493     std::swap(TV, FV);
5494   case ISD::SETEQ:
5495     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
5496     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
5497       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5498     Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
5499     if (Sel1.getValueType() == MVT::f32)   // Comparison is always 64-bits
5500       Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1);
5501     return DAG.getNode(PPCISD::FSEL, dl, ResVT,
5502                        DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV);
5503   case ISD::SETULT:
5504   case ISD::SETLT:
5505     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
5506     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
5507       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5508     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
5509   case ISD::SETOGE:
5510   case ISD::SETGE:
5511     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS);
5512     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
5513       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5514     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
5515   case ISD::SETUGT:
5516   case ISD::SETGT:
5517     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
5518     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
5519       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5520     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV);
5521   case ISD::SETOLE:
5522   case ISD::SETLE:
5523     Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS);
5524     if (Cmp.getValueType() == MVT::f32)   // Comparison is always 64-bits
5525       Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp);
5526     return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV);
5527   }
5528   return Op;
5529 }
5530
5531 void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI,
5532                                                SelectionDAG &DAG,
5533                                                SDLoc dl) const {
5534   assert(Op.getOperand(0).getValueType().isFloatingPoint());
5535   SDValue Src = Op.getOperand(0);
5536   if (Src.getValueType() == MVT::f32)
5537     Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
5538
5539   SDValue Tmp;
5540   switch (Op.getSimpleValueType().SimpleTy) {
5541   default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!");
5542   case MVT::i32:
5543     Tmp = DAG.getNode(
5544         Op.getOpcode() == ISD::FP_TO_SINT
5545             ? PPCISD::FCTIWZ
5546             : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ),
5547         dl, MVT::f64, Src);
5548     break;
5549   case MVT::i64:
5550     assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) &&
5551            "i64 FP_TO_UINT is supported only with FPCVT");
5552     Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
5553                                                         PPCISD::FCTIDUZ,
5554                       dl, MVT::f64, Src);
5555     break;
5556   }
5557
5558   // Convert the FP value to an int value through memory.
5559   bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() &&
5560     (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT());
5561   SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64);
5562   int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex();
5563   MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI);
5564
5565   // Emit a store to the stack slot.
5566   SDValue Chain;
5567   if (i32Stack) {
5568     MachineFunction &MF = DAG.getMachineFunction();
5569     MachineMemOperand *MMO =
5570       MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4);
5571     SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr };
5572     Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
5573               DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO);
5574   } else
5575     Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr,
5576                          MPI, false, false, 0);
5577
5578   // Result is a load from the stack slot.  If loading 4 bytes, make sure to
5579   // add in a bias.
5580   if (Op.getValueType() == MVT::i32 && !i32Stack) {
5581     FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr,
5582                         DAG.getConstant(4, FIPtr.getValueType()));
5583     MPI = MPI.getWithOffset(4);
5584   }
5585
5586   RLI.Chain = Chain;
5587   RLI.Ptr = FIPtr;
5588   RLI.MPI = MPI;
5589 }
5590
5591 SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG,
5592                                           SDLoc dl) const {
5593   ReuseLoadInfo RLI;
5594   LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
5595
5596   return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
5597                      false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
5598                      RLI.Ranges);
5599 }
5600
5601 // We're trying to insert a regular store, S, and then a load, L. If the
5602 // incoming value, O, is a load, we might just be able to have our load use the
5603 // address used by O. However, we don't know if anything else will store to
5604 // that address before we can load from it. To prevent this situation, we need
5605 // to insert our load, L, into the chain as a peer of O. To do this, we give L
5606 // the same chain operand as O, we create a token factor from the chain results
5607 // of O and L, and we replace all uses of O's chain result with that token
5608 // factor (see spliceIntoChain below for this last part).
5609 bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT,
5610                                             ReuseLoadInfo &RLI,
5611                                             SelectionDAG &DAG,
5612                                             ISD::LoadExtType ET) const {
5613   SDLoc dl(Op);
5614   if (ET == ISD::NON_EXTLOAD &&
5615       (Op.getOpcode() == ISD::FP_TO_UINT ||
5616        Op.getOpcode() == ISD::FP_TO_SINT) &&
5617       isOperationLegalOrCustom(Op.getOpcode(),
5618                                Op.getOperand(0).getValueType())) {
5619
5620     LowerFP_TO_INTForReuse(Op, RLI, DAG, dl);
5621     return true;
5622   }
5623
5624   LoadSDNode *LD = dyn_cast<LoadSDNode>(Op);
5625   if (!LD || LD->getExtensionType() != ET || LD->isVolatile() ||
5626       LD->isNonTemporal())
5627     return false;
5628   if (LD->getMemoryVT() != MemVT)
5629     return false;
5630
5631   RLI.Ptr = LD->getBasePtr();
5632   if (LD->isIndexed() && LD->getOffset().getOpcode() != ISD::UNDEF) {
5633     assert(LD->getAddressingMode() == ISD::PRE_INC &&
5634            "Non-pre-inc AM on PPC?");
5635     RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr,
5636                           LD->getOffset());
5637   }
5638
5639   RLI.Chain = LD->getChain();
5640   RLI.MPI = LD->getPointerInfo();
5641   RLI.IsInvariant = LD->isInvariant();
5642   RLI.Alignment = LD->getAlignment();
5643   RLI.AAInfo = LD->getAAInfo();
5644   RLI.Ranges = LD->getRanges();
5645
5646   RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1);
5647   return true;
5648 }
5649
5650 // Given the head of the old chain, ResChain, insert a token factor containing
5651 // it and NewResChain, and make users of ResChain now be users of that token
5652 // factor.
5653 void PPCTargetLowering::spliceIntoChain(SDValue ResChain,
5654                                         SDValue NewResChain,
5655                                         SelectionDAG &DAG) const {
5656   if (!ResChain)
5657     return;
5658
5659   SDLoc dl(NewResChain);
5660
5661   SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
5662                            NewResChain, DAG.getUNDEF(MVT::Other));
5663   assert(TF.getNode() != NewResChain.getNode() &&
5664          "A new TF really is required here");
5665
5666   DAG.ReplaceAllUsesOfValueWith(ResChain, TF);
5667   DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain);
5668 }
5669
5670 SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
5671                                           SelectionDAG &DAG) const {
5672   SDLoc dl(Op);
5673   // Don't handle ppc_fp128 here; let it be lowered to a libcall.
5674   if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
5675     return SDValue();
5676
5677   if (Op.getOperand(0).getValueType() == MVT::i1)
5678     return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0),
5679                        DAG.getConstantFP(1.0, Op.getValueType()),
5680                        DAG.getConstantFP(0.0, Op.getValueType()));
5681
5682   assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
5683          "UINT_TO_FP is supported only with FPCVT");
5684
5685   // If we have FCFIDS, then use it when converting to single-precision.
5686   // Otherwise, convert to double-precision and then round.
5687   unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
5688                        ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
5689                                                             : PPCISD::FCFIDS)
5690                        : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
5691                                                             : PPCISD::FCFID);
5692   MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
5693                   ? MVT::f32
5694                   : MVT::f64;
5695
5696   if (Op.getOperand(0).getValueType() == MVT::i64) {
5697     SDValue SINT = Op.getOperand(0);
5698     // When converting to single-precision, we actually need to convert
5699     // to double-precision first and then round to single-precision.
5700     // To avoid double-rounding effects during that operation, we have
5701     // to prepare the input operand.  Bits that might be truncated when
5702     // converting to double-precision are replaced by a bit that won't
5703     // be lost at this stage, but is below the single-precision rounding
5704     // position.
5705     //
5706     // However, if -enable-unsafe-fp-math is in effect, accept double
5707     // rounding to avoid the extra overhead.
5708     if (Op.getValueType() == MVT::f32 &&
5709         !Subtarget.hasFPCVT() &&
5710         !DAG.getTarget().Options.UnsafeFPMath) {
5711
5712       // Twiddle input to make sure the low 11 bits are zero.  (If this
5713       // is the case, we are guaranteed the value will fit into the 53 bit
5714       // mantissa of an IEEE double-precision value without rounding.)
5715       // If any of those low 11 bits were not zero originally, make sure
5716       // bit 12 (value 2048) is set instead, so that the final rounding
5717       // to single-precision gets the correct result.
5718       SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5719                                   SINT, DAG.getConstant(2047, MVT::i64));
5720       Round = DAG.getNode(ISD::ADD, dl, MVT::i64,
5721                           Round, DAG.getConstant(2047, MVT::i64));
5722       Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT);
5723       Round = DAG.getNode(ISD::AND, dl, MVT::i64,
5724                           Round, DAG.getConstant(-2048, MVT::i64));
5725
5726       // However, we cannot use that value unconditionally: if the magnitude
5727       // of the input value is small, the bit-twiddling we did above might
5728       // end up visibly changing the output.  Fortunately, in that case, we
5729       // don't need to twiddle bits since the original input will convert
5730       // exactly to double-precision floating-point already.  Therefore,
5731       // construct a conditional to use the original value if the top 11
5732       // bits are all sign-bit copies, and use the rounded value computed
5733       // above otherwise.
5734       SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64,
5735                                  SINT, DAG.getConstant(53, MVT::i32));
5736       Cond = DAG.getNode(ISD::ADD, dl, MVT::i64,
5737                          Cond, DAG.getConstant(1, MVT::i64));
5738       Cond = DAG.getSetCC(dl, MVT::i32,
5739                           Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT);
5740
5741       SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT);
5742     }
5743
5744     ReuseLoadInfo RLI;
5745     SDValue Bits;
5746
5747     MachineFunction &MF = DAG.getMachineFunction();
5748     if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) {
5749       Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, false,
5750                          false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo,
5751                          RLI.Ranges);
5752       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
5753     } else if (Subtarget.hasLFIWAX() &&
5754                canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) {
5755       MachineMemOperand *MMO =
5756         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5757                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5758       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5759       Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl,
5760                                      DAG.getVTList(MVT::f64, MVT::Other),
5761                                      Ops, MVT::i32, MMO);
5762       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
5763     } else if (Subtarget.hasFPCVT() &&
5764                canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) {
5765       MachineMemOperand *MMO =
5766         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5767                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5768       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5769       Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl,
5770                                      DAG.getVTList(MVT::f64, MVT::Other),
5771                                      Ops, MVT::i32, MMO);
5772       spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG);
5773     } else if (((Subtarget.hasLFIWAX() &&
5774                  SINT.getOpcode() == ISD::SIGN_EXTEND) ||
5775                 (Subtarget.hasFPCVT() &&
5776                  SINT.getOpcode() == ISD::ZERO_EXTEND)) &&
5777                SINT.getOperand(0).getValueType() == MVT::i32) {
5778       MachineFrameInfo *FrameInfo = MF.getFrameInfo();
5779       EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5780
5781       int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
5782       SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5783
5784       SDValue Store =
5785         DAG.getStore(DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx,
5786                      MachinePointerInfo::getFixedStack(FrameIdx),
5787                      false, false, 0);
5788
5789       assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
5790              "Expected an i32 store");
5791
5792       RLI.Ptr = FIdx;
5793       RLI.Chain = Store;
5794       RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
5795       RLI.Alignment = 4;
5796
5797       MachineMemOperand *MMO =
5798         MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5799                                 RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5800       SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5801       Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ?
5802                                      PPCISD::LFIWZX : PPCISD::LFIWAX,
5803                                      dl, DAG.getVTList(MVT::f64, MVT::Other),
5804                                      Ops, MVT::i32, MMO);
5805     } else
5806       Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT);
5807
5808     SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits);
5809
5810     if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
5811       FP = DAG.getNode(ISD::FP_ROUND, dl,
5812                        MVT::f32, FP, DAG.getIntPtrConstant(0));
5813     return FP;
5814   }
5815
5816   assert(Op.getOperand(0).getValueType() == MVT::i32 &&
5817          "Unhandled INT_TO_FP type in custom expander!");
5818   // Since we only generate this in 64-bit mode, we can take advantage of
5819   // 64-bit registers.  In particular, sign extend the input value into the
5820   // 64-bit register with extsw, store the WHOLE 64-bit value into the stack
5821   // then lfd it and fcfid it.
5822   MachineFunction &MF = DAG.getMachineFunction();
5823   MachineFrameInfo *FrameInfo = MF.getFrameInfo();
5824   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5825
5826   SDValue Ld;
5827   if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) {
5828     ReuseLoadInfo RLI;
5829     bool ReusingLoad;
5830     if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI,
5831                                             DAG))) {
5832       int FrameIdx = FrameInfo->CreateStackObject(4, 4, false);
5833       SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5834
5835       SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx,
5836                                    MachinePointerInfo::getFixedStack(FrameIdx),
5837                                    false, false, 0);
5838
5839       assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 &&
5840              "Expected an i32 store");
5841
5842       RLI.Ptr = FIdx;
5843       RLI.Chain = Store;
5844       RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx);
5845       RLI.Alignment = 4;
5846     }
5847
5848     MachineMemOperand *MMO =
5849       MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4,
5850                               RLI.Alignment, RLI.AAInfo, RLI.Ranges);
5851     SDValue Ops[] = { RLI.Chain, RLI.Ptr };
5852     Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ?
5853                                    PPCISD::LFIWZX : PPCISD::LFIWAX,
5854                                  dl, DAG.getVTList(MVT::f64, MVT::Other),
5855                                  Ops, MVT::i32, MMO);
5856     if (ReusingLoad)
5857       spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG);
5858   } else {
5859     assert(Subtarget.isPPC64() &&
5860            "i32->FP without LFIWAX supported only on PPC64");
5861
5862     int FrameIdx = FrameInfo->CreateStackObject(8, 8, false);
5863     SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
5864
5865     SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64,
5866                                 Op.getOperand(0));
5867
5868     // STD the extended value into the stack slot.
5869     SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx,
5870                                  MachinePointerInfo::getFixedStack(FrameIdx),
5871                                  false, false, 0);
5872
5873     // Load the value as a double.
5874     Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx,
5875                      MachinePointerInfo::getFixedStack(FrameIdx),
5876                      false, false, false, 0);
5877   }
5878
5879   // FCFID it and return it.
5880   SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld);
5881   if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT())
5882     FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0));
5883   return FP;
5884 }
5885
5886 SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
5887                                             SelectionDAG &DAG) const {
5888   SDLoc dl(Op);
5889   /*
5890    The rounding mode is in bits 30:31 of FPSR, and has the following
5891    settings:
5892      00 Round to nearest
5893      01 Round to 0
5894      10 Round to +inf
5895      11 Round to -inf
5896
5897   FLT_ROUNDS, on the other hand, expects the following:
5898     -1 Undefined
5899      0 Round to 0
5900      1 Round to nearest
5901      2 Round to +inf
5902      3 Round to -inf
5903
5904   To perform the conversion, we do:
5905     ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1))
5906   */
5907
5908   MachineFunction &MF = DAG.getMachineFunction();
5909   EVT VT = Op.getValueType();
5910   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
5911
5912   // Save FP Control Word to register
5913   EVT NodeTys[] = {
5914     MVT::f64,    // return register
5915     MVT::Glue    // unused in this context
5916   };
5917   SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None);
5918
5919   // Save FP register to stack slot
5920   int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
5921   SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
5922   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain,
5923                                StackSlot, MachinePointerInfo(), false, false,0);
5924
5925   // Load FP Control Word from low 32 bits of stack slot.
5926   SDValue Four = DAG.getConstant(4, PtrVT);
5927   SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);
5928   SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(),
5929                             false, false, false, 0);
5930
5931   // Transform as necessary
5932   SDValue CWD1 =
5933     DAG.getNode(ISD::AND, dl, MVT::i32,
5934                 CWD, DAG.getConstant(3, MVT::i32));
5935   SDValue CWD2 =
5936     DAG.getNode(ISD::SRL, dl, MVT::i32,
5937                 DAG.getNode(ISD::AND, dl, MVT::i32,
5938                             DAG.getNode(ISD::XOR, dl, MVT::i32,
5939                                         CWD, DAG.getConstant(3, MVT::i32)),
5940                             DAG.getConstant(3, MVT::i32)),
5941                 DAG.getConstant(1, MVT::i32));
5942
5943   SDValue RetVal =
5944     DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2);
5945
5946   return DAG.getNode((VT.getSizeInBits() < 16 ?
5947                       ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
5948 }
5949
5950 SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const {
5951   EVT VT = Op.getValueType();
5952   unsigned BitWidth = VT.getSizeInBits();
5953   SDLoc dl(Op);
5954   assert(Op.getNumOperands() == 3 &&
5955          VT == Op.getOperand(1).getValueType() &&
5956          "Unexpected SHL!");
5957
5958   // Expand into a bunch of logical ops.  Note that these ops
5959   // depend on the PPC behavior for oversized shift amounts.
5960   SDValue Lo = Op.getOperand(0);
5961   SDValue Hi = Op.getOperand(1);
5962   SDValue Amt = Op.getOperand(2);
5963   EVT AmtVT = Amt.getValueType();
5964
5965   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
5966                              DAG.getConstant(BitWidth, AmtVT), Amt);
5967   SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt);
5968   SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1);
5969   SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3);
5970   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
5971                              DAG.getConstant(-BitWidth, AmtVT));
5972   SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5);
5973   SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
5974   SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt);
5975   SDValue OutOps[] = { OutLo, OutHi };
5976   return DAG.getMergeValues(OutOps, dl);
5977 }
5978
5979 SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const {
5980   EVT VT = Op.getValueType();
5981   SDLoc dl(Op);
5982   unsigned BitWidth = VT.getSizeInBits();
5983   assert(Op.getNumOperands() == 3 &&
5984          VT == Op.getOperand(1).getValueType() &&
5985          "Unexpected SRL!");
5986
5987   // Expand into a bunch of logical ops.  Note that these ops
5988   // depend on the PPC behavior for oversized shift amounts.
5989   SDValue Lo = Op.getOperand(0);
5990   SDValue Hi = Op.getOperand(1);
5991   SDValue Amt = Op.getOperand(2);
5992   EVT AmtVT = Amt.getValueType();
5993
5994   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
5995                              DAG.getConstant(BitWidth, AmtVT), Amt);
5996   SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
5997   SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
5998   SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
5999   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6000                              DAG.getConstant(-BitWidth, AmtVT));
6001   SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5);
6002   SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6);
6003   SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt);
6004   SDValue OutOps[] = { OutLo, OutHi };
6005   return DAG.getMergeValues(OutOps, dl);
6006 }
6007
6008 SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const {
6009   SDLoc dl(Op);
6010   EVT VT = Op.getValueType();
6011   unsigned BitWidth = VT.getSizeInBits();
6012   assert(Op.getNumOperands() == 3 &&
6013          VT == Op.getOperand(1).getValueType() &&
6014          "Unexpected SRA!");
6015
6016   // Expand into a bunch of logical ops, followed by a select_cc.
6017   SDValue Lo = Op.getOperand(0);
6018   SDValue Hi = Op.getOperand(1);
6019   SDValue Amt = Op.getOperand(2);
6020   EVT AmtVT = Amt.getValueType();
6021
6022   SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT,
6023                              DAG.getConstant(BitWidth, AmtVT), Amt);
6024   SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt);
6025   SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1);
6026   SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3);
6027   SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt,
6028                              DAG.getConstant(-BitWidth, AmtVT));
6029   SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5);
6030   SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt);
6031   SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT),
6032                                   Tmp4, Tmp6, ISD::SETLE);
6033   SDValue OutOps[] = { OutLo, OutHi };
6034   return DAG.getMergeValues(OutOps, dl);
6035 }
6036
6037 //===----------------------------------------------------------------------===//
6038 // Vector related lowering.
6039 //
6040
6041 /// BuildSplatI - Build a canonical splati of Val with an element size of
6042 /// SplatSize.  Cast the result to VT.
6043 static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT,
6044                              SelectionDAG &DAG, SDLoc dl) {
6045   assert(Val >= -16 && Val <= 15 && "vsplti is out of range!");
6046
6047   static const EVT VTys[] = { // canonical VT to use for each size.
6048     MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32
6049   };
6050
6051   EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1];
6052
6053   // Force vspltis[hw] -1 to vspltisb -1 to canonicalize.
6054   if (Val == -1)
6055     SplatSize = 1;
6056
6057   EVT CanonicalVT = VTys[SplatSize-1];
6058
6059   // Build a canonical splat for this value.
6060   SDValue Elt = DAG.getConstant(Val, MVT::i32);
6061   SmallVector<SDValue, 8> Ops;
6062   Ops.assign(CanonicalVT.getVectorNumElements(), Elt);
6063   SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT, Ops);
6064   return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res);
6065 }
6066
6067 /// BuildIntrinsicOp - Return a unary operator intrinsic node with the
6068 /// specified intrinsic ID.
6069 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op,
6070                                 SelectionDAG &DAG, SDLoc dl,
6071                                 EVT DestVT = MVT::Other) {
6072   if (DestVT == MVT::Other) DestVT = Op.getValueType();
6073   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6074                      DAG.getConstant(IID, MVT::i32), Op);
6075 }
6076
6077 /// BuildIntrinsicOp - Return a binary operator intrinsic node with the
6078 /// specified intrinsic ID.
6079 static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS,
6080                                 SelectionDAG &DAG, SDLoc dl,
6081                                 EVT DestVT = MVT::Other) {
6082   if (DestVT == MVT::Other) DestVT = LHS.getValueType();
6083   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6084                      DAG.getConstant(IID, MVT::i32), LHS, RHS);
6085 }
6086
6087 /// BuildIntrinsicOp - Return a ternary operator intrinsic node with the
6088 /// specified intrinsic ID.
6089 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1,
6090                                 SDValue Op2, SelectionDAG &DAG,
6091                                 SDLoc dl, EVT DestVT = MVT::Other) {
6092   if (DestVT == MVT::Other) DestVT = Op0.getValueType();
6093   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT,
6094                      DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2);
6095 }
6096
6097
6098 /// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified
6099 /// amount.  The result has the specified value type.
6100 static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt,
6101                              EVT VT, SelectionDAG &DAG, SDLoc dl) {
6102   // Force LHS/RHS to be the right type.
6103   LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS);
6104   RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS);
6105
6106   int Ops[16];
6107   for (unsigned i = 0; i != 16; ++i)
6108     Ops[i] = i + Amt;
6109   SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops);
6110   return DAG.getNode(ISD::BITCAST, dl, VT, T);
6111 }
6112
6113 // If this is a case we can't handle, return null and let the default
6114 // expansion code take care of it.  If we CAN select this case, and if it
6115 // selects to a single instruction, return Op.  Otherwise, if we can codegen
6116 // this case more efficiently than a constant pool load, lower it to the
6117 // sequence of ops that should be used.
6118 SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op,
6119                                              SelectionDAG &DAG) const {
6120   SDLoc dl(Op);
6121   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
6122   assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR");
6123
6124   // Check if this is a splat of a constant value.
6125   APInt APSplatBits, APSplatUndef;
6126   unsigned SplatBitSize;
6127   bool HasAnyUndefs;
6128   if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
6129                              HasAnyUndefs, 0, true) || SplatBitSize > 32)
6130     return SDValue();
6131
6132   unsigned SplatBits = APSplatBits.getZExtValue();
6133   unsigned SplatUndef = APSplatUndef.getZExtValue();
6134   unsigned SplatSize = SplatBitSize / 8;
6135
6136   // First, handle single instruction cases.
6137
6138   // All zeros?
6139   if (SplatBits == 0) {
6140     // Canonicalize all zero vectors to be v4i32.
6141     if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) {
6142       SDValue Z = DAG.getConstant(0, MVT::i32);
6143       Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z);
6144       Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z);
6145     }
6146     return Op;
6147   }
6148
6149   // If the sign extended value is in the range [-16,15], use VSPLTI[bhw].
6150   int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
6151                     (32-SplatBitSize));
6152   if (SextVal >= -16 && SextVal <= 15)
6153     return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl);
6154
6155
6156   // Two instruction sequences.
6157
6158   // If this value is in the range [-32,30] and is even, use:
6159   //     VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2)
6160   // If this value is in the range [17,31] and is odd, use:
6161   //     VSPLTI[bhw](val-16) - VSPLTI[bhw](-16)
6162   // If this value is in the range [-31,-17] and is odd, use:
6163   //     VSPLTI[bhw](val+16) + VSPLTI[bhw](-16)
6164   // Note the last two are three-instruction sequences.
6165   if (SextVal >= -32 && SextVal <= 31) {
6166     // To avoid having these optimizations undone by constant folding,
6167     // we convert to a pseudo that will be expanded later into one of
6168     // the above forms.
6169     SDValue Elt = DAG.getConstant(SextVal, MVT::i32);
6170     EVT VT = (SplatSize == 1 ? MVT::v16i8 :
6171               (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32));
6172     SDValue EltSize = DAG.getConstant(SplatSize, MVT::i32);
6173     SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize);
6174     if (VT == Op.getValueType())
6175       return RetVal;
6176     else
6177       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal);
6178   }
6179
6180   // If this is 0x8000_0000 x 4, turn into vspltisw + vslw.  If it is
6181   // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000).  This is important
6182   // for fneg/fabs.
6183   if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
6184     // Make -1 and vspltisw -1:
6185     SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl);
6186
6187     // Make the VSLW intrinsic, computing 0x8000_0000.
6188     SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV,
6189                                    OnesV, DAG, dl);
6190
6191     // xor by OnesV to invert it.
6192     Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV);
6193     return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6194   }
6195
6196   // The remaining cases assume either big endian element order or
6197   // a splat-size that equates to the element size of the vector
6198   // to be built.  An example that doesn't work for little endian is
6199   // {0, -1, 0, -1, 0, -1, 0, -1} which has a splat size of 32 bits
6200   // and a vector element size of 16 bits.  The code below will
6201   // produce the vector in big endian element order, which for little
6202   // endian is {-1, 0, -1, 0, -1, 0, -1, 0}.
6203
6204   // For now, just avoid these optimizations in that case.
6205   // FIXME: Develop correct optimizations for LE with mismatched
6206   // splat and element sizes.
6207
6208   if (Subtarget.isLittleEndian() &&
6209       SplatSize != Op.getValueType().getVectorElementType().getSizeInBits())
6210     return SDValue();
6211
6212   // Check to see if this is a wide variety of vsplti*, binop self cases.
6213   static const signed char SplatCsts[] = {
6214     -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7,
6215     -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16
6216   };
6217
6218   for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) {
6219     // Indirect through the SplatCsts array so that we favor 'vsplti -1' for
6220     // cases which are ambiguous (e.g. formation of 0x8000_0000).  'vsplti -1'
6221     int i = SplatCsts[idx];
6222
6223     // Figure out what shift amount will be used by altivec if shifted by i in
6224     // this splat size.
6225     unsigned TypeShiftAmt = i & (SplatBitSize-1);
6226
6227     // vsplti + shl self.
6228     if (SextVal == (int)((unsigned)i << TypeShiftAmt)) {
6229       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6230       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6231         Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0,
6232         Intrinsic::ppc_altivec_vslw
6233       };
6234       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6235       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6236     }
6237
6238     // vsplti + srl self.
6239     if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
6240       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6241       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6242         Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0,
6243         Intrinsic::ppc_altivec_vsrw
6244       };
6245       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6246       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6247     }
6248
6249     // vsplti + sra self.
6250     if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) {
6251       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6252       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6253         Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0,
6254         Intrinsic::ppc_altivec_vsraw
6255       };
6256       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6257       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6258     }
6259
6260     // vsplti + rol self.
6261     if (SextVal == (int)(((unsigned)i << TypeShiftAmt) |
6262                          ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) {
6263       SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl);
6264       static const unsigned IIDs[] = { // Intrinsic to use for each size.
6265         Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0,
6266         Intrinsic::ppc_altivec_vrlw
6267       };
6268       Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl);
6269       return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res);
6270     }
6271
6272     // t = vsplti c, result = vsldoi t, t, 1
6273     if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) {
6274       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
6275       return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl);
6276     }
6277     // t = vsplti c, result = vsldoi t, t, 2
6278     if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) {
6279       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
6280       return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl);
6281     }
6282     // t = vsplti c, result = vsldoi t, t, 3
6283     if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) {
6284       SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl);
6285       return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl);
6286     }
6287   }
6288
6289   return SDValue();
6290 }
6291
6292 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
6293 /// the specified operations to build the shuffle.
6294 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
6295                                       SDValue RHS, SelectionDAG &DAG,
6296                                       SDLoc dl) {
6297   unsigned OpNum = (PFEntry >> 26) & 0x0F;
6298   unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
6299   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
6300
6301   enum {
6302     OP_COPY = 0,  // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
6303     OP_VMRGHW,
6304     OP_VMRGLW,
6305     OP_VSPLTISW0,
6306     OP_VSPLTISW1,
6307     OP_VSPLTISW2,
6308     OP_VSPLTISW3,
6309     OP_VSLDOI4,
6310     OP_VSLDOI8,
6311     OP_VSLDOI12
6312   };
6313
6314   if (OpNum == OP_COPY) {
6315     if (LHSID == (1*9+2)*9+3) return LHS;
6316     assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
6317     return RHS;
6318   }
6319
6320   SDValue OpLHS, OpRHS;
6321   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
6322   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
6323
6324   int ShufIdxs[16];
6325   switch (OpNum) {
6326   default: llvm_unreachable("Unknown i32 permute!");
6327   case OP_VMRGHW:
6328     ShufIdxs[ 0] =  0; ShufIdxs[ 1] =  1; ShufIdxs[ 2] =  2; ShufIdxs[ 3] =  3;
6329     ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19;
6330     ShufIdxs[ 8] =  4; ShufIdxs[ 9] =  5; ShufIdxs[10] =  6; ShufIdxs[11] =  7;
6331     ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23;
6332     break;
6333   case OP_VMRGLW:
6334     ShufIdxs[ 0] =  8; ShufIdxs[ 1] =  9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11;
6335     ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27;
6336     ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15;
6337     ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31;
6338     break;
6339   case OP_VSPLTISW0:
6340     for (unsigned i = 0; i != 16; ++i)
6341       ShufIdxs[i] = (i&3)+0;
6342     break;
6343   case OP_VSPLTISW1:
6344     for (unsigned i = 0; i != 16; ++i)
6345       ShufIdxs[i] = (i&3)+4;
6346     break;
6347   case OP_VSPLTISW2:
6348     for (unsigned i = 0; i != 16; ++i)
6349       ShufIdxs[i] = (i&3)+8;
6350     break;
6351   case OP_VSPLTISW3:
6352     for (unsigned i = 0; i != 16; ++i)
6353       ShufIdxs[i] = (i&3)+12;
6354     break;
6355   case OP_VSLDOI4:
6356     return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl);
6357   case OP_VSLDOI8:
6358     return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl);
6359   case OP_VSLDOI12:
6360     return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl);
6361   }
6362   EVT VT = OpLHS.getValueType();
6363   OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS);
6364   OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS);
6365   SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs);
6366   return DAG.getNode(ISD::BITCAST, dl, VT, T);
6367 }
6368
6369 /// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE.  If this
6370 /// is a shuffle we can handle in a single instruction, return it.  Otherwise,
6371 /// return the code it can be lowered into.  Worst case, it can always be
6372 /// lowered into a vperm.
6373 SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
6374                                                SelectionDAG &DAG) const {
6375   SDLoc dl(Op);
6376   SDValue V1 = Op.getOperand(0);
6377   SDValue V2 = Op.getOperand(1);
6378   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6379   EVT VT = Op.getValueType();
6380   bool isLittleEndian = Subtarget.isLittleEndian();
6381
6382   // Cases that are handled by instructions that take permute immediates
6383   // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be
6384   // selected by the instruction selector.
6385   if (V2.getOpcode() == ISD::UNDEF) {
6386     if (PPC::isSplatShuffleMask(SVOp, 1) ||
6387         PPC::isSplatShuffleMask(SVOp, 2) ||
6388         PPC::isSplatShuffleMask(SVOp, 4) ||
6389         PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) ||
6390         PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) ||
6391         PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 ||
6392         PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) ||
6393         PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) ||
6394         PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) ||
6395         PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) ||
6396         PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) ||
6397         PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG)) {
6398       return Op;
6399     }
6400   }
6401
6402   // Altivec has a variety of "shuffle immediates" that take two vector inputs
6403   // and produce a fixed permutation.  If any of these match, do not lower to
6404   // VPERM.
6405   unsigned int ShuffleKind = isLittleEndian ? 2 : 0;
6406   if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) ||
6407       PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) ||
6408       PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 ||
6409       PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6410       PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6411       PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) ||
6412       PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) ||
6413       PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) ||
6414       PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG))
6415     return Op;
6416
6417   // Check to see if this is a shuffle of 4-byte values.  If so, we can use our
6418   // perfect shuffle table to emit an optimal matching sequence.
6419   ArrayRef<int> PermMask = SVOp->getMask();
6420
6421   unsigned PFIndexes[4];
6422   bool isFourElementShuffle = true;
6423   for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number
6424     unsigned EltNo = 8;   // Start out undef.
6425     for (unsigned j = 0; j != 4; ++j) {  // Intra-element byte.
6426       if (PermMask[i*4+j] < 0)
6427         continue;   // Undef, ignore it.
6428
6429       unsigned ByteSource = PermMask[i*4+j];
6430       if ((ByteSource & 3) != j) {
6431         isFourElementShuffle = false;
6432         break;
6433       }
6434
6435       if (EltNo == 8) {
6436         EltNo = ByteSource/4;
6437       } else if (EltNo != ByteSource/4) {
6438         isFourElementShuffle = false;
6439         break;
6440       }
6441     }
6442     PFIndexes[i] = EltNo;
6443   }
6444
6445   // If this shuffle can be expressed as a shuffle of 4-byte elements, use the
6446   // perfect shuffle vector to determine if it is cost effective to do this as
6447   // discrete instructions, or whether we should use a vperm.
6448   // For now, we skip this for little endian until such time as we have a
6449   // little-endian perfect shuffle table.
6450   if (isFourElementShuffle && !isLittleEndian) {
6451     // Compute the index in the perfect shuffle table.
6452     unsigned PFTableIndex =
6453       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
6454
6455     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6456     unsigned Cost  = (PFEntry >> 30);
6457
6458     // Determining when to avoid vperm is tricky.  Many things affect the cost
6459     // of vperm, particularly how many times the perm mask needs to be computed.
6460     // For example, if the perm mask can be hoisted out of a loop or is already
6461     // used (perhaps because there are multiple permutes with the same shuffle
6462     // mask?) the vperm has a cost of 1.  OTOH, hoisting the permute mask out of
6463     // the loop requires an extra register.
6464     //
6465     // As a compromise, we only emit discrete instructions if the shuffle can be
6466     // generated in 3 or fewer operations.  When we have loop information
6467     // available, if this block is within a loop, we should avoid using vperm
6468     // for 3-operation perms and use a constant pool load instead.
6469     if (Cost < 3)
6470       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
6471   }
6472
6473   // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant
6474   // vector that will get spilled to the constant pool.
6475   if (V2.getOpcode() == ISD::UNDEF) V2 = V1;
6476
6477   // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except
6478   // that it is in input element units, not in bytes.  Convert now.
6479
6480   // For little endian, the order of the input vectors is reversed, and
6481   // the permutation mask is complemented with respect to 31.  This is
6482   // necessary to produce proper semantics with the big-endian-biased vperm
6483   // instruction.
6484   EVT EltVT = V1.getValueType().getVectorElementType();
6485   unsigned BytesPerElement = EltVT.getSizeInBits()/8;
6486
6487   SmallVector<SDValue, 16> ResultMask;
6488   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
6489     unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i];
6490
6491     for (unsigned j = 0; j != BytesPerElement; ++j)
6492       if (isLittleEndian)
6493         ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement+j),
6494                                              MVT::i32));
6495       else
6496         ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j,
6497                                              MVT::i32));
6498   }
6499
6500   SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8,
6501                                   ResultMask);
6502   if (isLittleEndian)
6503     return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6504                        V2, V1, VPermMask);
6505   else
6506     return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(),
6507                        V1, V2, VPermMask);
6508 }
6509
6510 /// getAltivecCompareInfo - Given an intrinsic, return false if it is not an
6511 /// altivec comparison.  If it is, return true and fill in Opc/isDot with
6512 /// information about the intrinsic.
6513 static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc,
6514                                   bool &isDot) {
6515   unsigned IntrinsicID =
6516     cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue();
6517   CompareOpc = -1;
6518   isDot = false;
6519   switch (IntrinsicID) {
6520   default: return false;
6521     // Comparison predicates.
6522   case Intrinsic::ppc_altivec_vcmpbfp_p:  CompareOpc = 966; isDot = 1; break;
6523   case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break;
6524   case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc =   6; isDot = 1; break;
6525   case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc =  70; isDot = 1; break;
6526   case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break;
6527   case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break;
6528   case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break;
6529   case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break;
6530   case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break;
6531   case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break;
6532   case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break;
6533   case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break;
6534   case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break;
6535
6536     // Normal Comparisons.
6537   case Intrinsic::ppc_altivec_vcmpbfp:    CompareOpc = 966; isDot = 0; break;
6538   case Intrinsic::ppc_altivec_vcmpeqfp:   CompareOpc = 198; isDot = 0; break;
6539   case Intrinsic::ppc_altivec_vcmpequb:   CompareOpc =   6; isDot = 0; break;
6540   case Intrinsic::ppc_altivec_vcmpequh:   CompareOpc =  70; isDot = 0; break;
6541   case Intrinsic::ppc_altivec_vcmpequw:   CompareOpc = 134; isDot = 0; break;
6542   case Intrinsic::ppc_altivec_vcmpgefp:   CompareOpc = 454; isDot = 0; break;
6543   case Intrinsic::ppc_altivec_vcmpgtfp:   CompareOpc = 710; isDot = 0; break;
6544   case Intrinsic::ppc_altivec_vcmpgtsb:   CompareOpc = 774; isDot = 0; break;
6545   case Intrinsic::ppc_altivec_vcmpgtsh:   CompareOpc = 838; isDot = 0; break;
6546   case Intrinsic::ppc_altivec_vcmpgtsw:   CompareOpc = 902; isDot = 0; break;
6547   case Intrinsic::ppc_altivec_vcmpgtub:   CompareOpc = 518; isDot = 0; break;
6548   case Intrinsic::ppc_altivec_vcmpgtuh:   CompareOpc = 582; isDot = 0; break;
6549   case Intrinsic::ppc_altivec_vcmpgtuw:   CompareOpc = 646; isDot = 0; break;
6550   }
6551   return true;
6552 }
6553
6554 /// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom
6555 /// lower, do it, otherwise return null.
6556 SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
6557                                                    SelectionDAG &DAG) const {
6558   // If this is a lowered altivec predicate compare, CompareOpc is set to the
6559   // opcode number of the comparison.
6560   SDLoc dl(Op);
6561   int CompareOpc;
6562   bool isDot;
6563   if (!getAltivecCompareInfo(Op, CompareOpc, isDot))
6564     return SDValue();    // Don't custom lower most intrinsics.
6565
6566   // If this is a non-dot comparison, make the VCMP node and we are done.
6567   if (!isDot) {
6568     SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(),
6569                               Op.getOperand(1), Op.getOperand(2),
6570                               DAG.getConstant(CompareOpc, MVT::i32));
6571     return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp);
6572   }
6573
6574   // Create the PPCISD altivec 'dot' comparison node.
6575   SDValue Ops[] = {
6576     Op.getOperand(2),  // LHS
6577     Op.getOperand(3),  // RHS
6578     DAG.getConstant(CompareOpc, MVT::i32)
6579   };
6580   EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue };
6581   SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
6582
6583   // Now that we have the comparison, emit a copy from the CR to a GPR.
6584   // This is flagged to the above dot comparison.
6585   SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32,
6586                                 DAG.getRegister(PPC::CR6, MVT::i32),
6587                                 CompNode.getValue(1));
6588
6589   // Unpack the result based on how the target uses it.
6590   unsigned BitNo;   // Bit # of CR6.
6591   bool InvertBit;   // Invert result?
6592   switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) {
6593   default:  // Can't happen, don't crash on invalid number though.
6594   case 0:   // Return the value of the EQ bit of CR6.
6595     BitNo = 0; InvertBit = false;
6596     break;
6597   case 1:   // Return the inverted value of the EQ bit of CR6.
6598     BitNo = 0; InvertBit = true;
6599     break;
6600   case 2:   // Return the value of the LT bit of CR6.
6601     BitNo = 2; InvertBit = false;
6602     break;
6603   case 3:   // Return the inverted value of the LT bit of CR6.
6604     BitNo = 2; InvertBit = true;
6605     break;
6606   }
6607
6608   // Shift the bit into the low position.
6609   Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags,
6610                       DAG.getConstant(8-(3-BitNo), MVT::i32));
6611   // Isolate the bit.
6612   Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags,
6613                       DAG.getConstant(1, MVT::i32));
6614
6615   // If we are supposed to, toggle the bit.
6616   if (InvertBit)
6617     Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags,
6618                         DAG.getConstant(1, MVT::i32));
6619   return Flags;
6620 }
6621
6622 SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
6623                                                   SelectionDAG &DAG) const {
6624   SDLoc dl(Op);
6625   // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int
6626   // instructions), but for smaller types, we need to first extend up to v2i32
6627   // before doing going farther.
6628   if (Op.getValueType() == MVT::v2i64) {
6629     EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
6630     if (ExtVT != MVT::v2i32) {
6631       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0));
6632       Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op,
6633                        DAG.getValueType(EVT::getVectorVT(*DAG.getContext(),
6634                                         ExtVT.getVectorElementType(), 4)));
6635       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op);
6636       Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op,
6637                        DAG.getValueType(MVT::v2i32));
6638     }
6639
6640     return Op;
6641   }
6642
6643   return SDValue();
6644 }
6645
6646 SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op,
6647                                                    SelectionDAG &DAG) const {
6648   SDLoc dl(Op);
6649   // Create a stack slot that is 16-byte aligned.
6650   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
6651   int FrameIdx = FrameInfo->CreateStackObject(16, 16, false);
6652   EVT PtrVT = getPointerTy();
6653   SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT);
6654
6655   // Store the input value into Value#0 of the stack slot.
6656   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
6657                                Op.getOperand(0), FIdx, MachinePointerInfo(),
6658                                false, false, 0);
6659   // Load it out.
6660   return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(),
6661                      false, false, false, 0);
6662 }
6663
6664 SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
6665   SDLoc dl(Op);
6666   if (Op.getValueType() == MVT::v4i32) {
6667     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
6668
6669     SDValue Zero  = BuildSplatI(  0, 1, MVT::v4i32, DAG, dl);
6670     SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt.
6671
6672     SDValue RHSSwap =   // = vrlw RHS, 16
6673       BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl);
6674
6675     // Shrinkify inputs to v8i16.
6676     LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS);
6677     RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS);
6678     RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap);
6679
6680     // Low parts multiplied together, generating 32-bit results (we ignore the
6681     // top parts).
6682     SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh,
6683                                         LHS, RHS, DAG, dl, MVT::v4i32);
6684
6685     SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm,
6686                                       LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32);
6687     // Shift the high parts up 16 bits.
6688     HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd,
6689                               Neg16, DAG, dl);
6690     return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd);
6691   } else if (Op.getValueType() == MVT::v8i16) {
6692     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
6693
6694     SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl);
6695
6696     return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm,
6697                             LHS, RHS, Zero, DAG, dl);
6698   } else if (Op.getValueType() == MVT::v16i8) {
6699     SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1);
6700     bool isLittleEndian = Subtarget.isLittleEndian();
6701
6702     // Multiply the even 8-bit parts, producing 16-bit sums.
6703     SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub,
6704                                            LHS, RHS, DAG, dl, MVT::v8i16);
6705     EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts);
6706
6707     // Multiply the odd 8-bit parts, producing 16-bit sums.
6708     SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub,
6709                                           LHS, RHS, DAG, dl, MVT::v8i16);
6710     OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts);
6711
6712     // Merge the results together.  Because vmuleub and vmuloub are
6713     // instructions with a big-endian bias, we must reverse the
6714     // element numbering and reverse the meaning of "odd" and "even"
6715     // when generating little endian code.
6716     int Ops[16];
6717     for (unsigned i = 0; i != 8; ++i) {
6718       if (isLittleEndian) {
6719         Ops[i*2  ] = 2*i;
6720         Ops[i*2+1] = 2*i+16;
6721       } else {
6722         Ops[i*2  ] = 2*i+1;
6723         Ops[i*2+1] = 2*i+1+16;
6724       }
6725     }
6726     if (isLittleEndian)
6727       return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops);
6728     else
6729       return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops);
6730   } else {
6731     llvm_unreachable("Unknown mul to lower!");
6732   }
6733 }
6734
6735 /// LowerOperation - Provide custom lowering hooks for some operations.
6736 ///
6737 SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
6738   switch (Op.getOpcode()) {
6739   default: llvm_unreachable("Wasn't expecting to be able to lower this!");
6740   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
6741   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
6742   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
6743   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
6744   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
6745   case ISD::SETCC:              return LowerSETCC(Op, DAG);
6746   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
6747   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
6748   case ISD::VASTART:
6749     return LowerVASTART(Op, DAG, Subtarget);
6750
6751   case ISD::VAARG:
6752     return LowerVAARG(Op, DAG, Subtarget);
6753
6754   case ISD::VACOPY:
6755     return LowerVACOPY(Op, DAG, Subtarget);
6756
6757   case ISD::STACKRESTORE:       return LowerSTACKRESTORE(Op, DAG, Subtarget);
6758   case ISD::DYNAMIC_STACKALLOC:
6759     return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget);
6760
6761   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
6762   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
6763
6764   case ISD::LOAD:               return LowerLOAD(Op, DAG);
6765   case ISD::STORE:              return LowerSTORE(Op, DAG);
6766   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
6767   case ISD::SELECT_CC:          return LowerSELECT_CC(Op, DAG);
6768   case ISD::FP_TO_UINT:
6769   case ISD::FP_TO_SINT:         return LowerFP_TO_INT(Op, DAG,
6770                                                       SDLoc(Op));
6771   case ISD::UINT_TO_FP:
6772   case ISD::SINT_TO_FP:         return LowerINT_TO_FP(Op, DAG);
6773   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
6774
6775   // Lower 64-bit shifts.
6776   case ISD::SHL_PARTS:          return LowerSHL_PARTS(Op, DAG);
6777   case ISD::SRL_PARTS:          return LowerSRL_PARTS(Op, DAG);
6778   case ISD::SRA_PARTS:          return LowerSRA_PARTS(Op, DAG);
6779
6780   // Vector-related lowering.
6781   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
6782   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
6783   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6784   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
6785   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op, DAG);
6786   case ISD::MUL:                return LowerMUL(Op, DAG);
6787
6788   // For counter-based loop handling.
6789   case ISD::INTRINSIC_W_CHAIN:  return SDValue();
6790
6791   // Frame & Return address.
6792   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
6793   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
6794   }
6795 }
6796
6797 void PPCTargetLowering::ReplaceNodeResults(SDNode *N,
6798                                            SmallVectorImpl<SDValue>&Results,
6799                                            SelectionDAG &DAG) const {
6800   SDLoc dl(N);
6801   switch (N->getOpcode()) {
6802   default:
6803     llvm_unreachable("Do not know how to custom type legalize this operation!");
6804   case ISD::READCYCLECOUNTER: {
6805     SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
6806     SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0));
6807
6808     Results.push_back(RTB);
6809     Results.push_back(RTB.getValue(1));
6810     Results.push_back(RTB.getValue(2));
6811     break;
6812   }
6813   case ISD::INTRINSIC_W_CHAIN: {
6814     if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() !=
6815         Intrinsic::ppc_is_decremented_ctr_nonzero)
6816       break;
6817
6818     assert(N->getValueType(0) == MVT::i1 &&
6819            "Unexpected result type for CTR decrement intrinsic");
6820     EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0));
6821     SDVTList VTs = DAG.getVTList(SVT, MVT::Other);
6822     SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0),
6823                                  N->getOperand(1)); 
6824
6825     Results.push_back(NewInt);
6826     Results.push_back(NewInt.getValue(1));
6827     break;
6828   }
6829   case ISD::VAARG: {
6830     if (!Subtarget.isSVR4ABI() || Subtarget.isPPC64())
6831       return;
6832
6833     EVT VT = N->getValueType(0);
6834
6835     if (VT == MVT::i64) {
6836       SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget);
6837
6838       Results.push_back(NewNode);
6839       Results.push_back(NewNode.getValue(1));
6840     }
6841     return;
6842   }
6843   case ISD::FP_ROUND_INREG: {
6844     assert(N->getValueType(0) == MVT::ppcf128);
6845     assert(N->getOperand(0).getValueType() == MVT::ppcf128);
6846     SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
6847                              MVT::f64, N->getOperand(0),
6848                              DAG.getIntPtrConstant(0));
6849     SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl,
6850                              MVT::f64, N->getOperand(0),
6851                              DAG.getIntPtrConstant(1));
6852
6853     // Add the two halves of the long double in round-to-zero mode.
6854     SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi);
6855
6856     // We know the low half is about to be thrown away, so just use something
6857     // convenient.
6858     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128,
6859                                 FPreg, FPreg));
6860     return;
6861   }
6862   case ISD::FP_TO_SINT:
6863     // LowerFP_TO_INT() can only handle f32 and f64.
6864     if (N->getOperand(0).getValueType() == MVT::ppcf128)
6865       return;
6866     Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl));
6867     return;
6868   }
6869 }
6870
6871
6872 //===----------------------------------------------------------------------===//
6873 //  Other Lowering Code
6874 //===----------------------------------------------------------------------===//
6875
6876 static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) {
6877   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
6878   Function *Func = Intrinsic::getDeclaration(M, Id);
6879   return Builder.CreateCall(Func);
6880 }
6881
6882 // The mappings for emitLeading/TrailingFence is taken from
6883 // http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
6884 Instruction* PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
6885                                          AtomicOrdering Ord, bool IsStore,
6886                                          bool IsLoad) const {
6887   if (Ord == SequentiallyConsistent)
6888     return callIntrinsic(Builder, Intrinsic::ppc_sync);
6889   else if (isAtLeastRelease(Ord))
6890     return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
6891   else
6892     return nullptr;
6893 }
6894
6895 Instruction* PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
6896                                           AtomicOrdering Ord, bool IsStore,
6897                                           bool IsLoad) const {
6898   if (IsLoad && isAtLeastAcquire(Ord))
6899     return callIntrinsic(Builder, Intrinsic::ppc_lwsync);
6900   // FIXME: this is too conservative, a dependent branch + isync is enough.
6901   // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and
6902   // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
6903   // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification.
6904   else
6905     return nullptr;
6906 }
6907
6908 MachineBasicBlock *
6909 PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB,
6910                                     bool is64bit, unsigned BinOpcode) const {
6911   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
6912   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
6913
6914   const BasicBlock *LLVM_BB = BB->getBasicBlock();
6915   MachineFunction *F = BB->getParent();
6916   MachineFunction::iterator It = BB;
6917   ++It;
6918
6919   unsigned dest = MI->getOperand(0).getReg();
6920   unsigned ptrA = MI->getOperand(1).getReg();
6921   unsigned ptrB = MI->getOperand(2).getReg();
6922   unsigned incr = MI->getOperand(3).getReg();
6923   DebugLoc dl = MI->getDebugLoc();
6924
6925   MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
6926   MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6927   F->insert(It, loopMBB);
6928   F->insert(It, exitMBB);
6929   exitMBB->splice(exitMBB->begin(), BB,
6930                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
6931   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6932
6933   MachineRegisterInfo &RegInfo = F->getRegInfo();
6934   unsigned TmpReg = (!BinOpcode) ? incr :
6935     RegInfo.createVirtualRegister( is64bit ? &PPC::G8RCRegClass
6936                                            : &PPC::GPRCRegClass);
6937
6938   //  thisMBB:
6939   //   ...
6940   //   fallthrough --> loopMBB
6941   BB->addSuccessor(loopMBB);
6942
6943   //  loopMBB:
6944   //   l[wd]arx dest, ptr
6945   //   add r0, dest, incr
6946   //   st[wd]cx. r0, ptr
6947   //   bne- loopMBB
6948   //   fallthrough --> exitMBB
6949   BB = loopMBB;
6950   BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
6951     .addReg(ptrA).addReg(ptrB);
6952   if (BinOpcode)
6953     BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest);
6954   BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
6955     .addReg(TmpReg).addReg(ptrA).addReg(ptrB);
6956   BuildMI(BB, dl, TII->get(PPC::BCC))
6957     .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
6958   BB->addSuccessor(loopMBB);
6959   BB->addSuccessor(exitMBB);
6960
6961   //  exitMBB:
6962   //   ...
6963   BB = exitMBB;
6964   return BB;
6965 }
6966
6967 MachineBasicBlock *
6968 PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI,
6969                                             MachineBasicBlock *BB,
6970                                             bool is8bit,    // operation
6971                                             unsigned BinOpcode) const {
6972   // This also handles ATOMIC_SWAP, indicated by BinOpcode==0.
6973   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
6974   // In 64 bit mode we have to use 64 bits for addresses, even though the
6975   // lwarx/stwcx are 32 bits.  With the 32-bit atomics we can use address
6976   // registers without caring whether they're 32 or 64, but here we're
6977   // doing actual arithmetic on the addresses.
6978   bool is64bit = Subtarget.isPPC64();
6979   unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
6980
6981   const BasicBlock *LLVM_BB = BB->getBasicBlock();
6982   MachineFunction *F = BB->getParent();
6983   MachineFunction::iterator It = BB;
6984   ++It;
6985
6986   unsigned dest = MI->getOperand(0).getReg();
6987   unsigned ptrA = MI->getOperand(1).getReg();
6988   unsigned ptrB = MI->getOperand(2).getReg();
6989   unsigned incr = MI->getOperand(3).getReg();
6990   DebugLoc dl = MI->getDebugLoc();
6991
6992   MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB);
6993   MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
6994   F->insert(It, loopMBB);
6995   F->insert(It, exitMBB);
6996   exitMBB->splice(exitMBB->begin(), BB,
6997                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
6998   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6999
7000   MachineRegisterInfo &RegInfo = F->getRegInfo();
7001   const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
7002                                           : &PPC::GPRCRegClass;
7003   unsigned PtrReg = RegInfo.createVirtualRegister(RC);
7004   unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
7005   unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
7006   unsigned Incr2Reg = RegInfo.createVirtualRegister(RC);
7007   unsigned MaskReg = RegInfo.createVirtualRegister(RC);
7008   unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
7009   unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
7010   unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
7011   unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC);
7012   unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
7013   unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
7014   unsigned Ptr1Reg;
7015   unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC);
7016
7017   //  thisMBB:
7018   //   ...
7019   //   fallthrough --> loopMBB
7020   BB->addSuccessor(loopMBB);
7021
7022   // The 4-byte load must be aligned, while a char or short may be
7023   // anywhere in the word.  Hence all this nasty bookkeeping code.
7024   //   add ptr1, ptrA, ptrB [copy if ptrA==0]
7025   //   rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
7026   //   xori shift, shift1, 24 [16]
7027   //   rlwinm ptr, ptr1, 0, 0, 29
7028   //   slw incr2, incr, shift
7029   //   li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
7030   //   slw mask, mask2, shift
7031   //  loopMBB:
7032   //   lwarx tmpDest, ptr
7033   //   add tmp, tmpDest, incr2
7034   //   andc tmp2, tmpDest, mask
7035   //   and tmp3, tmp, mask
7036   //   or tmp4, tmp3, tmp2
7037   //   stwcx. tmp4, ptr
7038   //   bne- loopMBB
7039   //   fallthrough --> exitMBB
7040   //   srw dest, tmpDest, shift
7041   if (ptrA != ZeroReg) {
7042     Ptr1Reg = RegInfo.createVirtualRegister(RC);
7043     BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
7044       .addReg(ptrA).addReg(ptrB);
7045   } else {
7046     Ptr1Reg = ptrB;
7047   }
7048   BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
7049       .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
7050   BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
7051       .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
7052   if (is64bit)
7053     BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
7054       .addReg(Ptr1Reg).addImm(0).addImm(61);
7055   else
7056     BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
7057       .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
7058   BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg)
7059       .addReg(incr).addReg(ShiftReg);
7060   if (is8bit)
7061     BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
7062   else {
7063     BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
7064     BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535);
7065   }
7066   BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
7067       .addReg(Mask2Reg).addReg(ShiftReg);
7068
7069   BB = loopMBB;
7070   BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
7071     .addReg(ZeroReg).addReg(PtrReg);
7072   if (BinOpcode)
7073     BuildMI(BB, dl, TII->get(BinOpcode), TmpReg)
7074       .addReg(Incr2Reg).addReg(TmpDestReg);
7075   BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg)
7076     .addReg(TmpDestReg).addReg(MaskReg);
7077   BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg)
7078     .addReg(TmpReg).addReg(MaskReg);
7079   BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg)
7080     .addReg(Tmp3Reg).addReg(Tmp2Reg);
7081   BuildMI(BB, dl, TII->get(PPC::STWCX))
7082     .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg);
7083   BuildMI(BB, dl, TII->get(PPC::BCC))
7084     .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB);
7085   BB->addSuccessor(loopMBB);
7086   BB->addSuccessor(exitMBB);
7087
7088   //  exitMBB:
7089   //   ...
7090   BB = exitMBB;
7091   BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg)
7092     .addReg(ShiftReg);
7093   return BB;
7094 }
7095
7096 llvm::MachineBasicBlock*
7097 PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
7098                                     MachineBasicBlock *MBB) const {
7099   DebugLoc DL = MI->getDebugLoc();
7100   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
7101
7102   MachineFunction *MF = MBB->getParent();
7103   MachineRegisterInfo &MRI = MF->getRegInfo();
7104
7105   const BasicBlock *BB = MBB->getBasicBlock();
7106   MachineFunction::iterator I = MBB;
7107   ++I;
7108
7109   // Memory Reference
7110   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
7111   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
7112
7113   unsigned DstReg = MI->getOperand(0).getReg();
7114   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
7115   assert(RC->hasType(MVT::i32) && "Invalid destination!");
7116   unsigned mainDstReg = MRI.createVirtualRegister(RC);
7117   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
7118
7119   MVT PVT = getPointerTy();
7120   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
7121          "Invalid Pointer Size!");
7122   // For v = setjmp(buf), we generate
7123   //
7124   // thisMBB:
7125   //  SjLjSetup mainMBB
7126   //  bl mainMBB
7127   //  v_restore = 1
7128   //  b sinkMBB
7129   //
7130   // mainMBB:
7131   //  buf[LabelOffset] = LR
7132   //  v_main = 0
7133   //
7134   // sinkMBB:
7135   //  v = phi(main, restore)
7136   //
7137
7138   MachineBasicBlock *thisMBB = MBB;
7139   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
7140   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
7141   MF->insert(I, mainMBB);
7142   MF->insert(I, sinkMBB);
7143
7144   MachineInstrBuilder MIB;
7145
7146   // Transfer the remainder of BB and its successor edges to sinkMBB.
7147   sinkMBB->splice(sinkMBB->begin(), MBB,
7148                   std::next(MachineBasicBlock::iterator(MI)), MBB->end());
7149   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
7150
7151   // Note that the structure of the jmp_buf used here is not compatible
7152   // with that used by libc, and is not designed to be. Specifically, it
7153   // stores only those 'reserved' registers that LLVM does not otherwise
7154   // understand how to spill. Also, by convention, by the time this
7155   // intrinsic is called, Clang has already stored the frame address in the
7156   // first slot of the buffer and stack address in the third. Following the
7157   // X86 target code, we'll store the jump address in the second slot. We also
7158   // need to save the TOC pointer (R2) to handle jumps between shared
7159   // libraries, and that will be stored in the fourth slot. The thread
7160   // identifier (R13) is not affected.
7161
7162   // thisMBB:
7163   const int64_t LabelOffset = 1 * PVT.getStoreSize();
7164   const int64_t TOCOffset   = 3 * PVT.getStoreSize();
7165   const int64_t BPOffset    = 4 * PVT.getStoreSize();
7166
7167   // Prepare IP either in reg.
7168   const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
7169   unsigned LabelReg = MRI.createVirtualRegister(PtrRC);
7170   unsigned BufReg = MI->getOperand(1).getReg();
7171
7172   if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) {
7173     setUsesTOCBasePtr(*MBB->getParent());
7174     MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD))
7175             .addReg(PPC::X2)
7176             .addImm(TOCOffset)
7177             .addReg(BufReg);
7178     MIB.setMemRefs(MMOBegin, MMOEnd);
7179   }
7180
7181   // Naked functions never have a base pointer, and so we use r1. For all
7182   // other functions, this decision must be delayed until during PEI.
7183   unsigned BaseReg;
7184   if (MF->getFunction()->getAttributes().hasAttribute(
7185           AttributeSet::FunctionIndex, Attribute::Naked))
7186     BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1;
7187   else
7188     BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP;
7189
7190   MIB = BuildMI(*thisMBB, MI, DL,
7191                 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW))
7192             .addReg(BaseReg)
7193             .addImm(BPOffset)
7194             .addReg(BufReg);
7195   MIB.setMemRefs(MMOBegin, MMOEnd);
7196
7197   // Setup
7198   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB);
7199   const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo();
7200   MIB.addRegMask(TRI->getNoPreservedMask());
7201
7202   BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1);
7203
7204   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup))
7205           .addMBB(mainMBB);
7206   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB);
7207
7208   thisMBB->addSuccessor(mainMBB, /* weight */ 0);
7209   thisMBB->addSuccessor(sinkMBB, /* weight */ 1);
7210
7211   // mainMBB:
7212   //  mainDstReg = 0
7213   MIB =
7214       BuildMI(mainMBB, DL,
7215               TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg);
7216
7217   // Store IP
7218   if (Subtarget.isPPC64()) {
7219     MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD))
7220             .addReg(LabelReg)
7221             .addImm(LabelOffset)
7222             .addReg(BufReg);
7223   } else {
7224     MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW))
7225             .addReg(LabelReg)
7226             .addImm(LabelOffset)
7227             .addReg(BufReg);
7228   }
7229
7230   MIB.setMemRefs(MMOBegin, MMOEnd);
7231
7232   BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0);
7233   mainMBB->addSuccessor(sinkMBB);
7234
7235   // sinkMBB:
7236   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
7237           TII->get(PPC::PHI), DstReg)
7238     .addReg(mainDstReg).addMBB(mainMBB)
7239     .addReg(restoreDstReg).addMBB(thisMBB);
7240
7241   MI->eraseFromParent();
7242   return sinkMBB;
7243 }
7244
7245 MachineBasicBlock *
7246 PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
7247                                      MachineBasicBlock *MBB) const {
7248   DebugLoc DL = MI->getDebugLoc();
7249   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
7250
7251   MachineFunction *MF = MBB->getParent();
7252   MachineRegisterInfo &MRI = MF->getRegInfo();
7253
7254   // Memory Reference
7255   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
7256   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
7257
7258   MVT PVT = getPointerTy();
7259   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
7260          "Invalid Pointer Size!");
7261
7262   const TargetRegisterClass *RC =
7263     (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass;
7264   unsigned Tmp = MRI.createVirtualRegister(RC);
7265   // Since FP is only updated here but NOT referenced, it's treated as GPR.
7266   unsigned FP  = (PVT == MVT::i64) ? PPC::X31 : PPC::R31;
7267   unsigned SP  = (PVT == MVT::i64) ? PPC::X1 : PPC::R1;
7268   unsigned BP =
7269       (PVT == MVT::i64)
7270           ? PPC::X30
7271           : (Subtarget.isSVR4ABI() &&
7272                      MF->getTarget().getRelocationModel() == Reloc::PIC_
7273                  ? PPC::R29
7274                  : PPC::R30);
7275
7276   MachineInstrBuilder MIB;
7277
7278   const int64_t LabelOffset = 1 * PVT.getStoreSize();
7279   const int64_t SPOffset    = 2 * PVT.getStoreSize();
7280   const int64_t TOCOffset   = 3 * PVT.getStoreSize();
7281   const int64_t BPOffset    = 4 * PVT.getStoreSize();
7282
7283   unsigned BufReg = MI->getOperand(0).getReg();
7284
7285   // Reload FP (the jumped-to function may not have had a
7286   // frame pointer, and if so, then its r31 will be restored
7287   // as necessary).
7288   if (PVT == MVT::i64) {
7289     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP)
7290             .addImm(0)
7291             .addReg(BufReg);
7292   } else {
7293     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP)
7294             .addImm(0)
7295             .addReg(BufReg);
7296   }
7297   MIB.setMemRefs(MMOBegin, MMOEnd);
7298
7299   // Reload IP
7300   if (PVT == MVT::i64) {
7301     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp)
7302             .addImm(LabelOffset)
7303             .addReg(BufReg);
7304   } else {
7305     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp)
7306             .addImm(LabelOffset)
7307             .addReg(BufReg);
7308   }
7309   MIB.setMemRefs(MMOBegin, MMOEnd);
7310
7311   // Reload SP
7312   if (PVT == MVT::i64) {
7313     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP)
7314             .addImm(SPOffset)
7315             .addReg(BufReg);
7316   } else {
7317     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP)
7318             .addImm(SPOffset)
7319             .addReg(BufReg);
7320   }
7321   MIB.setMemRefs(MMOBegin, MMOEnd);
7322
7323   // Reload BP
7324   if (PVT == MVT::i64) {
7325     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP)
7326             .addImm(BPOffset)
7327             .addReg(BufReg);
7328   } else {
7329     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP)
7330             .addImm(BPOffset)
7331             .addReg(BufReg);
7332   }
7333   MIB.setMemRefs(MMOBegin, MMOEnd);
7334
7335   // Reload TOC
7336   if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) {
7337     setUsesTOCBasePtr(*MBB->getParent());
7338     MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2)
7339             .addImm(TOCOffset)
7340             .addReg(BufReg);
7341
7342     MIB.setMemRefs(MMOBegin, MMOEnd);
7343   }
7344
7345   // Jump
7346   BuildMI(*MBB, MI, DL,
7347           TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp);
7348   BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR));
7349
7350   MI->eraseFromParent();
7351   return MBB;
7352 }
7353
7354 MachineBasicBlock *
7355 PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
7356                                                MachineBasicBlock *BB) const {
7357   if (MI->getOpcode() == TargetOpcode::STACKMAP ||
7358       MI->getOpcode() == TargetOpcode::PATCHPOINT) {
7359     if (Subtarget.isPPC64() && Subtarget.isSVR4ABI() &&
7360         MI->getOpcode() == TargetOpcode::PATCHPOINT) {
7361       // Call lowering should have added an r2 operand to indicate a dependence
7362       // on the TOC base pointer value. It can't however, because there is no
7363       // way to mark the dependence as implicit there, and so the stackmap code
7364       // will confuse it with a regular operand. Instead, add the dependence
7365       // here.
7366       setUsesTOCBasePtr(*BB->getParent());
7367       MI->addOperand(MachineOperand::CreateReg(PPC::X2, false, true));
7368     }
7369
7370     return emitPatchPoint(MI, BB);
7371   }
7372
7373   if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 ||
7374       MI->getOpcode() == PPC::EH_SjLj_SetJmp64) {
7375     return emitEHSjLjSetJmp(MI, BB);
7376   } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 ||
7377              MI->getOpcode() == PPC::EH_SjLj_LongJmp64) {
7378     return emitEHSjLjLongJmp(MI, BB);
7379   }
7380
7381   const TargetInstrInfo *TII = Subtarget.getInstrInfo();
7382
7383   // To "insert" these instructions we actually have to insert their
7384   // control-flow patterns.
7385   const BasicBlock *LLVM_BB = BB->getBasicBlock();
7386   MachineFunction::iterator It = BB;
7387   ++It;
7388
7389   MachineFunction *F = BB->getParent();
7390
7391   if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7392                               MI->getOpcode() == PPC::SELECT_CC_I8 ||
7393                               MI->getOpcode() == PPC::SELECT_I4 ||
7394                               MI->getOpcode() == PPC::SELECT_I8)) {
7395     SmallVector<MachineOperand, 2> Cond;
7396     if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7397         MI->getOpcode() == PPC::SELECT_CC_I8)
7398       Cond.push_back(MI->getOperand(4));
7399     else
7400       Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET));
7401     Cond.push_back(MI->getOperand(1));
7402
7403     DebugLoc dl = MI->getDebugLoc();
7404     TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(),
7405                       Cond, MI->getOperand(2).getReg(),
7406                       MI->getOperand(3).getReg());
7407   } else if (MI->getOpcode() == PPC::SELECT_CC_I4 ||
7408              MI->getOpcode() == PPC::SELECT_CC_I8 ||
7409              MI->getOpcode() == PPC::SELECT_CC_F4 ||
7410              MI->getOpcode() == PPC::SELECT_CC_F8 ||
7411              MI->getOpcode() == PPC::SELECT_CC_VRRC ||
7412              MI->getOpcode() == PPC::SELECT_CC_VSFRC ||
7413              MI->getOpcode() == PPC::SELECT_CC_VSRC ||
7414              MI->getOpcode() == PPC::SELECT_I4 ||
7415              MI->getOpcode() == PPC::SELECT_I8 ||
7416              MI->getOpcode() == PPC::SELECT_F4 ||
7417              MI->getOpcode() == PPC::SELECT_F8 ||
7418              MI->getOpcode() == PPC::SELECT_VRRC ||
7419              MI->getOpcode() == PPC::SELECT_VSFRC ||
7420              MI->getOpcode() == PPC::SELECT_VSRC) {
7421     // The incoming instruction knows the destination vreg to set, the
7422     // condition code register to branch on, the true/false values to
7423     // select between, and a branch opcode to use.
7424
7425     //  thisMBB:
7426     //  ...
7427     //   TrueVal = ...
7428     //   cmpTY ccX, r1, r2
7429     //   bCC copy1MBB
7430     //   fallthrough --> copy0MBB
7431     MachineBasicBlock *thisMBB = BB;
7432     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7433     MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
7434     DebugLoc dl = MI->getDebugLoc();
7435     F->insert(It, copy0MBB);
7436     F->insert(It, sinkMBB);
7437
7438     // Transfer the remainder of BB and its successor edges to sinkMBB.
7439     sinkMBB->splice(sinkMBB->begin(), BB,
7440                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
7441     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7442
7443     // Next, add the true and fallthrough blocks as its successors.
7444     BB->addSuccessor(copy0MBB);
7445     BB->addSuccessor(sinkMBB);
7446
7447     if (MI->getOpcode() == PPC::SELECT_I4 ||
7448         MI->getOpcode() == PPC::SELECT_I8 ||
7449         MI->getOpcode() == PPC::SELECT_F4 ||
7450         MI->getOpcode() == PPC::SELECT_F8 ||
7451         MI->getOpcode() == PPC::SELECT_VRRC ||
7452         MI->getOpcode() == PPC::SELECT_VSFRC ||
7453         MI->getOpcode() == PPC::SELECT_VSRC) {
7454       BuildMI(BB, dl, TII->get(PPC::BC))
7455         .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7456     } else {
7457       unsigned SelectPred = MI->getOperand(4).getImm();
7458       BuildMI(BB, dl, TII->get(PPC::BCC))
7459         .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB);
7460     }
7461
7462     //  copy0MBB:
7463     //   %FalseValue = ...
7464     //   # fallthrough to sinkMBB
7465     BB = copy0MBB;
7466
7467     // Update machine-CFG edges
7468     BB->addSuccessor(sinkMBB);
7469
7470     //  sinkMBB:
7471     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7472     //  ...
7473     BB = sinkMBB;
7474     BuildMI(*BB, BB->begin(), dl,
7475             TII->get(PPC::PHI), MI->getOperand(0).getReg())
7476       .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB)
7477       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7478   } else if (MI->getOpcode() == PPC::ReadTB) {
7479     // To read the 64-bit time-base register on a 32-bit target, we read the
7480     // two halves. Should the counter have wrapped while it was being read, we
7481     // need to try again.
7482     // ...
7483     // readLoop:
7484     // mfspr Rx,TBU # load from TBU
7485     // mfspr Ry,TB  # load from TB
7486     // mfspr Rz,TBU # load from TBU
7487     // cmpw crX,Rx,Rz # check if â€˜old’=’new’
7488     // bne readLoop   # branch if they're not equal
7489     // ...
7490
7491     MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB);
7492     MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
7493     DebugLoc dl = MI->getDebugLoc();
7494     F->insert(It, readMBB);
7495     F->insert(It, sinkMBB);
7496
7497     // Transfer the remainder of BB and its successor edges to sinkMBB.
7498     sinkMBB->splice(sinkMBB->begin(), BB,
7499                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
7500     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7501
7502     BB->addSuccessor(readMBB);
7503     BB = readMBB;
7504
7505     MachineRegisterInfo &RegInfo = F->getRegInfo();
7506     unsigned ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass);
7507     unsigned LoReg = MI->getOperand(0).getReg();
7508     unsigned HiReg = MI->getOperand(1).getReg();
7509
7510     BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269);
7511     BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268);
7512     BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269);
7513
7514     unsigned CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass);
7515
7516     BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg)
7517       .addReg(HiReg).addReg(ReadAgainReg);
7518     BuildMI(BB, dl, TII->get(PPC::BCC))
7519       .addImm(PPC::PRED_NE).addReg(CmpReg).addMBB(readMBB);
7520
7521     BB->addSuccessor(readMBB);
7522     BB->addSuccessor(sinkMBB);
7523   }
7524   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8)
7525     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4);
7526   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16)
7527     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4);
7528   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32)
7529     BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4);
7530   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64)
7531     BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8);
7532
7533   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8)
7534     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND);
7535   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16)
7536     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND);
7537   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32)
7538     BB = EmitAtomicBinary(MI, BB, false, PPC::AND);
7539   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64)
7540     BB = EmitAtomicBinary(MI, BB, true, PPC::AND8);
7541
7542   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8)
7543     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR);
7544   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16)
7545     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR);
7546   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32)
7547     BB = EmitAtomicBinary(MI, BB, false, PPC::OR);
7548   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64)
7549     BB = EmitAtomicBinary(MI, BB, true, PPC::OR8);
7550
7551   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8)
7552     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR);
7553   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16)
7554     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR);
7555   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32)
7556     BB = EmitAtomicBinary(MI, BB, false, PPC::XOR);
7557   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64)
7558     BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8);
7559
7560   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8)
7561     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND);
7562   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16)
7563     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND);
7564   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32)
7565     BB = EmitAtomicBinary(MI, BB, false, PPC::NAND);
7566   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64)
7567     BB = EmitAtomicBinary(MI, BB, true, PPC::NAND8);
7568
7569   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8)
7570     BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF);
7571   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16)
7572     BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF);
7573   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32)
7574     BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF);
7575   else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64)
7576     BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8);
7577
7578   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8)
7579     BB = EmitPartwordAtomicBinary(MI, BB, true, 0);
7580   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16)
7581     BB = EmitPartwordAtomicBinary(MI, BB, false, 0);
7582   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32)
7583     BB = EmitAtomicBinary(MI, BB, false, 0);
7584   else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64)
7585     BB = EmitAtomicBinary(MI, BB, true, 0);
7586
7587   else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 ||
7588            MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) {
7589     bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64;
7590
7591     unsigned dest   = MI->getOperand(0).getReg();
7592     unsigned ptrA   = MI->getOperand(1).getReg();
7593     unsigned ptrB   = MI->getOperand(2).getReg();
7594     unsigned oldval = MI->getOperand(3).getReg();
7595     unsigned newval = MI->getOperand(4).getReg();
7596     DebugLoc dl     = MI->getDebugLoc();
7597
7598     MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7599     MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7600     MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
7601     MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
7602     F->insert(It, loop1MBB);
7603     F->insert(It, loop2MBB);
7604     F->insert(It, midMBB);
7605     F->insert(It, exitMBB);
7606     exitMBB->splice(exitMBB->begin(), BB,
7607                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
7608     exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7609
7610     //  thisMBB:
7611     //   ...
7612     //   fallthrough --> loopMBB
7613     BB->addSuccessor(loop1MBB);
7614
7615     // loop1MBB:
7616     //   l[wd]arx dest, ptr
7617     //   cmp[wd] dest, oldval
7618     //   bne- midMBB
7619     // loop2MBB:
7620     //   st[wd]cx. newval, ptr
7621     //   bne- loopMBB
7622     //   b exitBB
7623     // midMBB:
7624     //   st[wd]cx. dest, ptr
7625     // exitBB:
7626     BB = loop1MBB;
7627     BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest)
7628       .addReg(ptrA).addReg(ptrB);
7629     BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0)
7630       .addReg(oldval).addReg(dest);
7631     BuildMI(BB, dl, TII->get(PPC::BCC))
7632       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7633     BB->addSuccessor(loop2MBB);
7634     BB->addSuccessor(midMBB);
7635
7636     BB = loop2MBB;
7637     BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
7638       .addReg(newval).addReg(ptrA).addReg(ptrB);
7639     BuildMI(BB, dl, TII->get(PPC::BCC))
7640       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
7641     BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
7642     BB->addSuccessor(loop1MBB);
7643     BB->addSuccessor(exitMBB);
7644
7645     BB = midMBB;
7646     BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX))
7647       .addReg(dest).addReg(ptrA).addReg(ptrB);
7648     BB->addSuccessor(exitMBB);
7649
7650     //  exitMBB:
7651     //   ...
7652     BB = exitMBB;
7653   } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 ||
7654              MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) {
7655     // We must use 64-bit registers for addresses when targeting 64-bit,
7656     // since we're actually doing arithmetic on them.  Other registers
7657     // can be 32-bit.
7658     bool is64bit = Subtarget.isPPC64();
7659     bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8;
7660
7661     unsigned dest   = MI->getOperand(0).getReg();
7662     unsigned ptrA   = MI->getOperand(1).getReg();
7663     unsigned ptrB   = MI->getOperand(2).getReg();
7664     unsigned oldval = MI->getOperand(3).getReg();
7665     unsigned newval = MI->getOperand(4).getReg();
7666     DebugLoc dl     = MI->getDebugLoc();
7667
7668     MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB);
7669     MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB);
7670     MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB);
7671     MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB);
7672     F->insert(It, loop1MBB);
7673     F->insert(It, loop2MBB);
7674     F->insert(It, midMBB);
7675     F->insert(It, exitMBB);
7676     exitMBB->splice(exitMBB->begin(), BB,
7677                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
7678     exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7679
7680     MachineRegisterInfo &RegInfo = F->getRegInfo();
7681     const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass
7682                                             : &PPC::GPRCRegClass;
7683     unsigned PtrReg = RegInfo.createVirtualRegister(RC);
7684     unsigned Shift1Reg = RegInfo.createVirtualRegister(RC);
7685     unsigned ShiftReg = RegInfo.createVirtualRegister(RC);
7686     unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC);
7687     unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC);
7688     unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC);
7689     unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC);
7690     unsigned MaskReg = RegInfo.createVirtualRegister(RC);
7691     unsigned Mask2Reg = RegInfo.createVirtualRegister(RC);
7692     unsigned Mask3Reg = RegInfo.createVirtualRegister(RC);
7693     unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC);
7694     unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC);
7695     unsigned TmpDestReg = RegInfo.createVirtualRegister(RC);
7696     unsigned Ptr1Reg;
7697     unsigned TmpReg = RegInfo.createVirtualRegister(RC);
7698     unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO;
7699     //  thisMBB:
7700     //   ...
7701     //   fallthrough --> loopMBB
7702     BB->addSuccessor(loop1MBB);
7703
7704     // The 4-byte load must be aligned, while a char or short may be
7705     // anywhere in the word.  Hence all this nasty bookkeeping code.
7706     //   add ptr1, ptrA, ptrB [copy if ptrA==0]
7707     //   rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27]
7708     //   xori shift, shift1, 24 [16]
7709     //   rlwinm ptr, ptr1, 0, 0, 29
7710     //   slw newval2, newval, shift
7711     //   slw oldval2, oldval,shift
7712     //   li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535]
7713     //   slw mask, mask2, shift
7714     //   and newval3, newval2, mask
7715     //   and oldval3, oldval2, mask
7716     // loop1MBB:
7717     //   lwarx tmpDest, ptr
7718     //   and tmp, tmpDest, mask
7719     //   cmpw tmp, oldval3
7720     //   bne- midMBB
7721     // loop2MBB:
7722     //   andc tmp2, tmpDest, mask
7723     //   or tmp4, tmp2, newval3
7724     //   stwcx. tmp4, ptr
7725     //   bne- loop1MBB
7726     //   b exitBB
7727     // midMBB:
7728     //   stwcx. tmpDest, ptr
7729     // exitBB:
7730     //   srw dest, tmpDest, shift
7731     if (ptrA != ZeroReg) {
7732       Ptr1Reg = RegInfo.createVirtualRegister(RC);
7733       BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg)
7734         .addReg(ptrA).addReg(ptrB);
7735     } else {
7736       Ptr1Reg = ptrB;
7737     }
7738     BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
7739         .addImm(3).addImm(27).addImm(is8bit ? 28 : 27);
7740     BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg)
7741         .addReg(Shift1Reg).addImm(is8bit ? 24 : 16);
7742     if (is64bit)
7743       BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg)
7744         .addReg(Ptr1Reg).addImm(0).addImm(61);
7745     else
7746       BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
7747         .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29);
7748     BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg)
7749         .addReg(newval).addReg(ShiftReg);
7750     BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg)
7751         .addReg(oldval).addReg(ShiftReg);
7752     if (is8bit)
7753       BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255);
7754     else {
7755       BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0);
7756       BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg)
7757         .addReg(Mask3Reg).addImm(65535);
7758     }
7759     BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg)
7760         .addReg(Mask2Reg).addReg(ShiftReg);
7761     BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg)
7762         .addReg(NewVal2Reg).addReg(MaskReg);
7763     BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg)
7764         .addReg(OldVal2Reg).addReg(MaskReg);
7765
7766     BB = loop1MBB;
7767     BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg)
7768         .addReg(ZeroReg).addReg(PtrReg);
7769     BuildMI(BB, dl, TII->get(PPC::AND),TmpReg)
7770         .addReg(TmpDestReg).addReg(MaskReg);
7771     BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0)
7772         .addReg(TmpReg).addReg(OldVal3Reg);
7773     BuildMI(BB, dl, TII->get(PPC::BCC))
7774         .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB);
7775     BB->addSuccessor(loop2MBB);
7776     BB->addSuccessor(midMBB);
7777
7778     BB = loop2MBB;
7779     BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg)
7780         .addReg(TmpDestReg).addReg(MaskReg);
7781     BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg)
7782         .addReg(Tmp2Reg).addReg(NewVal3Reg);
7783     BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg)
7784         .addReg(ZeroReg).addReg(PtrReg);
7785     BuildMI(BB, dl, TII->get(PPC::BCC))
7786       .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB);
7787     BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB);
7788     BB->addSuccessor(loop1MBB);
7789     BB->addSuccessor(exitMBB);
7790
7791     BB = midMBB;
7792     BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg)
7793       .addReg(ZeroReg).addReg(PtrReg);
7794     BB->addSuccessor(exitMBB);
7795
7796     //  exitMBB:
7797     //   ...
7798     BB = exitMBB;
7799     BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg)
7800       .addReg(ShiftReg);
7801   } else if (MI->getOpcode() == PPC::FADDrtz) {
7802     // This pseudo performs an FADD with rounding mode temporarily forced
7803     // to round-to-zero.  We emit this via custom inserter since the FPSCR
7804     // is not modeled at the SelectionDAG level.
7805     unsigned Dest = MI->getOperand(0).getReg();
7806     unsigned Src1 = MI->getOperand(1).getReg();
7807     unsigned Src2 = MI->getOperand(2).getReg();
7808     DebugLoc dl   = MI->getDebugLoc();
7809
7810     MachineRegisterInfo &RegInfo = F->getRegInfo();
7811     unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass);
7812
7813     // Save FPSCR value.
7814     BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg);
7815
7816     // Set rounding mode to round-to-zero.
7817     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31);
7818     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30);
7819
7820     // Perform addition.
7821     BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2);
7822
7823     // Restore FPSCR value.
7824     BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg);
7825   } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7826              MI->getOpcode() == PPC::ANDIo_1_GT_BIT ||
7827              MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7828              MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) {
7829     unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 ||
7830                        MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ?
7831                       PPC::ANDIo8 : PPC::ANDIo;
7832     bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT ||
7833                  MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8);
7834
7835     MachineRegisterInfo &RegInfo = F->getRegInfo();
7836     unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ?
7837                                                   &PPC::GPRCRegClass :
7838                                                   &PPC::G8RCRegClass);
7839
7840     DebugLoc dl   = MI->getDebugLoc();
7841     BuildMI(*BB, MI, dl, TII->get(Opcode), Dest)
7842       .addReg(MI->getOperand(1).getReg()).addImm(1);
7843     BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY),
7844             MI->getOperand(0).getReg())
7845       .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT);
7846   } else {
7847     llvm_unreachable("Unexpected instr type to insert");
7848   }
7849
7850   MI->eraseFromParent();   // The pseudo instruction is gone now.
7851   return BB;
7852 }
7853
7854 //===----------------------------------------------------------------------===//
7855 // Target Optimization Hooks
7856 //===----------------------------------------------------------------------===//
7857
7858 SDValue PPCTargetLowering::getRsqrtEstimate(SDValue Operand,
7859                                             DAGCombinerInfo &DCI,
7860                                             unsigned &RefinementSteps,
7861                                             bool &UseOneConstNR) const {
7862   EVT VT = Operand.getValueType();
7863   if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) ||
7864       (VT == MVT::f64 && Subtarget.hasFRSQRTE()) ||
7865       (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7866       (VT == MVT::v2f64 && Subtarget.hasVSX())) {
7867     // Convergence is quadratic, so we essentially double the number of digits
7868     // correct after every iteration. For both FRE and FRSQRTE, the minimum
7869     // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
7870     // 2^-14. IEEE float has 23 digits and double has 52 digits.
7871     RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
7872     if (VT.getScalarType() == MVT::f64)
7873       ++RefinementSteps;
7874     UseOneConstNR = true;
7875     return DCI.DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand);
7876   }
7877   return SDValue();
7878 }
7879
7880 SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand,
7881                                             DAGCombinerInfo &DCI,
7882                                             unsigned &RefinementSteps) const {
7883   EVT VT = Operand.getValueType();
7884   if ((VT == MVT::f32 && Subtarget.hasFRES()) ||
7885       (VT == MVT::f64 && Subtarget.hasFRE()) ||
7886       (VT == MVT::v4f32 && Subtarget.hasAltivec()) ||
7887       (VT == MVT::v2f64 && Subtarget.hasVSX())) {
7888     // Convergence is quadratic, so we essentially double the number of digits
7889     // correct after every iteration. For both FRE and FRSQRTE, the minimum
7890     // architected relative accuracy is 2^-5. When hasRecipPrec(), this is
7891     // 2^-14. IEEE float has 23 digits and double has 52 digits.
7892     RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3;
7893     if (VT.getScalarType() == MVT::f64)
7894       ++RefinementSteps;
7895     return DCI.DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand);
7896   }
7897   return SDValue();
7898 }
7899
7900 bool PPCTargetLowering::combineRepeatedFPDivisors(unsigned NumUsers) const {
7901   // Note: This functionality is used only when unsafe-fp-math is enabled, and
7902   // on cores with reciprocal estimates (which are used when unsafe-fp-math is
7903   // enabled for division), this functionality is redundant with the default
7904   // combiner logic (once the division -> reciprocal/multiply transformation
7905   // has taken place). As a result, this matters more for older cores than for
7906   // newer ones.
7907
7908   // Combine multiple FDIVs with the same divisor into multiple FMULs by the
7909   // reciprocal if there are two or more FDIVs (for embedded cores with only
7910   // one FP pipeline) for three or more FDIVs (for generic OOO cores).
7911   switch (Subtarget.getDarwinDirective()) {
7912   default:
7913     return NumUsers > 2;
7914   case PPC::DIR_440:
7915   case PPC::DIR_A2:
7916   case PPC::DIR_E500mc:
7917   case PPC::DIR_E5500:
7918     return NumUsers > 1;
7919   }
7920 }
7921
7922 static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base,
7923                             unsigned Bytes, int Dist,
7924                             SelectionDAG &DAG) {
7925   if (VT.getSizeInBits() / 8 != Bytes)
7926     return false;
7927
7928   SDValue BaseLoc = Base->getBasePtr();
7929   if (Loc.getOpcode() == ISD::FrameIndex) {
7930     if (BaseLoc.getOpcode() != ISD::FrameIndex)
7931       return false;
7932     const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7933     int FI  = cast<FrameIndexSDNode>(Loc)->getIndex();
7934     int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
7935     int FS  = MFI->getObjectSize(FI);
7936     int BFS = MFI->getObjectSize(BFI);
7937     if (FS != BFS || FS != (int)Bytes) return false;
7938     return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
7939   }
7940
7941   // Handle X+C
7942   if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc &&
7943       cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes)
7944     return true;
7945
7946   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7947   const GlobalValue *GV1 = nullptr;
7948   const GlobalValue *GV2 = nullptr;
7949   int64_t Offset1 = 0;
7950   int64_t Offset2 = 0;
7951   bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1);
7952   bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
7953   if (isGA1 && isGA2 && GV1 == GV2)
7954     return Offset1 == (Offset2 + Dist*Bytes);
7955   return false;
7956 }
7957
7958 // Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does
7959 // not enforce equality of the chain operands.
7960 static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base,
7961                             unsigned Bytes, int Dist,
7962                             SelectionDAG &DAG) {
7963   if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) {
7964     EVT VT = LS->getMemoryVT();
7965     SDValue Loc = LS->getBasePtr();
7966     return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG);
7967   }
7968
7969   if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
7970     EVT VT;
7971     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7972     default: return false;
7973     case Intrinsic::ppc_altivec_lvx:
7974     case Intrinsic::ppc_altivec_lvxl:
7975     case Intrinsic::ppc_vsx_lxvw4x:
7976       VT = MVT::v4i32;
7977       break;
7978     case Intrinsic::ppc_vsx_lxvd2x:
7979       VT = MVT::v2f64;
7980       break;
7981     case Intrinsic::ppc_altivec_lvebx:
7982       VT = MVT::i8;
7983       break;
7984     case Intrinsic::ppc_altivec_lvehx:
7985       VT = MVT::i16;
7986       break;
7987     case Intrinsic::ppc_altivec_lvewx:
7988       VT = MVT::i32;
7989       break;
7990     }
7991
7992     return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG);
7993   }
7994
7995   if (N->getOpcode() == ISD::INTRINSIC_VOID) {
7996     EVT VT;
7997     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7998     default: return false;
7999     case Intrinsic::ppc_altivec_stvx:
8000     case Intrinsic::ppc_altivec_stvxl:
8001     case Intrinsic::ppc_vsx_stxvw4x:
8002       VT = MVT::v4i32;
8003       break;
8004     case Intrinsic::ppc_vsx_stxvd2x:
8005       VT = MVT::v2f64;
8006       break;
8007     case Intrinsic::ppc_altivec_stvebx:
8008       VT = MVT::i8;
8009       break;
8010     case Intrinsic::ppc_altivec_stvehx:
8011       VT = MVT::i16;
8012       break;
8013     case Intrinsic::ppc_altivec_stvewx:
8014       VT = MVT::i32;
8015       break;
8016     }
8017
8018     return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG);
8019   }
8020
8021   return false;
8022 }
8023
8024 // Return true is there is a nearyby consecutive load to the one provided
8025 // (regardless of alignment). We search up and down the chain, looking though
8026 // token factors and other loads (but nothing else). As a result, a true result
8027 // indicates that it is safe to create a new consecutive load adjacent to the
8028 // load provided.
8029 static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) {
8030   SDValue Chain = LD->getChain();
8031   EVT VT = LD->getMemoryVT();
8032
8033   SmallSet<SDNode *, 16> LoadRoots;
8034   SmallVector<SDNode *, 8> Queue(1, Chain.getNode());
8035   SmallSet<SDNode *, 16> Visited;
8036
8037   // First, search up the chain, branching to follow all token-factor operands.
8038   // If we find a consecutive load, then we're done, otherwise, record all
8039   // nodes just above the top-level loads and token factors.
8040   while (!Queue.empty()) {
8041     SDNode *ChainNext = Queue.pop_back_val();
8042     if (!Visited.insert(ChainNext).second)
8043       continue;
8044
8045     if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) {
8046       if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
8047         return true;
8048
8049       if (!Visited.count(ChainLD->getChain().getNode()))
8050         Queue.push_back(ChainLD->getChain().getNode());
8051     } else if (ChainNext->getOpcode() == ISD::TokenFactor) {
8052       for (const SDUse &O : ChainNext->ops())
8053         if (!Visited.count(O.getNode()))
8054           Queue.push_back(O.getNode());
8055     } else
8056       LoadRoots.insert(ChainNext);
8057   }
8058
8059   // Second, search down the chain, starting from the top-level nodes recorded
8060   // in the first phase. These top-level nodes are the nodes just above all
8061   // loads and token factors. Starting with their uses, recursively look though
8062   // all loads (just the chain uses) and token factors to find a consecutive
8063   // load.
8064   Visited.clear();
8065   Queue.clear();
8066
8067   for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(),
8068        IE = LoadRoots.end(); I != IE; ++I) {
8069     Queue.push_back(*I);
8070        
8071     while (!Queue.empty()) {
8072       SDNode *LoadRoot = Queue.pop_back_val();
8073       if (!Visited.insert(LoadRoot).second)
8074         continue;
8075
8076       if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot))
8077         if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG))
8078           return true;
8079
8080       for (SDNode::use_iterator UI = LoadRoot->use_begin(),
8081            UE = LoadRoot->use_end(); UI != UE; ++UI)
8082         if (((isa<MemSDNode>(*UI) &&
8083             cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) ||
8084             UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI))
8085           Queue.push_back(*UI);
8086     }
8087   }
8088
8089   return false;
8090 }
8091
8092 SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N,
8093                                                   DAGCombinerInfo &DCI) const {
8094   SelectionDAG &DAG = DCI.DAG;
8095   SDLoc dl(N);
8096
8097   assert(Subtarget.useCRBits() && "Expecting to be tracking CR bits");
8098   // If we're tracking CR bits, we need to be careful that we don't have:
8099   //   trunc(binary-ops(zext(x), zext(y)))
8100   // or
8101   //   trunc(binary-ops(binary-ops(zext(x), zext(y)), ...)
8102   // such that we're unnecessarily moving things into GPRs when it would be
8103   // better to keep them in CR bits.
8104
8105   // Note that trunc here can be an actual i1 trunc, or can be the effective
8106   // truncation that comes from a setcc or select_cc.
8107   if (N->getOpcode() == ISD::TRUNCATE &&
8108       N->getValueType(0) != MVT::i1)
8109     return SDValue();
8110
8111   if (N->getOperand(0).getValueType() != MVT::i32 &&
8112       N->getOperand(0).getValueType() != MVT::i64)
8113     return SDValue();
8114
8115   if (N->getOpcode() == ISD::SETCC ||
8116       N->getOpcode() == ISD::SELECT_CC) {
8117     // If we're looking at a comparison, then we need to make sure that the
8118     // high bits (all except for the first) don't matter the result.
8119     ISD::CondCode CC =
8120       cast<CondCodeSDNode>(N->getOperand(
8121         N->getOpcode() == ISD::SETCC ? 2 : 4))->get();
8122     unsigned OpBits = N->getOperand(0).getValueSizeInBits();
8123
8124     if (ISD::isSignedIntSetCC(CC)) {
8125       if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits ||
8126           DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits)
8127         return SDValue();
8128     } else if (ISD::isUnsignedIntSetCC(CC)) {
8129       if (!DAG.MaskedValueIsZero(N->getOperand(0),
8130                                  APInt::getHighBitsSet(OpBits, OpBits-1)) ||
8131           !DAG.MaskedValueIsZero(N->getOperand(1),
8132                                  APInt::getHighBitsSet(OpBits, OpBits-1)))
8133         return SDValue();
8134     } else {
8135       // This is neither a signed nor an unsigned comparison, just make sure
8136       // that the high bits are equal.
8137       APInt Op1Zero, Op1One;
8138       APInt Op2Zero, Op2One;
8139       DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One);
8140       DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One);
8141
8142       // We don't really care about what is known about the first bit (if
8143       // anything), so clear it in all masks prior to comparing them.
8144       Op1Zero.clearBit(0); Op1One.clearBit(0);
8145       Op2Zero.clearBit(0); Op2One.clearBit(0);
8146
8147       if (Op1Zero != Op2Zero || Op1One != Op2One)
8148         return SDValue();
8149     }
8150   }
8151
8152   // We now know that the higher-order bits are irrelevant, we just need to
8153   // make sure that all of the intermediate operations are bit operations, and
8154   // all inputs are extensions.
8155   if (N->getOperand(0).getOpcode() != ISD::AND &&
8156       N->getOperand(0).getOpcode() != ISD::OR  &&
8157       N->getOperand(0).getOpcode() != ISD::XOR &&
8158       N->getOperand(0).getOpcode() != ISD::SELECT &&
8159       N->getOperand(0).getOpcode() != ISD::SELECT_CC &&
8160       N->getOperand(0).getOpcode() != ISD::TRUNCATE &&
8161       N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND &&
8162       N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND &&
8163       N->getOperand(0).getOpcode() != ISD::ANY_EXTEND)
8164     return SDValue();
8165
8166   if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) &&
8167       N->getOperand(1).getOpcode() != ISD::AND &&
8168       N->getOperand(1).getOpcode() != ISD::OR  &&
8169       N->getOperand(1).getOpcode() != ISD::XOR &&
8170       N->getOperand(1).getOpcode() != ISD::SELECT &&
8171       N->getOperand(1).getOpcode() != ISD::SELECT_CC &&
8172       N->getOperand(1).getOpcode() != ISD::TRUNCATE &&
8173       N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND &&
8174       N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND &&
8175       N->getOperand(1).getOpcode() != ISD::ANY_EXTEND)
8176     return SDValue();
8177
8178   SmallVector<SDValue, 4> Inputs;
8179   SmallVector<SDValue, 8> BinOps, PromOps;
8180   SmallPtrSet<SDNode *, 16> Visited;
8181
8182   for (unsigned i = 0; i < 2; ++i) {
8183     if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8184           N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8185           N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
8186           N->getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
8187         isa<ConstantSDNode>(N->getOperand(i)))
8188       Inputs.push_back(N->getOperand(i));
8189     else
8190       BinOps.push_back(N->getOperand(i));
8191
8192     if (N->getOpcode() == ISD::TRUNCATE)
8193       break;
8194   }
8195
8196   // Visit all inputs, collect all binary operations (and, or, xor and
8197   // select) that are all fed by extensions. 
8198   while (!BinOps.empty()) {
8199     SDValue BinOp = BinOps.back();
8200     BinOps.pop_back();
8201
8202     if (!Visited.insert(BinOp.getNode()).second)
8203       continue;
8204
8205     PromOps.push_back(BinOp);
8206
8207     for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
8208       // The condition of the select is not promoted.
8209       if (BinOp.getOpcode() == ISD::SELECT && i == 0)
8210         continue;
8211       if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
8212         continue;
8213
8214       if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8215             BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8216             BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) &&
8217            BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) ||
8218           isa<ConstantSDNode>(BinOp.getOperand(i))) {
8219         Inputs.push_back(BinOp.getOperand(i)); 
8220       } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
8221                  BinOp.getOperand(i).getOpcode() == ISD::OR  ||
8222                  BinOp.getOperand(i).getOpcode() == ISD::XOR ||
8223                  BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
8224                  BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC ||
8225                  BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
8226                  BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND ||
8227                  BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND ||
8228                  BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) {
8229         BinOps.push_back(BinOp.getOperand(i));
8230       } else {
8231         // We have an input that is not an extension or another binary
8232         // operation; we'll abort this transformation.
8233         return SDValue();
8234       }
8235     }
8236   }
8237
8238   // Make sure that this is a self-contained cluster of operations (which
8239   // is not quite the same thing as saying that everything has only one
8240   // use).
8241   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8242     if (isa<ConstantSDNode>(Inputs[i]))
8243       continue;
8244
8245     for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
8246                               UE = Inputs[i].getNode()->use_end();
8247          UI != UE; ++UI) {
8248       SDNode *User = *UI;
8249       if (User != N && !Visited.count(User))
8250         return SDValue();
8251
8252       // Make sure that we're not going to promote the non-output-value
8253       // operand(s) or SELECT or SELECT_CC.
8254       // FIXME: Although we could sometimes handle this, and it does occur in
8255       // practice that one of the condition inputs to the select is also one of
8256       // the outputs, we currently can't deal with this.
8257       if (User->getOpcode() == ISD::SELECT) {
8258         if (User->getOperand(0) == Inputs[i])
8259           return SDValue();
8260       } else if (User->getOpcode() == ISD::SELECT_CC) {
8261         if (User->getOperand(0) == Inputs[i] ||
8262             User->getOperand(1) == Inputs[i])
8263           return SDValue();
8264       }
8265     }
8266   }
8267
8268   for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
8269     for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
8270                               UE = PromOps[i].getNode()->use_end();
8271          UI != UE; ++UI) {
8272       SDNode *User = *UI;
8273       if (User != N && !Visited.count(User))
8274         return SDValue();
8275
8276       // Make sure that we're not going to promote the non-output-value
8277       // operand(s) or SELECT or SELECT_CC.
8278       // FIXME: Although we could sometimes handle this, and it does occur in
8279       // practice that one of the condition inputs to the select is also one of
8280       // the outputs, we currently can't deal with this.
8281       if (User->getOpcode() == ISD::SELECT) {
8282         if (User->getOperand(0) == PromOps[i])
8283           return SDValue();
8284       } else if (User->getOpcode() == ISD::SELECT_CC) {
8285         if (User->getOperand(0) == PromOps[i] ||
8286             User->getOperand(1) == PromOps[i])
8287           return SDValue();
8288       }
8289     }
8290   }
8291
8292   // Replace all inputs with the extension operand.
8293   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8294     // Constants may have users outside the cluster of to-be-promoted nodes,
8295     // and so we need to replace those as we do the promotions.
8296     if (isa<ConstantSDNode>(Inputs[i]))
8297       continue;
8298     else
8299       DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0)); 
8300   }
8301
8302   // Replace all operations (these are all the same, but have a different
8303   // (i1) return type). DAG.getNode will validate that the types of
8304   // a binary operator match, so go through the list in reverse so that
8305   // we've likely promoted both operands first. Any intermediate truncations or
8306   // extensions disappear.
8307   while (!PromOps.empty()) {
8308     SDValue PromOp = PromOps.back();
8309     PromOps.pop_back();
8310
8311     if (PromOp.getOpcode() == ISD::TRUNCATE ||
8312         PromOp.getOpcode() == ISD::SIGN_EXTEND ||
8313         PromOp.getOpcode() == ISD::ZERO_EXTEND ||
8314         PromOp.getOpcode() == ISD::ANY_EXTEND) {
8315       if (!isa<ConstantSDNode>(PromOp.getOperand(0)) &&
8316           PromOp.getOperand(0).getValueType() != MVT::i1) {
8317         // The operand is not yet ready (see comment below).
8318         PromOps.insert(PromOps.begin(), PromOp);
8319         continue;
8320       }
8321
8322       SDValue RepValue = PromOp.getOperand(0);
8323       if (isa<ConstantSDNode>(RepValue))
8324         RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue);
8325
8326       DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue);
8327       continue;
8328     }
8329
8330     unsigned C;
8331     switch (PromOp.getOpcode()) {
8332     default:             C = 0; break;
8333     case ISD::SELECT:    C = 1; break;
8334     case ISD::SELECT_CC: C = 2; break;
8335     }
8336
8337     if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
8338          PromOp.getOperand(C).getValueType() != MVT::i1) ||
8339         (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
8340          PromOp.getOperand(C+1).getValueType() != MVT::i1)) {
8341       // The to-be-promoted operands of this node have not yet been
8342       // promoted (this should be rare because we're going through the
8343       // list backward, but if one of the operands has several users in
8344       // this cluster of to-be-promoted nodes, it is possible).
8345       PromOps.insert(PromOps.begin(), PromOp);
8346       continue;
8347     }
8348
8349     SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
8350                                 PromOp.getNode()->op_end());
8351
8352     // If there are any constant inputs, make sure they're replaced now.
8353     for (unsigned i = 0; i < 2; ++i)
8354       if (isa<ConstantSDNode>(Ops[C+i]))
8355         Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]);
8356
8357     DAG.ReplaceAllUsesOfValueWith(PromOp,
8358       DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops));
8359   }
8360
8361   // Now we're left with the initial truncation itself.
8362   if (N->getOpcode() == ISD::TRUNCATE)
8363     return N->getOperand(0);
8364
8365   // Otherwise, this is a comparison. The operands to be compared have just
8366   // changed type (to i1), but everything else is the same.
8367   return SDValue(N, 0);
8368 }
8369
8370 SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N,
8371                                                   DAGCombinerInfo &DCI) const {
8372   SelectionDAG &DAG = DCI.DAG;
8373   SDLoc dl(N);
8374
8375   // If we're tracking CR bits, we need to be careful that we don't have:
8376   //   zext(binary-ops(trunc(x), trunc(y)))
8377   // or
8378   //   zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...)
8379   // such that we're unnecessarily moving things into CR bits that can more
8380   // efficiently stay in GPRs. Note that if we're not certain that the high
8381   // bits are set as required by the final extension, we still may need to do
8382   // some masking to get the proper behavior.
8383
8384   // This same functionality is important on PPC64 when dealing with
8385   // 32-to-64-bit extensions; these occur often when 32-bit values are used as
8386   // the return values of functions. Because it is so similar, it is handled
8387   // here as well.
8388
8389   if (N->getValueType(0) != MVT::i32 &&
8390       N->getValueType(0) != MVT::i64)
8391     return SDValue();
8392
8393   if (!((N->getOperand(0).getValueType() == MVT::i1 && Subtarget.useCRBits()) ||
8394         (N->getOperand(0).getValueType() == MVT::i32 && Subtarget.isPPC64())))
8395     return SDValue();
8396
8397   if (N->getOperand(0).getOpcode() != ISD::AND &&
8398       N->getOperand(0).getOpcode() != ISD::OR  &&
8399       N->getOperand(0).getOpcode() != ISD::XOR &&
8400       N->getOperand(0).getOpcode() != ISD::SELECT &&
8401       N->getOperand(0).getOpcode() != ISD::SELECT_CC)
8402     return SDValue();
8403
8404   SmallVector<SDValue, 4> Inputs;
8405   SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps;
8406   SmallPtrSet<SDNode *, 16> Visited;
8407
8408   // Visit all inputs, collect all binary operations (and, or, xor and
8409   // select) that are all fed by truncations. 
8410   while (!BinOps.empty()) {
8411     SDValue BinOp = BinOps.back();
8412     BinOps.pop_back();
8413
8414     if (!Visited.insert(BinOp.getNode()).second)
8415       continue;
8416
8417     PromOps.push_back(BinOp);
8418
8419     for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) {
8420       // The condition of the select is not promoted.
8421       if (BinOp.getOpcode() == ISD::SELECT && i == 0)
8422         continue;
8423       if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3)
8424         continue;
8425
8426       if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE ||
8427           isa<ConstantSDNode>(BinOp.getOperand(i))) {
8428         Inputs.push_back(BinOp.getOperand(i)); 
8429       } else if (BinOp.getOperand(i).getOpcode() == ISD::AND ||
8430                  BinOp.getOperand(i).getOpcode() == ISD::OR  ||
8431                  BinOp.getOperand(i).getOpcode() == ISD::XOR ||
8432                  BinOp.getOperand(i).getOpcode() == ISD::SELECT ||
8433                  BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) {
8434         BinOps.push_back(BinOp.getOperand(i));
8435       } else {
8436         // We have an input that is not a truncation or another binary
8437         // operation; we'll abort this transformation.
8438         return SDValue();
8439       }
8440     }
8441   }
8442
8443   // The operands of a select that must be truncated when the select is
8444   // promoted because the operand is actually part of the to-be-promoted set.
8445   DenseMap<SDNode *, EVT> SelectTruncOp[2];
8446
8447   // Make sure that this is a self-contained cluster of operations (which
8448   // is not quite the same thing as saying that everything has only one
8449   // use).
8450   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8451     if (isa<ConstantSDNode>(Inputs[i]))
8452       continue;
8453
8454     for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(),
8455                               UE = Inputs[i].getNode()->use_end();
8456          UI != UE; ++UI) {
8457       SDNode *User = *UI;
8458       if (User != N && !Visited.count(User))
8459         return SDValue();
8460
8461       // If we're going to promote the non-output-value operand(s) or SELECT or
8462       // SELECT_CC, record them for truncation.
8463       if (User->getOpcode() == ISD::SELECT) {
8464         if (User->getOperand(0) == Inputs[i])
8465           SelectTruncOp[0].insert(std::make_pair(User,
8466                                     User->getOperand(0).getValueType()));
8467       } else if (User->getOpcode() == ISD::SELECT_CC) {
8468         if (User->getOperand(0) == Inputs[i])
8469           SelectTruncOp[0].insert(std::make_pair(User,
8470                                     User->getOperand(0).getValueType()));
8471         if (User->getOperand(1) == Inputs[i])
8472           SelectTruncOp[1].insert(std::make_pair(User,
8473                                     User->getOperand(1).getValueType()));
8474       }
8475     }
8476   }
8477
8478   for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) {
8479     for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(),
8480                               UE = PromOps[i].getNode()->use_end();
8481          UI != UE; ++UI) {
8482       SDNode *User = *UI;
8483       if (User != N && !Visited.count(User))
8484         return SDValue();
8485
8486       // If we're going to promote the non-output-value operand(s) or SELECT or
8487       // SELECT_CC, record them for truncation.
8488       if (User->getOpcode() == ISD::SELECT) {
8489         if (User->getOperand(0) == PromOps[i])
8490           SelectTruncOp[0].insert(std::make_pair(User,
8491                                     User->getOperand(0).getValueType()));
8492       } else if (User->getOpcode() == ISD::SELECT_CC) {
8493         if (User->getOperand(0) == PromOps[i])
8494           SelectTruncOp[0].insert(std::make_pair(User,
8495                                     User->getOperand(0).getValueType()));
8496         if (User->getOperand(1) == PromOps[i])
8497           SelectTruncOp[1].insert(std::make_pair(User,
8498                                     User->getOperand(1).getValueType()));
8499       }
8500     }
8501   }
8502
8503   unsigned PromBits = N->getOperand(0).getValueSizeInBits();
8504   bool ReallyNeedsExt = false;
8505   if (N->getOpcode() != ISD::ANY_EXTEND) {
8506     // If all of the inputs are not already sign/zero extended, then
8507     // we'll still need to do that at the end.
8508     for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8509       if (isa<ConstantSDNode>(Inputs[i]))
8510         continue;
8511
8512       unsigned OpBits =
8513         Inputs[i].getOperand(0).getValueSizeInBits();
8514       assert(PromBits < OpBits && "Truncation not to a smaller bit count?");
8515
8516       if ((N->getOpcode() == ISD::ZERO_EXTEND &&
8517            !DAG.MaskedValueIsZero(Inputs[i].getOperand(0),
8518                                   APInt::getHighBitsSet(OpBits,
8519                                                         OpBits-PromBits))) ||
8520           (N->getOpcode() == ISD::SIGN_EXTEND &&
8521            DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) <
8522              (OpBits-(PromBits-1)))) {
8523         ReallyNeedsExt = true;
8524         break;
8525       }
8526     }
8527   }
8528
8529   // Replace all inputs, either with the truncation operand, or a
8530   // truncation or extension to the final output type.
8531   for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) {
8532     // Constant inputs need to be replaced with the to-be-promoted nodes that
8533     // use them because they might have users outside of the cluster of
8534     // promoted nodes.
8535     if (isa<ConstantSDNode>(Inputs[i]))
8536       continue;
8537
8538     SDValue InSrc = Inputs[i].getOperand(0);
8539     if (Inputs[i].getValueType() == N->getValueType(0))
8540       DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc);
8541     else if (N->getOpcode() == ISD::SIGN_EXTEND)
8542       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8543         DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0)));
8544     else if (N->getOpcode() == ISD::ZERO_EXTEND)
8545       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8546         DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0)));
8547     else
8548       DAG.ReplaceAllUsesOfValueWith(Inputs[i],
8549         DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0)));
8550   }
8551
8552   // Replace all operations (these are all the same, but have a different
8553   // (promoted) return type). DAG.getNode will validate that the types of
8554   // a binary operator match, so go through the list in reverse so that
8555   // we've likely promoted both operands first.
8556   while (!PromOps.empty()) {
8557     SDValue PromOp = PromOps.back();
8558     PromOps.pop_back();
8559
8560     unsigned C;
8561     switch (PromOp.getOpcode()) {
8562     default:             C = 0; break;
8563     case ISD::SELECT:    C = 1; break;
8564     case ISD::SELECT_CC: C = 2; break;
8565     }
8566
8567     if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) &&
8568          PromOp.getOperand(C).getValueType() != N->getValueType(0)) ||
8569         (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) &&
8570          PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) {
8571       // The to-be-promoted operands of this node have not yet been
8572       // promoted (this should be rare because we're going through the
8573       // list backward, but if one of the operands has several users in
8574       // this cluster of to-be-promoted nodes, it is possible).
8575       PromOps.insert(PromOps.begin(), PromOp);
8576       continue;
8577     }
8578
8579     // For SELECT and SELECT_CC nodes, we do a similar check for any
8580     // to-be-promoted comparison inputs.
8581     if (PromOp.getOpcode() == ISD::SELECT ||
8582         PromOp.getOpcode() == ISD::SELECT_CC) {
8583       if ((SelectTruncOp[0].count(PromOp.getNode()) &&
8584            PromOp.getOperand(0).getValueType() != N->getValueType(0)) ||
8585           (SelectTruncOp[1].count(PromOp.getNode()) &&
8586            PromOp.getOperand(1).getValueType() != N->getValueType(0))) {
8587         PromOps.insert(PromOps.begin(), PromOp);
8588         continue;
8589       }
8590     }
8591
8592     SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(),
8593                                 PromOp.getNode()->op_end());
8594
8595     // If this node has constant inputs, then they'll need to be promoted here.
8596     for (unsigned i = 0; i < 2; ++i) {
8597       if (!isa<ConstantSDNode>(Ops[C+i]))
8598         continue;
8599       if (Ops[C+i].getValueType() == N->getValueType(0))
8600         continue;
8601
8602       if (N->getOpcode() == ISD::SIGN_EXTEND)
8603         Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8604       else if (N->getOpcode() == ISD::ZERO_EXTEND)
8605         Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8606       else
8607         Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0));
8608     }
8609
8610     // If we've promoted the comparison inputs of a SELECT or SELECT_CC,
8611     // truncate them again to the original value type.
8612     if (PromOp.getOpcode() == ISD::SELECT ||
8613         PromOp.getOpcode() == ISD::SELECT_CC) {
8614       auto SI0 = SelectTruncOp[0].find(PromOp.getNode());
8615       if (SI0 != SelectTruncOp[0].end())
8616         Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]);
8617       auto SI1 = SelectTruncOp[1].find(PromOp.getNode());
8618       if (SI1 != SelectTruncOp[1].end())
8619         Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]);
8620     }
8621
8622     DAG.ReplaceAllUsesOfValueWith(PromOp,
8623       DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops));
8624   }
8625
8626   // Now we're left with the initial extension itself.
8627   if (!ReallyNeedsExt)
8628     return N->getOperand(0);
8629
8630   // To zero extend, just mask off everything except for the first bit (in the
8631   // i1 case).
8632   if (N->getOpcode() == ISD::ZERO_EXTEND)
8633     return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0),
8634                        DAG.getConstant(APInt::getLowBitsSet(
8635                                          N->getValueSizeInBits(0), PromBits),
8636                                        N->getValueType(0)));
8637
8638   assert(N->getOpcode() == ISD::SIGN_EXTEND &&
8639          "Invalid extension type");
8640   EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0));
8641   SDValue ShiftCst =
8642     DAG.getConstant(N->getValueSizeInBits(0)-PromBits, ShiftAmountTy);
8643   return DAG.getNode(ISD::SRA, dl, N->getValueType(0), 
8644                      DAG.getNode(ISD::SHL, dl, N->getValueType(0),
8645                                  N->getOperand(0), ShiftCst), ShiftCst);
8646 }
8647
8648 SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N,
8649                                               DAGCombinerInfo &DCI) const {
8650   assert((N->getOpcode() == ISD::SINT_TO_FP ||
8651           N->getOpcode() == ISD::UINT_TO_FP) &&
8652          "Need an int -> FP conversion node here");
8653
8654   if (!Subtarget.has64BitSupport())
8655     return SDValue();
8656
8657   SelectionDAG &DAG = DCI.DAG;
8658   SDLoc dl(N);
8659   SDValue Op(N, 0);
8660
8661   // Don't handle ppc_fp128 here or i1 conversions.
8662   if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64)
8663     return SDValue();
8664   if (Op.getOperand(0).getValueType() == MVT::i1)
8665     return SDValue();
8666
8667   // For i32 intermediate values, unfortunately, the conversion functions
8668   // leave the upper 32 bits of the value are undefined. Within the set of
8669   // scalar instructions, we have no method for zero- or sign-extending the
8670   // value. Thus, we cannot handle i32 intermediate values here.
8671   if (Op.getOperand(0).getValueType() == MVT::i32)
8672     return SDValue();
8673
8674   assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) &&
8675          "UINT_TO_FP is supported only with FPCVT");
8676
8677   // If we have FCFIDS, then use it when converting to single-precision.
8678   // Otherwise, convert to double-precision and then round.
8679   unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
8680                        ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS
8681                                                             : PPCISD::FCFIDS)
8682                        : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU
8683                                                             : PPCISD::FCFID);
8684   MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32)
8685                   ? MVT::f32
8686                   : MVT::f64;
8687
8688   // If we're converting from a float, to an int, and back to a float again,
8689   // then we don't need the store/load pair at all.
8690   if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT &&
8691        Subtarget.hasFPCVT()) ||
8692       (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) {
8693     SDValue Src = Op.getOperand(0).getOperand(0);
8694     if (Src.getValueType() == MVT::f32) {
8695       Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src);
8696       DCI.AddToWorklist(Src.getNode());
8697     }
8698
8699     unsigned FCTOp =
8700       Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ :
8701                                                         PPCISD::FCTIDUZ;
8702
8703     SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src);
8704     SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp);
8705
8706     if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) {
8707       FP = DAG.getNode(ISD::FP_ROUND, dl,
8708                        MVT::f32, FP, DAG.getIntPtrConstant(0));
8709       DCI.AddToWorklist(FP.getNode());
8710     }
8711
8712     return FP;
8713   }
8714
8715   return SDValue();
8716 }
8717
8718 // expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for
8719 // builtins) into loads with swaps.
8720 SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N,
8721                                               DAGCombinerInfo &DCI) const {
8722   SelectionDAG &DAG = DCI.DAG;
8723   SDLoc dl(N);
8724   SDValue Chain;
8725   SDValue Base;
8726   MachineMemOperand *MMO;
8727
8728   switch (N->getOpcode()) {
8729   default:
8730     llvm_unreachable("Unexpected opcode for little endian VSX load");
8731   case ISD::LOAD: {
8732     LoadSDNode *LD = cast<LoadSDNode>(N);
8733     Chain = LD->getChain();
8734     Base = LD->getBasePtr();
8735     MMO = LD->getMemOperand();
8736     // If the MMO suggests this isn't a load of a full vector, leave
8737     // things alone.  For a built-in, we have to make the change for
8738     // correctness, so if there is a size problem that will be a bug.
8739     if (MMO->getSize() < 16)
8740       return SDValue();
8741     break;
8742   }
8743   case ISD::INTRINSIC_W_CHAIN: {
8744     MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
8745     Chain = Intrin->getChain();
8746     Base = Intrin->getBasePtr();
8747     MMO = Intrin->getMemOperand();
8748     break;
8749   }
8750   }
8751
8752   MVT VecTy = N->getValueType(0).getSimpleVT();
8753   SDValue LoadOps[] = { Chain, Base };
8754   SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl,
8755                                          DAG.getVTList(VecTy, MVT::Other),
8756                                          LoadOps, VecTy, MMO);
8757   DCI.AddToWorklist(Load.getNode());
8758   Chain = Load.getValue(1);
8759   SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
8760                              DAG.getVTList(VecTy, MVT::Other), Chain, Load);
8761   DCI.AddToWorklist(Swap.getNode());
8762   return Swap;
8763 }
8764
8765 // expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for
8766 // builtins) into stores with swaps.
8767 SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N,
8768                                                DAGCombinerInfo &DCI) const {
8769   SelectionDAG &DAG = DCI.DAG;
8770   SDLoc dl(N);
8771   SDValue Chain;
8772   SDValue Base;
8773   unsigned SrcOpnd;
8774   MachineMemOperand *MMO;
8775
8776   switch (N->getOpcode()) {
8777   default:
8778     llvm_unreachable("Unexpected opcode for little endian VSX store");
8779   case ISD::STORE: {
8780     StoreSDNode *ST = cast<StoreSDNode>(N);
8781     Chain = ST->getChain();
8782     Base = ST->getBasePtr();
8783     MMO = ST->getMemOperand();
8784     SrcOpnd = 1;
8785     // If the MMO suggests this isn't a store of a full vector, leave
8786     // things alone.  For a built-in, we have to make the change for
8787     // correctness, so if there is a size problem that will be a bug.
8788     if (MMO->getSize() < 16)
8789       return SDValue();
8790     break;
8791   }
8792   case ISD::INTRINSIC_VOID: {
8793     MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N);
8794     Chain = Intrin->getChain();
8795     // Intrin->getBasePtr() oddly does not get what we want.
8796     Base = Intrin->getOperand(3);
8797     MMO = Intrin->getMemOperand();
8798     SrcOpnd = 2;
8799     break;
8800   }
8801   }
8802
8803   SDValue Src = N->getOperand(SrcOpnd);
8804   MVT VecTy = Src.getValueType().getSimpleVT();
8805   SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl,
8806                              DAG.getVTList(VecTy, MVT::Other), Chain, Src);
8807   DCI.AddToWorklist(Swap.getNode());
8808   Chain = Swap.getValue(1);
8809   SDValue StoreOps[] = { Chain, Swap, Base };
8810   SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl,
8811                                           DAG.getVTList(MVT::Other),
8812                                           StoreOps, VecTy, MMO);
8813   DCI.AddToWorklist(Store.getNode());
8814   return Store;
8815 }
8816
8817 SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N,
8818                                              DAGCombinerInfo &DCI) const {
8819   SelectionDAG &DAG = DCI.DAG;
8820   SDLoc dl(N);
8821   switch (N->getOpcode()) {
8822   default: break;
8823   case PPCISD::SHL:
8824     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
8825       if (C->isNullValue())   // 0 << V -> 0.
8826         return N->getOperand(0);
8827     }
8828     break;
8829   case PPCISD::SRL:
8830     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
8831       if (C->isNullValue())   // 0 >>u V -> 0.
8832         return N->getOperand(0);
8833     }
8834     break;
8835   case PPCISD::SRA:
8836     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
8837       if (C->isNullValue() ||   //  0 >>s V -> 0.
8838           C->isAllOnesValue())    // -1 >>s V -> -1.
8839         return N->getOperand(0);
8840     }
8841     break;
8842   case ISD::SIGN_EXTEND:
8843   case ISD::ZERO_EXTEND:
8844   case ISD::ANY_EXTEND: 
8845     return DAGCombineExtBoolTrunc(N, DCI);
8846   case ISD::TRUNCATE:
8847   case ISD::SETCC:
8848   case ISD::SELECT_CC:
8849     return DAGCombineTruncBoolExt(N, DCI);
8850   case ISD::SINT_TO_FP:
8851   case ISD::UINT_TO_FP:
8852     return combineFPToIntToFP(N, DCI);
8853   case ISD::STORE: {
8854     // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)).
8855     if (Subtarget.hasSTFIWX() && !cast<StoreSDNode>(N)->isTruncatingStore() &&
8856         N->getOperand(1).getOpcode() == ISD::FP_TO_SINT &&
8857         N->getOperand(1).getValueType() == MVT::i32 &&
8858         N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) {
8859       SDValue Val = N->getOperand(1).getOperand(0);
8860       if (Val.getValueType() == MVT::f32) {
8861         Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val);
8862         DCI.AddToWorklist(Val.getNode());
8863       }
8864       Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val);
8865       DCI.AddToWorklist(Val.getNode());
8866
8867       SDValue Ops[] = {
8868         N->getOperand(0), Val, N->getOperand(2),
8869         DAG.getValueType(N->getOperand(1).getValueType())
8870       };
8871
8872       Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl,
8873               DAG.getVTList(MVT::Other), Ops,
8874               cast<StoreSDNode>(N)->getMemoryVT(),
8875               cast<StoreSDNode>(N)->getMemOperand());
8876       DCI.AddToWorklist(Val.getNode());
8877       return Val;
8878     }
8879
8880     // Turn STORE (BSWAP) -> sthbrx/stwbrx.
8881     if (cast<StoreSDNode>(N)->isUnindexed() &&
8882         N->getOperand(1).getOpcode() == ISD::BSWAP &&
8883         N->getOperand(1).getNode()->hasOneUse() &&
8884         (N->getOperand(1).getValueType() == MVT::i32 ||
8885          N->getOperand(1).getValueType() == MVT::i16 ||
8886          (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
8887           N->getOperand(1).getValueType() == MVT::i64))) {
8888       SDValue BSwapOp = N->getOperand(1).getOperand(0);
8889       // Do an any-extend to 32-bits if this is a half-word input.
8890       if (BSwapOp.getValueType() == MVT::i16)
8891         BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp);
8892
8893       SDValue Ops[] = {
8894         N->getOperand(0), BSwapOp, N->getOperand(2),
8895         DAG.getValueType(N->getOperand(1).getValueType())
8896       };
8897       return
8898         DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other),
8899                                 Ops, cast<StoreSDNode>(N)->getMemoryVT(),
8900                                 cast<StoreSDNode>(N)->getMemOperand());
8901     }
8902
8903     // For little endian, VSX stores require generating xxswapd/lxvd2x.
8904     EVT VT = N->getOperand(1).getValueType();
8905     if (VT.isSimple()) {
8906       MVT StoreVT = VT.getSimpleVT();
8907       if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
8908           (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 ||
8909            StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32))
8910         return expandVSXStoreForLE(N, DCI);
8911     }
8912     break;
8913   }
8914   case ISD::LOAD: {
8915     LoadSDNode *LD = cast<LoadSDNode>(N);
8916     EVT VT = LD->getValueType(0);
8917
8918     // For little endian, VSX loads require generating lxvd2x/xxswapd.
8919     if (VT.isSimple()) {
8920       MVT LoadVT = VT.getSimpleVT();
8921       if (Subtarget.hasVSX() && Subtarget.isLittleEndian() &&
8922           (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 ||
8923            LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32))
8924         return expandVSXLoadForLE(N, DCI);
8925     }
8926
8927     Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
8928     unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty);
8929     if (ISD::isNON_EXTLoad(N) && VT.isVector() && Subtarget.hasAltivec() &&
8930         // P8 and later hardware should just use LOAD.
8931         !Subtarget.hasP8Vector() && (VT == MVT::v16i8 || VT == MVT::v8i16 ||
8932                                      VT == MVT::v4i32 || VT == MVT::v4f32) &&
8933         LD->getAlignment() < ABIAlignment) {
8934       // This is a type-legal unaligned Altivec load.
8935       SDValue Chain = LD->getChain();
8936       SDValue Ptr = LD->getBasePtr();
8937       bool isLittleEndian = Subtarget.isLittleEndian();
8938
8939       // This implements the loading of unaligned vectors as described in
8940       // the venerable Apple Velocity Engine overview. Specifically:
8941       // https://developer.apple.com/hardwaredrivers/ve/alignment.html
8942       // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html
8943       //
8944       // The general idea is to expand a sequence of one or more unaligned
8945       // loads into an alignment-based permutation-control instruction (lvsl
8946       // or lvsr), a series of regular vector loads (which always truncate
8947       // their input address to an aligned address), and a series of
8948       // permutations.  The results of these permutations are the requested
8949       // loaded values.  The trick is that the last "extra" load is not taken
8950       // from the address you might suspect (sizeof(vector) bytes after the
8951       // last requested load), but rather sizeof(vector) - 1 bytes after the
8952       // last requested vector. The point of this is to avoid a page fault if
8953       // the base address happened to be aligned. This works because if the
8954       // base address is aligned, then adding less than a full vector length
8955       // will cause the last vector in the sequence to be (re)loaded.
8956       // Otherwise, the next vector will be fetched as you might suspect was
8957       // necessary.
8958
8959       // We might be able to reuse the permutation generation from
8960       // a different base address offset from this one by an aligned amount.
8961       // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this
8962       // optimization later.
8963       Intrinsic::ID Intr = (isLittleEndian ?
8964                             Intrinsic::ppc_altivec_lvsr :
8965                             Intrinsic::ppc_altivec_lvsl);
8966       SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, MVT::v16i8);
8967
8968       // Create the new MMO for the new base load. It is like the original MMO,
8969       // but represents an area in memory almost twice the vector size centered
8970       // on the original address. If the address is unaligned, we might start
8971       // reading up to (sizeof(vector)-1) bytes below the address of the
8972       // original unaligned load.
8973       MachineFunction &MF = DAG.getMachineFunction();
8974       MachineMemOperand *BaseMMO =
8975         MF.getMachineMemOperand(LD->getMemOperand(),
8976                                 -LD->getMemoryVT().getStoreSize()+1,
8977                                 2*LD->getMemoryVT().getStoreSize()-1);
8978
8979       // Create the new base load.
8980       SDValue LDXIntID = DAG.getTargetConstant(Intrinsic::ppc_altivec_lvx,
8981                                                getPointerTy());
8982       SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr };
8983       SDValue BaseLoad =
8984         DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
8985                                 DAG.getVTList(MVT::v4i32, MVT::Other),
8986                                 BaseLoadOps, MVT::v4i32, BaseMMO);
8987
8988       // Note that the value of IncOffset (which is provided to the next
8989       // load's pointer info offset value, and thus used to calculate the
8990       // alignment), and the value of IncValue (which is actually used to
8991       // increment the pointer value) are different! This is because we
8992       // require the next load to appear to be aligned, even though it
8993       // is actually offset from the base pointer by a lesser amount.
8994       int IncOffset = VT.getSizeInBits() / 8;
8995       int IncValue = IncOffset;
8996
8997       // Walk (both up and down) the chain looking for another load at the real
8998       // (aligned) offset (the alignment of the other load does not matter in
8999       // this case). If found, then do not use the offset reduction trick, as
9000       // that will prevent the loads from being later combined (as they would
9001       // otherwise be duplicates).
9002       if (!findConsecutiveLoad(LD, DAG))
9003         --IncValue;
9004
9005       SDValue Increment = DAG.getConstant(IncValue, getPointerTy());
9006       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
9007
9008       MachineMemOperand *ExtraMMO =
9009         MF.getMachineMemOperand(LD->getMemOperand(),
9010                                 1, 2*LD->getMemoryVT().getStoreSize()-1);
9011       SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr };
9012       SDValue ExtraLoad =
9013         DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl,
9014                                 DAG.getVTList(MVT::v4i32, MVT::Other),
9015                                 ExtraLoadOps, MVT::v4i32, ExtraMMO);
9016
9017       SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
9018         BaseLoad.getValue(1), ExtraLoad.getValue(1));
9019
9020       // Because vperm has a big-endian bias, we must reverse the order
9021       // of the input vectors and complement the permute control vector
9022       // when generating little endian code.  We have already handled the
9023       // latter by using lvsr instead of lvsl, so just reverse BaseLoad
9024       // and ExtraLoad here.
9025       SDValue Perm;
9026       if (isLittleEndian)
9027         Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
9028                                 ExtraLoad, BaseLoad, PermCntl, DAG, dl);
9029       else
9030         Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm,
9031                                 BaseLoad, ExtraLoad, PermCntl, DAG, dl);
9032
9033       if (VT != MVT::v4i32)
9034         Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm);
9035
9036       // The output of the permutation is our loaded result, the TokenFactor is
9037       // our new chain.
9038       DCI.CombineTo(N, Perm, TF);
9039       return SDValue(N, 0);
9040     }
9041     }
9042     break;
9043     case ISD::INTRINSIC_WO_CHAIN: {
9044       bool isLittleEndian = Subtarget.isLittleEndian();
9045       Intrinsic::ID Intr = (isLittleEndian ? Intrinsic::ppc_altivec_lvsr
9046                                            : Intrinsic::ppc_altivec_lvsl);
9047       if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() == Intr &&
9048           N->getOperand(1)->getOpcode() == ISD::ADD) {
9049         SDValue Add = N->getOperand(1);
9050
9051         if (DAG.MaskedValueIsZero(
9052                 Add->getOperand(1),
9053                 APInt::getAllOnesValue(4 /* 16 byte alignment */)
9054                     .zext(
9055                         Add.getValueType().getScalarType().getSizeInBits()))) {
9056           SDNode *BasePtr = Add->getOperand(0).getNode();
9057           for (SDNode::use_iterator UI = BasePtr->use_begin(),
9058                                     UE = BasePtr->use_end();
9059                UI != UE; ++UI) {
9060             if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
9061                 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() ==
9062                     Intr) {
9063               // We've found another LVSL/LVSR, and this address is an aligned
9064               // multiple of that one. The results will be the same, so use the
9065               // one we've just found instead.
9066
9067               return SDValue(*UI, 0);
9068             }
9069           }
9070         }
9071       }
9072     }
9073
9074     break;
9075   case ISD::INTRINSIC_W_CHAIN: {
9076     // For little endian, VSX loads require generating lxvd2x/xxswapd.
9077     if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
9078       switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9079       default:
9080         break;
9081       case Intrinsic::ppc_vsx_lxvw4x:
9082       case Intrinsic::ppc_vsx_lxvd2x:
9083         return expandVSXLoadForLE(N, DCI);
9084       }
9085     }
9086     break;
9087   }
9088   case ISD::INTRINSIC_VOID: {
9089     // For little endian, VSX stores require generating xxswapd/stxvd2x.
9090     if (Subtarget.hasVSX() && Subtarget.isLittleEndian()) {
9091       switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9092       default:
9093         break;
9094       case Intrinsic::ppc_vsx_stxvw4x:
9095       case Intrinsic::ppc_vsx_stxvd2x:
9096         return expandVSXStoreForLE(N, DCI);
9097       }
9098     }
9099     break;
9100   }
9101   case ISD::BSWAP:
9102     // Turn BSWAP (LOAD) -> lhbrx/lwbrx.
9103     if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) &&
9104         N->getOperand(0).hasOneUse() &&
9105         (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 ||
9106          (Subtarget.hasLDBRX() && Subtarget.isPPC64() &&
9107           N->getValueType(0) == MVT::i64))) {
9108       SDValue Load = N->getOperand(0);
9109       LoadSDNode *LD = cast<LoadSDNode>(Load);
9110       // Create the byte-swapping load.
9111       SDValue Ops[] = {
9112         LD->getChain(),    // Chain
9113         LD->getBasePtr(),  // Ptr
9114         DAG.getValueType(N->getValueType(0)) // VT
9115       };
9116       SDValue BSLoad =
9117         DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
9118                                 DAG.getVTList(N->getValueType(0) == MVT::i64 ?
9119                                               MVT::i64 : MVT::i32, MVT::Other),
9120                                 Ops, LD->getMemoryVT(), LD->getMemOperand());
9121
9122       // If this is an i16 load, insert the truncate.
9123       SDValue ResVal = BSLoad;
9124       if (N->getValueType(0) == MVT::i16)
9125         ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad);
9126
9127       // First, combine the bswap away.  This makes the value produced by the
9128       // load dead.
9129       DCI.CombineTo(N, ResVal);
9130
9131       // Next, combine the load away, we give it a bogus result value but a real
9132       // chain result.  The result value is dead because the bswap is dead.
9133       DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1));
9134
9135       // Return N so it doesn't get rechecked!
9136       return SDValue(N, 0);
9137     }
9138
9139     break;
9140   case PPCISD::VCMP: {
9141     // If a VCMPo node already exists with exactly the same operands as this
9142     // node, use its result instead of this node (VCMPo computes both a CR6 and
9143     // a normal output).
9144     //
9145     if (!N->getOperand(0).hasOneUse() &&
9146         !N->getOperand(1).hasOneUse() &&
9147         !N->getOperand(2).hasOneUse()) {
9148
9149       // Scan all of the users of the LHS, looking for VCMPo's that match.
9150       SDNode *VCMPoNode = nullptr;
9151
9152       SDNode *LHSN = N->getOperand(0).getNode();
9153       for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end();
9154            UI != E; ++UI)
9155         if (UI->getOpcode() == PPCISD::VCMPo &&
9156             UI->getOperand(1) == N->getOperand(1) &&
9157             UI->getOperand(2) == N->getOperand(2) &&
9158             UI->getOperand(0) == N->getOperand(0)) {
9159           VCMPoNode = *UI;
9160           break;
9161         }
9162
9163       // If there is no VCMPo node, or if the flag value has a single use, don't
9164       // transform this.
9165       if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1))
9166         break;
9167
9168       // Look at the (necessarily single) use of the flag value.  If it has a
9169       // chain, this transformation is more complex.  Note that multiple things
9170       // could use the value result, which we should ignore.
9171       SDNode *FlagUser = nullptr;
9172       for (SDNode::use_iterator UI = VCMPoNode->use_begin();
9173            FlagUser == nullptr; ++UI) {
9174         assert(UI != VCMPoNode->use_end() && "Didn't find user!");
9175         SDNode *User = *UI;
9176         for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
9177           if (User->getOperand(i) == SDValue(VCMPoNode, 1)) {
9178             FlagUser = User;
9179             break;
9180           }
9181         }
9182       }
9183
9184       // If the user is a MFOCRF instruction, we know this is safe.
9185       // Otherwise we give up for right now.
9186       if (FlagUser->getOpcode() == PPCISD::MFOCRF)
9187         return SDValue(VCMPoNode, 0);
9188     }
9189     break;
9190   }
9191   case ISD::BRCOND: {
9192     SDValue Cond = N->getOperand(1);
9193     SDValue Target = N->getOperand(2);
9194  
9195     if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9196         cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() ==
9197           Intrinsic::ppc_is_decremented_ctr_nonzero) {
9198
9199       // We now need to make the intrinsic dead (it cannot be instruction
9200       // selected).
9201       DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0));
9202       assert(Cond.getNode()->hasOneUse() &&
9203              "Counter decrement has more than one use");
9204
9205       return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other,
9206                          N->getOperand(0), Target);
9207     }
9208   }
9209   break;
9210   case ISD::BR_CC: {
9211     // If this is a branch on an altivec predicate comparison, lower this so
9212     // that we don't have to do a MFOCRF: instead, branch directly on CR6.  This
9213     // lowering is done pre-legalize, because the legalizer lowers the predicate
9214     // compare down to code that is difficult to reassemble.
9215     ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
9216     SDValue LHS = N->getOperand(2), RHS = N->getOperand(3);
9217
9218     // Sometimes the promoted value of the intrinsic is ANDed by some non-zero
9219     // value. If so, pass-through the AND to get to the intrinsic.
9220     if (LHS.getOpcode() == ISD::AND &&
9221         LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9222         cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() ==
9223           Intrinsic::ppc_is_decremented_ctr_nonzero &&
9224         isa<ConstantSDNode>(LHS.getOperand(1)) &&
9225         !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()->
9226           isZero())
9227       LHS = LHS.getOperand(0);
9228
9229     if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN &&
9230         cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() ==
9231           Intrinsic::ppc_is_decremented_ctr_nonzero &&
9232         isa<ConstantSDNode>(RHS)) {
9233       assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
9234              "Counter decrement comparison is not EQ or NE");
9235
9236       unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
9237       bool isBDNZ = (CC == ISD::SETEQ && Val) ||
9238                     (CC == ISD::SETNE && !Val);
9239
9240       // We now need to make the intrinsic dead (it cannot be instruction
9241       // selected).
9242       DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0));
9243       assert(LHS.getNode()->hasOneUse() &&
9244              "Counter decrement has more than one use");
9245
9246       return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other,
9247                          N->getOperand(0), N->getOperand(4));
9248     }
9249
9250     int CompareOpc;
9251     bool isDot;
9252
9253     if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN &&
9254         isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) &&
9255         getAltivecCompareInfo(LHS, CompareOpc, isDot)) {
9256       assert(isDot && "Can't compare against a vector result!");
9257
9258       // If this is a comparison against something other than 0/1, then we know
9259       // that the condition is never/always true.
9260       unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue();
9261       if (Val != 0 && Val != 1) {
9262         if (CC == ISD::SETEQ)      // Cond never true, remove branch.
9263           return N->getOperand(0);
9264         // Always !=, turn it into an unconditional branch.
9265         return DAG.getNode(ISD::BR, dl, MVT::Other,
9266                            N->getOperand(0), N->getOperand(4));
9267       }
9268
9269       bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0);
9270
9271       // Create the PPCISD altivec 'dot' comparison node.
9272       SDValue Ops[] = {
9273         LHS.getOperand(2),  // LHS of compare
9274         LHS.getOperand(3),  // RHS of compare
9275         DAG.getConstant(CompareOpc, MVT::i32)
9276       };
9277       EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue };
9278       SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops);
9279
9280       // Unpack the result based on how the target uses it.
9281       PPC::Predicate CompOpc;
9282       switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) {
9283       default:  // Can't happen, don't crash on invalid number though.
9284       case 0:   // Branch on the value of the EQ bit of CR6.
9285         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE;
9286         break;
9287       case 1:   // Branch on the inverted value of the EQ bit of CR6.
9288         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ;
9289         break;
9290       case 2:   // Branch on the value of the LT bit of CR6.
9291         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE;
9292         break;
9293       case 3:   // Branch on the inverted value of the LT bit of CR6.
9294         CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT;
9295         break;
9296       }
9297
9298       return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0),
9299                          DAG.getConstant(CompOpc, MVT::i32),
9300                          DAG.getRegister(PPC::CR6, MVT::i32),
9301                          N->getOperand(4), CompNode.getValue(1));
9302     }
9303     break;
9304   }
9305   }
9306
9307   return SDValue();
9308 }
9309
9310 SDValue
9311 PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
9312                                   SelectionDAG &DAG,
9313                                   std::vector<SDNode *> *Created) const {
9314   // fold (sdiv X, pow2)
9315   EVT VT = N->getValueType(0);
9316   if (VT == MVT::i64 && !Subtarget.isPPC64())
9317     return SDValue();
9318   if ((VT != MVT::i32 && VT != MVT::i64) ||
9319       !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
9320     return SDValue();
9321
9322   SDLoc DL(N);
9323   SDValue N0 = N->getOperand(0);
9324
9325   bool IsNegPow2 = (-Divisor).isPowerOf2();
9326   unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros();
9327   SDValue ShiftAmt = DAG.getConstant(Lg2, VT);
9328
9329   SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt);
9330   if (Created)
9331     Created->push_back(Op.getNode());
9332
9333   if (IsNegPow2) {
9334     Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), Op);
9335     if (Created)
9336       Created->push_back(Op.getNode());
9337   }
9338
9339   return Op;
9340 }
9341
9342 //===----------------------------------------------------------------------===//
9343 // Inline Assembly Support
9344 //===----------------------------------------------------------------------===//
9345
9346 void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
9347                                                       APInt &KnownZero,
9348                                                       APInt &KnownOne,
9349                                                       const SelectionDAG &DAG,
9350                                                       unsigned Depth) const {
9351   KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
9352   switch (Op.getOpcode()) {
9353   default: break;
9354   case PPCISD::LBRX: {
9355     // lhbrx is known to have the top bits cleared out.
9356     if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16)
9357       KnownZero = 0xFFFF0000;
9358     break;
9359   }
9360   case ISD::INTRINSIC_WO_CHAIN: {
9361     switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) {
9362     default: break;
9363     case Intrinsic::ppc_altivec_vcmpbfp_p:
9364     case Intrinsic::ppc_altivec_vcmpeqfp_p:
9365     case Intrinsic::ppc_altivec_vcmpequb_p:
9366     case Intrinsic::ppc_altivec_vcmpequh_p:
9367     case Intrinsic::ppc_altivec_vcmpequw_p:
9368     case Intrinsic::ppc_altivec_vcmpgefp_p:
9369     case Intrinsic::ppc_altivec_vcmpgtfp_p:
9370     case Intrinsic::ppc_altivec_vcmpgtsb_p:
9371     case Intrinsic::ppc_altivec_vcmpgtsh_p:
9372     case Intrinsic::ppc_altivec_vcmpgtsw_p:
9373     case Intrinsic::ppc_altivec_vcmpgtub_p:
9374     case Intrinsic::ppc_altivec_vcmpgtuh_p:
9375     case Intrinsic::ppc_altivec_vcmpgtuw_p:
9376       KnownZero = ~1U;  // All bits but the low one are known to be zero.
9377       break;
9378     }
9379   }
9380   }
9381 }
9382
9383 unsigned PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const {
9384   switch (Subtarget.getDarwinDirective()) {
9385   default: break;
9386   case PPC::DIR_970:
9387   case PPC::DIR_PWR4:
9388   case PPC::DIR_PWR5:
9389   case PPC::DIR_PWR5X:
9390   case PPC::DIR_PWR6:
9391   case PPC::DIR_PWR6X:
9392   case PPC::DIR_PWR7:
9393   case PPC::DIR_PWR8: {
9394     if (!ML)
9395       break;
9396
9397     const PPCInstrInfo *TII = Subtarget.getInstrInfo();
9398
9399     // For small loops (between 5 and 8 instructions), align to a 32-byte
9400     // boundary so that the entire loop fits in one instruction-cache line.
9401     uint64_t LoopSize = 0;
9402     for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I)
9403       for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J)
9404         LoopSize += TII->GetInstSizeInBytes(J);
9405
9406     if (LoopSize > 16 && LoopSize <= 32)
9407       return 5;
9408
9409     break;
9410   }
9411   }
9412
9413   return TargetLowering::getPrefLoopAlignment(ML);
9414 }
9415
9416 /// getConstraintType - Given a constraint, return the type of
9417 /// constraint it is for this target.
9418 PPCTargetLowering::ConstraintType
9419 PPCTargetLowering::getConstraintType(const std::string &Constraint) const {
9420   if (Constraint.size() == 1) {
9421     switch (Constraint[0]) {
9422     default: break;
9423     case 'b':
9424     case 'r':
9425     case 'f':
9426     case 'v':
9427     case 'y':
9428       return C_RegisterClass;
9429     case 'Z':
9430       // FIXME: While Z does indicate a memory constraint, it specifically
9431       // indicates an r+r address (used in conjunction with the 'y' modifier
9432       // in the replacement string). Currently, we're forcing the base
9433       // register to be r0 in the asm printer (which is interpreted as zero)
9434       // and forming the complete address in the second register. This is
9435       // suboptimal.
9436       return C_Memory;
9437     }
9438   } else if (Constraint == "wc") { // individual CR bits.
9439     return C_RegisterClass;
9440   } else if (Constraint == "wa" || Constraint == "wd" ||
9441              Constraint == "wf" || Constraint == "ws") {
9442     return C_RegisterClass; // VSX registers.
9443   }
9444   return TargetLowering::getConstraintType(Constraint);
9445 }
9446
9447 /// Examine constraint type and operand type and determine a weight value.
9448 /// This object must already have been set up with the operand type
9449 /// and the current alternative constraint selected.
9450 TargetLowering::ConstraintWeight
9451 PPCTargetLowering::getSingleConstraintMatchWeight(
9452     AsmOperandInfo &info, const char *constraint) const {
9453   ConstraintWeight weight = CW_Invalid;
9454   Value *CallOperandVal = info.CallOperandVal;
9455     // If we don't have a value, we can't do a match,
9456     // but allow it at the lowest weight.
9457   if (!CallOperandVal)
9458     return CW_Default;
9459   Type *type = CallOperandVal->getType();
9460
9461   // Look at the constraint type.
9462   if (StringRef(constraint) == "wc" && type->isIntegerTy(1))
9463     return CW_Register; // an individual CR bit.
9464   else if ((StringRef(constraint) == "wa" ||
9465             StringRef(constraint) == "wd" ||
9466             StringRef(constraint) == "wf") &&
9467            type->isVectorTy())
9468     return CW_Register;
9469   else if (StringRef(constraint) == "ws" && type->isDoubleTy())
9470     return CW_Register;
9471
9472   switch (*constraint) {
9473   default:
9474     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
9475     break;
9476   case 'b':
9477     if (type->isIntegerTy())
9478       weight = CW_Register;
9479     break;
9480   case 'f':
9481     if (type->isFloatTy())
9482       weight = CW_Register;
9483     break;
9484   case 'd':
9485     if (type->isDoubleTy())
9486       weight = CW_Register;
9487     break;
9488   case 'v':
9489     if (type->isVectorTy())
9490       weight = CW_Register;
9491     break;
9492   case 'y':
9493     weight = CW_Register;
9494     break;
9495   case 'Z':
9496     weight = CW_Memory;
9497     break;
9498   }
9499   return weight;
9500 }
9501
9502 std::pair<unsigned, const TargetRegisterClass*>
9503 PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
9504                                                 MVT VT) const {
9505   if (Constraint.size() == 1) {
9506     // GCC RS6000 Constraint Letters
9507     switch (Constraint[0]) {
9508     case 'b':   // R1-R31
9509       if (VT == MVT::i64 && Subtarget.isPPC64())
9510         return std::make_pair(0U, &PPC::G8RC_NOX0RegClass);
9511       return std::make_pair(0U, &PPC::GPRC_NOR0RegClass);
9512     case 'r':   // R0-R31
9513       if (VT == MVT::i64 && Subtarget.isPPC64())
9514         return std::make_pair(0U, &PPC::G8RCRegClass);
9515       return std::make_pair(0U, &PPC::GPRCRegClass);
9516     case 'f':
9517       if (VT == MVT::f32 || VT == MVT::i32)
9518         return std::make_pair(0U, &PPC::F4RCRegClass);
9519       if (VT == MVT::f64 || VT == MVT::i64)
9520         return std::make_pair(0U, &PPC::F8RCRegClass);
9521       break;
9522     case 'v':
9523       return std::make_pair(0U, &PPC::VRRCRegClass);
9524     case 'y':   // crrc
9525       return std::make_pair(0U, &PPC::CRRCRegClass);
9526     }
9527   } else if (Constraint == "wc") { // an individual CR bit.
9528     return std::make_pair(0U, &PPC::CRBITRCRegClass);
9529   } else if (Constraint == "wa" || Constraint == "wd" ||
9530              Constraint == "wf") {
9531     return std::make_pair(0U, &PPC::VSRCRegClass);
9532   } else if (Constraint == "ws") {
9533     return std::make_pair(0U, &PPC::VSFRCRegClass);
9534   }
9535
9536   std::pair<unsigned, const TargetRegisterClass*> R =
9537     TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
9538
9539   // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers
9540   // (which we call X[0-9]+). If a 64-bit value has been requested, and a
9541   // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent
9542   // register.
9543   // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use
9544   // the AsmName field from *RegisterInfo.td, then this would not be necessary.
9545   if (R.first && VT == MVT::i64 && Subtarget.isPPC64() &&
9546       PPC::GPRCRegClass.contains(R.first)) {
9547     const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
9548     return std::make_pair(TRI->getMatchingSuperReg(R.first,
9549                             PPC::sub_32, &PPC::G8RCRegClass),
9550                           &PPC::G8RCRegClass);
9551   }
9552
9553   // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same.
9554   if (!R.second && StringRef("{cc}").equals_lower(Constraint)) {
9555     R.first = PPC::CR0;
9556     R.second = &PPC::CRRCRegClass;
9557   }
9558
9559   return R;
9560 }
9561
9562
9563 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
9564 /// vector.  If it is invalid, don't add anything to Ops.
9565 void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
9566                                                      std::string &Constraint,
9567                                                      std::vector<SDValue>&Ops,
9568                                                      SelectionDAG &DAG) const {
9569   SDValue Result;
9570
9571   // Only support length 1 constraints.
9572   if (Constraint.length() > 1) return;
9573
9574   char Letter = Constraint[0];
9575   switch (Letter) {
9576   default: break;
9577   case 'I':
9578   case 'J':
9579   case 'K':
9580   case 'L':
9581   case 'M':
9582   case 'N':
9583   case 'O':
9584   case 'P': {
9585     ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op);
9586     if (!CST) return; // Must be an immediate to match.
9587     int64_t Value = CST->getSExtValue();
9588     EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative
9589                          // numbers are printed as such.
9590     switch (Letter) {
9591     default: llvm_unreachable("Unknown constraint letter!");
9592     case 'I':  // "I" is a signed 16-bit constant.
9593       if (isInt<16>(Value))
9594         Result = DAG.getTargetConstant(Value, TCVT);
9595       break;
9596     case 'J':  // "J" is a constant with only the high-order 16 bits nonzero.
9597       if (isShiftedUInt<16, 16>(Value))
9598         Result = DAG.getTargetConstant(Value, TCVT);
9599       break;
9600     case 'L':  // "L" is a signed 16-bit constant shifted left 16 bits.
9601       if (isShiftedInt<16, 16>(Value))
9602         Result = DAG.getTargetConstant(Value, TCVT);
9603       break;
9604     case 'K':  // "K" is a constant with only the low-order 16 bits nonzero.
9605       if (isUInt<16>(Value))
9606         Result = DAG.getTargetConstant(Value, TCVT);
9607       break;
9608     case 'M':  // "M" is a constant that is greater than 31.
9609       if (Value > 31)
9610         Result = DAG.getTargetConstant(Value, TCVT);
9611       break;
9612     case 'N':  // "N" is a positive constant that is an exact power of two.
9613       if (Value > 0 && isPowerOf2_64(Value))
9614         Result = DAG.getTargetConstant(Value, TCVT);
9615       break;
9616     case 'O':  // "O" is the constant zero.
9617       if (Value == 0)
9618         Result = DAG.getTargetConstant(Value, TCVT);
9619       break;
9620     case 'P':  // "P" is a constant whose negation is a signed 16-bit constant.
9621       if (isInt<16>(-Value))
9622         Result = DAG.getTargetConstant(Value, TCVT);
9623       break;
9624     }
9625     break;
9626   }
9627   }
9628
9629   if (Result.getNode()) {
9630     Ops.push_back(Result);
9631     return;
9632   }
9633
9634   // Handle standard constraint letters.
9635   TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
9636 }
9637
9638 // isLegalAddressingMode - Return true if the addressing mode represented
9639 // by AM is legal for this target, for a load/store of the specified type.
9640 bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM,
9641                                               Type *Ty) const {
9642   // FIXME: PPC does not allow r+i addressing modes for vectors!
9643
9644   // PPC allows a sign-extended 16-bit immediate field.
9645   if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
9646     return false;
9647
9648   // No global is ever allowed as a base.
9649   if (AM.BaseGV)
9650     return false;
9651
9652   // PPC only support r+r,
9653   switch (AM.Scale) {
9654   case 0:  // "r+i" or just "i", depending on HasBaseReg.
9655     break;
9656   case 1:
9657     if (AM.HasBaseReg && AM.BaseOffs)  // "r+r+i" is not allowed.
9658       return false;
9659     // Otherwise we have r+r or r+i.
9660     break;
9661   case 2:
9662     if (AM.HasBaseReg || AM.BaseOffs)  // 2*r+r  or  2*r+i is not allowed.
9663       return false;
9664     // Allow 2*r as r+r.
9665     break;
9666   default:
9667     // No other scales are supported.
9668     return false;
9669   }
9670
9671   return true;
9672 }
9673
9674 SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op,
9675                                            SelectionDAG &DAG) const {
9676   MachineFunction &MF = DAG.getMachineFunction();
9677   MachineFrameInfo *MFI = MF.getFrameInfo();
9678   MFI->setReturnAddressIsTaken(true);
9679
9680   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
9681     return SDValue();
9682
9683   SDLoc dl(Op);
9684   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9685
9686   // Make sure the function does not optimize away the store of the RA to
9687   // the stack.
9688   PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
9689   FuncInfo->setLRStoreRequired();
9690   bool isPPC64 = Subtarget.isPPC64();
9691
9692   if (Depth > 0) {
9693     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9694     SDValue Offset =
9695         DAG.getConstant(Subtarget.getFrameLowering()->getReturnSaveOffset(),
9696                         isPPC64 ? MVT::i64 : MVT::i32);
9697     return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
9698                        DAG.getNode(ISD::ADD, dl, getPointerTy(),
9699                                    FrameAddr, Offset),
9700                        MachinePointerInfo(), false, false, false, 0);
9701   }
9702
9703   // Just load the return address off the stack.
9704   SDValue RetAddrFI = getReturnAddrFrameIndex(DAG);
9705   return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
9706                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
9707 }
9708
9709 SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op,
9710                                           SelectionDAG &DAG) const {
9711   SDLoc dl(Op);
9712   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9713
9714   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
9715   bool isPPC64 = PtrVT == MVT::i64;
9716
9717   MachineFunction &MF = DAG.getMachineFunction();
9718   MachineFrameInfo *MFI = MF.getFrameInfo();
9719   MFI->setFrameAddressIsTaken(true);
9720
9721   // Naked functions never have a frame pointer, and so we use r1. For all
9722   // other functions, this decision must be delayed until during PEI.
9723   unsigned FrameReg;
9724   if (MF.getFunction()->getAttributes().hasAttribute(
9725         AttributeSet::FunctionIndex, Attribute::Naked))
9726     FrameReg = isPPC64 ? PPC::X1 : PPC::R1;
9727   else
9728     FrameReg = isPPC64 ? PPC::FP8 : PPC::FP;
9729
9730   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg,
9731                                          PtrVT);
9732   while (Depth--)
9733     FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(),
9734                             FrameAddr, MachinePointerInfo(), false, false,
9735                             false, 0);
9736   return FrameAddr;
9737 }
9738
9739 // FIXME? Maybe this could be a TableGen attribute on some registers and
9740 // this table could be generated automatically from RegInfo.
9741 unsigned PPCTargetLowering::getRegisterByName(const char* RegName,
9742                                               EVT VT) const {
9743   bool isPPC64 = Subtarget.isPPC64();
9744   bool isDarwinABI = Subtarget.isDarwinABI();
9745
9746   if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) ||
9747       (!isPPC64 && VT != MVT::i32))
9748     report_fatal_error("Invalid register global variable type");
9749
9750   bool is64Bit = isPPC64 && VT == MVT::i64;
9751   unsigned Reg = StringSwitch<unsigned>(RegName)
9752                    .Case("r1", is64Bit ? PPC::X1 : PPC::R1)
9753                    .Case("r2", (isDarwinABI || isPPC64) ? 0 : PPC::R2)
9754                    .Case("r13", (!isPPC64 && isDarwinABI) ? 0 :
9755                                   (is64Bit ? PPC::X13 : PPC::R13))
9756                    .Default(0);
9757
9758   if (Reg)
9759     return Reg;
9760   report_fatal_error("Invalid register name global variable");
9761 }
9762
9763 bool
9764 PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
9765   // The PowerPC target isn't yet aware of offsets.
9766   return false;
9767 }
9768
9769 bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
9770                                            const CallInst &I,
9771                                            unsigned Intrinsic) const {
9772
9773   switch (Intrinsic) {
9774   case Intrinsic::ppc_altivec_lvx:
9775   case Intrinsic::ppc_altivec_lvxl:
9776   case Intrinsic::ppc_altivec_lvebx:
9777   case Intrinsic::ppc_altivec_lvehx:
9778   case Intrinsic::ppc_altivec_lvewx:
9779   case Intrinsic::ppc_vsx_lxvd2x:
9780   case Intrinsic::ppc_vsx_lxvw4x: {
9781     EVT VT;
9782     switch (Intrinsic) {
9783     case Intrinsic::ppc_altivec_lvebx:
9784       VT = MVT::i8;
9785       break;
9786     case Intrinsic::ppc_altivec_lvehx:
9787       VT = MVT::i16;
9788       break;
9789     case Intrinsic::ppc_altivec_lvewx:
9790       VT = MVT::i32;
9791       break;
9792     case Intrinsic::ppc_vsx_lxvd2x:
9793       VT = MVT::v2f64;
9794       break;
9795     default:
9796       VT = MVT::v4i32;
9797       break;
9798     }
9799
9800     Info.opc = ISD::INTRINSIC_W_CHAIN;
9801     Info.memVT = VT;
9802     Info.ptrVal = I.getArgOperand(0);
9803     Info.offset = -VT.getStoreSize()+1;
9804     Info.size = 2*VT.getStoreSize()-1;
9805     Info.align = 1;
9806     Info.vol = false;
9807     Info.readMem = true;
9808     Info.writeMem = false;
9809     return true;
9810   }
9811   case Intrinsic::ppc_altivec_stvx:
9812   case Intrinsic::ppc_altivec_stvxl:
9813   case Intrinsic::ppc_altivec_stvebx:
9814   case Intrinsic::ppc_altivec_stvehx:
9815   case Intrinsic::ppc_altivec_stvewx:
9816   case Intrinsic::ppc_vsx_stxvd2x:
9817   case Intrinsic::ppc_vsx_stxvw4x: {
9818     EVT VT;
9819     switch (Intrinsic) {
9820     case Intrinsic::ppc_altivec_stvebx:
9821       VT = MVT::i8;
9822       break;
9823     case Intrinsic::ppc_altivec_stvehx:
9824       VT = MVT::i16;
9825       break;
9826     case Intrinsic::ppc_altivec_stvewx:
9827       VT = MVT::i32;
9828       break;
9829     case Intrinsic::ppc_vsx_stxvd2x:
9830       VT = MVT::v2f64;
9831       break;
9832     default:
9833       VT = MVT::v4i32;
9834       break;
9835     }
9836
9837     Info.opc = ISD::INTRINSIC_VOID;
9838     Info.memVT = VT;
9839     Info.ptrVal = I.getArgOperand(1);
9840     Info.offset = -VT.getStoreSize()+1;
9841     Info.size = 2*VT.getStoreSize()-1;
9842     Info.align = 1;
9843     Info.vol = false;
9844     Info.readMem = false;
9845     Info.writeMem = true;
9846     return true;
9847   }
9848   default:
9849     break;
9850   }
9851
9852   return false;
9853 }
9854
9855 /// getOptimalMemOpType - Returns the target specific optimal type for load
9856 /// and store operations as a result of memset, memcpy, and memmove
9857 /// lowering. If DstAlign is zero that means it's safe to destination
9858 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
9859 /// means there isn't a need to check it against alignment requirement,
9860 /// probably because the source does not need to be loaded. If 'IsMemset' is
9861 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
9862 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
9863 /// source is constant so it does not need to be loaded.
9864 /// It returns EVT::Other if the type should be determined using generic
9865 /// target-independent logic.
9866 EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size,
9867                                            unsigned DstAlign, unsigned SrcAlign,
9868                                            bool IsMemset, bool ZeroMemset,
9869                                            bool MemcpyStrSrc,
9870                                            MachineFunction &MF) const {
9871   if (Subtarget.isPPC64()) {
9872     return MVT::i64;
9873   } else {
9874     return MVT::i32;
9875   }
9876 }
9877
9878 /// \brief Returns true if it is beneficial to convert a load of a constant
9879 /// to just the constant itself.
9880 bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
9881                                                           Type *Ty) const {
9882   assert(Ty->isIntegerTy());
9883
9884   unsigned BitSize = Ty->getPrimitiveSizeInBits();
9885   if (BitSize == 0 || BitSize > 64)
9886     return false;
9887   return true;
9888 }
9889
9890 bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
9891   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9892     return false;
9893   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9894   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
9895   return NumBits1 == 64 && NumBits2 == 32;
9896 }
9897
9898 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
9899   if (!VT1.isInteger() || !VT2.isInteger())
9900     return false;
9901   unsigned NumBits1 = VT1.getSizeInBits();
9902   unsigned NumBits2 = VT2.getSizeInBits();
9903   return NumBits1 == 64 && NumBits2 == 32;
9904 }
9905
9906 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
9907   // Generally speaking, zexts are not free, but they are free when they can be
9908   // folded with other operations.
9909   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) {
9910     EVT MemVT = LD->getMemoryVT();
9911     if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 ||
9912          (Subtarget.isPPC64() && MemVT == MVT::i32)) &&
9913         (LD->getExtensionType() == ISD::NON_EXTLOAD ||
9914          LD->getExtensionType() == ISD::ZEXTLOAD))
9915       return true;
9916   }
9917
9918   // FIXME: Add other cases...
9919   //  - 32-bit shifts with a zext to i64
9920   //  - zext after ctlz, bswap, etc.
9921   //  - zext after and by a constant mask
9922
9923   return TargetLowering::isZExtFree(Val, VT2);
9924 }
9925
9926 bool PPCTargetLowering::isFPExtFree(EVT VT) const {
9927   assert(VT.isFloatingPoint());
9928   return true;
9929 }
9930
9931 bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
9932   return isInt<16>(Imm) || isUInt<16>(Imm);
9933 }
9934
9935 bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
9936   return isInt<16>(Imm) || isUInt<16>(Imm);
9937 }
9938
9939 bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
9940                                                        unsigned,
9941                                                        unsigned,
9942                                                        bool *Fast) const {
9943   if (DisablePPCUnaligned)
9944     return false;
9945
9946   // PowerPC supports unaligned memory access for simple non-vector types.
9947   // Although accessing unaligned addresses is not as efficient as accessing
9948   // aligned addresses, it is generally more efficient than manual expansion,
9949   // and generally only traps for software emulation when crossing page
9950   // boundaries.
9951
9952   if (!VT.isSimple())
9953     return false;
9954
9955   if (VT.getSimpleVT().isVector()) {
9956     if (Subtarget.hasVSX()) {
9957       if (VT != MVT::v2f64 && VT != MVT::v2i64 &&
9958           VT != MVT::v4f32 && VT != MVT::v4i32)
9959         return false;
9960     } else {
9961       return false;
9962     }
9963   }
9964
9965   if (VT == MVT::ppcf128)
9966     return false;
9967
9968   if (Fast)
9969     *Fast = true;
9970
9971   return true;
9972 }
9973
9974 bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
9975   VT = VT.getScalarType();
9976
9977   if (!VT.isSimple())
9978     return false;
9979
9980   switch (VT.getSimpleVT().SimpleTy) {
9981   case MVT::f32:
9982   case MVT::f64:
9983     return true;
9984   default:
9985     break;
9986   }
9987
9988   return false;
9989 }
9990
9991 const MCPhysReg *
9992 PPCTargetLowering::getScratchRegisters(CallingConv::ID) const {
9993   // LR is a callee-save register, but we must treat it as clobbered by any call
9994   // site. Hence we include LR in the scratch registers, which are in turn added
9995   // as implicit-defs for stackmaps and patchpoints. The same reasoning applies
9996   // to CTR, which is used by any indirect call.
9997   static const MCPhysReg ScratchRegs[] = {
9998     PPC::X12, PPC::LR8, PPC::CTR8, 0
9999   };
10000
10001   return ScratchRegs;
10002 }
10003
10004 bool
10005 PPCTargetLowering::shouldExpandBuildVectorWithShuffles(
10006                      EVT VT , unsigned DefinedValues) const {
10007   if (VT == MVT::v2i64)
10008     return false;
10009
10010   return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
10011 }
10012
10013 Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const {
10014   if (DisableILPPref || Subtarget.enableMachineScheduler())
10015     return TargetLowering::getSchedulingPreference(N);
10016
10017   return Sched::ILP;
10018 }
10019
10020 // Create a fast isel object.
10021 FastISel *
10022 PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo,
10023                                   const TargetLibraryInfo *LibInfo) const {
10024   return PPC::createFastISel(FuncInfo, LibInfo);
10025 }